Prepare v0.1.0 release

This commit is contained in:
2026-06-24 20:00:11 +02:00
parent 934c6f25d8
commit 993f744c19
9 changed files with 134 additions and 113 deletions

View File

@@ -1,4 +1,3 @@
import { Folder } from "lucide-react";
import { createElement, lazy } from "react";
import type { PlatformWebModule } from "@govoplan/core-webui";
const FilesPage = lazy(() => import("./features/files/FilesPage"));
@@ -10,7 +9,7 @@ export const filesModule: PlatformWebModule = {
label: "Files",
version: "1.0.0",
dependencies: ["access"],
navItems: [{ to: "/files", label: "Files", icon: Folder, anyOf: fileRead, order: 40 }],
navItems: [{ to: "/files", label: "Files", iconName: "folder", anyOf: fileRead, order: 40 }],
routes: [
{ path: "/files", anyOf: fileRead, order: 40, render: ({ settings, auth }) => createElement(FilesPage, { settings, auth }) }
]