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.
Files changed (91) hide show
  1. package/dist/cli/cli.js +602 -160
  2. package/dist/cli/worker.js +6 -4
  3. package/dist/declarations/app/adapter.d.ts +12 -0
  4. package/dist/declarations/app/adapters/cloudflare.d.ts +8 -0
  5. package/dist/declarations/app/adapters/lambda.d.ts +13 -0
  6. package/dist/declarations/app/adapters/node.d.ts +12 -0
  7. package/dist/declarations/app/adapters/vercel.d.ts +14 -0
  8. package/dist/declarations/app/entry.client.d.ts +2 -0
  9. package/dist/declarations/app/entry.server.d.ts +13 -0
  10. package/dist/declarations/app/protectChunks.d.ts +17 -0
  11. package/dist/declarations/app/wrapProtectedRoutes.d.ts +4 -0
  12. package/dist/declarations/config/validators/HeaderNavigationSchema.d.ts +216 -80
  13. package/dist/declarations/config/validators/ZudokuConfig.d.ts +81 -30
  14. package/dist/declarations/config/validators/icon-types.d.ts +1 -1
  15. package/dist/declarations/lib/authentication/authentication.d.ts +7 -0
  16. package/dist/declarations/lib/authentication/cookie-sync.d.ts +3 -0
  17. package/dist/declarations/lib/authentication/cookies.d.ts +10 -0
  18. package/dist/declarations/lib/authentication/providers/azureb2c.d.ts +6 -1
  19. package/dist/declarations/lib/authentication/providers/clerk.d.ts +1 -0
  20. package/dist/declarations/lib/authentication/providers/openid.d.ts +2 -1
  21. package/dist/declarations/lib/authentication/providers/supabase.d.ts +2 -0
  22. package/dist/declarations/lib/authentication/session-handler.d.ts +81 -0
  23. package/dist/declarations/lib/authentication/state.d.ts +7 -0
  24. package/dist/declarations/lib/authentication/verify-cache.d.ts +2 -0
  25. package/dist/declarations/lib/components/Bootstrap.d.ts +2 -2
  26. package/dist/declarations/lib/components/Heading.d.ts +1 -1
  27. package/dist/declarations/lib/components/context/RenderContext.d.ts +6 -0
  28. package/dist/declarations/lib/core/RouteGuard.d.ts +11 -0
  29. package/dist/declarations/lib/core/ZudokuContext.d.ts +5 -2
  30. package/dist/declarations/lib/manifest.d.ts +25 -0
  31. package/dist/declarations/lib/util/url.d.ts +2 -0
  32. package/dist/flat-config.d.ts +1 -1
  33. package/docs/configuration/protected-routes.md +21 -4
  34. package/docs/guides/server-side-content-protection.md +207 -0
  35. package/package.json +26 -4
  36. package/src/app/adapter.ts +16 -0
  37. package/src/app/adapters/cloudflare.ts +18 -0
  38. package/src/app/adapters/lambda.ts +36 -0
  39. package/src/app/adapters/node.ts +32 -0
  40. package/src/app/adapters/vercel.ts +39 -0
  41. package/src/app/demo.tsx +2 -2
  42. package/src/app/entry.client.tsx +19 -7
  43. package/src/app/entry.server.tsx +133 -9
  44. package/src/app/main.tsx +21 -3
  45. package/src/app/protectChunks.ts +64 -0
  46. package/src/app/standalone.tsx +2 -2
  47. package/src/app/wrapProtectedRoutes.ts +82 -0
  48. package/src/config/validators/icon-types.ts +17 -0
  49. package/src/lib/authentication/authentication.ts +15 -0
  50. package/src/lib/authentication/cookie-sync.ts +90 -0
  51. package/src/lib/authentication/cookies.ts +54 -0
  52. package/src/lib/authentication/hook.ts +13 -0
  53. package/src/lib/authentication/providers/azureb2c.tsx +70 -2
  54. package/src/lib/authentication/providers/clerk.tsx +49 -0
  55. package/src/lib/authentication/providers/openid.tsx +46 -0
  56. package/src/lib/authentication/providers/supabase.tsx +30 -2
  57. package/src/lib/authentication/session-handler.ts +164 -0
  58. package/src/lib/authentication/state.ts +36 -5
  59. package/src/lib/authentication/verify-cache.ts +32 -0
  60. package/src/lib/components/Bootstrap.tsx +20 -14
  61. package/src/lib/components/Header.tsx +56 -57
  62. package/src/lib/components/MobileTopNavigation.tsx +66 -67
  63. package/src/lib/components/Zudoku.tsx +14 -1
  64. package/src/lib/components/context/RenderContext.ts +8 -0
  65. package/src/lib/components/context/ZudokuContext.ts +2 -1
  66. package/src/lib/core/RouteGuard.tsx +50 -29
  67. package/src/lib/core/ZudokuContext.ts +39 -6
  68. package/src/lib/errors/RouterError.tsx +43 -1
  69. package/src/lib/manifest.ts +62 -0
  70. package/src/lib/oas/parser/dereference/index.ts +2 -1
  71. package/src/lib/oas/parser/dereference/resolveRef.ts +2 -1
  72. package/src/lib/oas/parser/index.ts +1 -1
  73. package/src/lib/plugins/openapi/client/createServer.ts +13 -4
  74. package/src/lib/plugins/search-pagefind/index.tsx +1 -4
  75. package/src/lib/util/os.ts +1 -0
  76. package/src/lib/util/url.ts +13 -0
  77. package/src/vite/build.ts +84 -24
  78. package/src/vite/config.ts +51 -5
  79. package/src/vite/dev-server.ts +61 -8
  80. package/src/vite/manifest.ts +15 -0
  81. package/src/vite/plugin-api.ts +3 -1
  82. package/src/vite/plugin-markdown-export.ts +3 -9
  83. package/src/vite/prerender/worker.ts +2 -4
  84. package/src/vite/protected/annotator.ts +136 -0
  85. package/src/vite/protected/build.ts +151 -0
  86. package/src/vite/protected/registry.ts +82 -0
  87. package/src/vite/ssr-templates/cloudflare.ts +5 -18
  88. package/src/vite/ssr-templates/lambda.ts +4 -0
  89. package/src/vite/ssr-templates/node.ts +7 -22
  90. package/src/vite/ssr-templates/vercel.ts +6 -20
  91. package/src/vite-env.d.ts +1 -0
