@kyro-cms/admin 0.5.4 → 0.6.0
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/{EditorClient-YLCGVDXY.cjs → EditorClient-Q23UXR37.cjs} +14 -14
- package/dist/{EditorClient-XEUOVAAC.js → EditorClient-T5PASFNR.js} +2 -2
- package/dist/chunk-3BGDYKTD.cjs +348 -0
- package/dist/chunk-3BGDYKTD.cjs.map +1 -0
- package/dist/chunk-EEFXLQVT.js +3 -0
- package/dist/chunk-EEFXLQVT.js.map +1 -0
- package/dist/index.cjs +462 -1020
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +13 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +271 -829
- package/dist/index.js.map +1 -1
- package/package.json +7 -3
- package/src/components/AuditLogsPage.tsx +4 -8
- package/src/components/Dashboard.tsx +2 -1
- package/src/components/DetailView.tsx +9 -2
- package/src/components/ListView.tsx +3 -2
- package/src/components/MediaGallery.tsx +13 -6
- package/src/components/Sidebar.astro +1 -1
- package/src/components/ui/Shimmer.tsx +28 -0
- package/src/components/users/UserDetail.tsx +1 -1
- package/src/components/users/UserForm.tsx +1 -1
- package/src/components/users/UsersList.tsx +1 -1
- package/src/hooks/useAutoFormState.ts +19 -3
- package/src/integration.ts +77 -25
- package/src/layouts/AdminLayout.astro +70 -48
- package/src/lib/config.ts +6 -1
- package/src/lib/globals.ts +56 -20
- package/src/pages/index.astro +1 -1
- package/src/pages/roles/index.astro +1 -1
- package/src/pages/users/[id].astro +2 -2
- package/src/styles/main.css +17 -0
- package/dist/chunk-7KPIUCGT.js +0 -384
- package/dist/chunk-7KPIUCGT.js.map +0 -1
- package/dist/chunk-GOACG6R7.cjs +0 -473
- package/dist/chunk-GOACG6R7.cjs.map +0 -1
- /package/dist/{EditorClient-XEUOVAAC.js.map → EditorClient-Q23UXR37.cjs.map} +0 -0
- /package/dist/{EditorClient-YLCGVDXY.cjs.map → EditorClient-T5PASFNR.js.map} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk3BGDYKTD_cjs = require('./chunk-3BGDYKTD.cjs');
|
|
4
4
|
var react = require('react');
|
|
5
5
|
var editor = require('@portabletext/editor');
|
|
6
6
|
var schema = require('@portabletext/schema');
|
|
@@ -135,11 +135,11 @@ function FocusRestoringButton({
|
|
|
135
135
|
);
|
|
136
136
|
}
|
|
137
137
|
var decoratorIcons = {
|
|
138
|
-
strong:
|
|
139
|
-
em:
|
|
140
|
-
underline:
|
|
141
|
-
strikeThrough:
|
|
142
|
-
code:
|
|
138
|
+
strong: chunk3BGDYKTD_cjs.LuBold,
|
|
139
|
+
em: chunk3BGDYKTD_cjs.LuItalic,
|
|
140
|
+
underline: chunk3BGDYKTD_cjs.LuUnderline,
|
|
141
|
+
strikeThrough: chunk3BGDYKTD_cjs.LuStrikethrough,
|
|
142
|
+
code: chunk3BGDYKTD_cjs.LuCode
|
|
143
143
|
};
|
|
144
144
|
var DecoratorButton = ({
|
|
145
145
|
name,
|
|
@@ -176,7 +176,7 @@ var ListButton = ({
|
|
|
176
176
|
if (!listSchema)
|
|
177
177
|
return null;
|
|
178
178
|
const { snapshot, send } = toolbar.useListButton({ schemaType: listSchema });
|
|
179
|
-
const Icon = name === "bullet" ?
|
|
179
|
+
const Icon = name === "bullet" ? chunk3BGDYKTD_cjs.LuList : chunk3BGDYKTD_cjs.LuListOrdered;
|
|
180
180
|
const isActive = snapshot.matches({ enabled: "active" }) || snapshot.matches({ disabled: "active" });
|
|
181
181
|
const isEnabled = snapshot.matches("enabled");
|
|
182
182
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -217,7 +217,7 @@ var AnnotationButton = ({
|
|
|
217
217
|
}),
|
|
218
218
|
title,
|
|
219
219
|
className: "p-1.5 rounded transition-colors disabled:opacity-30 hover:bg-[var(--kyro-surface-accent)] data-[state=on]:bg-[var(--kyro-primary)] data-[state=on]:text-[var(--kyro-sidebar-text-active)]",
|
|
220
|
-
children: name === "link" && /* @__PURE__ */ jsxRuntime.jsx(
|
|
220
|
+
children: name === "link" && /* @__PURE__ */ jsxRuntime.jsx(chunk3BGDYKTD_cjs.LuLink, { className: "w-4 h-4" })
|
|
221
221
|
}
|
|
222
222
|
);
|
|
223
223
|
};
|
|
@@ -291,7 +291,7 @@ var LinkDialog = () => {
|
|
|
291
291
|
type: "button",
|
|
292
292
|
onClick: () => popover.send({ type: "close" }),
|
|
293
293
|
className: "p-1 rounded hover:bg-[var(--kyro-surface-accent)]",
|
|
294
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
294
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(chunk3BGDYKTD_cjs.LuX, { className: "w-3.5 h-3.5 text-[var(--kyro-text-muted)]" })
|
|
295
295
|
}
|
|
296
296
|
)
|
|
297
297
|
] }),
|
|
@@ -324,7 +324,7 @@ var LinkDialog = () => {
|
|
|
324
324
|
onClick: handleRemove,
|
|
325
325
|
className: "w-full text-xs text-[var(--kyro-error)] hover:opacity-80 flex items-center justify-center gap-1 py-1",
|
|
326
326
|
children: [
|
|
327
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
327
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk3BGDYKTD_cjs.LuExternalLink, { className: "w-3 h-3" }),
|
|
328
328
|
"Remove link"
|
|
329
329
|
]
|
|
330
330
|
}
|
|
@@ -356,7 +356,7 @@ var StyleSelector = () => {
|
|
|
356
356
|
children: schema.styles?.map((s) => /* @__PURE__ */ jsxRuntime.jsx("option", { value: s.name, children: s.title }, s.name))
|
|
357
357
|
}
|
|
358
358
|
),
|
|
359
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
359
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk3BGDYKTD_cjs.LuChevronDown, { className: "w-3 h-3 absolute right-1.5 top-1/2 -translate-y-1/2 pointer-events-none text-[var(--kyro-text-muted)]" })
|
|
360
360
|
] });
|
|
361
361
|
};
|
|
362
362
|
var Toolbar = () => {
|
|
@@ -369,7 +369,7 @@ var Toolbar = () => {
|
|
|
369
369
|
onClick: () => historySend({ type: "history.undo" }),
|
|
370
370
|
title: "Undo",
|
|
371
371
|
className: "p-1.5 rounded transition-colors hover:bg-[var(--kyro-surface-accent)] disabled:opacity-30",
|
|
372
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
372
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(chunk3BGDYKTD_cjs.LuUndo, { className: "w-4 h-4 text-[var(--kyro-text-secondary)]" })
|
|
373
373
|
}
|
|
374
374
|
),
|
|
375
375
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -379,7 +379,7 @@ var Toolbar = () => {
|
|
|
379
379
|
onClick: () => historySend({ type: "history.redo" }),
|
|
380
380
|
title: "Redo",
|
|
381
381
|
className: "p-1.5 rounded transition-colors hover:bg-[var(--kyro-surface-accent)] disabled:opacity-30",
|
|
382
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
382
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(chunk3BGDYKTD_cjs.LuRedo, { className: "w-4 h-4 text-[var(--kyro-text-secondary)]" })
|
|
383
383
|
}
|
|
384
384
|
),
|
|
385
385
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-px h-5 bg-[var(--kyro-border)] mx-1" }),
|
|
@@ -465,4 +465,4 @@ var EditorClient = ({
|
|
|
465
465
|
|
|
466
466
|
exports.EditorClient = EditorClient;
|
|
467
467
|
//# sourceMappingURL=out.js.map
|
|
468
|
-
//# sourceMappingURL=EditorClient-
|
|
468
|
+
//# sourceMappingURL=EditorClient-Q23UXR37.cjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LuUndo, LuRedo, LuLink, LuX, LuExternalLink, LuChevronDown, LuList, LuListOrdered, LuBold, LuItalic, LuUnderline, LuStrikethrough, LuCode } from './chunk-
|
|
1
|
+
import { LuUndo, LuRedo, LuLink, LuX, LuExternalLink, LuChevronDown, LuList, LuListOrdered, LuBold, LuItalic, LuUnderline, LuStrikethrough, LuCode } from './chunk-EEFXLQVT.js';
|
|
2
2
|
import { useState, useRef, useEffect, useCallback } from 'react';
|
|
3
3
|
import { EditorProvider, PortableTextEditable, useEditor } from '@portabletext/editor';
|
|
4
4
|
import { defineSchema } from '@portabletext/schema';
|
|
@@ -463,4 +463,4 @@ var EditorClient = ({
|
|
|
463
463
|
|
|
464
464
|
export { EditorClient };
|
|
465
465
|
//# sourceMappingURL=out.js.map
|
|
466
|
-
//# sourceMappingURL=EditorClient-
|
|
466
|
+
//# sourceMappingURL=EditorClient-T5PASFNR.js.map
|
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var lu = require('react-icons/lu');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, 'LuActivity', {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return lu.LuActivity; }
|
|
10
|
+
});
|
|
11
|
+
Object.defineProperty(exports, 'LuAlignLeft', {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return lu.LuAlignLeft; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, 'LuArchive', {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return lu.LuArchive; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, 'LuArrowDown', {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return lu.LuArrowDown; }
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(exports, 'LuArrowRight', {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return lu.LuArrowRight; }
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, 'LuArrowUpRight', {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function () { return lu.LuArrowUpRight; }
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, 'LuBold', {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return lu.LuBold; }
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, 'LuBox', {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () { return lu.LuBox; }
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, 'LuCheck', {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function () { return lu.LuCheck; }
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, 'LuChevronDown', {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return lu.LuChevronDown; }
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, 'LuChevronRight', {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function () { return lu.LuChevronRight; }
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(exports, 'LuChevronUp', {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () { return lu.LuChevronUp; }
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(exports, 'LuCircleCheck', {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return lu.LuCircleCheck; }
|
|
58
|
+
});
|
|
59
|
+
Object.defineProperty(exports, 'LuCirclePlay', {
|
|
60
|
+
enumerable: true,
|
|
61
|
+
get: function () { return lu.LuCirclePlay; }
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(exports, 'LuClock', {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () { return lu.LuClock; }
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(exports, 'LuCode', {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function () { return lu.LuCode; }
|
|
70
|
+
});
|
|
71
|
+
Object.defineProperty(exports, 'LuCodeXml', {
|
|
72
|
+
enumerable: true,
|
|
73
|
+
get: function () { return lu.LuCodeXml; }
|
|
74
|
+
});
|
|
75
|
+
Object.defineProperty(exports, 'LuColumns3', {
|
|
76
|
+
enumerable: true,
|
|
77
|
+
get: function () { return lu.LuColumns3; }
|
|
78
|
+
});
|
|
79
|
+
Object.defineProperty(exports, 'LuCopy', {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
get: function () { return lu.LuCopy; }
|
|
82
|
+
});
|
|
83
|
+
Object.defineProperty(exports, 'LuCrop', {
|
|
84
|
+
enumerable: true,
|
|
85
|
+
get: function () { return lu.LuCrop; }
|
|
86
|
+
});
|
|
87
|
+
Object.defineProperty(exports, 'LuDatabase', {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () { return lu.LuDatabase; }
|
|
90
|
+
});
|
|
91
|
+
Object.defineProperty(exports, 'LuDownload', {
|
|
92
|
+
enumerable: true,
|
|
93
|
+
get: function () { return lu.LuDownload; }
|
|
94
|
+
});
|
|
95
|
+
Object.defineProperty(exports, 'LuEllipsisVertical', {
|
|
96
|
+
enumerable: true,
|
|
97
|
+
get: function () { return lu.LuEllipsisVertical; }
|
|
98
|
+
});
|
|
99
|
+
Object.defineProperty(exports, 'LuExternalLink', {
|
|
100
|
+
enumerable: true,
|
|
101
|
+
get: function () { return lu.LuExternalLink; }
|
|
102
|
+
});
|
|
103
|
+
Object.defineProperty(exports, 'LuEye', {
|
|
104
|
+
enumerable: true,
|
|
105
|
+
get: function () { return lu.LuEye; }
|
|
106
|
+
});
|
|
107
|
+
Object.defineProperty(exports, 'LuEyeOff', {
|
|
108
|
+
enumerable: true,
|
|
109
|
+
get: function () { return lu.LuEyeOff; }
|
|
110
|
+
});
|
|
111
|
+
Object.defineProperty(exports, 'LuFile', {
|
|
112
|
+
enumerable: true,
|
|
113
|
+
get: function () { return lu.LuFile; }
|
|
114
|
+
});
|
|
115
|
+
Object.defineProperty(exports, 'LuFile2', {
|
|
116
|
+
enumerable: true,
|
|
117
|
+
get: function () { return lu.LuFile; }
|
|
118
|
+
});
|
|
119
|
+
Object.defineProperty(exports, 'LuFileText', {
|
|
120
|
+
enumerable: true,
|
|
121
|
+
get: function () { return lu.LuFileText; }
|
|
122
|
+
});
|
|
123
|
+
Object.defineProperty(exports, 'LuFilm', {
|
|
124
|
+
enumerable: true,
|
|
125
|
+
get: function () { return lu.LuFilm; }
|
|
126
|
+
});
|
|
127
|
+
Object.defineProperty(exports, 'LuFolder', {
|
|
128
|
+
enumerable: true,
|
|
129
|
+
get: function () { return lu.LuFolder; }
|
|
130
|
+
});
|
|
131
|
+
Object.defineProperty(exports, 'LuFolderInput', {
|
|
132
|
+
enumerable: true,
|
|
133
|
+
get: function () { return lu.LuFolderInput; }
|
|
134
|
+
});
|
|
135
|
+
Object.defineProperty(exports, 'LuFolderPlus', {
|
|
136
|
+
enumerable: true,
|
|
137
|
+
get: function () { return lu.LuFolderPlus; }
|
|
138
|
+
});
|
|
139
|
+
Object.defineProperty(exports, 'LuGrid3X3', {
|
|
140
|
+
enumerable: true,
|
|
141
|
+
get: function () { return lu.LuGrid3X3; }
|
|
142
|
+
});
|
|
143
|
+
Object.defineProperty(exports, 'LuGripVertical', {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
get: function () { return lu.LuGripVertical; }
|
|
146
|
+
});
|
|
147
|
+
Object.defineProperty(exports, 'LuHeading1', {
|
|
148
|
+
enumerable: true,
|
|
149
|
+
get: function () { return lu.LuHeading1; }
|
|
150
|
+
});
|
|
151
|
+
Object.defineProperty(exports, 'LuHexagon', {
|
|
152
|
+
enumerable: true,
|
|
153
|
+
get: function () { return lu.LuHexagon; }
|
|
154
|
+
});
|
|
155
|
+
Object.defineProperty(exports, 'LuImage', {
|
|
156
|
+
enumerable: true,
|
|
157
|
+
get: function () { return lu.LuImage; }
|
|
158
|
+
});
|
|
159
|
+
Object.defineProperty(exports, 'LuInfo', {
|
|
160
|
+
enumerable: true,
|
|
161
|
+
get: function () { return lu.LuInfo; }
|
|
162
|
+
});
|
|
163
|
+
Object.defineProperty(exports, 'LuItalic', {
|
|
164
|
+
enumerable: true,
|
|
165
|
+
get: function () { return lu.LuItalic; }
|
|
166
|
+
});
|
|
167
|
+
Object.defineProperty(exports, 'LuKey', {
|
|
168
|
+
enumerable: true,
|
|
169
|
+
get: function () { return lu.LuKey; }
|
|
170
|
+
});
|
|
171
|
+
Object.defineProperty(exports, 'LuLayoutDashboard', {
|
|
172
|
+
enumerable: true,
|
|
173
|
+
get: function () { return lu.LuLayoutDashboard; }
|
|
174
|
+
});
|
|
175
|
+
Object.defineProperty(exports, 'LuLink', {
|
|
176
|
+
enumerable: true,
|
|
177
|
+
get: function () { return lu.LuLink; }
|
|
178
|
+
});
|
|
179
|
+
Object.defineProperty(exports, 'LuLink2', {
|
|
180
|
+
enumerable: true,
|
|
181
|
+
get: function () { return lu.LuLink2; }
|
|
182
|
+
});
|
|
183
|
+
Object.defineProperty(exports, 'LuList', {
|
|
184
|
+
enumerable: true,
|
|
185
|
+
get: function () { return lu.LuList; }
|
|
186
|
+
});
|
|
187
|
+
Object.defineProperty(exports, 'LuListOrdered', {
|
|
188
|
+
enumerable: true,
|
|
189
|
+
get: function () { return lu.LuListOrdered; }
|
|
190
|
+
});
|
|
191
|
+
Object.defineProperty(exports, 'LuLoaderCircle', {
|
|
192
|
+
enumerable: true,
|
|
193
|
+
get: function () { return lu.LuLoaderCircle; }
|
|
194
|
+
});
|
|
195
|
+
Object.defineProperty(exports, 'LuLock', {
|
|
196
|
+
enumerable: true,
|
|
197
|
+
get: function () { return lu.LuLock; }
|
|
198
|
+
});
|
|
199
|
+
Object.defineProperty(exports, 'LuLockOpen', {
|
|
200
|
+
enumerable: true,
|
|
201
|
+
get: function () { return lu.LuLockOpen; }
|
|
202
|
+
});
|
|
203
|
+
Object.defineProperty(exports, 'LuLogOut', {
|
|
204
|
+
enumerable: true,
|
|
205
|
+
get: function () { return lu.LuLogOut; }
|
|
206
|
+
});
|
|
207
|
+
Object.defineProperty(exports, 'LuMaximize2', {
|
|
208
|
+
enumerable: true,
|
|
209
|
+
get: function () { return lu.LuMaximize2; }
|
|
210
|
+
});
|
|
211
|
+
Object.defineProperty(exports, 'LuMinus', {
|
|
212
|
+
enumerable: true,
|
|
213
|
+
get: function () { return lu.LuMinus; }
|
|
214
|
+
});
|
|
215
|
+
Object.defineProperty(exports, 'LuMoon', {
|
|
216
|
+
enumerable: true,
|
|
217
|
+
get: function () { return lu.LuMoon; }
|
|
218
|
+
});
|
|
219
|
+
Object.defineProperty(exports, 'LuMousePointerClick', {
|
|
220
|
+
enumerable: true,
|
|
221
|
+
get: function () { return lu.LuMousePointerClick; }
|
|
222
|
+
});
|
|
223
|
+
Object.defineProperty(exports, 'LuMusic', {
|
|
224
|
+
enumerable: true,
|
|
225
|
+
get: function () { return lu.LuMusic; }
|
|
226
|
+
});
|
|
227
|
+
Object.defineProperty(exports, 'LuNetwork', {
|
|
228
|
+
enumerable: true,
|
|
229
|
+
get: function () { return lu.LuNetwork; }
|
|
230
|
+
});
|
|
231
|
+
Object.defineProperty(exports, 'LuPalette', {
|
|
232
|
+
enumerable: true,
|
|
233
|
+
get: function () { return lu.LuPalette; }
|
|
234
|
+
});
|
|
235
|
+
Object.defineProperty(exports, 'LuPause', {
|
|
236
|
+
enumerable: true,
|
|
237
|
+
get: function () { return lu.LuPause; }
|
|
238
|
+
});
|
|
239
|
+
Object.defineProperty(exports, 'LuPlay', {
|
|
240
|
+
enumerable: true,
|
|
241
|
+
get: function () { return lu.LuPlay; }
|
|
242
|
+
});
|
|
243
|
+
Object.defineProperty(exports, 'LuPlus', {
|
|
244
|
+
enumerable: true,
|
|
245
|
+
get: function () { return lu.LuPlus; }
|
|
246
|
+
});
|
|
247
|
+
Object.defineProperty(exports, 'LuRedo', {
|
|
248
|
+
enumerable: true,
|
|
249
|
+
get: function () { return lu.LuRedo; }
|
|
250
|
+
});
|
|
251
|
+
Object.defineProperty(exports, 'LuRefreshCcw', {
|
|
252
|
+
enumerable: true,
|
|
253
|
+
get: function () { return lu.LuRefreshCcw; }
|
|
254
|
+
});
|
|
255
|
+
Object.defineProperty(exports, 'LuRefreshCw', {
|
|
256
|
+
enumerable: true,
|
|
257
|
+
get: function () { return lu.LuRefreshCw; }
|
|
258
|
+
});
|
|
259
|
+
Object.defineProperty(exports, 'LuSave', {
|
|
260
|
+
enumerable: true,
|
|
261
|
+
get: function () { return lu.LuSave; }
|
|
262
|
+
});
|
|
263
|
+
Object.defineProperty(exports, 'LuSearch', {
|
|
264
|
+
enumerable: true,
|
|
265
|
+
get: function () { return lu.LuSearch; }
|
|
266
|
+
});
|
|
267
|
+
Object.defineProperty(exports, 'LuSend', {
|
|
268
|
+
enumerable: true,
|
|
269
|
+
get: function () { return lu.LuSend; }
|
|
270
|
+
});
|
|
271
|
+
Object.defineProperty(exports, 'LuSettings', {
|
|
272
|
+
enumerable: true,
|
|
273
|
+
get: function () { return lu.LuSettings; }
|
|
274
|
+
});
|
|
275
|
+
Object.defineProperty(exports, 'LuShield', {
|
|
276
|
+
enumerable: true,
|
|
277
|
+
get: function () { return lu.LuShield; }
|
|
278
|
+
});
|
|
279
|
+
Object.defineProperty(exports, 'LuShieldAlert', {
|
|
280
|
+
enumerable: true,
|
|
281
|
+
get: function () { return lu.LuShieldAlert; }
|
|
282
|
+
});
|
|
283
|
+
Object.defineProperty(exports, 'LuSparkles', {
|
|
284
|
+
enumerable: true,
|
|
285
|
+
get: function () { return lu.LuSparkles; }
|
|
286
|
+
});
|
|
287
|
+
Object.defineProperty(exports, 'LuStar', {
|
|
288
|
+
enumerable: true,
|
|
289
|
+
get: function () { return lu.LuStar; }
|
|
290
|
+
});
|
|
291
|
+
Object.defineProperty(exports, 'LuStrikethrough', {
|
|
292
|
+
enumerable: true,
|
|
293
|
+
get: function () { return lu.LuStrikethrough; }
|
|
294
|
+
});
|
|
295
|
+
Object.defineProperty(exports, 'LuSun', {
|
|
296
|
+
enumerable: true,
|
|
297
|
+
get: function () { return lu.LuSun; }
|
|
298
|
+
});
|
|
299
|
+
Object.defineProperty(exports, 'LuTag', {
|
|
300
|
+
enumerable: true,
|
|
301
|
+
get: function () { return lu.LuTag; }
|
|
302
|
+
});
|
|
303
|
+
Object.defineProperty(exports, 'LuTerminal', {
|
|
304
|
+
enumerable: true,
|
|
305
|
+
get: function () { return lu.LuTerminal; }
|
|
306
|
+
});
|
|
307
|
+
Object.defineProperty(exports, 'LuTrash2', {
|
|
308
|
+
enumerable: true,
|
|
309
|
+
get: function () { return lu.LuTrash2; }
|
|
310
|
+
});
|
|
311
|
+
Object.defineProperty(exports, 'LuTriangleAlert', {
|
|
312
|
+
enumerable: true,
|
|
313
|
+
get: function () { return lu.LuTriangleAlert; }
|
|
314
|
+
});
|
|
315
|
+
Object.defineProperty(exports, 'LuUnderline', {
|
|
316
|
+
enumerable: true,
|
|
317
|
+
get: function () { return lu.LuUnderline; }
|
|
318
|
+
});
|
|
319
|
+
Object.defineProperty(exports, 'LuUndo', {
|
|
320
|
+
enumerable: true,
|
|
321
|
+
get: function () { return lu.LuUndo; }
|
|
322
|
+
});
|
|
323
|
+
Object.defineProperty(exports, 'LuUserPlus', {
|
|
324
|
+
enumerable: true,
|
|
325
|
+
get: function () { return lu.LuUserPlus; }
|
|
326
|
+
});
|
|
327
|
+
Object.defineProperty(exports, 'LuUsers', {
|
|
328
|
+
enumerable: true,
|
|
329
|
+
get: function () { return lu.LuUsers; }
|
|
330
|
+
});
|
|
331
|
+
Object.defineProperty(exports, 'LuVideo', {
|
|
332
|
+
enumerable: true,
|
|
333
|
+
get: function () { return lu.LuVideo; }
|
|
334
|
+
});
|
|
335
|
+
Object.defineProperty(exports, 'LuWebhook', {
|
|
336
|
+
enumerable: true,
|
|
337
|
+
get: function () { return lu.LuWebhook; }
|
|
338
|
+
});
|
|
339
|
+
Object.defineProperty(exports, 'LuX', {
|
|
340
|
+
enumerable: true,
|
|
341
|
+
get: function () { return lu.LuX; }
|
|
342
|
+
});
|
|
343
|
+
Object.defineProperty(exports, 'LuZap', {
|
|
344
|
+
enumerable: true,
|
|
345
|
+
get: function () { return lu.LuZap; }
|
|
346
|
+
});
|
|
347
|
+
//# sourceMappingURL=out.js.map
|
|
348
|
+
//# sourceMappingURL=chunk-3BGDYKTD.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/ui/icons.tsx"],"names":["LuPencil","LuGrid3X3","LuActivity","LuAlignLeft","LuArchive","LuArrowDown","LuArrowRight","LuArrowUpRight","LuBlocks","LuBox","LuCalendar","LuCheck","LuChevronDown","LuChevronLeft","LuChevronRight","LuChevronUp","LuClock","LuCode","LuColumns3","LuCopy","LuCrop","LuDownload","LuExternalLink","LuEye","LuEyeOff","LuFile","LuGlobe","LuFilm","LuFilter","LuFolder","LuFolderInput","LuFolderPlus","LuGripVertical","LuHeading1","LuImage","LuInfo","LuKey","LuLayoutDashboard","LuLink","LuLink2","LuList","LuListOrdered","LuLock","LuMail","LuMaximize2","LuMenu","LuMinus","LuMonitor","LuMousePointerClick","LuMusic","LuPalette","LuPause","LuPlay","LuPlus","LuRefreshCcw","LuRefreshCw","LuSave","LuSearch","LuSend","LuSettings","LuShield","LuSparkles","LuStar","LuTag","LuTerminal","LuToggleLeft","LuToggleRight","LuTrash2","LuTrendingUp","LuType","LuUser","LuUserPlus","LuUsers","LuVideo","LuWebhook","LuX","LuZap","LuCircleCheck","LuHouse","LuLayoutPanelTop","LuLoaderCircle","LuLockOpen","LuCirclePlay","LuTriangleAlert","LuCodeXml","LuCloudDownload","LuEllipsisVertical","LuShieldCheck","LuShieldAlert","LuMoon","LuSun","LuLogOut","LuDatabase","LuHexagon","LuNetwork","LuBook","LuBold","LuItalic","LuUnderline","LuStrikethrough","LuUndo","LuRedo","LuDot"],"mappings":"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","sourcesContent":["// Re-exported from react-icons/lu (Lucide icons via React Icons, ISC license)\n// Allows mixing packs or swapping individual icons without touching consumers.\n\nexport { LuActivity as IconActivity } from \"react-icons/lu\";\nexport { LuTriangleAlert as IconAlertTriangle } from \"react-icons/lu\";\nexport { LuAlignLeft as IconAlignLeft } from \"react-icons/lu\";\nexport { LuArchive as IconArchive } from \"react-icons/lu\";\nexport { LuArrowDown as IconArrowDown } from \"react-icons/lu\";\nexport { LuArrowRight as IconArrowRight } from \"react-icons/lu\";\nexport { LuArrowUpRight as IconArrowUpRight } from \"react-icons/lu\";\nexport { LuBlocks as IconBlocks } from \"react-icons/lu\";\nexport { LuBold as IconBold } from \"react-icons/lu\";\nexport { LuBook as IconBook } from \"react-icons/lu\";\nexport { LuBox as IconBox } from \"react-icons/lu\";\nexport { LuCircleCheck as IconCheckCircle2 } from \"react-icons/lu\";\nexport { LuCheck as IconCheck } from \"react-icons/lu\";\nexport { LuChevronDown as IconChevronDown } from \"react-icons/lu\";\nexport { LuChevronLeft as IconChevronLeft } from \"react-icons/lu\";\nexport { LuChevronRight as IconChevronRight } from \"react-icons/lu\";\nexport { LuChevronUp as IconChevronUp } from \"react-icons/lu\";\nexport { LuClock as IconClock } from \"react-icons/lu\";\nexport { LuCode as IconCode } from \"react-icons/lu\";\nexport { LuCodeXml as IconCode2 } from \"react-icons/lu\";\nexport { LuColumns3 as IconColumns3 } from \"react-icons/lu\";\nexport { LuCopy as IconCopy } from \"react-icons/lu\";\nexport { LuCrop as IconCrop } from \"react-icons/lu\";\nexport { LuDatabase as IconDatabase } from \"react-icons/lu\";\nexport { LuDownload as IconDownload } from \"react-icons/lu\";\nexport { LuCloudDownload as IconDownloadCloud } from \"react-icons/lu\";\nexport { LuExternalLink as IconExternalLink } from \"react-icons/lu\";\nexport { LuEye as IconEye } from \"react-icons/lu\";\nexport { LuEyeOff as IconEyeOff } from \"react-icons/lu\";\nexport { LuFile as IconFile } from \"react-icons/lu\";\nexport { LuGlobe as IconGlobe } from \"react-icons/lu\";\nexport { LuFilm as IconFilm } from \"react-icons/lu\";\nexport { LuFilter as IconFilter } from \"react-icons/lu\";\nexport { LuFolder as IconFolder } from \"react-icons/lu\";\nexport { LuFolderInput as IconFolderInput } from \"react-icons/lu\";\nexport { LuFolderPlus as IconFolderPlus } from \"react-icons/lu\";\nexport { LuGrid3X3 as IconGrid } from \"react-icons/lu\";\nexport { LuGripVertical as IconGripVertical } from \"react-icons/lu\";\nexport { LuHeading1 as IconHeading1 } from \"react-icons/lu\";\nexport { LuHexagon as IconHexagon } from \"react-icons/lu\";\nexport { LuHouse as IconHome } from \"react-icons/lu\";\nexport { LuImage as IconImage } from \"react-icons/lu\";\nexport { LuInfo as IconInfo } from \"react-icons/lu\";\nexport { LuItalic as IconItalic } from \"react-icons/lu\";\nexport { LuKey as IconKey } from \"react-icons/lu\";\nexport { LuLayoutPanelTop as IconLayout } from \"react-icons/lu\";\nexport { LuLayoutDashboard as IconLayoutDashboard } from \"react-icons/lu\";\nexport { LuLink as IconLink } from \"react-icons/lu\";\nexport { LuLink2 as IconLink2 } from \"react-icons/lu\";\nexport { LuList as IconList } from \"react-icons/lu\";\nexport { LuListOrdered as IconListOrdered } from \"react-icons/lu\";\nexport { LuLoaderCircle as IconLoader2 } from \"react-icons/lu\";\nexport { LuLock as IconLock } from \"react-icons/lu\";\nexport { LuLogOut as IconLogOut } from \"react-icons/lu\";\nexport { LuMail as IconMail } from \"react-icons/lu\";\nexport { LuMaximize2 as IconMaximize2 } from \"react-icons/lu\";\nexport { LuMenu as IconMenu } from \"react-icons/lu\";\nexport { LuMinus as IconMinus } from \"react-icons/lu\";\nexport { LuMonitor as IconMonitor } from \"react-icons/lu\";\nexport { LuMoon as IconMoon } from \"react-icons/lu\";\nexport { LuEllipsisVertical as IconMoreVertical } from \"react-icons/lu\";\nexport { LuMousePointerClick as IconMousePointerClick } from \"react-icons/lu\";\nexport { LuMusic as IconMusic } from \"react-icons/lu\";\nexport { LuNetwork as IconNetwork } from \"react-icons/lu\";\nexport { LuPalette as IconPalette } from \"react-icons/lu\";\nexport { LuPause as IconPause } from \"react-icons/lu\";\nexport { LuPencil as IconPencil } from \"react-icons/lu\";\nexport { LuPlay as IconPlay } from \"react-icons/lu\";\nexport { LuCirclePlay as IconPlayCircle } from \"react-icons/lu\";\nexport { LuPlus as IconPlus } from \"react-icons/lu\";\nexport { LuRedo as IconRedo } from \"react-icons/lu\";\nexport { LuRefreshCcw as IconRefreshCcw } from \"react-icons/lu\";\nexport { LuRefreshCw as IconRefreshCw } from \"react-icons/lu\";\nexport { LuSave as IconSave } from \"react-icons/lu\";\nexport { LuSearch as IconSearch } from \"react-icons/lu\";\nexport { LuSend as IconSend } from \"react-icons/lu\";\nexport { LuSettings as IconSettings } from \"react-icons/lu\";\nexport { LuShield as IconShield } from \"react-icons/lu\";\nexport { LuShieldCheck as IconShieldCheck } from \"react-icons/lu\";\nexport { LuSparkles as IconSparkles } from \"react-icons/lu\";\nexport { LuStar as IconStar } from \"react-icons/lu\";\nexport { LuStrikethrough as IconStrikethrough } from \"react-icons/lu\";\nexport { LuSun as IconSun } from \"react-icons/lu\";\nexport { LuTag as IconTag } from \"react-icons/lu\";\nexport { LuTerminal as IconTerminal } from \"react-icons/lu\";\nexport { LuToggleLeft as IconToggleLeft } from \"react-icons/lu\";\nexport { LuToggleRight as IconToggleRight } from \"react-icons/lu\";\nexport { LuTrash2 as IconTrash2 } from \"react-icons/lu\";\nexport { LuTrendingUp as IconTrendingUp } from \"react-icons/lu\";\nexport { LuType as IconType } from \"react-icons/lu\";\nexport { LuUnderline as IconUnderline } from \"react-icons/lu\";\nexport { LuUndo as IconUndo } from \"react-icons/lu\";\nexport { LuLockOpen as IconUnlock } from \"react-icons/lu\";\nexport { LuUser as IconUser } from \"react-icons/lu\";\nexport { LuUserPlus as IconUserPlus } from \"react-icons/lu\";\nexport { LuUsers as IconUsers } from \"react-icons/lu\";\nexport { LuVideo as IconVideo } from \"react-icons/lu\";\nexport { LuWebhook as IconWebhook } from \"react-icons/lu\";\nexport { LuX as IconX } from \"react-icons/lu\";\nexport { LuZap as IconZap } from \"react-icons/lu\";\nexport { LuDot as IconDot } from \"react-icons/lu\";\nexport { LuShieldAlert as IconShieldAlert } from \"react-icons/lu\";\nexport { LuPencil as IconEdit2 } from \"react-icons/lu\";\nexport { LuCalendar as IconCalendar } from \"react-icons/lu\";\nexport { LuGrid3X3 as IconGrid3X3 } from \"react-icons/lu\";\n\n// Direct re-exports for files that still use original lucide-react names\nexport { LuActivity as Activity, LuAlignLeft as AlignLeft, LuArchive as Archive, LuArrowDown as ArrowDown, LuArrowRight as ArrowRight, LuArrowUpRight as ArrowUpRight, LuBlocks as Blocks, LuBox as Box, LuCalendar as Calendar, LuCheck as Check, LuChevronDown as ChevronDown, LuChevronLeft as ChevronLeft, LuChevronRight as ChevronRight, LuChevronUp as ChevronUp, LuClock as Clock, LuCode as Code, LuColumns3 as Columns3, LuCopy as Copy, LuCrop as Crop, LuDownload as Download, LuExternalLink as ExternalLink, LuEye as Eye, LuEyeOff as EyeOff, LuFile as File, LuFile as FileIcon, LuFileText as FileText, LuGlobe as Globe, LuFilm as Film, LuFilter as Filter, LuFolder as Folder, LuFolderInput as FolderInput, LuFolderPlus as FolderPlus, LuGripVertical as GripVertical, LuHeading1 as Heading1, LuImage as Image, LuInfo as Info, LuKey as Key, LuLayoutDashboard as LayoutDashboard, LuLink as Link, LuLink2 as Link2, LuList as List, LuListOrdered as ListOrdered, LuLock as Lock, LuMail as Mail, LuMaximize2 as Maximize2, LuMenu as Menu, LuMinus as Minus, LuMonitor as Monitor, LuMousePointerClick as MousePointerClick, LuMusic as Music, LuPalette as Palette, LuPause as Pause, LuPlay as Play, LuPlus as Plus, LuRefreshCcw as RefreshCcw, LuRefreshCw as RefreshCw, LuSave as Save, LuSearch as Search, LuSend as Send, LuSettings as Settings, LuShield as Shield, LuSparkles as Sparkles, LuStar as Star, LuTag as Tag, LuTerminal as Terminal, LuToggleLeft as ToggleLeft, LuToggleRight as ToggleRight, LuTrash2 as Trash2, LuTrendingUp as TrendingUp, LuType as Type, LuUser as User, LuUserPlus as UserPlus, LuUsers as Users, LuVideo as Video, LuWebhook as Webhook, LuX as X, LuZap as Zap, LuCircleHelp as HelpCircle } from \"react-icons/lu\";\nexport { LuCircleCheck as CheckCircle2, LuGrid3X3 as Grid, LuHouse as Home, LuLayoutPanelTop as Layout, LuLoaderCircle as Loader2, LuLockOpen as Unlock, LuCirclePlay as PlayCircle, LuTriangleAlert as AlertTriangle, LuCodeXml as Code2, LuCloudDownload as DownloadCloud, LuEllipsisVertical as MoreVertical, LuShieldCheck as ShieldCheck, LuShieldAlert as ShieldAlert, LuPencil as Edit2, LuMoon as Moon, LuSun as Sun, LuLogOut as LogOut, LuDatabase as Database, LuHexagon as Hexagon, LuNetwork as Network, LuBook as Book, LuBold as Bold, LuItalic as Italic, LuUnderline as Underline, LuStrikethrough as Strikethrough, LuUndo as Undo, LuRedo as Redo, LuDot as Dot, LuGrid3X3, LuLaptop as Laptop, LuSmartphone as Smartphone } from \"react-icons/lu\";\n"]}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { LuActivity, LuAlignLeft, LuArchive, LuArrowDown, LuArrowRight, LuArrowUpRight, LuBold, LuBox, LuCheck, LuChevronDown, LuChevronRight, LuChevronUp, LuCircleCheck, LuCirclePlay, LuClock, LuCode, LuCodeXml, LuColumns3, LuCopy, LuCrop, LuDatabase, LuDownload, LuEllipsisVertical, LuExternalLink, LuEye, LuEyeOff, LuFile, LuFile as LuFile2, LuFileText, LuFilm, LuFolder, LuFolderInput, LuFolderPlus, LuGrid3X3, LuGripVertical, LuHeading1, LuHexagon, LuImage, LuInfo, LuItalic, LuKey, LuLayoutDashboard, LuLink, LuLink2, LuList, LuListOrdered, LuLoaderCircle, LuLock, LuLockOpen, LuLogOut, LuMaximize2, LuMinus, LuMoon, LuMousePointerClick, LuMusic, LuNetwork, LuPalette, LuPause, LuPlay, LuPlus, LuRedo, LuRefreshCcw, LuRefreshCw, LuSave, LuSearch, LuSend, LuSettings, LuShield, LuShieldAlert, LuSparkles, LuStar, LuStrikethrough, LuSun, LuTag, LuTerminal, LuTrash2, LuTriangleAlert, LuUnderline, LuUndo, LuUserPlus, LuUsers, LuVideo, LuWebhook, LuX, LuZap } from 'react-icons/lu';
|
|
2
|
+
//# sourceMappingURL=out.js.map
|
|
3
|
+
//# sourceMappingURL=chunk-EEFXLQVT.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/ui/icons.tsx"],"names":["LuPencil","LuGrid3X3","LuActivity","LuAlignLeft","LuArchive","LuArrowDown","LuArrowRight","LuArrowUpRight","LuBlocks","LuBox","LuCalendar","LuCheck","LuChevronDown","LuChevronLeft","LuChevronRight","LuChevronUp","LuClock","LuCode","LuColumns3","LuCopy","LuCrop","LuDownload","LuExternalLink","LuEye","LuEyeOff","LuFile","LuGlobe","LuFilm","LuFilter","LuFolder","LuFolderInput","LuFolderPlus","LuGripVertical","LuHeading1","LuImage","LuInfo","LuKey","LuLayoutDashboard","LuLink","LuLink2","LuList","LuListOrdered","LuLock","LuMail","LuMaximize2","LuMenu","LuMinus","LuMonitor","LuMousePointerClick","LuMusic","LuPalette","LuPause","LuPlay","LuPlus","LuRefreshCcw","LuRefreshCw","LuSave","LuSearch","LuSend","LuSettings","LuShield","LuSparkles","LuStar","LuTag","LuTerminal","LuToggleLeft","LuToggleRight","LuTrash2","LuTrendingUp","LuType","LuUser","LuUserPlus","LuUsers","LuVideo","LuWebhook","LuX","LuZap","LuCircleCheck","LuHouse","LuLayoutPanelTop","LuLoaderCircle","LuLockOpen","LuCirclePlay","LuTriangleAlert","LuCodeXml","LuCloudDownload","LuEllipsisVertical","LuShieldCheck","LuShieldAlert","LuMoon","LuSun","LuLogOut","LuDatabase","LuHexagon","LuNetwork","LuBook","LuBold","LuItalic","LuUnderline","LuStrikethrough","LuUndo","LuRedo","LuDot"],"mappings":"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","sourcesContent":["// Re-exported from react-icons/lu (Lucide icons via React Icons, ISC license)\n// Allows mixing packs or swapping individual icons without touching consumers.\n\nexport { LuActivity as IconActivity } from \"react-icons/lu\";\nexport { LuTriangleAlert as IconAlertTriangle } from \"react-icons/lu\";\nexport { LuAlignLeft as IconAlignLeft } from \"react-icons/lu\";\nexport { LuArchive as IconArchive } from \"react-icons/lu\";\nexport { LuArrowDown as IconArrowDown } from \"react-icons/lu\";\nexport { LuArrowRight as IconArrowRight } from \"react-icons/lu\";\nexport { LuArrowUpRight as IconArrowUpRight } from \"react-icons/lu\";\nexport { LuBlocks as IconBlocks } from \"react-icons/lu\";\nexport { LuBold as IconBold } from \"react-icons/lu\";\nexport { LuBook as IconBook } from \"react-icons/lu\";\nexport { LuBox as IconBox } from \"react-icons/lu\";\nexport { LuCircleCheck as IconCheckCircle2 } from \"react-icons/lu\";\nexport { LuCheck as IconCheck } from \"react-icons/lu\";\nexport { LuChevronDown as IconChevronDown } from \"react-icons/lu\";\nexport { LuChevronLeft as IconChevronLeft } from \"react-icons/lu\";\nexport { LuChevronRight as IconChevronRight } from \"react-icons/lu\";\nexport { LuChevronUp as IconChevronUp } from \"react-icons/lu\";\nexport { LuClock as IconClock } from \"react-icons/lu\";\nexport { LuCode as IconCode } from \"react-icons/lu\";\nexport { LuCodeXml as IconCode2 } from \"react-icons/lu\";\nexport { LuColumns3 as IconColumns3 } from \"react-icons/lu\";\nexport { LuCopy as IconCopy } from \"react-icons/lu\";\nexport { LuCrop as IconCrop } from \"react-icons/lu\";\nexport { LuDatabase as IconDatabase } from \"react-icons/lu\";\nexport { LuDownload as IconDownload } from \"react-icons/lu\";\nexport { LuCloudDownload as IconDownloadCloud } from \"react-icons/lu\";\nexport { LuExternalLink as IconExternalLink } from \"react-icons/lu\";\nexport { LuEye as IconEye } from \"react-icons/lu\";\nexport { LuEyeOff as IconEyeOff } from \"react-icons/lu\";\nexport { LuFile as IconFile } from \"react-icons/lu\";\nexport { LuGlobe as IconGlobe } from \"react-icons/lu\";\nexport { LuFilm as IconFilm } from \"react-icons/lu\";\nexport { LuFilter as IconFilter } from \"react-icons/lu\";\nexport { LuFolder as IconFolder } from \"react-icons/lu\";\nexport { LuFolderInput as IconFolderInput } from \"react-icons/lu\";\nexport { LuFolderPlus as IconFolderPlus } from \"react-icons/lu\";\nexport { LuGrid3X3 as IconGrid } from \"react-icons/lu\";\nexport { LuGripVertical as IconGripVertical } from \"react-icons/lu\";\nexport { LuHeading1 as IconHeading1 } from \"react-icons/lu\";\nexport { LuHexagon as IconHexagon } from \"react-icons/lu\";\nexport { LuHouse as IconHome } from \"react-icons/lu\";\nexport { LuImage as IconImage } from \"react-icons/lu\";\nexport { LuInfo as IconInfo } from \"react-icons/lu\";\nexport { LuItalic as IconItalic } from \"react-icons/lu\";\nexport { LuKey as IconKey } from \"react-icons/lu\";\nexport { LuLayoutPanelTop as IconLayout } from \"react-icons/lu\";\nexport { LuLayoutDashboard as IconLayoutDashboard } from \"react-icons/lu\";\nexport { LuLink as IconLink } from \"react-icons/lu\";\nexport { LuLink2 as IconLink2 } from \"react-icons/lu\";\nexport { LuList as IconList } from \"react-icons/lu\";\nexport { LuListOrdered as IconListOrdered } from \"react-icons/lu\";\nexport { LuLoaderCircle as IconLoader2 } from \"react-icons/lu\";\nexport { LuLock as IconLock } from \"react-icons/lu\";\nexport { LuLogOut as IconLogOut } from \"react-icons/lu\";\nexport { LuMail as IconMail } from \"react-icons/lu\";\nexport { LuMaximize2 as IconMaximize2 } from \"react-icons/lu\";\nexport { LuMenu as IconMenu } from \"react-icons/lu\";\nexport { LuMinus as IconMinus } from \"react-icons/lu\";\nexport { LuMonitor as IconMonitor } from \"react-icons/lu\";\nexport { LuMoon as IconMoon } from \"react-icons/lu\";\nexport { LuEllipsisVertical as IconMoreVertical } from \"react-icons/lu\";\nexport { LuMousePointerClick as IconMousePointerClick } from \"react-icons/lu\";\nexport { LuMusic as IconMusic } from \"react-icons/lu\";\nexport { LuNetwork as IconNetwork } from \"react-icons/lu\";\nexport { LuPalette as IconPalette } from \"react-icons/lu\";\nexport { LuPause as IconPause } from \"react-icons/lu\";\nexport { LuPencil as IconPencil } from \"react-icons/lu\";\nexport { LuPlay as IconPlay } from \"react-icons/lu\";\nexport { LuCirclePlay as IconPlayCircle } from \"react-icons/lu\";\nexport { LuPlus as IconPlus } from \"react-icons/lu\";\nexport { LuRedo as IconRedo } from \"react-icons/lu\";\nexport { LuRefreshCcw as IconRefreshCcw } from \"react-icons/lu\";\nexport { LuRefreshCw as IconRefreshCw } from \"react-icons/lu\";\nexport { LuSave as IconSave } from \"react-icons/lu\";\nexport { LuSearch as IconSearch } from \"react-icons/lu\";\nexport { LuSend as IconSend } from \"react-icons/lu\";\nexport { LuSettings as IconSettings } from \"react-icons/lu\";\nexport { LuShield as IconShield } from \"react-icons/lu\";\nexport { LuShieldCheck as IconShieldCheck } from \"react-icons/lu\";\nexport { LuSparkles as IconSparkles } from \"react-icons/lu\";\nexport { LuStar as IconStar } from \"react-icons/lu\";\nexport { LuStrikethrough as IconStrikethrough } from \"react-icons/lu\";\nexport { LuSun as IconSun } from \"react-icons/lu\";\nexport { LuTag as IconTag } from \"react-icons/lu\";\nexport { LuTerminal as IconTerminal } from \"react-icons/lu\";\nexport { LuToggleLeft as IconToggleLeft } from \"react-icons/lu\";\nexport { LuToggleRight as IconToggleRight } from \"react-icons/lu\";\nexport { LuTrash2 as IconTrash2 } from \"react-icons/lu\";\nexport { LuTrendingUp as IconTrendingUp } from \"react-icons/lu\";\nexport { LuType as IconType } from \"react-icons/lu\";\nexport { LuUnderline as IconUnderline } from \"react-icons/lu\";\nexport { LuUndo as IconUndo } from \"react-icons/lu\";\nexport { LuLockOpen as IconUnlock } from \"react-icons/lu\";\nexport { LuUser as IconUser } from \"react-icons/lu\";\nexport { LuUserPlus as IconUserPlus } from \"react-icons/lu\";\nexport { LuUsers as IconUsers } from \"react-icons/lu\";\nexport { LuVideo as IconVideo } from \"react-icons/lu\";\nexport { LuWebhook as IconWebhook } from \"react-icons/lu\";\nexport { LuX as IconX } from \"react-icons/lu\";\nexport { LuZap as IconZap } from \"react-icons/lu\";\nexport { LuDot as IconDot } from \"react-icons/lu\";\nexport { LuShieldAlert as IconShieldAlert } from \"react-icons/lu\";\nexport { LuPencil as IconEdit2 } from \"react-icons/lu\";\nexport { LuCalendar as IconCalendar } from \"react-icons/lu\";\nexport { LuGrid3X3 as IconGrid3X3 } from \"react-icons/lu\";\n\n// Direct re-exports for files that still use original lucide-react names\nexport { LuActivity as Activity, LuAlignLeft as AlignLeft, LuArchive as Archive, LuArrowDown as ArrowDown, LuArrowRight as ArrowRight, LuArrowUpRight as ArrowUpRight, LuBlocks as Blocks, LuBox as Box, LuCalendar as Calendar, LuCheck as Check, LuChevronDown as ChevronDown, LuChevronLeft as ChevronLeft, LuChevronRight as ChevronRight, LuChevronUp as ChevronUp, LuClock as Clock, LuCode as Code, LuColumns3 as Columns3, LuCopy as Copy, LuCrop as Crop, LuDownload as Download, LuExternalLink as ExternalLink, LuEye as Eye, LuEyeOff as EyeOff, LuFile as File, LuFile as FileIcon, LuFileText as FileText, LuGlobe as Globe, LuFilm as Film, LuFilter as Filter, LuFolder as Folder, LuFolderInput as FolderInput, LuFolderPlus as FolderPlus, LuGripVertical as GripVertical, LuHeading1 as Heading1, LuImage as Image, LuInfo as Info, LuKey as Key, LuLayoutDashboard as LayoutDashboard, LuLink as Link, LuLink2 as Link2, LuList as List, LuListOrdered as ListOrdered, LuLock as Lock, LuMail as Mail, LuMaximize2 as Maximize2, LuMenu as Menu, LuMinus as Minus, LuMonitor as Monitor, LuMousePointerClick as MousePointerClick, LuMusic as Music, LuPalette as Palette, LuPause as Pause, LuPlay as Play, LuPlus as Plus, LuRefreshCcw as RefreshCcw, LuRefreshCw as RefreshCw, LuSave as Save, LuSearch as Search, LuSend as Send, LuSettings as Settings, LuShield as Shield, LuSparkles as Sparkles, LuStar as Star, LuTag as Tag, LuTerminal as Terminal, LuToggleLeft as ToggleLeft, LuToggleRight as ToggleRight, LuTrash2 as Trash2, LuTrendingUp as TrendingUp, LuType as Type, LuUser as User, LuUserPlus as UserPlus, LuUsers as Users, LuVideo as Video, LuWebhook as Webhook, LuX as X, LuZap as Zap, LuCircleHelp as HelpCircle } from \"react-icons/lu\";\nexport { LuCircleCheck as CheckCircle2, LuGrid3X3 as Grid, LuHouse as Home, LuLayoutPanelTop as Layout, LuLoaderCircle as Loader2, LuLockOpen as Unlock, LuCirclePlay as PlayCircle, LuTriangleAlert as AlertTriangle, LuCodeXml as Code2, LuCloudDownload as DownloadCloud, LuEllipsisVertical as MoreVertical, LuShieldCheck as ShieldCheck, LuShieldAlert as ShieldAlert, LuPencil as Edit2, LuMoon as Moon, LuSun as Sun, LuLogOut as LogOut, LuDatabase as Database, LuHexagon as Hexagon, LuNetwork as Network, LuBook as Book, LuBold as Bold, LuItalic as Italic, LuUnderline as Underline, LuStrikethrough as Strikethrough, LuUndo as Undo, LuRedo as Redo, LuDot as Dot, LuGrid3X3, LuLaptop as Laptop, LuSmartphone as Smartphone } from \"react-icons/lu\";\n"]}
|