@questpie/admin 3.2.4 → 3.2.5
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/client/blocks/block-renderer.d.mts +2 -2
- package/dist/client/blocks/block-renderer.mjs +164 -339
- package/dist/client/components/actions/action-button.mjs +9 -9
- package/dist/client/components/actions/action-dialog.mjs +195 -493
- package/dist/client/components/actions/confirmation-dialog.mjs +44 -159
- package/dist/client/components/actions/header-actions.mjs +73 -165
- package/dist/client/components/admin-link.mjs +40 -126
- package/dist/client/components/auth/auth-loading.mjs +9 -44
- package/dist/client/components/blocks/block-canvas.mjs +31 -95
- package/dist/client/components/blocks/block-editor-context.mjs +13 -57
- package/dist/client/components/blocks/block-editor-layout.mjs +72 -166
- package/dist/client/components/blocks/block-editor-provider.mjs +184 -245
- package/dist/client/components/blocks/block-fields-renderer.mjs +54 -229
- package/dist/client/components/blocks/block-insert-button.mjs +49 -165
- package/dist/client/components/blocks/block-item-menu.mjs +102 -301
- package/dist/client/components/blocks/block-item.mjs +136 -370
- package/dist/client/components/blocks/block-library-sidebar.mjs +103 -230
- package/dist/client/components/blocks/block-tree.mjs +12 -68
- package/dist/client/components/blocks/block-type-icon.mjs +14 -56
- package/dist/client/components/brand-logo.mjs +35 -149
- package/dist/client/components/component-renderer.mjs +42 -118
- package/dist/client/components/error-boundary.mjs +14 -58
- package/dist/client/components/fields/array-field.mjs +209 -521
- package/dist/client/components/fields/asset-preview-field.mjs +41 -141
- package/dist/client/components/fields/blocks-field/blocks-field.mjs +60 -156
- package/dist/client/components/fields/boolean-field.mjs +29 -59
- package/dist/client/components/fields/date-field.mjs +7 -37
- package/dist/client/components/fields/datetime-field.mjs +7 -38
- package/dist/client/components/fields/email-field.mjs +25 -54
- package/dist/client/components/fields/field-wrapper.mjs +30 -105
- package/dist/client/components/fields/json-field.mjs +94 -296
- package/dist/client/components/fields/locale-badge.mjs +6 -15
- package/dist/client/components/fields/number-field.mjs +27 -60
- package/dist/client/components/fields/object-array-field.mjs +283 -659
- package/dist/client/components/fields/object-field.mjs +165 -633
- package/dist/client/components/fields/relation/displays/cards-display.mjs +106 -220
- package/dist/client/components/fields/relation/displays/chips-display.mjs +78 -150
- package/dist/client/components/fields/relation/displays/grid-display.mjs +92 -186
- package/dist/client/components/fields/relation/displays/list-display.mjs +122 -239
- package/dist/client/components/fields/relation/displays/table-display.mjs +70 -244
- package/dist/client/components/fields/relation/relation-items-display.mjs +30 -126
- package/dist/client/components/fields/relation-field.mjs +10 -66
- package/dist/client/components/fields/relation-picker.mjs +18 -18
- package/dist/client/components/fields/relation-select.mjs +12 -12
- package/dist/client/components/fields/rich-text-editor/bubble-menu.mjs +80 -180
- package/dist/client/components/fields/rich-text-editor/image-popover.mjs +2 -2
- package/dist/client/components/fields/rich-text-editor/image-upload.mjs +13 -29
- package/dist/client/components/fields/rich-text-editor/index.mjs +195 -513
- package/dist/client/components/fields/rich-text-editor/slash-commands.mjs +61 -111
- package/dist/client/components/fields/rich-text-editor/table-controls.mjs +105 -415
- package/dist/client/components/fields/rich-text-editor/toolbar.mjs +256 -511
- package/dist/client/components/fields/rich-text-field.mjs +14 -53
- package/dist/client/components/fields/select-field.mjs +39 -74
- package/dist/client/components/fields/text-field.mjs +26 -59
- package/dist/client/components/fields/textarea-field.mjs +26 -58
- package/dist/client/components/fields/time-field.mjs +7 -35
- package/dist/client/components/fields/upload-field.mjs +47 -165
- package/dist/client/components/filter-builder/columns-tab.mjs +80 -280
- package/dist/client/components/filter-builder/filter-builder-sheet.mjs +197 -540
- package/dist/client/components/filter-builder/filters-tab.mjs +96 -386
- package/dist/client/components/filter-builder/saved-views-tab.mjs +133 -351
- package/dist/client/components/history-sidebar.mjs +285 -605
- package/dist/client/components/layout/field-layout-renderer.mjs +106 -254
- package/dist/client/components/locale-switcher.mjs +106 -228
- package/dist/client/components/media/media-grid.mjs +84 -273
- package/dist/client/components/media/media-picker-dialog.mjs +176 -476
- package/dist/client/components/preview/live-preview-mode.mjs +233 -458
- package/dist/client/components/preview/preview-pane.mjs +22 -22
- package/dist/client/components/primitives/asset-preview.mjs +290 -666
- package/dist/client/components/primitives/checkbox-input.mjs +9 -35
- package/dist/client/components/primitives/date-input.mjs +109 -327
- package/dist/client/components/primitives/dropzone.mjs +209 -336
- package/dist/client/components/primitives/field-select-control.mjs +12 -80
- package/dist/client/components/primitives/number-input.mjs +4 -4
- package/dist/client/components/primitives/select-multi.mjs +200 -559
- package/dist/client/components/primitives/select-single.mjs +165 -499
- package/dist/client/components/primitives/time-input.mjs +43 -117
- package/dist/client/components/primitives/toggle-input.mjs +9 -29
- package/dist/client/components/sheets/resource-sheet.mjs +61 -70
- package/dist/client/components/ui/accordion.mjs +35 -155
- package/dist/client/components/ui/alert.mjs +13 -68
- package/dist/client/components/ui/badge.mjs +9 -51
- package/dist/client/components/ui/button.mjs +8 -54
- package/dist/client/components/ui/card.mjs +37 -193
- package/dist/client/components/ui/checkbox.mjs +12 -68
- package/dist/client/components/ui/command.mjs +48 -219
- package/dist/client/components/ui/dialog.mjs +50 -262
- package/dist/client/components/ui/drawer.mjs +55 -259
- package/dist/client/components/ui/dropdown-menu.mjs +86 -427
- package/dist/client/components/ui/empty-state.mjs +28 -98
- package/dist/client/components/ui/field.mjs +73 -309
- package/dist/client/components/ui/input-group.mjs +42 -167
- package/dist/client/components/ui/input.mjs +7 -37
- package/dist/client/components/ui/kbd.mjs +6 -36
- package/dist/client/components/ui/label.mjs +7 -37
- package/dist/client/components/ui/popover.mjs +34 -169
- package/dist/client/components/ui/responsive-dialog.mjs +67 -273
- package/dist/client/components/ui/scroll-fade.mjs +63 -158
- package/dist/client/components/ui/search-input.mjs +33 -100
- package/dist/client/components/ui/select.mjs +72 -393
- package/dist/client/components/ui/separator.mjs +7 -38
- package/dist/client/components/ui/sheet.mjs +49 -269
- package/dist/client/components/ui/sidebar.mjs +171 -690
- package/dist/client/components/ui/skeleton.mjs +7 -38
- package/dist/client/components/ui/sonner.mjs +11 -42
- package/dist/client/components/ui/switch.mjs +9 -45
- package/dist/client/components/ui/table.mjs +48 -266
- package/dist/client/components/ui/tabs.mjs +26 -139
- package/dist/client/components/ui/textarea.mjs +6 -32
- package/dist/client/components/ui/tooltip.mjs +27 -129
- package/dist/client/components/widgets/chart-widget.mjs +174 -522
- package/dist/client/components/widgets/progress-widget.mjs +66 -172
- package/dist/client/components/widgets/quick-actions-widget.mjs +102 -261
- package/dist/client/components/widgets/recent-items-widget.mjs +69 -195
- package/dist/client/components/widgets/stats-widget.mjs +41 -175
- package/dist/client/components/widgets/table-widget.mjs +9 -9
- package/dist/client/components/widgets/timeline-widget.mjs +86 -226
- package/dist/client/components/widgets/value-widget.mjs +74 -381
- package/dist/client/components/widgets/widget-empty-state.mjs +26 -76
- package/dist/client/components/widgets/widget-skeletons.mjs +138 -421
- package/dist/client/contexts/focus-context.mjs +63 -146
- package/dist/client/hooks/typed-hooks.mjs +241 -701
- package/dist/client/hooks/use-action.mjs +62 -198
- package/dist/client/hooks/use-admin-config.mjs +5 -35
- package/dist/client/hooks/use-admin-preferences.mjs +16 -88
- package/dist/client/hooks/use-admin-routes.mjs +22 -56
- package/dist/client/hooks/use-audit-history.mjs +21 -69
- package/dist/client/hooks/use-brand.mjs +1 -9
- package/dist/client/hooks/use-collection-fields.mjs +17 -57
- package/dist/client/hooks/use-collection-meta.mjs +12 -44
- package/dist/client/hooks/use-collection-schema.mjs +10 -33
- package/dist/client/hooks/use-collection-validation.mjs +23 -53
- package/dist/client/hooks/use-collection.mjs +194 -614
- package/dist/client/hooks/use-current-user.mjs +0 -1
- package/dist/client/hooks/use-field-hooks.mjs +10 -10
- package/dist/client/hooks/use-field-options.mjs +61 -202
- package/dist/client/hooks/use-global-fields.mjs +14 -46
- package/dist/client/hooks/use-global-meta.mjs +9 -30
- package/dist/client/hooks/use-global-schema.mjs +9 -30
- package/dist/client/hooks/use-global.mjs +63 -219
- package/dist/client/hooks/use-locks.mjs +117 -325
- package/dist/client/hooks/use-media-query.mjs +16 -36
- package/dist/client/hooks/use-prefill-params.mjs +0 -1
- package/dist/client/hooks/use-questpie-query-options.mjs +12 -29
- package/dist/client/hooks/use-reactive-fields.mjs +1 -1
- package/dist/client/hooks/use-reactive-prop.mjs +65 -223
- package/dist/client/hooks/use-realtime-highlight.mjs +51 -114
- package/dist/client/hooks/use-saved-views.mjs +22 -103
- package/dist/client/hooks/use-search-param-toggle.mjs +28 -79
- package/dist/client/hooks/use-search.mjs +31 -143
- package/dist/client/hooks/use-server-actions.mjs +18 -50
- package/dist/client/hooks/use-server-validation.mjs +72 -166
- package/dist/client/hooks/use-server-widget-data.mjs +7 -33
- package/dist/client/hooks/use-setup-status.mjs +12 -25
- package/dist/client/hooks/use-sidebar-search-param.mjs +33 -78
- package/dist/client/hooks/use-transition-stage.mjs +8 -38
- package/dist/client/hooks/use-upload.mjs +54 -152
- package/dist/client/hooks/use-validation-error-map.mjs +6 -26
- package/dist/client/hooks/use-view-state.mjs +187 -437
- package/dist/client/i18n/hooks.mjs +65 -197
- package/dist/client/lib/render-profiler.mjs +14 -41
- package/dist/client/preview/block-scope-context.d.mts +2 -2
- package/dist/client/preview/block-scope-context.mjs +14 -36
- package/dist/client/preview/preview-banner.d.mts +2 -2
- package/dist/client/preview/preview-banner.mjs +42 -108
- package/dist/client/preview/preview-field.d.mts +4 -4
- package/dist/client/preview/preview-field.mjs +167 -348
- package/dist/client/preview/use-collection-preview.mjs +121 -215
- package/dist/client/runtime/content-locales-provider.mjs +31 -83
- package/dist/client/runtime/locale-scope.mjs +22 -63
- package/dist/client/runtime/provider.mjs +100 -255
- package/dist/client/runtime/translations-provider.mjs +41 -107
- package/dist/client/scope/picker.d.mts +2 -2
- package/dist/client/scope/picker.mjs +86 -321
- package/dist/client/scope/provider.d.mts +2 -2
- package/dist/client/scope/provider.mjs +8 -17
- package/dist/client/views/auth/accept-invite-form.d.mts +2 -2
- package/dist/client/views/auth/accept-invite-form.mjs +121 -412
- package/dist/client/views/auth/auth-layout.d.mts +3 -3
- package/dist/client/views/auth/auth-layout.mjs +104 -284
- package/dist/client/views/auth/forgot-password-form.mjs +94 -325
- package/dist/client/views/auth/invite-form.mjs +107 -442
- package/dist/client/views/auth/login-form.d.mts +2 -2
- package/dist/client/views/auth/login-form.mjs +116 -337
- package/dist/client/views/auth/reset-password-form.d.mts +2 -2
- package/dist/client/views/auth/reset-password-form.mjs +128 -453
- package/dist/client/views/auth/setup-form.d.mts +2 -2
- package/dist/client/views/auth/setup-form.mjs +140 -478
- package/dist/client/views/collection/auto-form-fields.mjs +243 -615
- package/dist/client/views/collection/bulk-action-toolbar.mjs +212 -379
- package/dist/client/views/collection/cells/complex-cells.mjs +183 -611
- package/dist/client/views/collection/cells/primitive-cells.mjs +109 -363
- package/dist/client/views/collection/cells/relation-cells.mjs +86 -233
- package/dist/client/views/collection/cells/shared/asset-thumbnail.mjs +142 -371
- package/dist/client/views/collection/cells/shared/relation-chip.mjs +35 -131
- package/dist/client/views/collection/cells/upload-cells.mjs +60 -177
- package/dist/client/views/collection/columns/build-columns.mjs +8 -48
- package/dist/client/views/collection/field-renderer.mjs +58 -182
- package/dist/client/views/collection/form-view.mjs +284 -518
- package/dist/client/views/collection/table-view.mjs +231 -463
- package/dist/client/views/collection/view-skeletons.mjs +112 -237
- package/dist/client/views/common/global-search.mjs +241 -560
- package/dist/client/views/dashboard/dashboard-grid.mjs +256 -775
- package/dist/client/views/dashboard/dashboard-widget.mjs +38 -126
- package/dist/client/views/dashboard/widget-card.mjs +61 -269
- package/dist/client/views/globals/global-form-view.mjs +477 -1301
- package/dist/client/views/layout/admin-layout-provider.mjs +28 -88
- package/dist/client/views/layout/admin-layout.mjs +83 -246
- package/dist/client/views/layout/admin-router.mjs +458 -1274
- package/dist/client/views/layout/admin-sidebar.mjs +510 -1292
- package/dist/client/views/layout/admin-theme.mjs +30 -64
- package/dist/client/views/layout/admin-view-layout.mjs +40 -144
- package/dist/client/views/pages/accept-invite-page.d.mts +2 -2
- package/dist/client/views/pages/accept-invite-page.mjs +95 -290
- package/dist/client/views/pages/dashboard-page.d.mts +2 -2
- package/dist/client/views/pages/dashboard-page.mjs +11 -57
- package/dist/client/views/pages/forgot-password-page.d.mts +2 -2
- package/dist/client/views/pages/forgot-password-page.mjs +31 -83
- package/dist/client/views/pages/invite-page.d.mts +2 -2
- package/dist/client/views/pages/invite-page.mjs +35 -90
- package/dist/client/views/pages/login-page.mjs +41 -121
- package/dist/client/views/pages/reset-password-page.mjs +46 -173
- package/dist/client/views/pages/setup-page.mjs +33 -95
- package/dist/components/rich-text/rich-text-renderer.d.mts +2 -2
- package/dist/components/rich-text/rich-text-renderer.mjs +9 -33
- package/dist/server/modules/admin/collections/account.d.mts +46 -46
- package/dist/server/modules/admin/collections/admin-locks.d.mts +50 -50
- package/dist/server/modules/admin/collections/admin-preferences.d.mts +39 -39
- package/dist/server/modules/admin/collections/admin-saved-views.d.mts +47 -47
- package/dist/server/modules/admin/collections/apikey.d.mts +68 -68
- package/dist/server/modules/admin/collections/assets.d.mts +39 -39
- package/dist/server/modules/admin/collections/session.d.mts +41 -41
- package/dist/server/modules/admin/collections/user.d.mts +63 -63
- package/dist/server/modules/admin/collections/verification.d.mts +36 -36
- package/dist/server/modules/admin/index.d.mts +20 -19
- package/dist/server/modules/admin/routes/admin-config.d.mts +2 -2
- package/dist/server/modules/admin/routes/execute-action.d.mts +9 -9
- package/dist/server/modules/admin/routes/locales.d.mts +2 -2
- package/dist/server/modules/admin/routes/preview.d.mts +11 -11
- package/dist/server/modules/admin/routes/reactive.d.mts +9 -9
- package/dist/server/modules/admin/routes/setup.d.mts +7 -7
- package/dist/server/modules/admin/routes/translations.d.mts +4 -4
- package/dist/server/modules/admin/routes/widget-data.d.mts +5 -5
- package/dist/server/modules/admin-preferences/collections/saved-views.d.mts +45 -45
- package/dist/server/modules/audit/.generated/module.d.mts +6 -6
- package/dist/server/modules/audit/collections/audit-log.d.mts +78 -78
- package/dist/server/modules/audit/jobs/audit-cleanup.d.mts +2 -2
- package/package.json +3 -5
|
@@ -6,7 +6,6 @@ import { Input } from "../ui/input.mjs";
|
|
|
6
6
|
import { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle } from "../ui/sheet.mjs";
|
|
7
7
|
import { useAllowedBlockTypes, useBlockEditorActions, useBlockInsertPosition, useBlockRegistry } from "./block-editor-context.mjs";
|
|
8
8
|
import { BlockIcon } from "./block-type-icon.mjs";
|
|
9
|
-
import { c } from "react/compiler-runtime";
|
|
10
9
|
import { Icon } from "@iconify/react";
|
|
11
10
|
import * as React from "react";
|
|
12
11
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -18,31 +17,16 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
18
17
|
* Drawer component for selecting block types to add.
|
|
19
18
|
* Uses shadcn Sheet component for mobile-friendly sidebar.
|
|
20
19
|
*/
|
|
21
|
-
function BlockLibrarySidebar(
|
|
22
|
-
const $ = c(48);
|
|
23
|
-
const { open, onClose } = t0;
|
|
20
|
+
function BlockLibrarySidebar({ open, onClose }) {
|
|
24
21
|
const { t } = useTranslation();
|
|
25
22
|
const actions = useBlockEditorActions();
|
|
26
23
|
const blockRegistry = useBlockRegistry();
|
|
27
24
|
const allowedBlocks = useAllowedBlockTypes();
|
|
28
25
|
const insertPosition = useBlockInsertPosition();
|
|
29
26
|
const [search, setSearch] = React.useState("");
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
$[0] = allowedBlocks;
|
|
34
|
-
$[1] = t1;
|
|
35
|
-
} else t1 = $[1];
|
|
36
|
-
const allowedBlockSet = t1;
|
|
37
|
-
let t2;
|
|
38
|
-
if ($[2] !== search) {
|
|
39
|
-
t2 = search.trim().toLowerCase();
|
|
40
|
-
$[2] = search;
|
|
41
|
-
$[3] = t2;
|
|
42
|
-
} else t2 = $[3];
|
|
43
|
-
const normalizedSearch = t2;
|
|
44
|
-
let result;
|
|
45
|
-
if ($[4] !== allowedBlockSet || $[5] !== blockRegistry || $[6] !== normalizedSearch) {
|
|
27
|
+
const allowedBlockSet = React.useMemo(() => allowedBlocks ? new Set(allowedBlocks) : null, [allowedBlocks]);
|
|
28
|
+
const normalizedSearch = search.trim().toLowerCase();
|
|
29
|
+
const categories = React.useMemo(() => {
|
|
46
30
|
const categoryMap = /* @__PURE__ */ new Map();
|
|
47
31
|
const uncategorizedConfig = {
|
|
48
32
|
label: {
|
|
@@ -77,222 +61,111 @@ function BlockLibrarySidebar(t0) {
|
|
|
77
61
|
name
|
|
78
62
|
});
|
|
79
63
|
}
|
|
80
|
-
result = Array.from(categoryMap.values()).sort(
|
|
81
|
-
for (const category of result) category.blocks = category.blocks.slice().sort(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
64
|
+
const result = Array.from(categoryMap.values()).sort((a, b) => (a.config.order ?? 999) - (b.config.order ?? 999));
|
|
65
|
+
for (const category of result) category.blocks = category.blocks.slice().sort((a, b) => (a.admin?.order ?? 999) - (b.admin?.order ?? 999));
|
|
66
|
+
return result;
|
|
67
|
+
}, [
|
|
68
|
+
blockRegistry,
|
|
69
|
+
allowedBlockSet,
|
|
70
|
+
normalizedSearch
|
|
71
|
+
]);
|
|
88
72
|
const searchInputRef = React.useRef(null);
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
t3 = $[9];
|
|
104
|
-
t4 = $[10];
|
|
105
|
-
}
|
|
106
|
-
React.useEffect(t3, t4);
|
|
107
|
-
let t5;
|
|
108
|
-
if ($[11] !== actions || $[12] !== insertPosition || $[13] !== onClose) {
|
|
109
|
-
t5 = (type) => {
|
|
110
|
-
if (insertPosition) actions.addBlock(type, insertPosition);
|
|
111
|
-
onClose();
|
|
112
|
-
setSearch("");
|
|
113
|
-
};
|
|
114
|
-
$[11] = actions;
|
|
115
|
-
$[12] = insertPosition;
|
|
116
|
-
$[13] = onClose;
|
|
117
|
-
$[14] = t5;
|
|
118
|
-
} else t5 = $[14];
|
|
119
|
-
const handleSelectBlock = t5;
|
|
120
|
-
let t6;
|
|
121
|
-
if ($[15] !== onClose) {
|
|
122
|
-
t6 = (nextOpen) => {
|
|
73
|
+
React.useEffect(() => {
|
|
74
|
+
if (open) {
|
|
75
|
+
const timer = setTimeout(() => searchInputRef.current?.focus(), 100);
|
|
76
|
+
return () => clearTimeout(timer);
|
|
77
|
+
}
|
|
78
|
+
}, [open]);
|
|
79
|
+
const handleSelectBlock = (type) => {
|
|
80
|
+
if (insertPosition) actions.addBlock(type, insertPosition);
|
|
81
|
+
onClose();
|
|
82
|
+
setSearch("");
|
|
83
|
+
};
|
|
84
|
+
return /* @__PURE__ */ jsx(Sheet, {
|
|
85
|
+
open,
|
|
86
|
+
onOpenChange: (nextOpen) => {
|
|
123
87
|
if (!nextOpen) onClose();
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
$[16] = t6;
|
|
127
|
-
} else t6 = $[16];
|
|
128
|
-
let t7;
|
|
129
|
-
if ($[17] !== t) {
|
|
130
|
-
t7 = t("blocks.add");
|
|
131
|
-
$[17] = t;
|
|
132
|
-
$[18] = t7;
|
|
133
|
-
} else t7 = $[18];
|
|
134
|
-
let t8;
|
|
135
|
-
if ($[19] !== t7) {
|
|
136
|
-
t8 = /* @__PURE__ */ jsx(SheetTitle, { children: t7 });
|
|
137
|
-
$[19] = t7;
|
|
138
|
-
$[20] = t8;
|
|
139
|
-
} else t8 = $[20];
|
|
140
|
-
let t9;
|
|
141
|
-
if ($[21] !== t) {
|
|
142
|
-
t9 = t("blocks.libraryDescription");
|
|
143
|
-
$[21] = t;
|
|
144
|
-
$[22] = t9;
|
|
145
|
-
} else t9 = $[22];
|
|
146
|
-
let t10;
|
|
147
|
-
if ($[23] !== t9) {
|
|
148
|
-
t10 = /* @__PURE__ */ jsx(SheetDescription, { children: t9 });
|
|
149
|
-
$[23] = t9;
|
|
150
|
-
$[24] = t10;
|
|
151
|
-
} else t10 = $[24];
|
|
152
|
-
let t11;
|
|
153
|
-
if ($[25] !== t10 || $[26] !== t8) {
|
|
154
|
-
t11 = /* @__PURE__ */ jsxs(SheetHeader, {
|
|
155
|
-
className: "space-y-2",
|
|
156
|
-
children: [t8, t10]
|
|
157
|
-
});
|
|
158
|
-
$[25] = t10;
|
|
159
|
-
$[26] = t8;
|
|
160
|
-
$[27] = t11;
|
|
161
|
-
} else t11 = $[27];
|
|
162
|
-
let t12;
|
|
163
|
-
if ($[28] === Symbol.for("react.memo_cache_sentinel")) {
|
|
164
|
-
t12 = /* @__PURE__ */ jsx(Icon, {
|
|
165
|
-
icon: "ph:magnifying-glass",
|
|
166
|
-
className: "text-muted-foreground absolute top-1/2 left-3 h-4 w-4 -translate-y-1/2"
|
|
167
|
-
});
|
|
168
|
-
$[28] = t12;
|
|
169
|
-
} else t12 = $[28];
|
|
170
|
-
let t13;
|
|
171
|
-
if ($[29] !== t) {
|
|
172
|
-
t13 = t("blocks.searchPlaceholder");
|
|
173
|
-
$[29] = t;
|
|
174
|
-
$[30] = t13;
|
|
175
|
-
} else t13 = $[30];
|
|
176
|
-
let t14;
|
|
177
|
-
if ($[31] === Symbol.for("react.memo_cache_sentinel")) {
|
|
178
|
-
t14 = (e) => setSearch(e.target.value);
|
|
179
|
-
$[31] = t14;
|
|
180
|
-
} else t14 = $[31];
|
|
181
|
-
let t15;
|
|
182
|
-
if ($[32] !== search || $[33] !== t13) {
|
|
183
|
-
t15 = /* @__PURE__ */ jsx("div", {
|
|
184
|
-
className: "px-6 py-4",
|
|
185
|
-
children: /* @__PURE__ */ jsxs("div", {
|
|
186
|
-
className: "relative",
|
|
187
|
-
children: [t12, /* @__PURE__ */ jsx(Input, {
|
|
188
|
-
ref: searchInputRef,
|
|
189
|
-
placeholder: t13,
|
|
190
|
-
value: search,
|
|
191
|
-
onChange: t14,
|
|
192
|
-
className: "pl-9"
|
|
193
|
-
})]
|
|
194
|
-
})
|
|
195
|
-
});
|
|
196
|
-
$[32] = search;
|
|
197
|
-
$[33] = t13;
|
|
198
|
-
$[34] = t15;
|
|
199
|
-
} else t15 = $[34];
|
|
200
|
-
let t16;
|
|
201
|
-
if ($[35] !== categories || $[36] !== handleSelectBlock || $[37] !== search || $[38] !== t) {
|
|
202
|
-
t16 = /* @__PURE__ */ jsx("div", {
|
|
203
|
-
className: "flex-1 overflow-y-auto px-6 pb-6",
|
|
204
|
-
children: categories.length === 0 ? /* @__PURE__ */ jsxs("div", {
|
|
205
|
-
className: "flex flex-col items-center justify-center py-12 text-center",
|
|
206
|
-
children: [
|
|
207
|
-
/* @__PURE__ */ jsx(Icon, {
|
|
208
|
-
icon: "ph:cube",
|
|
209
|
-
className: "text-muted-foreground/50 mb-4 h-12 w-12"
|
|
210
|
-
}),
|
|
211
|
-
/* @__PURE__ */ jsx("p", {
|
|
212
|
-
className: "text-muted-foreground text-sm",
|
|
213
|
-
children: t("blocks.noSearchResults")
|
|
214
|
-
}),
|
|
215
|
-
search && /* @__PURE__ */ jsx("p", {
|
|
216
|
-
className: "text-muted-foreground mt-1 text-xs",
|
|
217
|
-
children: t("blocks.tryDifferentSearch")
|
|
218
|
-
})
|
|
219
|
-
]
|
|
220
|
-
}) : /* @__PURE__ */ jsx("div", {
|
|
221
|
-
className: "space-y-6",
|
|
222
|
-
children: categories.map((category_0) => /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsxs("div", {
|
|
223
|
-
className: "mb-3 flex items-center gap-2",
|
|
224
|
-
children: [category_0.config.icon && /* @__PURE__ */ jsx(Icon, {
|
|
225
|
-
icon: category_0.config.icon.props.name,
|
|
226
|
-
className: "text-muted-foreground h-4 w-4"
|
|
227
|
-
}), /* @__PURE__ */ jsx("h4", {
|
|
228
|
-
className: "text-muted-foreground font-chrome chrome-meta text-xs font-semibold",
|
|
229
|
-
children: getCategoryDisplayLabel(category_0.config)
|
|
230
|
-
})]
|
|
231
|
-
}), /* @__PURE__ */ jsx("div", {
|
|
232
|
-
className: "grid grid-cols-2 gap-2",
|
|
233
|
-
children: category_0.blocks.map((block) => /* @__PURE__ */ jsxs("button", {
|
|
234
|
-
type: "button",
|
|
235
|
-
className: cn("panel-surface flex flex-col items-start gap-2 p-3 text-left", "hover:border-border hover:bg-accent transition-colors", "focus-visible:ring-ring/25 focus:outline-none focus-visible:ring-3"),
|
|
236
|
-
onClick: () => handleSelectBlock(block.name),
|
|
237
|
-
children: [/* @__PURE__ */ jsx(BlockIcon, {
|
|
238
|
-
icon: block.admin?.icon,
|
|
239
|
-
size: 20,
|
|
240
|
-
className: "text-muted-foreground"
|
|
241
|
-
}), /* @__PURE__ */ jsxs("div", {
|
|
242
|
-
className: "min-w-0",
|
|
243
|
-
children: [/* @__PURE__ */ jsx("p", {
|
|
244
|
-
className: "truncate text-sm font-medium",
|
|
245
|
-
children: getBlockDisplayLabel(block)
|
|
246
|
-
}), block.admin?.description && /* @__PURE__ */ jsx("p", {
|
|
247
|
-
className: "text-muted-foreground mt-0.5 line-clamp-2 text-xs",
|
|
248
|
-
children: getDescriptionText(block.admin.description)
|
|
249
|
-
})]
|
|
250
|
-
})]
|
|
251
|
-
}, block.name))
|
|
252
|
-
})] }, category_0.key))
|
|
253
|
-
})
|
|
254
|
-
});
|
|
255
|
-
$[35] = categories;
|
|
256
|
-
$[36] = handleSelectBlock;
|
|
257
|
-
$[37] = search;
|
|
258
|
-
$[38] = t;
|
|
259
|
-
$[39] = t16;
|
|
260
|
-
} else t16 = $[39];
|
|
261
|
-
let t17;
|
|
262
|
-
if ($[40] !== t11 || $[41] !== t15 || $[42] !== t16) {
|
|
263
|
-
t17 = /* @__PURE__ */ jsxs(SheetContent, {
|
|
88
|
+
},
|
|
89
|
+
children: /* @__PURE__ */ jsxs(SheetContent, {
|
|
264
90
|
side: "left",
|
|
265
91
|
className: "qa-block-library flex w-full flex-col sm:max-w-md",
|
|
266
92
|
children: [
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
93
|
+
/* @__PURE__ */ jsxs(SheetHeader, {
|
|
94
|
+
className: "space-y-2",
|
|
95
|
+
children: [/* @__PURE__ */ jsx(SheetTitle, { children: t("blocks.add") }), /* @__PURE__ */ jsx(SheetDescription, { children: t("blocks.libraryDescription") })]
|
|
96
|
+
}),
|
|
97
|
+
/* @__PURE__ */ jsx("div", {
|
|
98
|
+
className: "px-6 py-4",
|
|
99
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
100
|
+
className: "relative",
|
|
101
|
+
children: [/* @__PURE__ */ jsx(Icon, {
|
|
102
|
+
icon: "ph:magnifying-glass",
|
|
103
|
+
className: "text-muted-foreground absolute top-1/2 left-3 h-4 w-4 -translate-y-1/2"
|
|
104
|
+
}), /* @__PURE__ */ jsx(Input, {
|
|
105
|
+
ref: searchInputRef,
|
|
106
|
+
placeholder: t("blocks.searchPlaceholder"),
|
|
107
|
+
value: search,
|
|
108
|
+
onChange: (e) => setSearch(e.target.value),
|
|
109
|
+
className: "pl-9"
|
|
110
|
+
})]
|
|
111
|
+
})
|
|
112
|
+
}),
|
|
113
|
+
/* @__PURE__ */ jsx("div", {
|
|
114
|
+
className: "flex-1 overflow-y-auto px-6 pb-6",
|
|
115
|
+
children: categories.length === 0 ? /* @__PURE__ */ jsxs("div", {
|
|
116
|
+
className: "flex flex-col items-center justify-center py-12 text-center",
|
|
117
|
+
children: [
|
|
118
|
+
/* @__PURE__ */ jsx(Icon, {
|
|
119
|
+
icon: "ph:cube",
|
|
120
|
+
className: "text-muted-foreground/50 mb-4 h-12 w-12"
|
|
121
|
+
}),
|
|
122
|
+
/* @__PURE__ */ jsx("p", {
|
|
123
|
+
className: "text-muted-foreground text-sm",
|
|
124
|
+
children: t("blocks.noSearchResults")
|
|
125
|
+
}),
|
|
126
|
+
search && /* @__PURE__ */ jsx("p", {
|
|
127
|
+
className: "text-muted-foreground mt-1 text-xs",
|
|
128
|
+
children: t("blocks.tryDifferentSearch")
|
|
129
|
+
})
|
|
130
|
+
]
|
|
131
|
+
}) : /* @__PURE__ */ jsx("div", {
|
|
132
|
+
className: "space-y-6",
|
|
133
|
+
children: categories.map((category) => /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsxs("div", {
|
|
134
|
+
className: "mb-3 flex items-center gap-2",
|
|
135
|
+
children: [category.config.icon && /* @__PURE__ */ jsx(Icon, {
|
|
136
|
+
icon: category.config.icon.props.name,
|
|
137
|
+
className: "text-muted-foreground h-4 w-4"
|
|
138
|
+
}), /* @__PURE__ */ jsx("h4", {
|
|
139
|
+
className: "text-muted-foreground font-chrome chrome-meta text-xs font-semibold",
|
|
140
|
+
children: getCategoryDisplayLabel(category.config)
|
|
141
|
+
})]
|
|
142
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
143
|
+
className: "grid grid-cols-2 gap-2",
|
|
144
|
+
children: category.blocks.map((block) => /* @__PURE__ */ jsxs("button", {
|
|
145
|
+
type: "button",
|
|
146
|
+
className: cn("panel-surface flex flex-col items-start gap-2 p-3 text-left", "hover:border-border hover:bg-accent transition-colors", "focus-visible:ring-ring/25 focus:outline-none focus-visible:ring-3"),
|
|
147
|
+
onClick: () => handleSelectBlock(block.name),
|
|
148
|
+
children: [/* @__PURE__ */ jsx(BlockIcon, {
|
|
149
|
+
icon: block.admin?.icon,
|
|
150
|
+
size: 20,
|
|
151
|
+
className: "text-muted-foreground"
|
|
152
|
+
}), /* @__PURE__ */ jsxs("div", {
|
|
153
|
+
className: "min-w-0",
|
|
154
|
+
children: [/* @__PURE__ */ jsx("p", {
|
|
155
|
+
className: "truncate text-sm font-medium",
|
|
156
|
+
children: getBlockDisplayLabel(block)
|
|
157
|
+
}), block.admin?.description && /* @__PURE__ */ jsx("p", {
|
|
158
|
+
className: "text-muted-foreground mt-0.5 line-clamp-2 text-xs",
|
|
159
|
+
children: getDescriptionText(block.admin.description)
|
|
160
|
+
})]
|
|
161
|
+
})]
|
|
162
|
+
}, block.name))
|
|
163
|
+
})] }, category.key))
|
|
164
|
+
})
|
|
165
|
+
})
|
|
270
166
|
]
|
|
271
|
-
})
|
|
272
|
-
|
|
273
|
-
$[41] = t15;
|
|
274
|
-
$[42] = t16;
|
|
275
|
-
$[43] = t17;
|
|
276
|
-
} else t17 = $[43];
|
|
277
|
-
let t18;
|
|
278
|
-
if ($[44] !== open || $[45] !== t17 || $[46] !== t6) {
|
|
279
|
-
t18 = /* @__PURE__ */ jsx(Sheet, {
|
|
280
|
-
open,
|
|
281
|
-
onOpenChange: t6,
|
|
282
|
-
children: t17
|
|
283
|
-
});
|
|
284
|
-
$[44] = open;
|
|
285
|
-
$[45] = t17;
|
|
286
|
-
$[46] = t6;
|
|
287
|
-
$[47] = t18;
|
|
288
|
-
} else t18 = $[47];
|
|
289
|
-
return t18;
|
|
290
|
-
}
|
|
291
|
-
function _temp2(a_0, b_0) {
|
|
292
|
-
return (a_0.admin?.order ?? 999) - (b_0.admin?.order ?? 999);
|
|
293
|
-
}
|
|
294
|
-
function _temp(a, b) {
|
|
295
|
-
return (a.config.order ?? 999) - (b.config.order ?? 999);
|
|
167
|
+
})
|
|
168
|
+
});
|
|
296
169
|
}
|
|
297
170
|
function getBlockDisplayLabel(block) {
|
|
298
171
|
const label = block.admin?.label;
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
import { cn } from "../../lib/utils.mjs";
|
|
4
4
|
import { BlockInsertButton } from "./block-insert-button.mjs";
|
|
5
5
|
import { BlockItem } from "./block-item.mjs";
|
|
6
|
-
import { c } from "react/compiler-runtime";
|
|
7
6
|
import * as React from "react";
|
|
8
7
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
8
|
import { SortableContext, verticalListSortingStrategy } from "@dnd-kit/sortable";
|
|
@@ -17,57 +16,21 @@ import { SortableContext, verticalListSortingStrategy } from "@dnd-kit/sortable"
|
|
|
17
16
|
function areBlockTreePropsEqual(prev, next) {
|
|
18
17
|
return prev.blocks === next.blocks && prev.level === next.level && prev.parentId === next.parentId && prev.className === next.className;
|
|
19
18
|
}
|
|
20
|
-
const BlockTree = React.memo(function BlockTree$1(
|
|
21
|
-
const
|
|
22
|
-
const { blocks, level, parentId, className } = t0;
|
|
23
|
-
let t1;
|
|
24
|
-
if ($[0] !== blocks) {
|
|
25
|
-
t1 = blocks.map(_temp);
|
|
26
|
-
$[0] = blocks;
|
|
27
|
-
$[1] = t1;
|
|
28
|
-
} else t1 = $[1];
|
|
29
|
-
const blockIds = t1;
|
|
19
|
+
const BlockTree = React.memo(function BlockTree$1({ blocks, level, parentId, className }) {
|
|
20
|
+
const blockIds = React.useMemo(() => blocks.map((b) => b.id), [blocks]);
|
|
30
21
|
const isRoot = level === 0;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
let t3;
|
|
38
|
-
if ($[4] !== blocks || $[5] !== level || $[6] !== parentId) {
|
|
39
|
-
let t4$1;
|
|
40
|
-
if ($[8] !== level || $[9] !== parentId) {
|
|
41
|
-
t4$1 = (block, index) => /* @__PURE__ */ jsx(BlockItem, {
|
|
22
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
23
|
+
className: cn("space-y-2", className),
|
|
24
|
+
children: [/* @__PURE__ */ jsx(SortableContext, {
|
|
25
|
+
items: blockIds,
|
|
26
|
+
strategy: verticalListSortingStrategy,
|
|
27
|
+
children: blocks.map((block, index) => /* @__PURE__ */ jsx(BlockItem, {
|
|
42
28
|
block,
|
|
43
29
|
level,
|
|
44
30
|
index,
|
|
45
31
|
parentId
|
|
46
|
-
}, block.id)
|
|
47
|
-
|
|
48
|
-
$[9] = parentId;
|
|
49
|
-
$[10] = t4$1;
|
|
50
|
-
} else t4$1 = $[10];
|
|
51
|
-
t3 = blocks.map(t4$1);
|
|
52
|
-
$[4] = blocks;
|
|
53
|
-
$[5] = level;
|
|
54
|
-
$[6] = parentId;
|
|
55
|
-
$[7] = t3;
|
|
56
|
-
} else t3 = $[7];
|
|
57
|
-
let t4;
|
|
58
|
-
if ($[11] !== blockIds || $[12] !== t3) {
|
|
59
|
-
t4 = /* @__PURE__ */ jsx(SortableContext, {
|
|
60
|
-
items: blockIds,
|
|
61
|
-
strategy: verticalListSortingStrategy,
|
|
62
|
-
children: t3
|
|
63
|
-
});
|
|
64
|
-
$[11] = blockIds;
|
|
65
|
-
$[12] = t3;
|
|
66
|
-
$[13] = t4;
|
|
67
|
-
} else t4 = $[13];
|
|
68
|
-
let t5;
|
|
69
|
-
if ($[14] !== blocks.length || $[15] !== isRoot || $[16] !== parentId) {
|
|
70
|
-
t5 = isRoot && /* @__PURE__ */ jsx("div", {
|
|
32
|
+
}, block.id))
|
|
33
|
+
}), isRoot && /* @__PURE__ */ jsx("div", {
|
|
71
34
|
className: "mt-4",
|
|
72
35
|
children: /* @__PURE__ */ jsx(BlockInsertButton, {
|
|
73
36
|
position: {
|
|
@@ -76,28 +39,9 @@ const BlockTree = React.memo(function BlockTree$1(t0) {
|
|
|
76
39
|
},
|
|
77
40
|
variant: "default"
|
|
78
41
|
})
|
|
79
|
-
})
|
|
80
|
-
|
|
81
|
-
$[15] = isRoot;
|
|
82
|
-
$[16] = parentId;
|
|
83
|
-
$[17] = t5;
|
|
84
|
-
} else t5 = $[17];
|
|
85
|
-
let t6;
|
|
86
|
-
if ($[18] !== t2 || $[19] !== t4 || $[20] !== t5) {
|
|
87
|
-
t6 = /* @__PURE__ */ jsxs("div", {
|
|
88
|
-
className: t2,
|
|
89
|
-
children: [t4, t5]
|
|
90
|
-
});
|
|
91
|
-
$[18] = t2;
|
|
92
|
-
$[19] = t4;
|
|
93
|
-
$[20] = t5;
|
|
94
|
-
$[21] = t6;
|
|
95
|
-
} else t6 = $[21];
|
|
96
|
-
return t6;
|
|
42
|
+
})]
|
|
43
|
+
});
|
|
97
44
|
}, areBlockTreePropsEqual);
|
|
98
|
-
function _temp(b) {
|
|
99
|
-
return b.id;
|
|
100
|
-
}
|
|
101
45
|
|
|
102
46
|
//#endregion
|
|
103
47
|
export { BlockTree };
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
import { cn } from "../../lib/utils.mjs";
|
|
4
4
|
import { ComponentRenderer } from "../component-renderer.mjs";
|
|
5
5
|
import { useBlockDefinition } from "./block-editor-context.mjs";
|
|
6
|
-
import { c } from "react/compiler-runtime";
|
|
7
6
|
import * as React from "react";
|
|
8
7
|
import { jsx } from "react/jsx-runtime";
|
|
9
8
|
|
|
@@ -17,70 +16,29 @@ const DEFAULT_BLOCK_ICON_REFERENCE = {
|
|
|
17
16
|
type: "icon",
|
|
18
17
|
props: { name: "ph:cube" }
|
|
19
18
|
};
|
|
20
|
-
const BlockTypeIcon = React.memo(function BlockTypeIcon$1(
|
|
21
|
-
const $ = c(4);
|
|
22
|
-
const { type, className, size: t1 } = t0;
|
|
23
|
-
const size = t1 === void 0 ? 16 : t1;
|
|
19
|
+
const BlockTypeIcon = React.memo(function BlockTypeIcon$1({ type, className, size = 16 }) {
|
|
24
20
|
const iconRef = useBlockDefinition(type)?.admin?.icon;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
size
|
|
31
|
-
});
|
|
32
|
-
$[0] = className;
|
|
33
|
-
$[1] = iconRef;
|
|
34
|
-
$[2] = size;
|
|
35
|
-
$[3] = t2;
|
|
36
|
-
} else t2 = $[3];
|
|
37
|
-
return t2;
|
|
21
|
+
return /* @__PURE__ */ jsx(BlockIcon, {
|
|
22
|
+
icon: iconRef,
|
|
23
|
+
className,
|
|
24
|
+
size
|
|
25
|
+
});
|
|
38
26
|
});
|
|
39
27
|
/**
|
|
40
28
|
* Standalone icon component that doesn't require context.
|
|
41
29
|
* Useful for rendering icons outside the editor.
|
|
42
30
|
* Shows a default cube icon if no icon is provided.
|
|
43
31
|
*/
|
|
44
|
-
const BlockIcon = React.memo(function BlockIcon$1(
|
|
45
|
-
const
|
|
46
|
-
const
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
t2 = normalizeIconReference(icon);
|
|
51
|
-
$[0] = icon;
|
|
52
|
-
$[1] = t2;
|
|
53
|
-
} else t2 = $[1];
|
|
54
|
-
const finalReference = t2 ?? DEFAULT_BLOCK_ICON_REFERENCE;
|
|
55
|
-
let t3;
|
|
56
|
-
if ($[2] !== className) {
|
|
57
|
-
t3 = cn("shrink-0", className);
|
|
58
|
-
$[2] = className;
|
|
59
|
-
$[3] = t3;
|
|
60
|
-
} else t3 = $[3];
|
|
61
|
-
const mergedClassName = t3;
|
|
62
|
-
let t4;
|
|
63
|
-
if ($[4] !== mergedClassName || $[5] !== size) {
|
|
64
|
-
t4 = {
|
|
32
|
+
const BlockIcon = React.memo(function BlockIcon$1({ icon, className, size = 16 }) {
|
|
33
|
+
const finalReference = React.useMemo(() => normalizeIconReference(icon), [icon]) ?? DEFAULT_BLOCK_ICON_REFERENCE;
|
|
34
|
+
const mergedClassName = React.useMemo(() => cn("shrink-0", className), [className]);
|
|
35
|
+
return /* @__PURE__ */ jsx(ComponentRenderer, {
|
|
36
|
+
reference: finalReference,
|
|
37
|
+
additionalProps: React.useMemo(() => ({
|
|
65
38
|
className: mergedClassName,
|
|
66
39
|
size
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
$[5] = size;
|
|
70
|
-
$[6] = t4;
|
|
71
|
-
} else t4 = $[6];
|
|
72
|
-
const additionalProps = t4;
|
|
73
|
-
let t5;
|
|
74
|
-
if ($[7] !== additionalProps || $[8] !== finalReference) {
|
|
75
|
-
t5 = /* @__PURE__ */ jsx(ComponentRenderer, {
|
|
76
|
-
reference: finalReference,
|
|
77
|
-
additionalProps
|
|
78
|
-
});
|
|
79
|
-
$[7] = additionalProps;
|
|
80
|
-
$[8] = finalReference;
|
|
81
|
-
$[9] = t5;
|
|
82
|
-
} else t5 = $[9];
|
|
83
|
-
return t5;
|
|
40
|
+
}), [mergedClassName, size])
|
|
41
|
+
});
|
|
84
42
|
});
|
|
85
43
|
function normalizeIconReference(icon) {
|
|
86
44
|
if (!icon) return void 0;
|