zudoku 0.78.0 → 0.78.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/cli/cli.js +602 -160
- package/dist/cli/worker.js +6 -4
- package/dist/declarations/app/adapter.d.ts +12 -0
- package/dist/declarations/app/adapters/cloudflare.d.ts +8 -0
- package/dist/declarations/app/adapters/lambda.d.ts +13 -0
- package/dist/declarations/app/adapters/node.d.ts +12 -0
- package/dist/declarations/app/adapters/vercel.d.ts +14 -0
- package/dist/declarations/app/entry.client.d.ts +2 -0
- package/dist/declarations/app/entry.server.d.ts +13 -0
- package/dist/declarations/app/protectChunks.d.ts +17 -0
- package/dist/declarations/app/wrapProtectedRoutes.d.ts +4 -0
- package/dist/declarations/config/validators/HeaderNavigationSchema.d.ts +216 -80
- package/dist/declarations/config/validators/ZudokuConfig.d.ts +81 -30
- package/dist/declarations/config/validators/icon-types.d.ts +1 -1
- package/dist/declarations/lib/authentication/authentication.d.ts +7 -0
- package/dist/declarations/lib/authentication/cookie-sync.d.ts +3 -0
- package/dist/declarations/lib/authentication/cookies.d.ts +10 -0
- package/dist/declarations/lib/authentication/providers/azureb2c.d.ts +6 -1
- package/dist/declarations/lib/authentication/providers/clerk.d.ts +1 -0
- package/dist/declarations/lib/authentication/providers/openid.d.ts +2 -1
- package/dist/declarations/lib/authentication/providers/supabase.d.ts +2 -0
- package/dist/declarations/lib/authentication/session-handler.d.ts +81 -0
- package/dist/declarations/lib/authentication/state.d.ts +7 -0
- package/dist/declarations/lib/authentication/verify-cache.d.ts +2 -0
- package/dist/declarations/lib/components/Bootstrap.d.ts +2 -2
- package/dist/declarations/lib/components/Heading.d.ts +1 -1
- package/dist/declarations/lib/components/context/RenderContext.d.ts +6 -0
- package/dist/declarations/lib/core/RouteGuard.d.ts +11 -0
- package/dist/declarations/lib/core/ZudokuContext.d.ts +5 -2
- package/dist/declarations/lib/manifest.d.ts +25 -0
- package/dist/declarations/lib/util/url.d.ts +2 -0
- package/dist/flat-config.d.ts +1 -1
- package/docs/configuration/protected-routes.md +21 -4
- package/docs/guides/server-side-content-protection.md +207 -0
- package/package.json +26 -4
- package/src/app/adapter.ts +16 -0
- package/src/app/adapters/cloudflare.ts +18 -0
- package/src/app/adapters/lambda.ts +36 -0
- package/src/app/adapters/node.ts +32 -0
- package/src/app/adapters/vercel.ts +39 -0
- package/src/app/demo.tsx +2 -2
- package/src/app/entry.client.tsx +19 -7
- package/src/app/entry.server.tsx +133 -9
- package/src/app/main.tsx +21 -3
- package/src/app/protectChunks.ts +64 -0
- package/src/app/standalone.tsx +2 -2
- package/src/app/wrapProtectedRoutes.ts +82 -0
- package/src/config/validators/icon-types.ts +17 -0
- package/src/lib/authentication/authentication.ts +15 -0
- package/src/lib/authentication/cookie-sync.ts +90 -0
- package/src/lib/authentication/cookies.ts +54 -0
- package/src/lib/authentication/hook.ts +13 -0
- package/src/lib/authentication/providers/azureb2c.tsx +70 -2
- package/src/lib/authentication/providers/clerk.tsx +49 -0
- package/src/lib/authentication/providers/openid.tsx +46 -0
- package/src/lib/authentication/providers/supabase.tsx +30 -2
- package/src/lib/authentication/session-handler.ts +164 -0
- package/src/lib/authentication/state.ts +36 -5
- package/src/lib/authentication/verify-cache.ts +32 -0
- package/src/lib/components/Bootstrap.tsx +20 -14
- package/src/lib/components/Header.tsx +56 -57
- package/src/lib/components/MobileTopNavigation.tsx +66 -67
- package/src/lib/components/Zudoku.tsx +14 -1
- package/src/lib/components/context/RenderContext.ts +8 -0
- package/src/lib/components/context/ZudokuContext.ts +2 -1
- package/src/lib/core/RouteGuard.tsx +50 -29
- package/src/lib/core/ZudokuContext.ts +39 -6
- package/src/lib/errors/RouterError.tsx +43 -1
- package/src/lib/manifest.ts +62 -0
- package/src/lib/oas/parser/dereference/index.ts +2 -1
- package/src/lib/oas/parser/dereference/resolveRef.ts +2 -1
- package/src/lib/oas/parser/index.ts +1 -1
- package/src/lib/plugins/openapi/client/createServer.ts +13 -4
- package/src/lib/plugins/search-pagefind/index.tsx +1 -4
- package/src/lib/util/os.ts +1 -0
- package/src/lib/util/url.ts +13 -0
- package/src/vite/build.ts +84 -24
- package/src/vite/config.ts +51 -5
- package/src/vite/dev-server.ts +61 -8
- package/src/vite/manifest.ts +15 -0
- package/src/vite/plugin-api.ts +3 -1
- package/src/vite/plugin-markdown-export.ts +3 -9
- package/src/vite/prerender/worker.ts +2 -4
- package/src/vite/protected/annotator.ts +136 -0
- package/src/vite/protected/build.ts +151 -0
- package/src/vite/protected/registry.ts +82 -0
- package/src/vite/ssr-templates/cloudflare.ts +5 -18
- package/src/vite/ssr-templates/lambda.ts +4 -0
- package/src/vite/ssr-templates/node.ts +7 -22
- package/src/vite/ssr-templates/vercel.ts +6 -20
- package/src/vite-env.d.ts +1 -0
|
@@ -12,8 +12,17 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
12
12
|
bold: "bold";
|
|
13
13
|
link: "link";
|
|
14
14
|
binary: "binary";
|
|
15
|
-
file: "file";
|
|
16
15
|
map: "map";
|
|
16
|
+
filter: "filter";
|
|
17
|
+
command: "command";
|
|
18
|
+
copy: "copy";
|
|
19
|
+
focus: "focus";
|
|
20
|
+
pause: "pause";
|
|
21
|
+
play: "play";
|
|
22
|
+
scroll: "scroll";
|
|
23
|
+
key: "key";
|
|
24
|
+
merge: "merge";
|
|
25
|
+
file: "file";
|
|
17
26
|
type: "type";
|
|
18
27
|
"a-arrow-down": "a-arrow-down";
|
|
19
28
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -152,6 +161,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
152
161
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
153
162
|
asterisk: "asterisk";
|
|
154
163
|
"asterisk-square": "asterisk-square";
|
|
164
|
+
astroid: "astroid";
|
|
155
165
|
"at-sign": "at-sign";
|
|
156
166
|
atom: "atom";
|
|
157
167
|
"audio-lines": "audio-lines";
|
|
@@ -219,6 +229,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
219
229
|
beer: "beer";
|
|
220
230
|
"beer-off": "beer-off";
|
|
221
231
|
bell: "bell";
|
|
232
|
+
"bell-check": "bell-check";
|
|
222
233
|
"bell-dot": "bell-dot";
|
|
223
234
|
"bell-electric": "bell-electric";
|
|
224
235
|
"bell-minus": "bell-minus";
|
|
@@ -239,6 +250,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
239
250
|
birdhouse: "birdhouse";
|
|
240
251
|
bitcoin: "bitcoin";
|
|
241
252
|
blend: "blend";
|
|
253
|
+
blender: "blender";
|
|
242
254
|
blinds: "blinds";
|
|
243
255
|
blocks: "blocks";
|
|
244
256
|
bluetooth: "bluetooth";
|
|
@@ -303,6 +315,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
303
315
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
304
316
|
"briefcase-medical": "briefcase-medical";
|
|
305
317
|
"bring-to-front": "bring-to-front";
|
|
318
|
+
broccoli: "broccoli";
|
|
306
319
|
brush: "brush";
|
|
307
320
|
"brush-cleaning": "brush-cleaning";
|
|
308
321
|
bubbles: "bubbles";
|
|
@@ -551,7 +564,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
551
564
|
"columns-4": "columns-4";
|
|
552
565
|
"columns-settings": "columns-settings";
|
|
553
566
|
combine: "combine";
|
|
554
|
-
command: "command";
|
|
555
567
|
compass: "compass";
|
|
556
568
|
component: "component";
|
|
557
569
|
computer: "computer";
|
|
@@ -565,7 +577,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
565
577
|
contrast: "contrast";
|
|
566
578
|
cookie: "cookie";
|
|
567
579
|
"cooking-pot": "cooking-pot";
|
|
568
|
-
copy: "copy";
|
|
569
580
|
"copy-check": "copy-check";
|
|
570
581
|
"copy-minus": "copy-minus";
|
|
571
582
|
"copy-plus": "copy-plus";
|
|
@@ -762,7 +773,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
762
773
|
"file-x-corner": "file-x-corner";
|
|
763
774
|
files: "files";
|
|
764
775
|
film: "film";
|
|
765
|
-
filter: "filter";
|
|
766
776
|
"filter-x": "filter-x";
|
|
767
777
|
fingerprint: "fingerprint";
|
|
768
778
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -789,11 +799,11 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
789
799
|
"flip-vertical-2": "flip-vertical-2";
|
|
790
800
|
flower: "flower";
|
|
791
801
|
"flower-2": "flower-2";
|
|
792
|
-
focus: "focus";
|
|
793
802
|
"fold-horizontal": "fold-horizontal";
|
|
794
803
|
"fold-vertical": "fold-vertical";
|
|
795
804
|
folder: "folder";
|
|
796
805
|
"folder-archive": "folder-archive";
|
|
806
|
+
"folder-bookmark": "folder-bookmark";
|
|
797
807
|
"folder-check": "folder-check";
|
|
798
808
|
"folder-clock": "folder-clock";
|
|
799
809
|
"folder-closed": "folder-closed";
|
|
@@ -943,6 +953,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
943
953
|
"heart-off": "heart-off";
|
|
944
954
|
"heart-plus": "heart-plus";
|
|
945
955
|
"heart-pulse": "heart-pulse";
|
|
956
|
+
"heart-x": "heart-x";
|
|
946
957
|
heater: "heater";
|
|
947
958
|
helicopter: "helicopter";
|
|
948
959
|
"help-circle": "help-circle";
|
|
@@ -994,7 +1005,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
994
1005
|
"kanban-square": "kanban-square";
|
|
995
1006
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
996
1007
|
kayak: "kayak";
|
|
997
|
-
key: "key";
|
|
998
1008
|
"key-round": "key-round";
|
|
999
1009
|
"key-square": "key-square";
|
|
1000
1010
|
keyboard: "keyboard";
|
|
@@ -1019,6 +1029,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1019
1029
|
layers: "layers";
|
|
1020
1030
|
"layers-2": "layers-2";
|
|
1021
1031
|
"layers-3": "layers-3";
|
|
1032
|
+
"layers-minus": "layers-minus";
|
|
1022
1033
|
"layers-plus": "layers-plus";
|
|
1023
1034
|
layout: "layout";
|
|
1024
1035
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -1126,7 +1137,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1126
1137
|
"memory-stick": "memory-stick";
|
|
1127
1138
|
menu: "menu";
|
|
1128
1139
|
"menu-square": "menu-square";
|
|
1129
|
-
merge: "merge";
|
|
1130
1140
|
"message-circle": "message-circle";
|
|
1131
1141
|
"message-circle-check": "message-circle-check";
|
|
1132
1142
|
"message-circle-code": "message-circle-code";
|
|
@@ -1303,7 +1313,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1303
1313
|
"parking-square": "parking-square";
|
|
1304
1314
|
"parking-square-off": "parking-square-off";
|
|
1305
1315
|
"party-popper": "party-popper";
|
|
1306
|
-
pause: "pause";
|
|
1307
1316
|
"pause-circle": "pause-circle";
|
|
1308
1317
|
"pause-octagon": "pause-octagon";
|
|
1309
1318
|
"paw-print": "paw-print";
|
|
@@ -1353,7 +1362,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1353
1362
|
plane: "plane";
|
|
1354
1363
|
"plane-landing": "plane-landing";
|
|
1355
1364
|
"plane-takeoff": "plane-takeoff";
|
|
1356
|
-
play: "play";
|
|
1357
1365
|
"play-circle": "play-circle";
|
|
1358
1366
|
"play-square": "play-square";
|
|
1359
1367
|
plug: "plug";
|
|
@@ -1424,6 +1432,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1424
1432
|
"remove-formatting": "remove-formatting";
|
|
1425
1433
|
"repeat-1": "repeat-1";
|
|
1426
1434
|
"repeat-2": "repeat-2";
|
|
1435
|
+
"repeat-off": "repeat-off";
|
|
1427
1436
|
"replace-all": "replace-all";
|
|
1428
1437
|
reply: "reply";
|
|
1429
1438
|
"reply-all": "reply-all";
|
|
@@ -1484,7 +1493,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1484
1493
|
scooter: "scooter";
|
|
1485
1494
|
"screen-share": "screen-share";
|
|
1486
1495
|
"screen-share-off": "screen-share-off";
|
|
1487
|
-
scroll: "scroll";
|
|
1488
1496
|
"scroll-text": "scroll-text";
|
|
1489
1497
|
"search-alert": "search-alert";
|
|
1490
1498
|
"search-check": "search-check";
|
|
@@ -1679,6 +1687,12 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1679
1687
|
stethoscope: "stethoscope";
|
|
1680
1688
|
sticker: "sticker";
|
|
1681
1689
|
"sticky-note": "sticky-note";
|
|
1690
|
+
"sticky-note-check": "sticky-note-check";
|
|
1691
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
1692
|
+
"sticky-note-off": "sticky-note-off";
|
|
1693
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
1694
|
+
"sticky-note-x": "sticky-note-x";
|
|
1695
|
+
"sticky-notes": "sticky-notes";
|
|
1682
1696
|
stone: "stone";
|
|
1683
1697
|
"stop-circle": "stop-circle";
|
|
1684
1698
|
store: "store";
|
|
@@ -1759,6 +1773,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1759
1773
|
"ticket-x": "ticket-x";
|
|
1760
1774
|
tickets: "tickets";
|
|
1761
1775
|
"tickets-plane": "tickets-plane";
|
|
1776
|
+
timeline: "timeline";
|
|
1762
1777
|
timer: "timer";
|
|
1763
1778
|
"timer-off": "timer-off";
|
|
1764
1779
|
"timer-reset": "timer-reset";
|
|
@@ -1897,7 +1912,9 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1897
1912
|
waves: "waves";
|
|
1898
1913
|
"waves-arrow-down": "waves-arrow-down";
|
|
1899
1914
|
"waves-arrow-up": "waves-arrow-up";
|
|
1915
|
+
"waves-horizontal": "waves-horizontal";
|
|
1900
1916
|
"waves-ladder": "waves-ladder";
|
|
1917
|
+
"waves-vertical": "waves-vertical";
|
|
1901
1918
|
waypoints: "waypoints";
|
|
1902
1919
|
webcam: "webcam";
|
|
1903
1920
|
webhook: "webhook";
|
|
@@ -1968,8 +1985,17 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
1968
1985
|
bold: "bold";
|
|
1969
1986
|
link: "link";
|
|
1970
1987
|
binary: "binary";
|
|
1971
|
-
file: "file";
|
|
1972
1988
|
map: "map";
|
|
1989
|
+
filter: "filter";
|
|
1990
|
+
command: "command";
|
|
1991
|
+
copy: "copy";
|
|
1992
|
+
focus: "focus";
|
|
1993
|
+
pause: "pause";
|
|
1994
|
+
play: "play";
|
|
1995
|
+
scroll: "scroll";
|
|
1996
|
+
key: "key";
|
|
1997
|
+
merge: "merge";
|
|
1998
|
+
file: "file";
|
|
1973
1999
|
type: "type";
|
|
1974
2000
|
"a-arrow-down": "a-arrow-down";
|
|
1975
2001
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -2108,6 +2134,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2108
2134
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
2109
2135
|
asterisk: "asterisk";
|
|
2110
2136
|
"asterisk-square": "asterisk-square";
|
|
2137
|
+
astroid: "astroid";
|
|
2111
2138
|
"at-sign": "at-sign";
|
|
2112
2139
|
atom: "atom";
|
|
2113
2140
|
"audio-lines": "audio-lines";
|
|
@@ -2175,6 +2202,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2175
2202
|
beer: "beer";
|
|
2176
2203
|
"beer-off": "beer-off";
|
|
2177
2204
|
bell: "bell";
|
|
2205
|
+
"bell-check": "bell-check";
|
|
2178
2206
|
"bell-dot": "bell-dot";
|
|
2179
2207
|
"bell-electric": "bell-electric";
|
|
2180
2208
|
"bell-minus": "bell-minus";
|
|
@@ -2195,6 +2223,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2195
2223
|
birdhouse: "birdhouse";
|
|
2196
2224
|
bitcoin: "bitcoin";
|
|
2197
2225
|
blend: "blend";
|
|
2226
|
+
blender: "blender";
|
|
2198
2227
|
blinds: "blinds";
|
|
2199
2228
|
blocks: "blocks";
|
|
2200
2229
|
bluetooth: "bluetooth";
|
|
@@ -2259,6 +2288,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2259
2288
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
2260
2289
|
"briefcase-medical": "briefcase-medical";
|
|
2261
2290
|
"bring-to-front": "bring-to-front";
|
|
2291
|
+
broccoli: "broccoli";
|
|
2262
2292
|
brush: "brush";
|
|
2263
2293
|
"brush-cleaning": "brush-cleaning";
|
|
2264
2294
|
bubbles: "bubbles";
|
|
@@ -2507,7 +2537,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2507
2537
|
"columns-4": "columns-4";
|
|
2508
2538
|
"columns-settings": "columns-settings";
|
|
2509
2539
|
combine: "combine";
|
|
2510
|
-
command: "command";
|
|
2511
2540
|
compass: "compass";
|
|
2512
2541
|
component: "component";
|
|
2513
2542
|
computer: "computer";
|
|
@@ -2521,7 +2550,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2521
2550
|
contrast: "contrast";
|
|
2522
2551
|
cookie: "cookie";
|
|
2523
2552
|
"cooking-pot": "cooking-pot";
|
|
2524
|
-
copy: "copy";
|
|
2525
2553
|
"copy-check": "copy-check";
|
|
2526
2554
|
"copy-minus": "copy-minus";
|
|
2527
2555
|
"copy-plus": "copy-plus";
|
|
@@ -2718,7 +2746,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2718
2746
|
"file-x-corner": "file-x-corner";
|
|
2719
2747
|
files: "files";
|
|
2720
2748
|
film: "film";
|
|
2721
|
-
filter: "filter";
|
|
2722
2749
|
"filter-x": "filter-x";
|
|
2723
2750
|
fingerprint: "fingerprint";
|
|
2724
2751
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -2745,11 +2772,11 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2745
2772
|
"flip-vertical-2": "flip-vertical-2";
|
|
2746
2773
|
flower: "flower";
|
|
2747
2774
|
"flower-2": "flower-2";
|
|
2748
|
-
focus: "focus";
|
|
2749
2775
|
"fold-horizontal": "fold-horizontal";
|
|
2750
2776
|
"fold-vertical": "fold-vertical";
|
|
2751
2777
|
folder: "folder";
|
|
2752
2778
|
"folder-archive": "folder-archive";
|
|
2779
|
+
"folder-bookmark": "folder-bookmark";
|
|
2753
2780
|
"folder-check": "folder-check";
|
|
2754
2781
|
"folder-clock": "folder-clock";
|
|
2755
2782
|
"folder-closed": "folder-closed";
|
|
@@ -2899,6 +2926,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2899
2926
|
"heart-off": "heart-off";
|
|
2900
2927
|
"heart-plus": "heart-plus";
|
|
2901
2928
|
"heart-pulse": "heart-pulse";
|
|
2929
|
+
"heart-x": "heart-x";
|
|
2902
2930
|
heater: "heater";
|
|
2903
2931
|
helicopter: "helicopter";
|
|
2904
2932
|
"help-circle": "help-circle";
|
|
@@ -2950,7 +2978,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2950
2978
|
"kanban-square": "kanban-square";
|
|
2951
2979
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
2952
2980
|
kayak: "kayak";
|
|
2953
|
-
key: "key";
|
|
2954
2981
|
"key-round": "key-round";
|
|
2955
2982
|
"key-square": "key-square";
|
|
2956
2983
|
keyboard: "keyboard";
|
|
@@ -2975,6 +3002,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2975
3002
|
layers: "layers";
|
|
2976
3003
|
"layers-2": "layers-2";
|
|
2977
3004
|
"layers-3": "layers-3";
|
|
3005
|
+
"layers-minus": "layers-minus";
|
|
2978
3006
|
"layers-plus": "layers-plus";
|
|
2979
3007
|
layout: "layout";
|
|
2980
3008
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -3082,7 +3110,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3082
3110
|
"memory-stick": "memory-stick";
|
|
3083
3111
|
menu: "menu";
|
|
3084
3112
|
"menu-square": "menu-square";
|
|
3085
|
-
merge: "merge";
|
|
3086
3113
|
"message-circle": "message-circle";
|
|
3087
3114
|
"message-circle-check": "message-circle-check";
|
|
3088
3115
|
"message-circle-code": "message-circle-code";
|
|
@@ -3259,7 +3286,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3259
3286
|
"parking-square": "parking-square";
|
|
3260
3287
|
"parking-square-off": "parking-square-off";
|
|
3261
3288
|
"party-popper": "party-popper";
|
|
3262
|
-
pause: "pause";
|
|
3263
3289
|
"pause-circle": "pause-circle";
|
|
3264
3290
|
"pause-octagon": "pause-octagon";
|
|
3265
3291
|
"paw-print": "paw-print";
|
|
@@ -3309,7 +3335,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3309
3335
|
plane: "plane";
|
|
3310
3336
|
"plane-landing": "plane-landing";
|
|
3311
3337
|
"plane-takeoff": "plane-takeoff";
|
|
3312
|
-
play: "play";
|
|
3313
3338
|
"play-circle": "play-circle";
|
|
3314
3339
|
"play-square": "play-square";
|
|
3315
3340
|
plug: "plug";
|
|
@@ -3380,6 +3405,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3380
3405
|
"remove-formatting": "remove-formatting";
|
|
3381
3406
|
"repeat-1": "repeat-1";
|
|
3382
3407
|
"repeat-2": "repeat-2";
|
|
3408
|
+
"repeat-off": "repeat-off";
|
|
3383
3409
|
"replace-all": "replace-all";
|
|
3384
3410
|
reply: "reply";
|
|
3385
3411
|
"reply-all": "reply-all";
|
|
@@ -3440,7 +3466,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3440
3466
|
scooter: "scooter";
|
|
3441
3467
|
"screen-share": "screen-share";
|
|
3442
3468
|
"screen-share-off": "screen-share-off";
|
|
3443
|
-
scroll: "scroll";
|
|
3444
3469
|
"scroll-text": "scroll-text";
|
|
3445
3470
|
"search-alert": "search-alert";
|
|
3446
3471
|
"search-check": "search-check";
|
|
@@ -3635,6 +3660,12 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3635
3660
|
stethoscope: "stethoscope";
|
|
3636
3661
|
sticker: "sticker";
|
|
3637
3662
|
"sticky-note": "sticky-note";
|
|
3663
|
+
"sticky-note-check": "sticky-note-check";
|
|
3664
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
3665
|
+
"sticky-note-off": "sticky-note-off";
|
|
3666
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
3667
|
+
"sticky-note-x": "sticky-note-x";
|
|
3668
|
+
"sticky-notes": "sticky-notes";
|
|
3638
3669
|
stone: "stone";
|
|
3639
3670
|
"stop-circle": "stop-circle";
|
|
3640
3671
|
store: "store";
|
|
@@ -3715,6 +3746,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3715
3746
|
"ticket-x": "ticket-x";
|
|
3716
3747
|
tickets: "tickets";
|
|
3717
3748
|
"tickets-plane": "tickets-plane";
|
|
3749
|
+
timeline: "timeline";
|
|
3718
3750
|
timer: "timer";
|
|
3719
3751
|
"timer-off": "timer-off";
|
|
3720
3752
|
"timer-reset": "timer-reset";
|
|
@@ -3853,7 +3885,9 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3853
3885
|
waves: "waves";
|
|
3854
3886
|
"waves-arrow-down": "waves-arrow-down";
|
|
3855
3887
|
"waves-arrow-up": "waves-arrow-up";
|
|
3888
|
+
"waves-horizontal": "waves-horizontal";
|
|
3856
3889
|
"waves-ladder": "waves-ladder";
|
|
3890
|
+
"waves-vertical": "waves-vertical";
|
|
3857
3891
|
waypoints: "waypoints";
|
|
3858
3892
|
webcam: "webcam";
|
|
3859
3893
|
webhook: "webhook";
|
|
@@ -3923,8 +3957,17 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3923
3957
|
bold: "bold";
|
|
3924
3958
|
link: "link";
|
|
3925
3959
|
binary: "binary";
|
|
3926
|
-
file: "file";
|
|
3927
3960
|
map: "map";
|
|
3961
|
+
filter: "filter";
|
|
3962
|
+
command: "command";
|
|
3963
|
+
copy: "copy";
|
|
3964
|
+
focus: "focus";
|
|
3965
|
+
pause: "pause";
|
|
3966
|
+
play: "play";
|
|
3967
|
+
scroll: "scroll";
|
|
3968
|
+
key: "key";
|
|
3969
|
+
merge: "merge";
|
|
3970
|
+
file: "file";
|
|
3928
3971
|
type: "type";
|
|
3929
3972
|
"a-arrow-down": "a-arrow-down";
|
|
3930
3973
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -4063,6 +4106,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4063
4106
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
4064
4107
|
asterisk: "asterisk";
|
|
4065
4108
|
"asterisk-square": "asterisk-square";
|
|
4109
|
+
astroid: "astroid";
|
|
4066
4110
|
"at-sign": "at-sign";
|
|
4067
4111
|
atom: "atom";
|
|
4068
4112
|
"audio-lines": "audio-lines";
|
|
@@ -4130,6 +4174,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4130
4174
|
beer: "beer";
|
|
4131
4175
|
"beer-off": "beer-off";
|
|
4132
4176
|
bell: "bell";
|
|
4177
|
+
"bell-check": "bell-check";
|
|
4133
4178
|
"bell-dot": "bell-dot";
|
|
4134
4179
|
"bell-electric": "bell-electric";
|
|
4135
4180
|
"bell-minus": "bell-minus";
|
|
@@ -4150,6 +4195,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4150
4195
|
birdhouse: "birdhouse";
|
|
4151
4196
|
bitcoin: "bitcoin";
|
|
4152
4197
|
blend: "blend";
|
|
4198
|
+
blender: "blender";
|
|
4153
4199
|
blinds: "blinds";
|
|
4154
4200
|
blocks: "blocks";
|
|
4155
4201
|
bluetooth: "bluetooth";
|
|
@@ -4214,6 +4260,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4214
4260
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
4215
4261
|
"briefcase-medical": "briefcase-medical";
|
|
4216
4262
|
"bring-to-front": "bring-to-front";
|
|
4263
|
+
broccoli: "broccoli";
|
|
4217
4264
|
brush: "brush";
|
|
4218
4265
|
"brush-cleaning": "brush-cleaning";
|
|
4219
4266
|
bubbles: "bubbles";
|
|
@@ -4462,7 +4509,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4462
4509
|
"columns-4": "columns-4";
|
|
4463
4510
|
"columns-settings": "columns-settings";
|
|
4464
4511
|
combine: "combine";
|
|
4465
|
-
command: "command";
|
|
4466
4512
|
compass: "compass";
|
|
4467
4513
|
component: "component";
|
|
4468
4514
|
computer: "computer";
|
|
@@ -4476,7 +4522,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4476
4522
|
contrast: "contrast";
|
|
4477
4523
|
cookie: "cookie";
|
|
4478
4524
|
"cooking-pot": "cooking-pot";
|
|
4479
|
-
copy: "copy";
|
|
4480
4525
|
"copy-check": "copy-check";
|
|
4481
4526
|
"copy-minus": "copy-minus";
|
|
4482
4527
|
"copy-plus": "copy-plus";
|
|
@@ -4673,7 +4718,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4673
4718
|
"file-x-corner": "file-x-corner";
|
|
4674
4719
|
files: "files";
|
|
4675
4720
|
film: "film";
|
|
4676
|
-
filter: "filter";
|
|
4677
4721
|
"filter-x": "filter-x";
|
|
4678
4722
|
fingerprint: "fingerprint";
|
|
4679
4723
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -4700,11 +4744,11 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4700
4744
|
"flip-vertical-2": "flip-vertical-2";
|
|
4701
4745
|
flower: "flower";
|
|
4702
4746
|
"flower-2": "flower-2";
|
|
4703
|
-
focus: "focus";
|
|
4704
4747
|
"fold-horizontal": "fold-horizontal";
|
|
4705
4748
|
"fold-vertical": "fold-vertical";
|
|
4706
4749
|
folder: "folder";
|
|
4707
4750
|
"folder-archive": "folder-archive";
|
|
4751
|
+
"folder-bookmark": "folder-bookmark";
|
|
4708
4752
|
"folder-check": "folder-check";
|
|
4709
4753
|
"folder-clock": "folder-clock";
|
|
4710
4754
|
"folder-closed": "folder-closed";
|
|
@@ -4854,6 +4898,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4854
4898
|
"heart-off": "heart-off";
|
|
4855
4899
|
"heart-plus": "heart-plus";
|
|
4856
4900
|
"heart-pulse": "heart-pulse";
|
|
4901
|
+
"heart-x": "heart-x";
|
|
4857
4902
|
heater: "heater";
|
|
4858
4903
|
helicopter: "helicopter";
|
|
4859
4904
|
"help-circle": "help-circle";
|
|
@@ -4905,7 +4950,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4905
4950
|
"kanban-square": "kanban-square";
|
|
4906
4951
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
4907
4952
|
kayak: "kayak";
|
|
4908
|
-
key: "key";
|
|
4909
4953
|
"key-round": "key-round";
|
|
4910
4954
|
"key-square": "key-square";
|
|
4911
4955
|
keyboard: "keyboard";
|
|
@@ -4930,6 +4974,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4930
4974
|
layers: "layers";
|
|
4931
4975
|
"layers-2": "layers-2";
|
|
4932
4976
|
"layers-3": "layers-3";
|
|
4977
|
+
"layers-minus": "layers-minus";
|
|
4933
4978
|
"layers-plus": "layers-plus";
|
|
4934
4979
|
layout: "layout";
|
|
4935
4980
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -5037,7 +5082,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5037
5082
|
"memory-stick": "memory-stick";
|
|
5038
5083
|
menu: "menu";
|
|
5039
5084
|
"menu-square": "menu-square";
|
|
5040
|
-
merge: "merge";
|
|
5041
5085
|
"message-circle": "message-circle";
|
|
5042
5086
|
"message-circle-check": "message-circle-check";
|
|
5043
5087
|
"message-circle-code": "message-circle-code";
|
|
@@ -5214,7 +5258,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5214
5258
|
"parking-square": "parking-square";
|
|
5215
5259
|
"parking-square-off": "parking-square-off";
|
|
5216
5260
|
"party-popper": "party-popper";
|
|
5217
|
-
pause: "pause";
|
|
5218
5261
|
"pause-circle": "pause-circle";
|
|
5219
5262
|
"pause-octagon": "pause-octagon";
|
|
5220
5263
|
"paw-print": "paw-print";
|
|
@@ -5264,7 +5307,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5264
5307
|
plane: "plane";
|
|
5265
5308
|
"plane-landing": "plane-landing";
|
|
5266
5309
|
"plane-takeoff": "plane-takeoff";
|
|
5267
|
-
play: "play";
|
|
5268
5310
|
"play-circle": "play-circle";
|
|
5269
5311
|
"play-square": "play-square";
|
|
5270
5312
|
plug: "plug";
|
|
@@ -5335,6 +5377,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5335
5377
|
"remove-formatting": "remove-formatting";
|
|
5336
5378
|
"repeat-1": "repeat-1";
|
|
5337
5379
|
"repeat-2": "repeat-2";
|
|
5380
|
+
"repeat-off": "repeat-off";
|
|
5338
5381
|
"replace-all": "replace-all";
|
|
5339
5382
|
reply: "reply";
|
|
5340
5383
|
"reply-all": "reply-all";
|
|
@@ -5395,7 +5438,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5395
5438
|
scooter: "scooter";
|
|
5396
5439
|
"screen-share": "screen-share";
|
|
5397
5440
|
"screen-share-off": "screen-share-off";
|
|
5398
|
-
scroll: "scroll";
|
|
5399
5441
|
"scroll-text": "scroll-text";
|
|
5400
5442
|
"search-alert": "search-alert";
|
|
5401
5443
|
"search-check": "search-check";
|
|
@@ -5590,6 +5632,12 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5590
5632
|
stethoscope: "stethoscope";
|
|
5591
5633
|
sticker: "sticker";
|
|
5592
5634
|
"sticky-note": "sticky-note";
|
|
5635
|
+
"sticky-note-check": "sticky-note-check";
|
|
5636
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
5637
|
+
"sticky-note-off": "sticky-note-off";
|
|
5638
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
5639
|
+
"sticky-note-x": "sticky-note-x";
|
|
5640
|
+
"sticky-notes": "sticky-notes";
|
|
5593
5641
|
stone: "stone";
|
|
5594
5642
|
"stop-circle": "stop-circle";
|
|
5595
5643
|
store: "store";
|
|
@@ -5670,6 +5718,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5670
5718
|
"ticket-x": "ticket-x";
|
|
5671
5719
|
tickets: "tickets";
|
|
5672
5720
|
"tickets-plane": "tickets-plane";
|
|
5721
|
+
timeline: "timeline";
|
|
5673
5722
|
timer: "timer";
|
|
5674
5723
|
"timer-off": "timer-off";
|
|
5675
5724
|
"timer-reset": "timer-reset";
|
|
@@ -5808,7 +5857,9 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5808
5857
|
waves: "waves";
|
|
5809
5858
|
"waves-arrow-down": "waves-arrow-down";
|
|
5810
5859
|
"waves-arrow-up": "waves-arrow-up";
|
|
5860
|
+
"waves-horizontal": "waves-horizontal";
|
|
5811
5861
|
"waves-ladder": "waves-ladder";
|
|
5862
|
+
"waves-vertical": "waves-vertical";
|
|
5812
5863
|
waypoints: "waypoints";
|
|
5813
5864
|
webcam: "webcam";
|
|
5814
5865
|
webhook: "webhook";
|
|
@@ -5877,8 +5928,17 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5877
5928
|
bold: "bold";
|
|
5878
5929
|
link: "link";
|
|
5879
5930
|
binary: "binary";
|
|
5880
|
-
file: "file";
|
|
5881
5931
|
map: "map";
|
|
5932
|
+
filter: "filter";
|
|
5933
|
+
command: "command";
|
|
5934
|
+
copy: "copy";
|
|
5935
|
+
focus: "focus";
|
|
5936
|
+
pause: "pause";
|
|
5937
|
+
play: "play";
|
|
5938
|
+
scroll: "scroll";
|
|
5939
|
+
key: "key";
|
|
5940
|
+
merge: "merge";
|
|
5941
|
+
file: "file";
|
|
5882
5942
|
type: "type";
|
|
5883
5943
|
"a-arrow-down": "a-arrow-down";
|
|
5884
5944
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -6017,6 +6077,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6017
6077
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
6018
6078
|
asterisk: "asterisk";
|
|
6019
6079
|
"asterisk-square": "asterisk-square";
|
|
6080
|
+
astroid: "astroid";
|
|
6020
6081
|
"at-sign": "at-sign";
|
|
6021
6082
|
atom: "atom";
|
|
6022
6083
|
"audio-lines": "audio-lines";
|
|
@@ -6084,6 +6145,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6084
6145
|
beer: "beer";
|
|
6085
6146
|
"beer-off": "beer-off";
|
|
6086
6147
|
bell: "bell";
|
|
6148
|
+
"bell-check": "bell-check";
|
|
6087
6149
|
"bell-dot": "bell-dot";
|
|
6088
6150
|
"bell-electric": "bell-electric";
|
|
6089
6151
|
"bell-minus": "bell-minus";
|
|
@@ -6104,6 +6166,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6104
6166
|
birdhouse: "birdhouse";
|
|
6105
6167
|
bitcoin: "bitcoin";
|
|
6106
6168
|
blend: "blend";
|
|
6169
|
+
blender: "blender";
|
|
6107
6170
|
blinds: "blinds";
|
|
6108
6171
|
blocks: "blocks";
|
|
6109
6172
|
bluetooth: "bluetooth";
|
|
@@ -6168,6 +6231,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6168
6231
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
6169
6232
|
"briefcase-medical": "briefcase-medical";
|
|
6170
6233
|
"bring-to-front": "bring-to-front";
|
|
6234
|
+
broccoli: "broccoli";
|
|
6171
6235
|
brush: "brush";
|
|
6172
6236
|
"brush-cleaning": "brush-cleaning";
|
|
6173
6237
|
bubbles: "bubbles";
|
|
@@ -6416,7 +6480,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6416
6480
|
"columns-4": "columns-4";
|
|
6417
6481
|
"columns-settings": "columns-settings";
|
|
6418
6482
|
combine: "combine";
|
|
6419
|
-
command: "command";
|
|
6420
6483
|
compass: "compass";
|
|
6421
6484
|
component: "component";
|
|
6422
6485
|
computer: "computer";
|
|
@@ -6430,7 +6493,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6430
6493
|
contrast: "contrast";
|
|
6431
6494
|
cookie: "cookie";
|
|
6432
6495
|
"cooking-pot": "cooking-pot";
|
|
6433
|
-
copy: "copy";
|
|
6434
6496
|
"copy-check": "copy-check";
|
|
6435
6497
|
"copy-minus": "copy-minus";
|
|
6436
6498
|
"copy-plus": "copy-plus";
|
|
@@ -6627,7 +6689,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6627
6689
|
"file-x-corner": "file-x-corner";
|
|
6628
6690
|
files: "files";
|
|
6629
6691
|
film: "film";
|
|
6630
|
-
filter: "filter";
|
|
6631
6692
|
"filter-x": "filter-x";
|
|
6632
6693
|
fingerprint: "fingerprint";
|
|
6633
6694
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -6654,11 +6715,11 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6654
6715
|
"flip-vertical-2": "flip-vertical-2";
|
|
6655
6716
|
flower: "flower";
|
|
6656
6717
|
"flower-2": "flower-2";
|
|
6657
|
-
focus: "focus";
|
|
6658
6718
|
"fold-horizontal": "fold-horizontal";
|
|
6659
6719
|
"fold-vertical": "fold-vertical";
|
|
6660
6720
|
folder: "folder";
|
|
6661
6721
|
"folder-archive": "folder-archive";
|
|
6722
|
+
"folder-bookmark": "folder-bookmark";
|
|
6662
6723
|
"folder-check": "folder-check";
|
|
6663
6724
|
"folder-clock": "folder-clock";
|
|
6664
6725
|
"folder-closed": "folder-closed";
|
|
@@ -6808,6 +6869,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6808
6869
|
"heart-off": "heart-off";
|
|
6809
6870
|
"heart-plus": "heart-plus";
|
|
6810
6871
|
"heart-pulse": "heart-pulse";
|
|
6872
|
+
"heart-x": "heart-x";
|
|
6811
6873
|
heater: "heater";
|
|
6812
6874
|
helicopter: "helicopter";
|
|
6813
6875
|
"help-circle": "help-circle";
|
|
@@ -6859,7 +6921,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6859
6921
|
"kanban-square": "kanban-square";
|
|
6860
6922
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
6861
6923
|
kayak: "kayak";
|
|
6862
|
-
key: "key";
|
|
6863
6924
|
"key-round": "key-round";
|
|
6864
6925
|
"key-square": "key-square";
|
|
6865
6926
|
keyboard: "keyboard";
|
|
@@ -6884,6 +6945,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6884
6945
|
layers: "layers";
|
|
6885
6946
|
"layers-2": "layers-2";
|
|
6886
6947
|
"layers-3": "layers-3";
|
|
6948
|
+
"layers-minus": "layers-minus";
|
|
6887
6949
|
"layers-plus": "layers-plus";
|
|
6888
6950
|
layout: "layout";
|
|
6889
6951
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -6991,7 +7053,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6991
7053
|
"memory-stick": "memory-stick";
|
|
6992
7054
|
menu: "menu";
|
|
6993
7055
|
"menu-square": "menu-square";
|
|
6994
|
-
merge: "merge";
|
|
6995
7056
|
"message-circle": "message-circle";
|
|
6996
7057
|
"message-circle-check": "message-circle-check";
|
|
6997
7058
|
"message-circle-code": "message-circle-code";
|
|
@@ -7168,7 +7229,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7168
7229
|
"parking-square": "parking-square";
|
|
7169
7230
|
"parking-square-off": "parking-square-off";
|
|
7170
7231
|
"party-popper": "party-popper";
|
|
7171
|
-
pause: "pause";
|
|
7172
7232
|
"pause-circle": "pause-circle";
|
|
7173
7233
|
"pause-octagon": "pause-octagon";
|
|
7174
7234
|
"paw-print": "paw-print";
|
|
@@ -7218,7 +7278,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7218
7278
|
plane: "plane";
|
|
7219
7279
|
"plane-landing": "plane-landing";
|
|
7220
7280
|
"plane-takeoff": "plane-takeoff";
|
|
7221
|
-
play: "play";
|
|
7222
7281
|
"play-circle": "play-circle";
|
|
7223
7282
|
"play-square": "play-square";
|
|
7224
7283
|
plug: "plug";
|
|
@@ -7289,6 +7348,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7289
7348
|
"remove-formatting": "remove-formatting";
|
|
7290
7349
|
"repeat-1": "repeat-1";
|
|
7291
7350
|
"repeat-2": "repeat-2";
|
|
7351
|
+
"repeat-off": "repeat-off";
|
|
7292
7352
|
"replace-all": "replace-all";
|
|
7293
7353
|
reply: "reply";
|
|
7294
7354
|
"reply-all": "reply-all";
|
|
@@ -7349,7 +7409,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7349
7409
|
scooter: "scooter";
|
|
7350
7410
|
"screen-share": "screen-share";
|
|
7351
7411
|
"screen-share-off": "screen-share-off";
|
|
7352
|
-
scroll: "scroll";
|
|
7353
7412
|
"scroll-text": "scroll-text";
|
|
7354
7413
|
"search-alert": "search-alert";
|
|
7355
7414
|
"search-check": "search-check";
|
|
@@ -7544,6 +7603,12 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7544
7603
|
stethoscope: "stethoscope";
|
|
7545
7604
|
sticker: "sticker";
|
|
7546
7605
|
"sticky-note": "sticky-note";
|
|
7606
|
+
"sticky-note-check": "sticky-note-check";
|
|
7607
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
7608
|
+
"sticky-note-off": "sticky-note-off";
|
|
7609
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
7610
|
+
"sticky-note-x": "sticky-note-x";
|
|
7611
|
+
"sticky-notes": "sticky-notes";
|
|
7547
7612
|
stone: "stone";
|
|
7548
7613
|
"stop-circle": "stop-circle";
|
|
7549
7614
|
store: "store";
|
|
@@ -7624,6 +7689,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7624
7689
|
"ticket-x": "ticket-x";
|
|
7625
7690
|
tickets: "tickets";
|
|
7626
7691
|
"tickets-plane": "tickets-plane";
|
|
7692
|
+
timeline: "timeline";
|
|
7627
7693
|
timer: "timer";
|
|
7628
7694
|
"timer-off": "timer-off";
|
|
7629
7695
|
"timer-reset": "timer-reset";
|
|
@@ -7762,7 +7828,9 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7762
7828
|
waves: "waves";
|
|
7763
7829
|
"waves-arrow-down": "waves-arrow-down";
|
|
7764
7830
|
"waves-arrow-up": "waves-arrow-up";
|
|
7831
|
+
"waves-horizontal": "waves-horizontal";
|
|
7765
7832
|
"waves-ladder": "waves-ladder";
|
|
7833
|
+
"waves-vertical": "waves-vertical";
|
|
7766
7834
|
waypoints: "waypoints";
|
|
7767
7835
|
webcam: "webcam";
|
|
7768
7836
|
webhook: "webhook";
|
|
@@ -7832,8 +7900,17 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7832
7900
|
bold: "bold";
|
|
7833
7901
|
link: "link";
|
|
7834
7902
|
binary: "binary";
|
|
7835
|
-
file: "file";
|
|
7836
7903
|
map: "map";
|
|
7904
|
+
filter: "filter";
|
|
7905
|
+
command: "command";
|
|
7906
|
+
copy: "copy";
|
|
7907
|
+
focus: "focus";
|
|
7908
|
+
pause: "pause";
|
|
7909
|
+
play: "play";
|
|
7910
|
+
scroll: "scroll";
|
|
7911
|
+
key: "key";
|
|
7912
|
+
merge: "merge";
|
|
7913
|
+
file: "file";
|
|
7837
7914
|
type: "type";
|
|
7838
7915
|
"a-arrow-down": "a-arrow-down";
|
|
7839
7916
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -7972,6 +8049,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7972
8049
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
7973
8050
|
asterisk: "asterisk";
|
|
7974
8051
|
"asterisk-square": "asterisk-square";
|
|
8052
|
+
astroid: "astroid";
|
|
7975
8053
|
"at-sign": "at-sign";
|
|
7976
8054
|
atom: "atom";
|
|
7977
8055
|
"audio-lines": "audio-lines";
|
|
@@ -8039,6 +8117,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8039
8117
|
beer: "beer";
|
|
8040
8118
|
"beer-off": "beer-off";
|
|
8041
8119
|
bell: "bell";
|
|
8120
|
+
"bell-check": "bell-check";
|
|
8042
8121
|
"bell-dot": "bell-dot";
|
|
8043
8122
|
"bell-electric": "bell-electric";
|
|
8044
8123
|
"bell-minus": "bell-minus";
|
|
@@ -8059,6 +8138,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8059
8138
|
birdhouse: "birdhouse";
|
|
8060
8139
|
bitcoin: "bitcoin";
|
|
8061
8140
|
blend: "blend";
|
|
8141
|
+
blender: "blender";
|
|
8062
8142
|
blinds: "blinds";
|
|
8063
8143
|
blocks: "blocks";
|
|
8064
8144
|
bluetooth: "bluetooth";
|
|
@@ -8123,6 +8203,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8123
8203
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
8124
8204
|
"briefcase-medical": "briefcase-medical";
|
|
8125
8205
|
"bring-to-front": "bring-to-front";
|
|
8206
|
+
broccoli: "broccoli";
|
|
8126
8207
|
brush: "brush";
|
|
8127
8208
|
"brush-cleaning": "brush-cleaning";
|
|
8128
8209
|
bubbles: "bubbles";
|
|
@@ -8371,7 +8452,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8371
8452
|
"columns-4": "columns-4";
|
|
8372
8453
|
"columns-settings": "columns-settings";
|
|
8373
8454
|
combine: "combine";
|
|
8374
|
-
command: "command";
|
|
8375
8455
|
compass: "compass";
|
|
8376
8456
|
component: "component";
|
|
8377
8457
|
computer: "computer";
|
|
@@ -8385,7 +8465,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8385
8465
|
contrast: "contrast";
|
|
8386
8466
|
cookie: "cookie";
|
|
8387
8467
|
"cooking-pot": "cooking-pot";
|
|
8388
|
-
copy: "copy";
|
|
8389
8468
|
"copy-check": "copy-check";
|
|
8390
8469
|
"copy-minus": "copy-minus";
|
|
8391
8470
|
"copy-plus": "copy-plus";
|
|
@@ -8582,7 +8661,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8582
8661
|
"file-x-corner": "file-x-corner";
|
|
8583
8662
|
files: "files";
|
|
8584
8663
|
film: "film";
|
|
8585
|
-
filter: "filter";
|
|
8586
8664
|
"filter-x": "filter-x";
|
|
8587
8665
|
fingerprint: "fingerprint";
|
|
8588
8666
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -8609,11 +8687,11 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8609
8687
|
"flip-vertical-2": "flip-vertical-2";
|
|
8610
8688
|
flower: "flower";
|
|
8611
8689
|
"flower-2": "flower-2";
|
|
8612
|
-
focus: "focus";
|
|
8613
8690
|
"fold-horizontal": "fold-horizontal";
|
|
8614
8691
|
"fold-vertical": "fold-vertical";
|
|
8615
8692
|
folder: "folder";
|
|
8616
8693
|
"folder-archive": "folder-archive";
|
|
8694
|
+
"folder-bookmark": "folder-bookmark";
|
|
8617
8695
|
"folder-check": "folder-check";
|
|
8618
8696
|
"folder-clock": "folder-clock";
|
|
8619
8697
|
"folder-closed": "folder-closed";
|
|
@@ -8763,6 +8841,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8763
8841
|
"heart-off": "heart-off";
|
|
8764
8842
|
"heart-plus": "heart-plus";
|
|
8765
8843
|
"heart-pulse": "heart-pulse";
|
|
8844
|
+
"heart-x": "heart-x";
|
|
8766
8845
|
heater: "heater";
|
|
8767
8846
|
helicopter: "helicopter";
|
|
8768
8847
|
"help-circle": "help-circle";
|
|
@@ -8814,7 +8893,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8814
8893
|
"kanban-square": "kanban-square";
|
|
8815
8894
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
8816
8895
|
kayak: "kayak";
|
|
8817
|
-
key: "key";
|
|
8818
8896
|
"key-round": "key-round";
|
|
8819
8897
|
"key-square": "key-square";
|
|
8820
8898
|
keyboard: "keyboard";
|
|
@@ -8839,6 +8917,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8839
8917
|
layers: "layers";
|
|
8840
8918
|
"layers-2": "layers-2";
|
|
8841
8919
|
"layers-3": "layers-3";
|
|
8920
|
+
"layers-minus": "layers-minus";
|
|
8842
8921
|
"layers-plus": "layers-plus";
|
|
8843
8922
|
layout: "layout";
|
|
8844
8923
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -8946,7 +9025,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8946
9025
|
"memory-stick": "memory-stick";
|
|
8947
9026
|
menu: "menu";
|
|
8948
9027
|
"menu-square": "menu-square";
|
|
8949
|
-
merge: "merge";
|
|
8950
9028
|
"message-circle": "message-circle";
|
|
8951
9029
|
"message-circle-check": "message-circle-check";
|
|
8952
9030
|
"message-circle-code": "message-circle-code";
|
|
@@ -9123,7 +9201,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9123
9201
|
"parking-square": "parking-square";
|
|
9124
9202
|
"parking-square-off": "parking-square-off";
|
|
9125
9203
|
"party-popper": "party-popper";
|
|
9126
|
-
pause: "pause";
|
|
9127
9204
|
"pause-circle": "pause-circle";
|
|
9128
9205
|
"pause-octagon": "pause-octagon";
|
|
9129
9206
|
"paw-print": "paw-print";
|
|
@@ -9173,7 +9250,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9173
9250
|
plane: "plane";
|
|
9174
9251
|
"plane-landing": "plane-landing";
|
|
9175
9252
|
"plane-takeoff": "plane-takeoff";
|
|
9176
|
-
play: "play";
|
|
9177
9253
|
"play-circle": "play-circle";
|
|
9178
9254
|
"play-square": "play-square";
|
|
9179
9255
|
plug: "plug";
|
|
@@ -9244,6 +9320,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9244
9320
|
"remove-formatting": "remove-formatting";
|
|
9245
9321
|
"repeat-1": "repeat-1";
|
|
9246
9322
|
"repeat-2": "repeat-2";
|
|
9323
|
+
"repeat-off": "repeat-off";
|
|
9247
9324
|
"replace-all": "replace-all";
|
|
9248
9325
|
reply: "reply";
|
|
9249
9326
|
"reply-all": "reply-all";
|
|
@@ -9304,7 +9381,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9304
9381
|
scooter: "scooter";
|
|
9305
9382
|
"screen-share": "screen-share";
|
|
9306
9383
|
"screen-share-off": "screen-share-off";
|
|
9307
|
-
scroll: "scroll";
|
|
9308
9384
|
"scroll-text": "scroll-text";
|
|
9309
9385
|
"search-alert": "search-alert";
|
|
9310
9386
|
"search-check": "search-check";
|
|
@@ -9499,6 +9575,12 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9499
9575
|
stethoscope: "stethoscope";
|
|
9500
9576
|
sticker: "sticker";
|
|
9501
9577
|
"sticky-note": "sticky-note";
|
|
9578
|
+
"sticky-note-check": "sticky-note-check";
|
|
9579
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
9580
|
+
"sticky-note-off": "sticky-note-off";
|
|
9581
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
9582
|
+
"sticky-note-x": "sticky-note-x";
|
|
9583
|
+
"sticky-notes": "sticky-notes";
|
|
9502
9584
|
stone: "stone";
|
|
9503
9585
|
"stop-circle": "stop-circle";
|
|
9504
9586
|
store: "store";
|
|
@@ -9579,6 +9661,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9579
9661
|
"ticket-x": "ticket-x";
|
|
9580
9662
|
tickets: "tickets";
|
|
9581
9663
|
"tickets-plane": "tickets-plane";
|
|
9664
|
+
timeline: "timeline";
|
|
9582
9665
|
timer: "timer";
|
|
9583
9666
|
"timer-off": "timer-off";
|
|
9584
9667
|
"timer-reset": "timer-reset";
|
|
@@ -9717,7 +9800,9 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9717
9800
|
waves: "waves";
|
|
9718
9801
|
"waves-arrow-down": "waves-arrow-down";
|
|
9719
9802
|
"waves-arrow-up": "waves-arrow-up";
|
|
9803
|
+
"waves-horizontal": "waves-horizontal";
|
|
9720
9804
|
"waves-ladder": "waves-ladder";
|
|
9805
|
+
"waves-vertical": "waves-vertical";
|
|
9721
9806
|
waypoints: "waypoints";
|
|
9722
9807
|
webcam: "webcam";
|
|
9723
9808
|
webhook: "webhook";
|
|
@@ -9788,8 +9873,17 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
9788
9873
|
bold: "bold";
|
|
9789
9874
|
link: "link";
|
|
9790
9875
|
binary: "binary";
|
|
9791
|
-
file: "file";
|
|
9792
9876
|
map: "map";
|
|
9877
|
+
filter: "filter";
|
|
9878
|
+
command: "command";
|
|
9879
|
+
copy: "copy";
|
|
9880
|
+
focus: "focus";
|
|
9881
|
+
pause: "pause";
|
|
9882
|
+
play: "play";
|
|
9883
|
+
scroll: "scroll";
|
|
9884
|
+
key: "key";
|
|
9885
|
+
merge: "merge";
|
|
9886
|
+
file: "file";
|
|
9793
9887
|
type: "type";
|
|
9794
9888
|
"a-arrow-down": "a-arrow-down";
|
|
9795
9889
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -9928,6 +10022,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
9928
10022
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
9929
10023
|
asterisk: "asterisk";
|
|
9930
10024
|
"asterisk-square": "asterisk-square";
|
|
10025
|
+
astroid: "astroid";
|
|
9931
10026
|
"at-sign": "at-sign";
|
|
9932
10027
|
atom: "atom";
|
|
9933
10028
|
"audio-lines": "audio-lines";
|
|
@@ -9995,6 +10090,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
9995
10090
|
beer: "beer";
|
|
9996
10091
|
"beer-off": "beer-off";
|
|
9997
10092
|
bell: "bell";
|
|
10093
|
+
"bell-check": "bell-check";
|
|
9998
10094
|
"bell-dot": "bell-dot";
|
|
9999
10095
|
"bell-electric": "bell-electric";
|
|
10000
10096
|
"bell-minus": "bell-minus";
|
|
@@ -10015,6 +10111,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10015
10111
|
birdhouse: "birdhouse";
|
|
10016
10112
|
bitcoin: "bitcoin";
|
|
10017
10113
|
blend: "blend";
|
|
10114
|
+
blender: "blender";
|
|
10018
10115
|
blinds: "blinds";
|
|
10019
10116
|
blocks: "blocks";
|
|
10020
10117
|
bluetooth: "bluetooth";
|
|
@@ -10079,6 +10176,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10079
10176
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
10080
10177
|
"briefcase-medical": "briefcase-medical";
|
|
10081
10178
|
"bring-to-front": "bring-to-front";
|
|
10179
|
+
broccoli: "broccoli";
|
|
10082
10180
|
brush: "brush";
|
|
10083
10181
|
"brush-cleaning": "brush-cleaning";
|
|
10084
10182
|
bubbles: "bubbles";
|
|
@@ -10327,7 +10425,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10327
10425
|
"columns-4": "columns-4";
|
|
10328
10426
|
"columns-settings": "columns-settings";
|
|
10329
10427
|
combine: "combine";
|
|
10330
|
-
command: "command";
|
|
10331
10428
|
compass: "compass";
|
|
10332
10429
|
component: "component";
|
|
10333
10430
|
computer: "computer";
|
|
@@ -10341,7 +10438,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10341
10438
|
contrast: "contrast";
|
|
10342
10439
|
cookie: "cookie";
|
|
10343
10440
|
"cooking-pot": "cooking-pot";
|
|
10344
|
-
copy: "copy";
|
|
10345
10441
|
"copy-check": "copy-check";
|
|
10346
10442
|
"copy-minus": "copy-minus";
|
|
10347
10443
|
"copy-plus": "copy-plus";
|
|
@@ -10538,7 +10634,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10538
10634
|
"file-x-corner": "file-x-corner";
|
|
10539
10635
|
files: "files";
|
|
10540
10636
|
film: "film";
|
|
10541
|
-
filter: "filter";
|
|
10542
10637
|
"filter-x": "filter-x";
|
|
10543
10638
|
fingerprint: "fingerprint";
|
|
10544
10639
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -10565,11 +10660,11 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10565
10660
|
"flip-vertical-2": "flip-vertical-2";
|
|
10566
10661
|
flower: "flower";
|
|
10567
10662
|
"flower-2": "flower-2";
|
|
10568
|
-
focus: "focus";
|
|
10569
10663
|
"fold-horizontal": "fold-horizontal";
|
|
10570
10664
|
"fold-vertical": "fold-vertical";
|
|
10571
10665
|
folder: "folder";
|
|
10572
10666
|
"folder-archive": "folder-archive";
|
|
10667
|
+
"folder-bookmark": "folder-bookmark";
|
|
10573
10668
|
"folder-check": "folder-check";
|
|
10574
10669
|
"folder-clock": "folder-clock";
|
|
10575
10670
|
"folder-closed": "folder-closed";
|
|
@@ -10719,6 +10814,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10719
10814
|
"heart-off": "heart-off";
|
|
10720
10815
|
"heart-plus": "heart-plus";
|
|
10721
10816
|
"heart-pulse": "heart-pulse";
|
|
10817
|
+
"heart-x": "heart-x";
|
|
10722
10818
|
heater: "heater";
|
|
10723
10819
|
helicopter: "helicopter";
|
|
10724
10820
|
"help-circle": "help-circle";
|
|
@@ -10770,7 +10866,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10770
10866
|
"kanban-square": "kanban-square";
|
|
10771
10867
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
10772
10868
|
kayak: "kayak";
|
|
10773
|
-
key: "key";
|
|
10774
10869
|
"key-round": "key-round";
|
|
10775
10870
|
"key-square": "key-square";
|
|
10776
10871
|
keyboard: "keyboard";
|
|
@@ -10795,6 +10890,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10795
10890
|
layers: "layers";
|
|
10796
10891
|
"layers-2": "layers-2";
|
|
10797
10892
|
"layers-3": "layers-3";
|
|
10893
|
+
"layers-minus": "layers-minus";
|
|
10798
10894
|
"layers-plus": "layers-plus";
|
|
10799
10895
|
layout: "layout";
|
|
10800
10896
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -10902,7 +10998,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10902
10998
|
"memory-stick": "memory-stick";
|
|
10903
10999
|
menu: "menu";
|
|
10904
11000
|
"menu-square": "menu-square";
|
|
10905
|
-
merge: "merge";
|
|
10906
11001
|
"message-circle": "message-circle";
|
|
10907
11002
|
"message-circle-check": "message-circle-check";
|
|
10908
11003
|
"message-circle-code": "message-circle-code";
|
|
@@ -11079,7 +11174,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11079
11174
|
"parking-square": "parking-square";
|
|
11080
11175
|
"parking-square-off": "parking-square-off";
|
|
11081
11176
|
"party-popper": "party-popper";
|
|
11082
|
-
pause: "pause";
|
|
11083
11177
|
"pause-circle": "pause-circle";
|
|
11084
11178
|
"pause-octagon": "pause-octagon";
|
|
11085
11179
|
"paw-print": "paw-print";
|
|
@@ -11129,7 +11223,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11129
11223
|
plane: "plane";
|
|
11130
11224
|
"plane-landing": "plane-landing";
|
|
11131
11225
|
"plane-takeoff": "plane-takeoff";
|
|
11132
|
-
play: "play";
|
|
11133
11226
|
"play-circle": "play-circle";
|
|
11134
11227
|
"play-square": "play-square";
|
|
11135
11228
|
plug: "plug";
|
|
@@ -11200,6 +11293,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11200
11293
|
"remove-formatting": "remove-formatting";
|
|
11201
11294
|
"repeat-1": "repeat-1";
|
|
11202
11295
|
"repeat-2": "repeat-2";
|
|
11296
|
+
"repeat-off": "repeat-off";
|
|
11203
11297
|
"replace-all": "replace-all";
|
|
11204
11298
|
reply: "reply";
|
|
11205
11299
|
"reply-all": "reply-all";
|
|
@@ -11260,7 +11354,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11260
11354
|
scooter: "scooter";
|
|
11261
11355
|
"screen-share": "screen-share";
|
|
11262
11356
|
"screen-share-off": "screen-share-off";
|
|
11263
|
-
scroll: "scroll";
|
|
11264
11357
|
"scroll-text": "scroll-text";
|
|
11265
11358
|
"search-alert": "search-alert";
|
|
11266
11359
|
"search-check": "search-check";
|
|
@@ -11455,6 +11548,12 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11455
11548
|
stethoscope: "stethoscope";
|
|
11456
11549
|
sticker: "sticker";
|
|
11457
11550
|
"sticky-note": "sticky-note";
|
|
11551
|
+
"sticky-note-check": "sticky-note-check";
|
|
11552
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
11553
|
+
"sticky-note-off": "sticky-note-off";
|
|
11554
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
11555
|
+
"sticky-note-x": "sticky-note-x";
|
|
11556
|
+
"sticky-notes": "sticky-notes";
|
|
11458
11557
|
stone: "stone";
|
|
11459
11558
|
"stop-circle": "stop-circle";
|
|
11460
11559
|
store: "store";
|
|
@@ -11535,6 +11634,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11535
11634
|
"ticket-x": "ticket-x";
|
|
11536
11635
|
tickets: "tickets";
|
|
11537
11636
|
"tickets-plane": "tickets-plane";
|
|
11637
|
+
timeline: "timeline";
|
|
11538
11638
|
timer: "timer";
|
|
11539
11639
|
"timer-off": "timer-off";
|
|
11540
11640
|
"timer-reset": "timer-reset";
|
|
@@ -11673,7 +11773,9 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11673
11773
|
waves: "waves";
|
|
11674
11774
|
"waves-arrow-down": "waves-arrow-down";
|
|
11675
11775
|
"waves-arrow-up": "waves-arrow-up";
|
|
11776
|
+
"waves-horizontal": "waves-horizontal";
|
|
11676
11777
|
"waves-ladder": "waves-ladder";
|
|
11778
|
+
"waves-vertical": "waves-vertical";
|
|
11677
11779
|
waypoints: "waypoints";
|
|
11678
11780
|
webcam: "webcam";
|
|
11679
11781
|
webhook: "webhook";
|
|
@@ -11742,8 +11844,17 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11742
11844
|
bold: "bold";
|
|
11743
11845
|
link: "link";
|
|
11744
11846
|
binary: "binary";
|
|
11745
|
-
file: "file";
|
|
11746
11847
|
map: "map";
|
|
11848
|
+
filter: "filter";
|
|
11849
|
+
command: "command";
|
|
11850
|
+
copy: "copy";
|
|
11851
|
+
focus: "focus";
|
|
11852
|
+
pause: "pause";
|
|
11853
|
+
play: "play";
|
|
11854
|
+
scroll: "scroll";
|
|
11855
|
+
key: "key";
|
|
11856
|
+
merge: "merge";
|
|
11857
|
+
file: "file";
|
|
11747
11858
|
type: "type";
|
|
11748
11859
|
"a-arrow-down": "a-arrow-down";
|
|
11749
11860
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -11882,6 +11993,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11882
11993
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
11883
11994
|
asterisk: "asterisk";
|
|
11884
11995
|
"asterisk-square": "asterisk-square";
|
|
11996
|
+
astroid: "astroid";
|
|
11885
11997
|
"at-sign": "at-sign";
|
|
11886
11998
|
atom: "atom";
|
|
11887
11999
|
"audio-lines": "audio-lines";
|
|
@@ -11949,6 +12061,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11949
12061
|
beer: "beer";
|
|
11950
12062
|
"beer-off": "beer-off";
|
|
11951
12063
|
bell: "bell";
|
|
12064
|
+
"bell-check": "bell-check";
|
|
11952
12065
|
"bell-dot": "bell-dot";
|
|
11953
12066
|
"bell-electric": "bell-electric";
|
|
11954
12067
|
"bell-minus": "bell-minus";
|
|
@@ -11969,6 +12082,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11969
12082
|
birdhouse: "birdhouse";
|
|
11970
12083
|
bitcoin: "bitcoin";
|
|
11971
12084
|
blend: "blend";
|
|
12085
|
+
blender: "blender";
|
|
11972
12086
|
blinds: "blinds";
|
|
11973
12087
|
blocks: "blocks";
|
|
11974
12088
|
bluetooth: "bluetooth";
|
|
@@ -12033,6 +12147,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12033
12147
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
12034
12148
|
"briefcase-medical": "briefcase-medical";
|
|
12035
12149
|
"bring-to-front": "bring-to-front";
|
|
12150
|
+
broccoli: "broccoli";
|
|
12036
12151
|
brush: "brush";
|
|
12037
12152
|
"brush-cleaning": "brush-cleaning";
|
|
12038
12153
|
bubbles: "bubbles";
|
|
@@ -12281,7 +12396,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12281
12396
|
"columns-4": "columns-4";
|
|
12282
12397
|
"columns-settings": "columns-settings";
|
|
12283
12398
|
combine: "combine";
|
|
12284
|
-
command: "command";
|
|
12285
12399
|
compass: "compass";
|
|
12286
12400
|
component: "component";
|
|
12287
12401
|
computer: "computer";
|
|
@@ -12295,7 +12409,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12295
12409
|
contrast: "contrast";
|
|
12296
12410
|
cookie: "cookie";
|
|
12297
12411
|
"cooking-pot": "cooking-pot";
|
|
12298
|
-
copy: "copy";
|
|
12299
12412
|
"copy-check": "copy-check";
|
|
12300
12413
|
"copy-minus": "copy-minus";
|
|
12301
12414
|
"copy-plus": "copy-plus";
|
|
@@ -12492,7 +12605,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12492
12605
|
"file-x-corner": "file-x-corner";
|
|
12493
12606
|
files: "files";
|
|
12494
12607
|
film: "film";
|
|
12495
|
-
filter: "filter";
|
|
12496
12608
|
"filter-x": "filter-x";
|
|
12497
12609
|
fingerprint: "fingerprint";
|
|
12498
12610
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -12519,11 +12631,11 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12519
12631
|
"flip-vertical-2": "flip-vertical-2";
|
|
12520
12632
|
flower: "flower";
|
|
12521
12633
|
"flower-2": "flower-2";
|
|
12522
|
-
focus: "focus";
|
|
12523
12634
|
"fold-horizontal": "fold-horizontal";
|
|
12524
12635
|
"fold-vertical": "fold-vertical";
|
|
12525
12636
|
folder: "folder";
|
|
12526
12637
|
"folder-archive": "folder-archive";
|
|
12638
|
+
"folder-bookmark": "folder-bookmark";
|
|
12527
12639
|
"folder-check": "folder-check";
|
|
12528
12640
|
"folder-clock": "folder-clock";
|
|
12529
12641
|
"folder-closed": "folder-closed";
|
|
@@ -12673,6 +12785,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12673
12785
|
"heart-off": "heart-off";
|
|
12674
12786
|
"heart-plus": "heart-plus";
|
|
12675
12787
|
"heart-pulse": "heart-pulse";
|
|
12788
|
+
"heart-x": "heart-x";
|
|
12676
12789
|
heater: "heater";
|
|
12677
12790
|
helicopter: "helicopter";
|
|
12678
12791
|
"help-circle": "help-circle";
|
|
@@ -12724,7 +12837,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12724
12837
|
"kanban-square": "kanban-square";
|
|
12725
12838
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
12726
12839
|
kayak: "kayak";
|
|
12727
|
-
key: "key";
|
|
12728
12840
|
"key-round": "key-round";
|
|
12729
12841
|
"key-square": "key-square";
|
|
12730
12842
|
keyboard: "keyboard";
|
|
@@ -12749,6 +12861,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12749
12861
|
layers: "layers";
|
|
12750
12862
|
"layers-2": "layers-2";
|
|
12751
12863
|
"layers-3": "layers-3";
|
|
12864
|
+
"layers-minus": "layers-minus";
|
|
12752
12865
|
"layers-plus": "layers-plus";
|
|
12753
12866
|
layout: "layout";
|
|
12754
12867
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -12856,7 +12969,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12856
12969
|
"memory-stick": "memory-stick";
|
|
12857
12970
|
menu: "menu";
|
|
12858
12971
|
"menu-square": "menu-square";
|
|
12859
|
-
merge: "merge";
|
|
12860
12972
|
"message-circle": "message-circle";
|
|
12861
12973
|
"message-circle-check": "message-circle-check";
|
|
12862
12974
|
"message-circle-code": "message-circle-code";
|
|
@@ -13033,7 +13145,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13033
13145
|
"parking-square": "parking-square";
|
|
13034
13146
|
"parking-square-off": "parking-square-off";
|
|
13035
13147
|
"party-popper": "party-popper";
|
|
13036
|
-
pause: "pause";
|
|
13037
13148
|
"pause-circle": "pause-circle";
|
|
13038
13149
|
"pause-octagon": "pause-octagon";
|
|
13039
13150
|
"paw-print": "paw-print";
|
|
@@ -13083,7 +13194,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13083
13194
|
plane: "plane";
|
|
13084
13195
|
"plane-landing": "plane-landing";
|
|
13085
13196
|
"plane-takeoff": "plane-takeoff";
|
|
13086
|
-
play: "play";
|
|
13087
13197
|
"play-circle": "play-circle";
|
|
13088
13198
|
"play-square": "play-square";
|
|
13089
13199
|
plug: "plug";
|
|
@@ -13154,6 +13264,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13154
13264
|
"remove-formatting": "remove-formatting";
|
|
13155
13265
|
"repeat-1": "repeat-1";
|
|
13156
13266
|
"repeat-2": "repeat-2";
|
|
13267
|
+
"repeat-off": "repeat-off";
|
|
13157
13268
|
"replace-all": "replace-all";
|
|
13158
13269
|
reply: "reply";
|
|
13159
13270
|
"reply-all": "reply-all";
|
|
@@ -13214,7 +13325,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13214
13325
|
scooter: "scooter";
|
|
13215
13326
|
"screen-share": "screen-share";
|
|
13216
13327
|
"screen-share-off": "screen-share-off";
|
|
13217
|
-
scroll: "scroll";
|
|
13218
13328
|
"scroll-text": "scroll-text";
|
|
13219
13329
|
"search-alert": "search-alert";
|
|
13220
13330
|
"search-check": "search-check";
|
|
@@ -13409,6 +13519,12 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13409
13519
|
stethoscope: "stethoscope";
|
|
13410
13520
|
sticker: "sticker";
|
|
13411
13521
|
"sticky-note": "sticky-note";
|
|
13522
|
+
"sticky-note-check": "sticky-note-check";
|
|
13523
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
13524
|
+
"sticky-note-off": "sticky-note-off";
|
|
13525
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
13526
|
+
"sticky-note-x": "sticky-note-x";
|
|
13527
|
+
"sticky-notes": "sticky-notes";
|
|
13412
13528
|
stone: "stone";
|
|
13413
13529
|
"stop-circle": "stop-circle";
|
|
13414
13530
|
store: "store";
|
|
@@ -13489,6 +13605,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13489
13605
|
"ticket-x": "ticket-x";
|
|
13490
13606
|
tickets: "tickets";
|
|
13491
13607
|
"tickets-plane": "tickets-plane";
|
|
13608
|
+
timeline: "timeline";
|
|
13492
13609
|
timer: "timer";
|
|
13493
13610
|
"timer-off": "timer-off";
|
|
13494
13611
|
"timer-reset": "timer-reset";
|
|
@@ -13627,7 +13744,9 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13627
13744
|
waves: "waves";
|
|
13628
13745
|
"waves-arrow-down": "waves-arrow-down";
|
|
13629
13746
|
"waves-arrow-up": "waves-arrow-up";
|
|
13747
|
+
"waves-horizontal": "waves-horizontal";
|
|
13630
13748
|
"waves-ladder": "waves-ladder";
|
|
13749
|
+
"waves-vertical": "waves-vertical";
|
|
13631
13750
|
waypoints: "waypoints";
|
|
13632
13751
|
webcam: "webcam";
|
|
13633
13752
|
webhook: "webhook";
|
|
@@ -13697,8 +13816,17 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13697
13816
|
bold: "bold";
|
|
13698
13817
|
link: "link";
|
|
13699
13818
|
binary: "binary";
|
|
13700
|
-
file: "file";
|
|
13701
13819
|
map: "map";
|
|
13820
|
+
filter: "filter";
|
|
13821
|
+
command: "command";
|
|
13822
|
+
copy: "copy";
|
|
13823
|
+
focus: "focus";
|
|
13824
|
+
pause: "pause";
|
|
13825
|
+
play: "play";
|
|
13826
|
+
scroll: "scroll";
|
|
13827
|
+
key: "key";
|
|
13828
|
+
merge: "merge";
|
|
13829
|
+
file: "file";
|
|
13702
13830
|
type: "type";
|
|
13703
13831
|
"a-arrow-down": "a-arrow-down";
|
|
13704
13832
|
"a-arrow-up": "a-arrow-up";
|
|
@@ -13837,6 +13965,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13837
13965
|
"arrows-up-from-line": "arrows-up-from-line";
|
|
13838
13966
|
asterisk: "asterisk";
|
|
13839
13967
|
"asterisk-square": "asterisk-square";
|
|
13968
|
+
astroid: "astroid";
|
|
13840
13969
|
"at-sign": "at-sign";
|
|
13841
13970
|
atom: "atom";
|
|
13842
13971
|
"audio-lines": "audio-lines";
|
|
@@ -13904,6 +14033,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13904
14033
|
beer: "beer";
|
|
13905
14034
|
"beer-off": "beer-off";
|
|
13906
14035
|
bell: "bell";
|
|
14036
|
+
"bell-check": "bell-check";
|
|
13907
14037
|
"bell-dot": "bell-dot";
|
|
13908
14038
|
"bell-electric": "bell-electric";
|
|
13909
14039
|
"bell-minus": "bell-minus";
|
|
@@ -13924,6 +14054,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13924
14054
|
birdhouse: "birdhouse";
|
|
13925
14055
|
bitcoin: "bitcoin";
|
|
13926
14056
|
blend: "blend";
|
|
14057
|
+
blender: "blender";
|
|
13927
14058
|
blinds: "blinds";
|
|
13928
14059
|
blocks: "blocks";
|
|
13929
14060
|
bluetooth: "bluetooth";
|
|
@@ -13988,6 +14119,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13988
14119
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
13989
14120
|
"briefcase-medical": "briefcase-medical";
|
|
13990
14121
|
"bring-to-front": "bring-to-front";
|
|
14122
|
+
broccoli: "broccoli";
|
|
13991
14123
|
brush: "brush";
|
|
13992
14124
|
"brush-cleaning": "brush-cleaning";
|
|
13993
14125
|
bubbles: "bubbles";
|
|
@@ -14236,7 +14368,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14236
14368
|
"columns-4": "columns-4";
|
|
14237
14369
|
"columns-settings": "columns-settings";
|
|
14238
14370
|
combine: "combine";
|
|
14239
|
-
command: "command";
|
|
14240
14371
|
compass: "compass";
|
|
14241
14372
|
component: "component";
|
|
14242
14373
|
computer: "computer";
|
|
@@ -14250,7 +14381,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14250
14381
|
contrast: "contrast";
|
|
14251
14382
|
cookie: "cookie";
|
|
14252
14383
|
"cooking-pot": "cooking-pot";
|
|
14253
|
-
copy: "copy";
|
|
14254
14384
|
"copy-check": "copy-check";
|
|
14255
14385
|
"copy-minus": "copy-minus";
|
|
14256
14386
|
"copy-plus": "copy-plus";
|
|
@@ -14447,7 +14577,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14447
14577
|
"file-x-corner": "file-x-corner";
|
|
14448
14578
|
files: "files";
|
|
14449
14579
|
film: "film";
|
|
14450
|
-
filter: "filter";
|
|
14451
14580
|
"filter-x": "filter-x";
|
|
14452
14581
|
fingerprint: "fingerprint";
|
|
14453
14582
|
"fingerprint-pattern": "fingerprint-pattern";
|
|
@@ -14474,11 +14603,11 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14474
14603
|
"flip-vertical-2": "flip-vertical-2";
|
|
14475
14604
|
flower: "flower";
|
|
14476
14605
|
"flower-2": "flower-2";
|
|
14477
|
-
focus: "focus";
|
|
14478
14606
|
"fold-horizontal": "fold-horizontal";
|
|
14479
14607
|
"fold-vertical": "fold-vertical";
|
|
14480
14608
|
folder: "folder";
|
|
14481
14609
|
"folder-archive": "folder-archive";
|
|
14610
|
+
"folder-bookmark": "folder-bookmark";
|
|
14482
14611
|
"folder-check": "folder-check";
|
|
14483
14612
|
"folder-clock": "folder-clock";
|
|
14484
14613
|
"folder-closed": "folder-closed";
|
|
@@ -14628,6 +14757,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14628
14757
|
"heart-off": "heart-off";
|
|
14629
14758
|
"heart-plus": "heart-plus";
|
|
14630
14759
|
"heart-pulse": "heart-pulse";
|
|
14760
|
+
"heart-x": "heart-x";
|
|
14631
14761
|
heater: "heater";
|
|
14632
14762
|
helicopter: "helicopter";
|
|
14633
14763
|
"help-circle": "help-circle";
|
|
@@ -14679,7 +14809,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14679
14809
|
"kanban-square": "kanban-square";
|
|
14680
14810
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
14681
14811
|
kayak: "kayak";
|
|
14682
|
-
key: "key";
|
|
14683
14812
|
"key-round": "key-round";
|
|
14684
14813
|
"key-square": "key-square";
|
|
14685
14814
|
keyboard: "keyboard";
|
|
@@ -14704,6 +14833,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14704
14833
|
layers: "layers";
|
|
14705
14834
|
"layers-2": "layers-2";
|
|
14706
14835
|
"layers-3": "layers-3";
|
|
14836
|
+
"layers-minus": "layers-minus";
|
|
14707
14837
|
"layers-plus": "layers-plus";
|
|
14708
14838
|
layout: "layout";
|
|
14709
14839
|
"layout-dashboard": "layout-dashboard";
|
|
@@ -14811,7 +14941,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14811
14941
|
"memory-stick": "memory-stick";
|
|
14812
14942
|
menu: "menu";
|
|
14813
14943
|
"menu-square": "menu-square";
|
|
14814
|
-
merge: "merge";
|
|
14815
14944
|
"message-circle": "message-circle";
|
|
14816
14945
|
"message-circle-check": "message-circle-check";
|
|
14817
14946
|
"message-circle-code": "message-circle-code";
|
|
@@ -14988,7 +15117,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14988
15117
|
"parking-square": "parking-square";
|
|
14989
15118
|
"parking-square-off": "parking-square-off";
|
|
14990
15119
|
"party-popper": "party-popper";
|
|
14991
|
-
pause: "pause";
|
|
14992
15120
|
"pause-circle": "pause-circle";
|
|
14993
15121
|
"pause-octagon": "pause-octagon";
|
|
14994
15122
|
"paw-print": "paw-print";
|
|
@@ -15038,7 +15166,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15038
15166
|
plane: "plane";
|
|
15039
15167
|
"plane-landing": "plane-landing";
|
|
15040
15168
|
"plane-takeoff": "plane-takeoff";
|
|
15041
|
-
play: "play";
|
|
15042
15169
|
"play-circle": "play-circle";
|
|
15043
15170
|
"play-square": "play-square";
|
|
15044
15171
|
plug: "plug";
|
|
@@ -15109,6 +15236,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15109
15236
|
"remove-formatting": "remove-formatting";
|
|
15110
15237
|
"repeat-1": "repeat-1";
|
|
15111
15238
|
"repeat-2": "repeat-2";
|
|
15239
|
+
"repeat-off": "repeat-off";
|
|
15112
15240
|
"replace-all": "replace-all";
|
|
15113
15241
|
reply: "reply";
|
|
15114
15242
|
"reply-all": "reply-all";
|
|
@@ -15169,7 +15297,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15169
15297
|
scooter: "scooter";
|
|
15170
15298
|
"screen-share": "screen-share";
|
|
15171
15299
|
"screen-share-off": "screen-share-off";
|
|
15172
|
-
scroll: "scroll";
|
|
15173
15300
|
"scroll-text": "scroll-text";
|
|
15174
15301
|
"search-alert": "search-alert";
|
|
15175
15302
|
"search-check": "search-check";
|
|
@@ -15364,6 +15491,12 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15364
15491
|
stethoscope: "stethoscope";
|
|
15365
15492
|
sticker: "sticker";
|
|
15366
15493
|
"sticky-note": "sticky-note";
|
|
15494
|
+
"sticky-note-check": "sticky-note-check";
|
|
15495
|
+
"sticky-note-minus": "sticky-note-minus";
|
|
15496
|
+
"sticky-note-off": "sticky-note-off";
|
|
15497
|
+
"sticky-note-plus": "sticky-note-plus";
|
|
15498
|
+
"sticky-note-x": "sticky-note-x";
|
|
15499
|
+
"sticky-notes": "sticky-notes";
|
|
15367
15500
|
stone: "stone";
|
|
15368
15501
|
"stop-circle": "stop-circle";
|
|
15369
15502
|
store: "store";
|
|
@@ -15444,6 +15577,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15444
15577
|
"ticket-x": "ticket-x";
|
|
15445
15578
|
tickets: "tickets";
|
|
15446
15579
|
"tickets-plane": "tickets-plane";
|
|
15580
|
+
timeline: "timeline";
|
|
15447
15581
|
timer: "timer";
|
|
15448
15582
|
"timer-off": "timer-off";
|
|
15449
15583
|
"timer-reset": "timer-reset";
|
|
@@ -15582,7 +15716,9 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15582
15716
|
waves: "waves";
|
|
15583
15717
|
"waves-arrow-down": "waves-arrow-down";
|
|
15584
15718
|
"waves-arrow-up": "waves-arrow-up";
|
|
15719
|
+
"waves-horizontal": "waves-horizontal";
|
|
15585
15720
|
"waves-ladder": "waves-ladder";
|
|
15721
|
+
"waves-vertical": "waves-vertical";
|
|
15586
15722
|
waypoints: "waypoints";
|
|
15587
15723
|
webcam: "webcam";
|
|
15588
15724
|
webhook: "webhook";
|