@kyro-cms/admin 0.9.0 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +11715 -11292
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +67 -65
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +564 -0
- package/dist/index.d.ts +11 -10
- package/dist/index.js +11326 -10912
- package/dist/index.js.map +1 -1
- package/package.json +16 -12
- package/src/components/ActionBar.tsx +25 -161
- package/src/components/Admin.tsx +2 -4
- package/src/components/ApiKeysManager.tsx +5 -5
- package/src/components/AuditLogsPage.tsx +2 -13
- package/src/components/AutoForm.tsx +572 -461
- package/src/components/BrandingHub.tsx +7 -4
- package/src/components/CreateView.tsx +2 -0
- package/src/components/DetailView.tsx +52 -65
- package/src/components/DeveloperCenter.tsx +8 -6
- package/src/components/FieldRenderer.tsx +94 -19
- package/src/components/ListView.tsx +57 -216
- package/src/components/MediaGallery.tsx +334 -367
- package/src/components/PluginsManager.tsx +197 -70
- package/src/components/RestPlayground.tsx +59 -52
- package/src/components/SessionsManager.tsx +1 -1
- package/src/components/SettingsPage.tsx +22 -0
- package/src/components/Sidebar.astro +13 -41
- package/src/components/UserManagement.tsx +153 -15
- package/src/components/UserMenu.tsx +30 -4
- package/src/components/VersionHistoryPanel.tsx +112 -119
- package/src/components/WebhookManager.tsx +6 -4
- package/src/components/blocks/ArrayBlock.tsx +6 -23
- package/src/components/blocks/BlockEditModal.tsx +82 -309
- package/src/components/blocks/CardBlock.tsx +35 -0
- package/src/components/blocks/ChildBlocksTree.tsx +57 -31
- package/src/components/blocks/GenericBlock.tsx +44 -0
- package/src/components/blocks/HeadingSubheadingBlock.tsx +32 -0
- package/src/components/blocks/HeroBlock.tsx +5 -14
- package/src/components/blocks/RichTextBlock.tsx +5 -5
- package/src/components/blocks/index.ts +5 -3
- package/src/components/fields/AccordionField.tsx +2 -2
- package/src/components/fields/ArrayField.tsx +1 -1
- package/src/components/fields/ArrayLayout.tsx +120 -29
- package/src/components/fields/BlocksField.tsx +433 -55
- package/src/components/fields/CardField.tsx +73 -0
- package/src/components/fields/CheckboxField.tsx +7 -3
- package/src/components/fields/DateField.tsx +4 -1
- package/src/components/fields/GroupLayout.tsx +2 -2
- package/src/components/fields/HeadingSubheadingField.tsx +43 -0
- package/src/components/fields/ListField.tsx +2 -2
- package/src/components/fields/NumberField.tsx +4 -1
- package/src/components/fields/RelationshipBlockField.tsx +2 -3
- package/src/components/fields/RelationshipField.tsx +155 -90
- package/src/components/fields/RichTextField.tsx +781 -0
- package/src/components/fields/SecretField.tsx +102 -0
- package/src/components/fields/SelectField.tsx +19 -6
- package/src/components/fields/TabsLayout.tsx +19 -9
- package/src/components/fields/TextField.tsx +4 -1
- package/src/components/fields/UploadField.tsx +122 -56
- package/src/components/fields/extensions/blockComponents.tsx +103 -174
- package/src/components/fields/extensions/blocksStore.ts +8 -1
- package/src/components/fields/index.ts +4 -2
- package/src/components/fix_imports.cjs +23 -0
- package/src/components/fix_imports2.cjs +19 -0
- package/src/components/replace_svgs.cjs +63 -0
- package/src/components/ui/Dropdown.tsx +7 -2
- package/src/components/ui/Modal.tsx +24 -27
- package/src/components/ui/PageHeader.tsx +5 -5
- package/src/components/ui/PromptModal.tsx +2 -10
- package/src/components/ui/SlidePanel.tsx +10 -13
- package/src/components/ui/SplitButton.tsx +107 -0
- package/src/components/ui/Toaster.tsx +0 -1
- package/src/components/ui/icons.tsx +110 -109
- package/src/components/users/UserDetail.tsx +79 -16
- package/src/components/users/UsersList.tsx +8 -85
- package/src/hooks/useAutoFormState.ts +187 -196
- package/src/hooks/useQueue.ts +60 -0
- package/src/integration.ts +148 -46
- package/src/kyro-cms.d.ts +7 -2
- package/src/layouts/AdminLayout.astro +22 -2
- package/src/layouts/AuthLayout.astro +67 -7
- package/src/lib/autoform-store.ts +90 -53
- package/src/lib/change-source.ts +9 -0
- package/src/lib/config.ts +104 -8
- package/src/lib/globals.ts +48 -11
- package/src/lib/normalize-upload-fields.ts +41 -0
- package/src/lib/paths.ts +2 -2
- package/src/lib/resolve-field-value.ts +110 -0
- package/src/lib/shim/use-sync-external-store-with-selector.js +30 -0
- package/src/lib/shim/use-sync-external-store.js +1 -0
- package/src/lib/stores/index.ts +1 -0
- package/src/lib/useResourceManager.ts +4 -4
- package/src/lib/vite-shim-plugin.ts +100 -0
- package/src/pages/[collection]/[id].astro +1 -1
- package/src/pages/auth/register.astro +5 -2
- package/src/pages/preview/[collection]/[id].astro +4 -4
- package/src/pages/settings/[slug].astro +2 -2
- package/src/styles/main.css +60 -54
- package/README.md +0 -46
- package/dist/EditorClient-Q23UXR37.cjs +0 -468
- package/dist/EditorClient-Q23UXR37.cjs.map +0 -1
- package/dist/EditorClient-T5PASFNR.js +0 -466
- package/dist/EditorClient-T5PASFNR.js.map +0 -1
- package/dist/chunk-3BGDYKTD.cjs +0 -348
- package/dist/chunk-3BGDYKTD.cjs.map +0 -1
- package/dist/chunk-EEFXLQVT.js +0 -3
- package/dist/chunk-EEFXLQVT.js.map +0 -1
- package/src/components/blocks/ButtonBlock.tsx +0 -64
- package/src/components/blocks/ColumnsBlock.tsx +0 -55
- package/src/components/blocks/DividerBlock.tsx +0 -43
- package/src/components/blocks/LinkBlock.tsx +0 -65
- package/src/components/blocks/VStackBlock.tsx +0 -29
- package/src/components/fields/EditorClient.tsx +0 -535
- package/src/components/fields/PortableTextField.tsx +0 -155
- package/src/components/fields/PortableTextRenderer.tsx +0 -68
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { type ReactNode } from "react";
|
|
2
|
-
import type {
|
|
2
|
+
import type { ComponentType, SVGAttributes } from "react";
|
|
3
3
|
|
|
4
4
|
interface Breadcrumb {
|
|
5
5
|
label: string;
|
|
@@ -10,7 +10,7 @@ interface Breadcrumb {
|
|
|
10
10
|
interface Action {
|
|
11
11
|
label: string;
|
|
12
12
|
onClick: () => void;
|
|
13
|
-
icon?:
|
|
13
|
+
icon?: ComponentType<SVGAttributes<SVGSVGElement>>;
|
|
14
14
|
variant?: "primary" | "outline" | "ghost";
|
|
15
15
|
className?: string;
|
|
16
16
|
}
|
|
@@ -18,7 +18,7 @@ interface Action {
|
|
|
18
18
|
interface PageHeaderProps {
|
|
19
19
|
title?: string;
|
|
20
20
|
description?: string;
|
|
21
|
-
icon?:
|
|
21
|
+
icon?: ComponentType<SVGAttributes<SVGSVGElement>>;
|
|
22
22
|
breadcrumbs?: Breadcrumb[];
|
|
23
23
|
metadata?: ReactNode[];
|
|
24
24
|
back?: { label?: string; href?: string; onClick?: () => void };
|
|
@@ -129,7 +129,7 @@ export function PageHeader({
|
|
|
129
129
|
? "border border-[var(--kyro-border)] text-[var(--kyro-text-secondary)] hover:bg-[var(--kyro-surface-accent)]"
|
|
130
130
|
: act.variant === "ghost"
|
|
131
131
|
? "text-[var(--kyro-text-secondary)] hover:bg-[var(--kyro-surface-accent)] shadow-none"
|
|
132
|
-
: "
|
|
132
|
+
: "kyro-btn-primary hover:opacity-90"
|
|
133
133
|
} ${act.className || ""}`}
|
|
134
134
|
>
|
|
135
135
|
{act.icon && <act.icon className="w-4 h-4" />}
|
|
@@ -145,7 +145,7 @@ export function PageHeader({
|
|
|
145
145
|
<button
|
|
146
146
|
type="button"
|
|
147
147
|
onClick={action.onClick}
|
|
148
|
-
className={`flex items-center gap-2 px-6 py-2.5 rounded-xl font-bold text-sm
|
|
148
|
+
className={`kyro-btn kyro-btn-primary flex items-center gap-2 px-6 py-2.5 rounded-xl font-bold text-sm hover:opacity-90 transition-all shadow-lg shadow-[var(--kyro-primary)]/10 ${action.className || ""}`}
|
|
149
149
|
>
|
|
150
150
|
{action.icon && <action.icon className="w-4 h-4" />}
|
|
151
151
|
{action.label}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { X } from "./icons";
|
|
1
2
|
import React, { useState } from "react";
|
|
2
3
|
import { createPortal } from "react-dom";
|
|
3
4
|
|
|
@@ -47,16 +48,7 @@ export function PromptModal({
|
|
|
47
48
|
onClick={onClose}
|
|
48
49
|
className="p-1 text-[var(--kyro-text-muted)] hover:text-[var(--kyro-text-primary)] rounded-lg hover:bg-[var(--kyro-surface-accent)] transition-colors"
|
|
49
50
|
>
|
|
50
|
-
<
|
|
51
|
-
width="20"
|
|
52
|
-
height="20"
|
|
53
|
-
viewBox="0 0 24 24"
|
|
54
|
-
fill="none"
|
|
55
|
-
stroke="currentColor"
|
|
56
|
-
strokeWidth="2"
|
|
57
|
-
>
|
|
58
|
-
<path d="M18 6L6 18M6 6l12 12" />
|
|
59
|
-
</svg>
|
|
51
|
+
<X className="w-4 h-4" />
|
|
60
52
|
</button>
|
|
61
53
|
</div>
|
|
62
54
|
<form onSubmit={handleSubmit}>
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { X } from "./icons";
|
|
1
2
|
import React, { useEffect, useRef, useState, type ReactNode } from "react";
|
|
2
3
|
import { createPortal } from "react-dom";
|
|
3
4
|
|
|
@@ -10,6 +11,7 @@ interface SlidePanelProps {
|
|
|
10
11
|
children: ReactNode;
|
|
11
12
|
width?: "sm" | "md" | "lg" | "xl";
|
|
12
13
|
showOverlay?: boolean;
|
|
14
|
+
accentClass?: string;
|
|
13
15
|
}
|
|
14
16
|
|
|
15
17
|
export function SlidePanel({
|
|
@@ -19,6 +21,7 @@ export function SlidePanel({
|
|
|
19
21
|
children,
|
|
20
22
|
width = "md",
|
|
21
23
|
showOverlay = false,
|
|
24
|
+
accentClass,
|
|
22
25
|
}: SlidePanelProps) {
|
|
23
26
|
const panelRef = useRef<HTMLDivElement>(null);
|
|
24
27
|
const [hydrated, setHydrated] = useState(false);
|
|
@@ -46,8 +49,8 @@ export function SlidePanel({
|
|
|
46
49
|
const widthClasses = {
|
|
47
50
|
sm: "w-[320px]",
|
|
48
51
|
md: "w-[400px]",
|
|
49
|
-
lg: "w-[
|
|
50
|
-
xl: "w-[
|
|
52
|
+
lg: "w-[550px]",
|
|
53
|
+
xl: "w-[700px]",
|
|
51
54
|
};
|
|
52
55
|
|
|
53
56
|
if (!open || !hydrated) return null;
|
|
@@ -62,7 +65,10 @@ export function SlidePanel({
|
|
|
62
65
|
)}
|
|
63
66
|
<div
|
|
64
67
|
ref={panelRef}
|
|
65
|
-
|
|
68
|
+
data-kyro-slide-panel="true"
|
|
69
|
+
data-kyro-slide-width={width}
|
|
70
|
+
className={`fixed right-0 top-0 bottom-0 z-[99999] ${widthClasses[width]} bg-[var(--kyro-surface)] ${accentClass ? `border-l-2 ${accentClass}` : "border-l border-[var(--kyro-border)]"
|
|
71
|
+
} shadow-2xl flex flex-col animate-slideIn`}
|
|
66
72
|
>
|
|
67
73
|
<div className="flex items-center justify-between px-4 py-3 border-b border-[var(--kyro-border)] bg-[var(--kyro-surface)]">
|
|
68
74
|
<h2 className="text-sm font-semibold text-[var(--kyro-text-primary)]">
|
|
@@ -73,16 +79,7 @@ export function SlidePanel({
|
|
|
73
79
|
onClick={onClose}
|
|
74
80
|
className="p-1.5 text-[var(--kyro-text-muted)] hover:text-[var(--kyro-text-primary)] hover:bg-[var(--kyro-surface-accent)] rounded-lg transition-colors"
|
|
75
81
|
>
|
|
76
|
-
<
|
|
77
|
-
width="16"
|
|
78
|
-
height="16"
|
|
79
|
-
viewBox="0 0 24 24"
|
|
80
|
-
fill="none"
|
|
81
|
-
stroke="currentColor"
|
|
82
|
-
strokeWidth="2"
|
|
83
|
-
>
|
|
84
|
-
<path d="M18 6L6 18M6 6l12 12" />
|
|
85
|
-
</svg>
|
|
82
|
+
<X className="w-4 h-4" />
|
|
86
83
|
</button>
|
|
87
84
|
</div>
|
|
88
85
|
<div className="flex-1 overflow-y-auto p-4">{children}</div>
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { ReactNode } from "react";
|
|
3
|
+
import { Dropdown } from "./Dropdown";
|
|
4
|
+
import { Spinner } from "./Spinner";
|
|
5
|
+
|
|
6
|
+
export type SplitButtonStatus = "draft" | "published" | "scheduled" | "archived";
|
|
7
|
+
export type SplitButtonSaveStatus = "idle" | "saving" | "saved" | "error";
|
|
8
|
+
|
|
9
|
+
export interface SplitButtonProps {
|
|
10
|
+
/** Current publish status of the document */
|
|
11
|
+
status: SplitButtonStatus;
|
|
12
|
+
/** Live save operation status driven by the parent */
|
|
13
|
+
saveStatus: SplitButtonSaveStatus;
|
|
14
|
+
/** True when the form has unsaved changes vs last persisted version */
|
|
15
|
+
hasChanges: boolean;
|
|
16
|
+
/** Called when the main publish button is clicked */
|
|
17
|
+
onPublish: () => void;
|
|
18
|
+
/** Publish-variant items for the chevron dropdown (Save as Draft, Schedule) */
|
|
19
|
+
children?: ReactNode;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
direction?: "up" | "down";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export function SplitButton({
|
|
25
|
+
status,
|
|
26
|
+
saveStatus,
|
|
27
|
+
hasChanges,
|
|
28
|
+
onPublish,
|
|
29
|
+
children,
|
|
30
|
+
disabled,
|
|
31
|
+
direction = "down",
|
|
32
|
+
}: SplitButtonProps) {
|
|
33
|
+
const isPublishedIdle =
|
|
34
|
+
status === "published" && !hasChanges && saveStatus !== "saving" && saveStatus !== "error";
|
|
35
|
+
|
|
36
|
+
const isDisabled = disabled || saveStatus === "saving" || isPublishedIdle;
|
|
37
|
+
|
|
38
|
+
// ── button colour ──────────────────────────────────────────────────────────
|
|
39
|
+
const btnBase =
|
|
40
|
+
"kyro-btn kyro-btn-sm text-[11px] font-regular tracking-widest transition-all duration-300 rounded-lg";
|
|
41
|
+
|
|
42
|
+
const getBtnClass = () => {
|
|
43
|
+
if (saveStatus === "saving") return `${btnBase} bg-[var(--kyro-primary)]/70 border-[var(--kyro-primary)]/70 text-[var(--kyro-sidebar-text-active)] cursor-wait`;
|
|
44
|
+
if (saveStatus === "saved") return `${btnBase} bg-[var(--kyro-success)] border-[var(--kyro-success)] text-[var(--kyro-sidebar-text-active)]`;
|
|
45
|
+
if (saveStatus === "error") return `${btnBase} bg-[var(--kyro-error)] border-[var(--kyro-error)] text-[var(--kyro-sidebar-text-active)]`;
|
|
46
|
+
if (isPublishedIdle) return `${btnBase} bg-[var(--kyro-gray-200)] border-[var(--kyro-gray-200)] text-[var(--kyro-text-muted)] cursor-not-allowed`;
|
|
47
|
+
// has changes → accent
|
|
48
|
+
return `${btnBase} bg-[var(--kyro-primary)] border-[var(--kyro-primary)] hover:bg-[var(--kyro-primary-hover)]`;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
const chevronBase =
|
|
52
|
+
"kyro-btn kyro-btn-md px-2 rounded-l-none border-l-[1px] border-white/20 transition-all duration-300";
|
|
53
|
+
|
|
54
|
+
const getChevronClass = () => {
|
|
55
|
+
if (saveStatus === "saving") return `${chevronBase} bg-[var(--kyro-primary)]/70 text-[var(--kyro-sidebar-text-active)] border-[var(--kyro-primary)]/70`;
|
|
56
|
+
if (saveStatus === "saved") return `${chevronBase} bg-[var(--kyro-success)] text-[var(--kyro-sidebar-text-active)] border-[var(--kyro-success)]`;
|
|
57
|
+
if (saveStatus === "error") return `${chevronBase} bg-[var(--kyro-error)] text-[var(--kyro-sidebar-text-active)] border-[var(--kyro-error)]`;
|
|
58
|
+
if (isPublishedIdle) return `${chevronBase} bg-[var(--kyro-gray-200)] text-[var(--kyro-text-muted)] border-[var(--kyro-gray-200)]`;
|
|
59
|
+
return `${chevronBase} bg-[var(--kyro-primary)] text-[var(--kyro-sidebar-text-active)] border-[var(--kyro-primary)] hover:bg-[var(--kyro-primary-hover)]`;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
// ── label ──────────────────────────────────────────────────────────────────
|
|
63
|
+
const getLabel = () => {
|
|
64
|
+
if (saveStatus === "saving") return "Publishing...";
|
|
65
|
+
if (saveStatus === "saved") return "Published ✓";
|
|
66
|
+
if (saveStatus === "error") return "Retry";
|
|
67
|
+
if (isPublishedIdle) return "Published";
|
|
68
|
+
return "Publish Changes";
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
return (
|
|
72
|
+
<div className="inline-flex items-center">
|
|
73
|
+
{/* Main publish button */}
|
|
74
|
+
<button
|
|
75
|
+
type="button"
|
|
76
|
+
onClick={onPublish}
|
|
77
|
+
disabled={isDisabled}
|
|
78
|
+
className={`${getBtnClass()} ${!children ? "rounded-r-lg border-r border-[var(--kyro-border)]" : ""}`}
|
|
79
|
+
>
|
|
80
|
+
{saveStatus === "saving" && <Spinner size="sm" className="inline mr-1.5" />}
|
|
81
|
+
{isPublishedIdle && (
|
|
82
|
+
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" className="inline mr-1">
|
|
83
|
+
<polyline points="20 6 9 17 4 12" />
|
|
84
|
+
</svg>
|
|
85
|
+
)}
|
|
86
|
+
{getLabel()}
|
|
87
|
+
</button>
|
|
88
|
+
|
|
89
|
+
{/* Chevron → publish-variant actions only */}
|
|
90
|
+
{children && (
|
|
91
|
+
<Dropdown
|
|
92
|
+
trigger={
|
|
93
|
+
<button type="button" className={getChevronClass()} disabled={saveStatus === "saving"}>
|
|
94
|
+
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5">
|
|
95
|
+
<path d="m6 9 6 6 6-6" />
|
|
96
|
+
</svg>
|
|
97
|
+
</button>
|
|
98
|
+
}
|
|
99
|
+
direction={direction}
|
|
100
|
+
>
|
|
101
|
+
{children}
|
|
102
|
+
</Dropdown>
|
|
103
|
+
)}
|
|
104
|
+
</div>
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
|
|
@@ -2,7 +2,6 @@ import { useToastStore } from "../../lib/stores";
|
|
|
2
2
|
import { Toast } from "./Toast";
|
|
3
3
|
|
|
4
4
|
export function Toaster() {
|
|
5
|
-
console.log('Toaster mounted');
|
|
6
5
|
const toasts = useToastStore((state) => state.toasts);
|
|
7
6
|
const removeToast = useToastStore((state) => state.removeToast);
|
|
8
7
|
|
|
@@ -1,112 +1,113 @@
|
|
|
1
|
-
// Re-exported from react
|
|
2
|
-
// Allows
|
|
1
|
+
// Re-exported from lucide-react (ISC license)
|
|
2
|
+
// Allows swapping individual icons without touching consumers.
|
|
3
3
|
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
31
|
-
export {
|
|
32
|
-
export {
|
|
33
|
-
export {
|
|
34
|
-
export {
|
|
35
|
-
export {
|
|
36
|
-
export {
|
|
37
|
-
export {
|
|
38
|
-
export {
|
|
39
|
-
export {
|
|
40
|
-
export {
|
|
41
|
-
export {
|
|
42
|
-
export {
|
|
43
|
-
export {
|
|
44
|
-
export {
|
|
45
|
-
export {
|
|
46
|
-
export {
|
|
47
|
-
export {
|
|
48
|
-
export {
|
|
49
|
-
export {
|
|
50
|
-
export {
|
|
51
|
-
export {
|
|
52
|
-
export {
|
|
53
|
-
export {
|
|
54
|
-
export {
|
|
55
|
-
export {
|
|
56
|
-
export {
|
|
57
|
-
export {
|
|
58
|
-
export {
|
|
59
|
-
export {
|
|
60
|
-
export {
|
|
61
|
-
export {
|
|
62
|
-
export {
|
|
63
|
-
export {
|
|
64
|
-
export {
|
|
65
|
-
export {
|
|
66
|
-
export {
|
|
67
|
-
export {
|
|
68
|
-
export {
|
|
69
|
-
export {
|
|
70
|
-
export {
|
|
71
|
-
export {
|
|
72
|
-
export {
|
|
73
|
-
export {
|
|
74
|
-
export {
|
|
75
|
-
export {
|
|
76
|
-
export {
|
|
77
|
-
export {
|
|
78
|
-
export {
|
|
79
|
-
export {
|
|
80
|
-
export {
|
|
81
|
-
export {
|
|
82
|
-
export {
|
|
83
|
-
export {
|
|
84
|
-
export {
|
|
85
|
-
export {
|
|
86
|
-
export {
|
|
87
|
-
export {
|
|
88
|
-
export {
|
|
89
|
-
export {
|
|
90
|
-
export {
|
|
91
|
-
export {
|
|
92
|
-
export {
|
|
93
|
-
export {
|
|
94
|
-
export {
|
|
95
|
-
export {
|
|
96
|
-
export {
|
|
97
|
-
export {
|
|
98
|
-
export {
|
|
99
|
-
export {
|
|
100
|
-
export {
|
|
101
|
-
export {
|
|
102
|
-
export {
|
|
103
|
-
export {
|
|
104
|
-
export {
|
|
105
|
-
export {
|
|
106
|
-
export {
|
|
107
|
-
export {
|
|
108
|
-
export {
|
|
4
|
+
export { Activity as IconActivity } from "lucide-react";
|
|
5
|
+
export { TriangleAlert as IconAlertTriangle } from "lucide-react";
|
|
6
|
+
export { AlignLeft as IconAlignLeft } from "lucide-react";
|
|
7
|
+
export { Archive as IconArchive } from "lucide-react";
|
|
8
|
+
export { ArrowDown as IconArrowDown } from "lucide-react";
|
|
9
|
+
export { ArrowRight as IconArrowRight } from "lucide-react";
|
|
10
|
+
export { ArrowUpRight as IconArrowUpRight } from "lucide-react";
|
|
11
|
+
export { Blocks as IconBlocks } from "lucide-react";
|
|
12
|
+
export { Bold as IconBold } from "lucide-react";
|
|
13
|
+
export { Book as IconBook } from "lucide-react";
|
|
14
|
+
export { Box as IconBox } from "lucide-react";
|
|
15
|
+
export { CircleCheck as IconCheckCircle2 } from "lucide-react";
|
|
16
|
+
export { Check as IconCheck } from "lucide-react";
|
|
17
|
+
export { ChevronDown as IconChevronDown } from "lucide-react";
|
|
18
|
+
export { ChevronLeft as IconChevronLeft } from "lucide-react";
|
|
19
|
+
export { ChevronRight as IconChevronRight } from "lucide-react";
|
|
20
|
+
export { ChevronUp as IconChevronUp } from "lucide-react";
|
|
21
|
+
export { Clock as IconClock } from "lucide-react";
|
|
22
|
+
export { Code as IconCode } from "lucide-react";
|
|
23
|
+
export { CodeXml as IconCode2 } from "lucide-react";
|
|
24
|
+
export { Columns3 as IconColumns3 } from "lucide-react";
|
|
25
|
+
export { Copy as IconCopy } from "lucide-react";
|
|
26
|
+
export { Crop as IconCrop } from "lucide-react";
|
|
27
|
+
export { Database as IconDatabase } from "lucide-react";
|
|
28
|
+
export { Download as IconDownload } from "lucide-react";
|
|
29
|
+
export { CloudDownload as IconDownloadCloud } from "lucide-react";
|
|
30
|
+
export { ExternalLink as IconExternalLink } from "lucide-react";
|
|
31
|
+
export { Eye as IconEye } from "lucide-react";
|
|
32
|
+
export { EyeOff as IconEyeOff } from "lucide-react";
|
|
33
|
+
export { File as IconFile } from "lucide-react";
|
|
34
|
+
export { Globe as IconGlobe } from "lucide-react";
|
|
35
|
+
export { Film as IconFilm } from "lucide-react";
|
|
36
|
+
export { Filter as IconFilter } from "lucide-react";
|
|
37
|
+
export { Folder as IconFolder } from "lucide-react";
|
|
38
|
+
export { FolderInput as IconFolderInput } from "lucide-react";
|
|
39
|
+
export { FolderPlus as IconFolderPlus } from "lucide-react";
|
|
40
|
+
export { Grid3X3 as IconGrid } from "lucide-react";
|
|
41
|
+
export { GripVertical as IconGripVertical } from "lucide-react";
|
|
42
|
+
export { Heading1 as IconHeading1 } from "lucide-react";
|
|
43
|
+
export { Hexagon as IconHexagon } from "lucide-react";
|
|
44
|
+
export { House as IconHome } from "lucide-react";
|
|
45
|
+
export { Image as IconImage } from "lucide-react";
|
|
46
|
+
export { Info as IconInfo } from "lucide-react";
|
|
47
|
+
export { Italic as IconItalic } from "lucide-react";
|
|
48
|
+
export { Key as IconKey } from "lucide-react";
|
|
49
|
+
export { LayoutPanelTop as IconLayout } from "lucide-react";
|
|
50
|
+
export { LayoutDashboard as IconLayoutDashboard } from "lucide-react";
|
|
51
|
+
export { Link as IconLink } from "lucide-react";
|
|
52
|
+
export { Link2 as IconLink2 } from "lucide-react";
|
|
53
|
+
export { List as IconList } from "lucide-react";
|
|
54
|
+
export { ListOrdered as IconListOrdered } from "lucide-react";
|
|
55
|
+
export { LoaderCircle as IconLoader2 } from "lucide-react";
|
|
56
|
+
export { Lock as IconLock } from "lucide-react";
|
|
57
|
+
export { LogOut as IconLogOut } from "lucide-react";
|
|
58
|
+
export { Mail as IconMail } from "lucide-react";
|
|
59
|
+
export { Maximize2 as IconMaximize2 } from "lucide-react";
|
|
60
|
+
export { Menu as IconMenu } from "lucide-react";
|
|
61
|
+
export { Minus as IconMinus } from "lucide-react";
|
|
62
|
+
export { Monitor as IconMonitor } from "lucide-react";
|
|
63
|
+
export { Moon as IconMoon } from "lucide-react";
|
|
64
|
+
export { EllipsisVertical as IconMoreVertical } from "lucide-react";
|
|
65
|
+
export { MousePointerClick as IconMousePointerClick } from "lucide-react";
|
|
66
|
+
export { Music as IconMusic } from "lucide-react";
|
|
67
|
+
export { Network as IconNetwork } from "lucide-react";
|
|
68
|
+
export { Palette as IconPalette } from "lucide-react";
|
|
69
|
+
export { Pause as IconPause } from "lucide-react";
|
|
70
|
+
export { Pencil as IconPencil } from "lucide-react";
|
|
71
|
+
export { Play as IconPlay } from "lucide-react";
|
|
72
|
+
export { CirclePlay as IconPlayCircle } from "lucide-react";
|
|
73
|
+
export { Plus as IconPlus } from "lucide-react";
|
|
74
|
+
export { Redo as IconRedo } from "lucide-react";
|
|
75
|
+
export { RefreshCcw as IconRefreshCcw } from "lucide-react";
|
|
76
|
+
export { RefreshCw as IconRefreshCw } from "lucide-react";
|
|
77
|
+
export { Save as IconSave } from "lucide-react";
|
|
78
|
+
export { Search as IconSearch } from "lucide-react";
|
|
79
|
+
export { Send as IconSend } from "lucide-react";
|
|
80
|
+
export { Settings as IconSettings } from "lucide-react";
|
|
81
|
+
export { Shield as IconShield } from "lucide-react";
|
|
82
|
+
export { ShieldCheck as IconShieldCheck } from "lucide-react";
|
|
83
|
+
export { Sparkles as IconSparkles } from "lucide-react";
|
|
84
|
+
export { Star as IconStar } from "lucide-react";
|
|
85
|
+
export { Strikethrough as IconStrikethrough } from "lucide-react";
|
|
86
|
+
export { Sun as IconSun } from "lucide-react";
|
|
87
|
+
export { Tag as IconTag } from "lucide-react";
|
|
88
|
+
export { Terminal as IconTerminal } from "lucide-react";
|
|
89
|
+
export { ToggleLeft as IconToggleLeft } from "lucide-react";
|
|
90
|
+
export { ToggleRight as IconToggleRight } from "lucide-react";
|
|
91
|
+
export { Trash2 as IconTrash2 } from "lucide-react";
|
|
92
|
+
export { TrendingUp as IconTrendingUp } from "lucide-react";
|
|
93
|
+
export { Type as IconType } from "lucide-react";
|
|
94
|
+
export { Underline as IconUnderline } from "lucide-react";
|
|
95
|
+
export { Undo as IconUndo } from "lucide-react";
|
|
96
|
+
export { LockOpen as IconUnlock } from "lucide-react";
|
|
97
|
+
export { User as IconUser } from "lucide-react";
|
|
98
|
+
export { UserPlus as IconUserPlus } from "lucide-react";
|
|
99
|
+
export { Users as IconUsers } from "lucide-react";
|
|
100
|
+
export { Video as IconVideo } from "lucide-react";
|
|
101
|
+
export { Webhook as IconWebhook } from "lucide-react";
|
|
102
|
+
export { X as IconX } from "lucide-react";
|
|
103
|
+
export { Zap as IconZap } from "lucide-react";
|
|
104
|
+
export { Dot as IconDot } from "lucide-react";
|
|
105
|
+
export { ShieldAlert as IconShieldAlert } from "lucide-react";
|
|
106
|
+
export { Pencil as IconEdit2 } from "lucide-react";
|
|
107
|
+
export { Calendar as IconCalendar } from "lucide-react";
|
|
108
|
+
export { Grid3X3 as IconGrid3X3 } from "lucide-react";
|
|
109
109
|
|
|
110
110
|
// Direct re-exports for files that still use original lucide-react names
|
|
111
|
-
export {
|
|
112
|
-
export {
|
|
111
|
+
export { Activity as Activity, AlignLeft as AlignLeft, Archive as Archive, ArrowDown as ArrowDown, ArrowRight as ArrowRight, ArrowUpRight as ArrowUpRight, Blocks as Blocks, Box as Box, Calendar as Calendar, Check as Check, ChevronDown as ChevronDown, ChevronLeft as ChevronLeft, ChevronRight as ChevronRight, ChevronUp as ChevronUp, Clock as Clock, Code as Code, Columns3 as Columns3, Copy as Copy, Crop as Crop, Download as Download, ExternalLink as ExternalLink, Eye as Eye, EyeOff as EyeOff, File as File, File as FileIcon, FileText as FileText, Globe as Globe, Film as Film, Filter as Filter, Folder as Folder, FolderInput as FolderInput, FolderPlus as FolderPlus, GripVertical as GripVertical, Heading1 as Heading1, Image as Image, Info as Info, Key as Key, LayoutDashboard as LayoutDashboard, Link as Link, Link2 as Link2, List as List, ListOrdered as ListOrdered, Lock as Lock, Mail as Mail, Maximize2 as Maximize2, Menu as Menu, Minus as Minus, Monitor as Monitor, MousePointerClick as MousePointerClick, Music as Music, Palette as Palette, Pause as Pause, Play as Play, Plus as Plus, RefreshCcw as RefreshCcw, RefreshCw as RefreshCw, Save as Save, Search as Search, Send as Send, Settings as Settings, Shield as Shield, Sparkles as Sparkles, Star as Star, Tag as Tag, Terminal as Terminal, ToggleLeft as ToggleLeft, ToggleRight as ToggleRight, Trash2 as Trash2, TrendingUp as TrendingUp, Type as Type, User as User, UserPlus as UserPlus, Users as Users, Video as Video, Webhook as Webhook, X as X, Zap as Zap, CircleHelp as HelpCircle } from "lucide-react";
|
|
112
|
+
export { CircleCheck as CheckCircle2, Grid3X3 as Grid, House as Home, LayoutPanelTop as Layout, LoaderCircle as Loader2, LockOpen as Unlock, CirclePlay as PlayCircle, TriangleAlert as AlertTriangle, CodeXml as Code2, CloudDownload as DownloadCloud, EllipsisVertical as MoreVertical, ShieldCheck as ShieldCheck, ShieldAlert as ShieldAlert, Pencil as Edit2, Moon as Moon, Sun as Sun, LogOut as LogOut, Database as Database, Hexagon as Hexagon, Network as Network, Book as Book, Bold as Bold, Italic as Italic, Underline as Underline, Strikethrough as Strikethrough, Undo as Undo, Redo as Redo, Dot as Dot, Grid3X3, Laptop as Laptop, Smartphone as Smartphone } from "lucide-react";
|
|
113
|
+
export { Server as Server, XCircle as XCircle, Clipboard as Clipboard, Upload as Upload } from "lucide-react";
|