@@ -595,8 +595,17 @@ export declare const ZudokuConfig: z.ZodObject<{
595
595
  bold: "bold";
596
596
  link: "link";
597
597
  binary: "binary";
598
- file: "file";
599
598
  map: "map";
599
+ filter: "filter";
600
+ command: "command";
601
+ copy: "copy";
602
+ focus: "focus";
603
+ pause: "pause";
604
+ play: "play";
605
+ scroll: "scroll";
606
+ key: "key";
607
+ merge: "merge";
608
+ file: "file";
600
609
  type: "type";
601
610
  "a-arrow-down": "a-arrow-down";
602
611
  "a-arrow-up": "a-arrow-up";
@@ -735,6 +744,7 @@ export declare const ZudokuConfig: z.ZodObject<{
735
744
  "arrows-up-from-line": "arrows-up-from-line";
736
745
  asterisk: "asterisk";
737
746
  "asterisk-square": "asterisk-square";
747
+ astroid: "astroid";
738
748
  "at-sign": "at-sign";
739
749
  atom: "atom";
740
750
  "audio-lines": "audio-lines";
@@ -802,6 +812,7 @@ export declare const ZudokuConfig: z.ZodObject<{
802
812
  beer: "beer";
803
813
  "beer-off": "beer-off";
804
814
  bell: "bell";
815
+ "bell-check": "bell-check";
805
816
  "bell-dot": "bell-dot";
806
817
  "bell-electric": "bell-electric";
807
818
  "bell-minus": "bell-minus";
@@ -822,6 +833,7 @@ export declare const ZudokuConfig: z.ZodObject<{
822
833
  birdhouse: "birdhouse";
823
834
  bitcoin: "bitcoin";
824
835
  blend: "blend";
836
+ blender: "blender";
825
837
  blinds: "blinds";
826
838
  blocks: "blocks";
827
839
  bluetooth: "bluetooth";
@@ -886,6 +898,7 @@ export declare const ZudokuConfig: z.ZodObject<{
886
898
  "briefcase-conveyor-belt": "briefcase-conveyor-belt";
887
899
  "briefcase-medical": "briefcase-medical";
888
900
  "bring-to-front": "bring-to-front";
901
+ broccoli: "broccoli";
889
902
  brush: "brush";
890
903
  "brush-cleaning": "brush-cleaning";
891
904
  bubbles: "bubbles";
@@ -1134,7 +1147,6 @@ export declare const ZudokuConfig: z.ZodObject<{
1134
1147
  "columns-4": "columns-4";
1135
1148
  "columns-settings": "columns-settings";
1136
1149
  combine: "combine";
1137
- command: "command";
1138
1150
  compass: "compass";
1139
1151
  component: "component";
1140
1152
  computer: "computer";
@@ -1148,7 +1160,6 @@ export declare const ZudokuConfig: z.ZodObject<{
1148
1160
  contrast: "contrast";
1149
1161
  cookie: "cookie";
1150
1162
  "cooking-pot": "cooking-pot";
1151
- copy: "copy";
1152
1163
  "copy-check": "copy-check";
1153
1164
  "copy-minus": "copy-minus";
1154
1165
  "copy-plus": "copy-plus";
@@ -1345,7 +1356,6 @@ export declare const ZudokuConfig: z.ZodObject<{
1345
1356
  "file-x-corner": "file-x-corner";
1346
1357
  files: "files";
1347
1358
  film: "film";
1348
- filter: "filter";
1349
1359
  "filter-x": "filter-x";
1350
1360
  fingerprint: "fingerprint";
1351
1361
  "fingerprint-pattern": "fingerprint-pattern";
@@ -1372,11 +1382,11 @@ export declare const ZudokuConfig: z.ZodObject<{
1372
1382
  "flip-vertical-2": "flip-vertical-2";
1373
1383
  flower: "flower";
1374
1384
  "flower-2": "flower-2";
1375
- focus: "focus";
1376
1385
  "fold-horizontal": "fold-horizontal";
1377
1386
  "fold-vertical": "fold-vertical";
1378
1387
  folder: "folder";
1379
1388
  "folder-archive": "folder-archive";
1389
+ "folder-bookmark": "folder-bookmark";
1380
1390
  "folder-check": "folder-check";
1381
1391
  "folder-clock": "folder-clock";
1382
1392
  "folder-closed": "folder-closed";
@@ -1526,6 +1536,7 @@ export declare const ZudokuConfig: z.ZodObject<{
1526
1536
  "heart-off": "heart-off";
1527
1537
  "heart-plus": "heart-plus";
1528
1538
  "heart-pulse": "heart-pulse";
1539
+ "heart-x": "heart-x";
1529
1540
  heater: "heater";
1530
1541
  helicopter: "helicopter";
1531
1542
  "help-circle": "help-circle";
@@ -1577,7 +1588,6 @@ export declare const ZudokuConfig: z.ZodObject<{
1577
1588
  "kanban-square": "kanban-square";
1578
1589
  "kanban-square-dashed": "kanban-square-dashed";
1579
1590
  kayak: "kayak";
1580
- key: "key";
1581
1591
  "key-round": "key-round";
1582
1592
  "key-square": "key-square";
1583
1593
  keyboard: "keyboard";
@@ -1602,6 +1612,7 @@ export declare const ZudokuConfig: z.ZodObject<{
1602
1612
  layers: "layers";
1603
1613
  "layers-2": "layers-2";
1604
1614
  "layers-3": "layers-3";
1615
+ "layers-minus": "layers-minus";
1605
1616
  "layers-plus": "layers-plus";
1606
1617
  layout: "layout";
1607
1618
  "layout-dashboard": "layout-dashboard";
@@ -1709,7 +1720,6 @@ export declare const ZudokuConfig: z.ZodObject<{
1709
1720
  "memory-stick": "memory-stick";
1710
1721
  menu: "menu";
1711
1722
  "menu-square": "menu-square";
1712
- merge: "merge";
1713
1723
  "message-circle": "message-circle";
1714
1724
  "message-circle-check": "message-circle-check";
1715
1725
  "message-circle-code": "message-circle-code";
@@ -1886,7 +1896,6 @@ export declare const ZudokuConfig: z.ZodObject<{
1886
1896
  "parking-square": "parking-square";
1887
1897
  "parking-square-off": "parking-square-off";
1888
1898
  "party-popper": "party-popper";
1889
- pause: "pause";
1890
1899
  "pause-circle": "pause-circle";
1891
1900
  "pause-octagon": "pause-octagon";
1892
1901
  "paw-print": "paw-print";
@@ -1936,7 +1945,6 @@ export declare const ZudokuConfig: z.ZodObject<{
1936
1945
  plane: "plane";
1937
1946
  "plane-landing": "plane-landing";
1938
1947
  "plane-takeoff": "plane-takeoff";
1939
- play: "play";
1940
1948
  "play-circle": "play-circle";
1941
1949
  "play-square": "play-square";
1942
1950
  plug: "plug";
@@ -2007,6 +2015,7 @@ export declare const ZudokuConfig: z.ZodObject<{
2007
2015
  "remove-formatting": "remove-formatting";
2008
2016
  "repeat-1": "repeat-1";
2009
2017
  "repeat-2": "repeat-2";
2018
+ "repeat-off": "repeat-off";
2010
2019
  "replace-all": "replace-all";
2011
2020
  reply: "reply";
2012
2021
  "reply-all": "reply-all";
@@ -2067,7 +2076,6 @@ export declare const ZudokuConfig: z.ZodObject<{
2067
2076
  scooter: "scooter";
2068
2077
  "screen-share": "screen-share";
2069
2078
  "screen-share-off": "screen-share-off";
2070
- scroll: "scroll";
2071
2079
  "scroll-text": "scroll-text";
2072
2080
  "search-alert": "search-alert";
2073
2081
  "search-check": "search-check";
@@ -2262,6 +2270,12 @@ export declare const ZudokuConfig: z.ZodObject<{
2262
2270
  stethoscope: "stethoscope";
2263
2271
  sticker: "sticker";
2264
2272
  "sticky-note": "sticky-note";
2273
+ "sticky-note-check": "sticky-note-check";
2274
+ "sticky-note-minus": "sticky-note-minus";
2275
+ "sticky-note-off": "sticky-note-off";
2276
+ "sticky-note-plus": "sticky-note-plus";
2277
+ "sticky-note-x": "sticky-note-x";
2278
+ "sticky-notes": "sticky-notes";
2265
2279
  stone: "stone";
2266
2280
  "stop-circle": "stop-circle";
2267
2281
  store: "store";
@@ -2342,6 +2356,7 @@ export declare const ZudokuConfig: z.ZodObject<{
2342
2356
  "ticket-x": "ticket-x";
2343
2357
  tickets: "tickets";
2344
2358
  "tickets-plane": "tickets-plane";
2359
+ timeline: "timeline";
2345
2360
  timer: "timer";
2346
2361
  "timer-off": "timer-off";
2347
2362
  "timer-reset": "timer-reset";
@@ -2480,7 +2495,9 @@ export declare const ZudokuConfig: z.ZodObject<{
2480
2495
  waves: "waves";
2481
2496
  "waves-arrow-down": "waves-arrow-down";
2482
2497
  "waves-arrow-up": "waves-arrow-up";
2498
+ "waves-horizontal": "waves-horizontal";
2483
2499
  "waves-ladder": "waves-ladder";
2500
+ "waves-vertical": "waves-vertical";
2484
2501
  waypoints: "waypoints";
2485
2502
  webcam: "webcam";
2486
2503
  webhook: "webhook";
@@ -2549,8 +2566,17 @@ export declare const ZudokuConfig: z.ZodObject<{
2549
2566
  bold: "bold";
2550
2567
  link: "link";
2551
2568
  binary: "binary";
2552
- file: "file";
2553
2569
  map: "map";
2570
+ filter: "filter";
2571
+ command: "command";
2572
+ copy: "copy";
2573
+ focus: "focus";
2574
+ pause: "pause";
2575
+ play: "play";
2576
+ scroll: "scroll";
2577
+ key: "key";
2578
+ merge: "merge";
2579
+ file: "file";
2554
2580
  type: "type";
2555
2581
  "a-arrow-down": "a-arrow-down";
2556
2582
  "a-arrow-up": "a-arrow-up";
@@ -2689,6 +2715,7 @@ export declare const ZudokuConfig: z.ZodObject<{
2689
2715
  "arrows-up-from-line": "arrows-up-from-line";
2690
2716
  asterisk: "asterisk";
2691
2717
  "asterisk-square": "asterisk-square";
2718
+ astroid: "astroid";
2692
2719
  "at-sign": "at-sign";
2693
2720
  atom: "atom";
2694
2721
  "audio-lines": "audio-lines";
@@ -2756,6 +2783,7 @@ export declare const ZudokuConfig: z.ZodObject<{
2756
2783
  beer: "beer";
2757
2784
  "beer-off": "beer-off";
2758
2785
  bell: "bell";
2786
+ "bell-check": "bell-check";
2759
2787
  "bell-dot": "bell-dot";
2760
2788
  "bell-electric": "bell-electric";
2761
2789
  "bell-minus": "bell-minus";
@@ -2776,6 +2804,7 @@ export declare const ZudokuConfig: z.ZodObject<{
2776
2804
  birdhouse: "birdhouse";
2777
2805
  bitcoin: "bitcoin";
2778
2806
  blend: "blend";
2807
+ blender: "blender";
2779
2808
  blinds: "blinds";
2780
2809
  blocks: "blocks";
2781
2810
  bluetooth: "bluetooth";
@@ -2840,6 +2869,7 @@ export declare const ZudokuConfig: z.ZodObject<{
2840
2869
  "briefcase-conveyor-belt": "briefcase-conveyor-belt";
2841
2870
  "briefcase-medical": "briefcase-medical";
2842
2871
  "bring-to-front": "bring-to-front";
2872
+ broccoli: "broccoli";
2843
2873
  brush: "brush";
2844
2874
  "brush-cleaning": "brush-cleaning";
2845
2875
  bubbles: "bubbles";
@@ -3088,7 +3118,6 @@ export declare const ZudokuConfig: z.ZodObject<{
3088
3118
  "columns-4": "columns-4";
3089
3119
  "columns-settings": "columns-settings";
3090
3120
  combine: "combine";
3091
- command: "command";
3092
3121
  compass: "compass";
3093
3122
  component: "component";
3094
3123
  computer: "computer";
@@ -3102,7 +3131,6 @@ export declare const ZudokuConfig: z.ZodObject<{
3102
3131
  contrast: "contrast";
3103
3132
  cookie: "cookie";
3104
3133
  "cooking-pot": "cooking-pot";
3105
- copy: "copy";
3106
3134
  "copy-check": "copy-check";
3107
3135
  "copy-minus": "copy-minus";
3108
3136
  "copy-plus": "copy-plus";
@@ -3299,7 +3327,6 @@ export declare const ZudokuConfig: z.ZodObject<{
3299
3327
  "file-x-corner": "file-x-corner";
3300
3328
  files: "files";
3301
3329
  film: "film";
3302
- filter: "filter";
3303
3330
  "filter-x": "filter-x";
3304
3331
  fingerprint: "fingerprint";
3305
3332
  "fingerprint-pattern": "fingerprint-pattern";
@@ -3326,11 +3353,11 @@ export declare const ZudokuConfig: z.ZodObject<{
3326
3353
  "flip-vertical-2": "flip-vertical-2";
3327
3354
  flower: "flower";
3328
3355
  "flower-2": "flower-2";
3329
- focus: "focus";
3330
3356
  "fold-horizontal": "fold-horizontal";
3331
3357
  "fold-vertical": "fold-vertical";
3332
3358
  folder: "folder";
3333
3359
  "folder-archive": "folder-archive";
3360
+ "folder-bookmark": "folder-bookmark";
3334
3361
  "folder-check": "folder-check";
3335
3362
  "folder-clock": "folder-clock";
3336
3363
  "folder-closed": "folder-closed";
@@ -3480,6 +3507,7 @@ export declare const ZudokuConfig: z.ZodObject<{
3480
3507
  "heart-off": "heart-off";
3481
3508
  "heart-plus": "heart-plus";
3482
3509
  "heart-pulse": "heart-pulse";
3510
+ "heart-x": "heart-x";
3483
3511
  heater: "heater";
3484
3512
  helicopter: "helicopter";
3485
3513
  "help-circle": "help-circle";
@@ -3531,7 +3559,6 @@ export declare const ZudokuConfig: z.ZodObject<{
3531
3559
  "kanban-square": "kanban-square";
3532
3560
  "kanban-square-dashed": "kanban-square-dashed";
3533
3561
  kayak: "kayak";
3534
- key: "key";
3535
3562
  "key-round": "key-round";
3536
3563
  "key-square": "key-square";
3537
3564
  keyboard: "keyboard";
@@ -3556,6 +3583,7 @@ export declare const ZudokuConfig: z.ZodObject<{
3556
3583
  layers: "layers";
3557
3584
  "layers-2": "layers-2";
3558
3585
  "layers-3": "layers-3";
3586
+ "layers-minus": "layers-minus";
3559
3587
  "layers-plus": "layers-plus";
3560
3588
  layout: "layout";
3561
3589
  "layout-dashboard": "layout-dashboard";
@@ -3663,7 +3691,6 @@ export declare const ZudokuConfig: z.ZodObject<{
3663
3691
  "memory-stick": "memory-stick";
3664
3692
  menu: "menu";
3665
3693
  "menu-square": "menu-square";
3666
- merge: "merge";
3667
3694
  "message-circle": "message-circle";
3668
3695
  "message-circle-check": "message-circle-check";
3669
3696
  "message-circle-code": "message-circle-code";
@@ -3840,7 +3867,6 @@ export declare const ZudokuConfig: z.ZodObject<{
3840
3867
  "parking-square": "parking-square";
3841
3868
  "parking-square-off": "parking-square-off";
3842
3869
  "party-popper": "party-popper";
3843
- pause: "pause";
3844
3870
  "pause-circle": "pause-circle";
3845
3871
  "pause-octagon": "pause-octagon";
3846
3872
  "paw-print": "paw-print";
@@ -3890,7 +3916,6 @@ export declare const ZudokuConfig: z.ZodObject<{
3890
3916
  plane: "plane";
3891
3917
  "plane-landing": "plane-landing";
3892
3918
  "plane-takeoff": "plane-takeoff";
3893
- play: "play";
3894
3919
  "play-circle": "play-circle";
3895
3920
  "play-square": "play-square";
3896
3921
  plug: "plug";
@@ -3961,6 +3986,7 @@ export declare const ZudokuConfig: z.ZodObject<{
3961
3986
  "remove-formatting": "remove-formatting";
3962
3987
  "repeat-1": "repeat-1";
3963
3988
  "repeat-2": "repeat-2";
3989
+ "repeat-off": "repeat-off";
3964
3990
  "replace-all": "replace-all";
3965
3991
  reply: "reply";
3966
3992
  "reply-all": "reply-all";
@@ -4021,7 +4047,6 @@ export declare const ZudokuConfig: z.ZodObject<{
4021
4047
  scooter: "scooter";
4022
4048
  "screen-share": "screen-share";
4023
4049
  "screen-share-off": "screen-share-off";
4024
- scroll: "scroll";
4025
4050
  "scroll-text": "scroll-text";
4026
4051
  "search-alert": "search-alert";
4027
4052
  "search-check": "search-check";
@@ -4216,6 +4241,12 @@ export declare const ZudokuConfig: z.ZodObject<{
4216
4241
  stethoscope: "stethoscope";
4217
4242
  sticker: "sticker";
4218
4243
  "sticky-note": "sticky-note";
4244
+ "sticky-note-check": "sticky-note-check";
4245
+ "sticky-note-minus": "sticky-note-minus";
4246
+ "sticky-note-off": "sticky-note-off";
4247
+ "sticky-note-plus": "sticky-note-plus";
4248
+ "sticky-note-x": "sticky-note-x";
4249
+ "sticky-notes": "sticky-notes";
4219
4250
  stone: "stone";
4220
4251
  "stop-circle": "stop-circle";
4221
4252
  store: "store";
@@ -4296,6 +4327,7 @@ export declare const ZudokuConfig: z.ZodObject<{
4296
4327
  "ticket-x": "ticket-x";
4297
4328
  tickets: "tickets";
4298
4329
  "tickets-plane": "tickets-plane";
4330
+ timeline: "timeline";
4299
4331
  timer: "timer";
4300
4332
  "timer-off": "timer-off";
4301
4333
  "timer-reset": "timer-reset";
@@ -4434,7 +4466,9 @@ export declare const ZudokuConfig: z.ZodObject<{
4434
4466
  waves: "waves";
4435
4467
  "waves-arrow-down": "waves-arrow-down";
4436
4468
  "waves-arrow-up": "waves-arrow-up";
4469
+ "waves-horizontal": "waves-horizontal";
4437
4470
  "waves-ladder": "waves-ladder";
4471
+ "waves-vertical": "waves-vertical";
4438
4472
  waypoints: "waypoints";
4439
4473
  webcam: "webcam";
4440
4474
  webhook: "webhook";
@@ -4504,8 +4538,17 @@ export declare const ZudokuConfig: z.ZodObject<{
4504
4538
  bold: "bold";
4505
4539
  link: "link";
4506
4540
  binary: "binary";
4507
- file: "file";
4508
4541
  map: "map";
4542
+ filter: "filter";
4543
+ command: "command";
4544
+ copy: "copy";
4545
+ focus: "focus";
4546
+ pause: "pause";
4547
+ play: "play";
4548
+ scroll: "scroll";
4549
+ key: "key";
4550
+ merge: "merge";
4551
+ file: "file";
4509
4552
  type: "type";
4510
4553
  "a-arrow-down": "a-arrow-down";
4511
4554
  "a-arrow-up": "a-arrow-up";
@@ -4644,6 +4687,7 @@ export declare const ZudokuConfig: z.ZodObject<{
4644
4687
  "arrows-up-from-line": "arrows-up-from-line";
4645
4688
  asterisk: "asterisk";
4646
4689
  "asterisk-square": "asterisk-square";
4690
+ astroid: "astroid";
4647
4691
  "at-sign": "at-sign";
4648
4692
  atom: "atom";
4649
4693
  "audio-lines": "audio-lines";
@@ -4711,6 +4755,7 @@ export declare const ZudokuConfig: z.ZodObject<{
4711
4755
  beer: "beer";
4712
4756
  "beer-off": "beer-off";
4713
4757
  bell: "bell";
4758
+ "bell-check": "bell-check";
4714
4759
  "bell-dot": "bell-dot";
4715
4760
  "bell-electric": "bell-electric";
4716
4761
  "bell-minus": "bell-minus";
@@ -4731,6 +4776,7 @@ export declare const ZudokuConfig: z.ZodObject<{
4731
4776
  birdhouse: "birdhouse";
4732
4777
  bitcoin: "bitcoin";
4733
4778
  blend: "blend";
4779
+ blender: "blender";
4734
4780
  blinds: "blinds";
4735
4781
  blocks: "blocks";
4736
4782
  bluetooth: "bluetooth";
@@ -4795,6 +4841,7 @@ export declare const ZudokuConfig: z.ZodObject<{
4795
4841
  "briefcase-conveyor-belt": "briefcase-conveyor-belt";
4796
4842
  "briefcase-medical": "briefcase-medical";
4797
4843
  "bring-to-front": "bring-to-front";
4844
+ broccoli: "broccoli";
4798
4845
  brush: "brush";
4799
4846
  "brush-cleaning": "brush-cleaning";
4800
4847
  bubbles: "bubbles";
@@ -5043,7 +5090,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5043
5090
  "columns-4": "columns-4";
5044
5091
  "columns-settings": "columns-settings";
5045
5092
  combine: "combine";
5046
- command: "command";
5047
5093
  compass: "compass";
5048
5094
  component: "component";
5049
5095
  computer: "computer";
@@ -5057,7 +5103,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5057
5103
  contrast: "contrast";
5058
5104
  cookie: "cookie";
5059
5105
  "cooking-pot": "cooking-pot";
5060
- copy: "copy";
5061
5106
  "copy-check": "copy-check";
5062
5107
  "copy-minus": "copy-minus";
5063
5108
  "copy-plus": "copy-plus";
@@ -5254,7 +5299,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5254
5299
  "file-x-corner": "file-x-corner";
5255
5300
  files: "files";
5256
5301
  film: "film";
5257
- filter: "filter";
5258
5302
  "filter-x": "filter-x";
5259
5303
  fingerprint: "fingerprint";
5260
5304
  "fingerprint-pattern": "fingerprint-pattern";
@@ -5281,11 +5325,11 @@ export declare const ZudokuConfig: z.ZodObject<{
5281
5325
  "flip-vertical-2": "flip-vertical-2";
5282
5326
  flower: "flower";
5283
5327
  "flower-2": "flower-2";
5284
- focus: "focus";
5285
5328
  "fold-horizontal": "fold-horizontal";
5286
5329
  "fold-vertical": "fold-vertical";
5287
5330
  folder: "folder";
5288
5331
  "folder-archive": "folder-archive";
5332
+ "folder-bookmark": "folder-bookmark";
5289
5333
  "folder-check": "folder-check";
5290
5334
  "folder-clock": "folder-clock";
5291
5335
  "folder-closed": "folder-closed";
@@ -5435,6 +5479,7 @@ export declare const ZudokuConfig: z.ZodObject<{
5435
5479
  "heart-off": "heart-off";
5436
5480
  "heart-plus": "heart-plus";
5437
5481
  "heart-pulse": "heart-pulse";
5482
+ "heart-x": "heart-x";
5438
5483
  heater: "heater";
5439
5484
  helicopter: "helicopter";
5440
5485
  "help-circle": "help-circle";
@@ -5486,7 +5531,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5486
5531
  "kanban-square": "kanban-square";
5487
5532
  "kanban-square-dashed": "kanban-square-dashed";
5488
5533
  kayak: "kayak";
5489
- key: "key";
5490
5534
  "key-round": "key-round";
5491
5535
  "key-square": "key-square";
5492
5536
  keyboard: "keyboard";
@@ -5511,6 +5555,7 @@ export declare const ZudokuConfig: z.ZodObject<{
5511
5555
  layers: "layers";
5512
5556
  "layers-2": "layers-2";
5513
5557
  "layers-3": "layers-3";
5558
+ "layers-minus": "layers-minus";
5514
5559
  "layers-plus": "layers-plus";
5515
5560
  layout: "layout";
5516
5561
  "layout-dashboard": "layout-dashboard";
@@ -5618,7 +5663,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5618
5663
  "memory-stick": "memory-stick";
5619
5664
  menu: "menu";
5620
5665
  "menu-square": "menu-square";
5621
- merge: "merge";
5622
5666
  "message-circle": "message-circle";
5623
5667
  "message-circle-check": "message-circle-check";
5624
5668
  "message-circle-code": "message-circle-code";
@@ -5795,7 +5839,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5795
5839
  "parking-square": "parking-square";
5796
5840
  "parking-square-off": "parking-square-off";
5797
5841
  "party-popper": "party-popper";
5798
- pause: "pause";
5799
5842
  "pause-circle": "pause-circle";
5800
5843
  "pause-octagon": "pause-octagon";
5801
5844
  "paw-print": "paw-print";
@@ -5845,7 +5888,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5845
5888
  plane: "plane";
5846
5889
  "plane-landing": "plane-landing";
5847
5890
  "plane-takeoff": "plane-takeoff";
5848
- play: "play";
5849
5891
  "play-circle": "play-circle";
5850
5892
  "play-square": "play-square";
5851
5893
  plug: "plug";
@@ -5916,6 +5958,7 @@ export declare const ZudokuConfig: z.ZodObject<{
5916
5958
  "remove-formatting": "remove-formatting";
5917
5959
  "repeat-1": "repeat-1";
5918
5960
  "repeat-2": "repeat-2";
5961
+ "repeat-off": "repeat-off";
5919
5962
  "replace-all": "replace-all";
5920
5963
  reply: "reply";
5921
5964
  "reply-all": "reply-all";
@@ -5976,7 +6019,6 @@ export declare const ZudokuConfig: z.ZodObject<{
5976
6019
  scooter: "scooter";
5977
6020
  "screen-share": "screen-share";
5978
6021
  "screen-share-off": "screen-share-off";
5979
- scroll: "scroll";
5980
6022
  "scroll-text": "scroll-text";
5981
6023
  "search-alert": "search-alert";
5982
6024
  "search-check": "search-check";
@@ -6171,6 +6213,12 @@ export declare const ZudokuConfig: z.ZodObject<{
6171
6213
  stethoscope: "stethoscope";
6172
6214
  sticker: "sticker";
6173
6215
  "sticky-note": "sticky-note";
6216
+ "sticky-note-check": "sticky-note-check";
6217
+ "sticky-note-minus": "sticky-note-minus";
6218
+ "sticky-note-off": "sticky-note-off";
6219
+ "sticky-note-plus": "sticky-note-plus";
6220
+ "sticky-note-x": "sticky-note-x";
6221
+ "sticky-notes": "sticky-notes";
6174
6222
  stone: "stone";
6175
6223
  "stop-circle": "stop-circle";
6176
6224
  store: "store";
@@ -6251,6 +6299,7 @@ export declare const ZudokuConfig: z.ZodObject<{
6251
6299
  "ticket-x": "ticket-x";
6252
6300
  tickets: "tickets";
6253
6301
  "tickets-plane": "tickets-plane";
6302
+ timeline: "timeline";
6254
6303
  timer: "timer";
6255
6304
  "timer-off": "timer-off";
6256
6305
  "timer-reset": "timer-reset";
@@ -6389,7 +6438,9 @@ export declare const ZudokuConfig: z.ZodObject<{
6389
6438
  waves: "waves";
6390
6439
  "waves-arrow-down": "waves-arrow-down";
6391
6440
  "waves-arrow-up": "waves-arrow-up";
6441
+ "waves-horizontal": "waves-horizontal";
6392
6442
  "waves-ladder": "waves-ladder";
6443
+ "waves-vertical": "waves-vertical";
6393
6444
  waypoints: "waypoints";
6394
6445
  webcam: "webcam";
6395
6446
  webhook: "webhook";