@caspeco/casper-ui-library 9.9.0 → 9.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/dist/_virtual/index.js +5 -0
  2. package/dist/_virtual/index2.js +4 -0
  3. package/dist/_virtual/use-sync-external-store-shim.development.js +4 -0
  4. package/dist/_virtual/use-sync-external-store-shim.production.js +4 -0
  5. package/dist/_virtual/with-selector.development.js +4 -0
  6. package/dist/_virtual/with-selector.js +5 -0
  7. package/dist/_virtual/with-selector.production.js +4 -0
  8. package/dist/_virtual/with-selector2.js +4 -0
  9. package/dist/components/button/button-recipe.d.ts.map +1 -1
  10. package/dist/components/button/button-recipe.js +80 -39
  11. package/dist/components/input/input.d.ts +1 -0
  12. package/dist/components/input/input.d.ts.map +1 -1
  13. package/dist/components/input/types.d.ts +1 -1
  14. package/dist/components/input/types.d.ts.map +1 -1
  15. package/dist/components/rich-text-editor/boolean-control.d.ts +3 -0
  16. package/dist/components/rich-text-editor/boolean-control.d.ts.map +1 -0
  17. package/dist/components/rich-text-editor/boolean-control.js +35 -0
  18. package/dist/components/rich-text-editor/extensions.d.ts +4 -0
  19. package/dist/components/rich-text-editor/extensions.d.ts.map +1 -0
  20. package/dist/components/rich-text-editor/extensions.js +37 -0
  21. package/dist/components/rich-text-editor/index.d.ts +26 -0
  22. package/dist/components/rich-text-editor/index.d.ts.map +1 -0
  23. package/dist/components/rich-text-editor/index.js +23 -0
  24. package/dist/components/rich-text-editor/rich-text-editor-context.d.ts +10 -0
  25. package/dist/components/rich-text-editor/rich-text-editor-context.d.ts.map +1 -0
  26. package/dist/components/rich-text-editor/rich-text-editor-context.js +13 -0
  27. package/dist/components/rich-text-editor/rich-text-editor-control.d.ts +11 -0
  28. package/dist/components/rich-text-editor/rich-text-editor-control.d.ts.map +1 -0
  29. package/dist/components/rich-text-editor/rich-text-editor-control.js +202 -0
  30. package/dist/components/rich-text-editor/rich-text-editor-recipe.d.ts +4 -0
  31. package/dist/components/rich-text-editor/rich-text-editor-recipe.d.ts.map +1 -0
  32. package/dist/components/rich-text-editor/rich-text-editor-recipe.js +58 -0
  33. package/dist/components/rich-text-editor/rich-text-editor.composition.d.ts +6 -0
  34. package/dist/components/rich-text-editor/rich-text-editor.composition.d.ts.map +1 -0
  35. package/dist/components/rich-text-editor/rich-text-editor.d.ts +11 -0
  36. package/dist/components/rich-text-editor/rich-text-editor.d.ts.map +1 -0
  37. package/dist/components/rich-text-editor/rich-text-editor.js +60 -0
  38. package/dist/components/rich-text-editor/rich-text-editor.test.d.ts +2 -0
  39. package/dist/components/rich-text-editor/rich-text-editor.test.d.ts.map +1 -0
  40. package/dist/components/rich-text-editor/rich-text-editor.visual.test.d.ts +2 -0
  41. package/dist/components/rich-text-editor/rich-text-editor.visual.test.d.ts.map +1 -0
  42. package/dist/components/rich-text-editor/rich-text-renderer.d.ts +3 -0
  43. package/dist/components/rich-text-editor/rich-text-renderer.d.ts.map +1 -0
  44. package/dist/components/rich-text-editor/rich-text-renderer.js +21 -0
  45. package/dist/components/rich-text-editor/translations.d.ts +23 -0
  46. package/dist/components/rich-text-editor/translations.d.ts.map +1 -0
  47. package/dist/components/rich-text-editor/translations.js +120 -0
  48. package/dist/components/rich-text-editor/types.d.ts +30 -0
  49. package/dist/components/rich-text-editor/types.d.ts.map +1 -0
  50. package/dist/components/rich-text-editor/use-rich-text-editor.d.ts +3 -0
  51. package/dist/components/rich-text-editor/use-rich-text-editor.d.ts.map +1 -0
  52. package/dist/components/rich-text-editor/use-rich-text-editor.js +17 -0
  53. package/dist/components/toggle-button/toggle-button.d.ts.map +1 -1
  54. package/dist/components/toggle-button/toggle-button.js +11 -11
  55. package/dist/components/toggle-button/types.d.ts +2 -0
  56. package/dist/components/toggle-button/types.d.ts.map +1 -1
  57. package/dist/index.d.ts +1 -0
  58. package/dist/index.d.ts.map +1 -1
  59. package/dist/index.js +774 -763
  60. package/dist/node_modules/@tiptap/core/dist/index.js +3792 -0
  61. package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js +17 -0
  62. package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +62 -0
  63. package/dist/node_modules/@tiptap/extension-bold/dist/index.js +85 -0
  64. package/dist/node_modules/@tiptap/extension-code/dist/index.js +54 -0
  65. package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +217 -0
  66. package/dist/node_modules/@tiptap/extension-document/dist/index.js +12 -0
  67. package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +59 -0
  68. package/dist/node_modules/@tiptap/extension-heading/dist/index.js +63 -0
  69. package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +56 -0
  70. package/dist/node_modules/@tiptap/extension-italic/dist/index.js +83 -0
  71. package/dist/node_modules/@tiptap/extension-link/dist/index.js +313 -0
  72. package/dist/node_modules/@tiptap/extension-list/dist/index.js +785 -0
  73. package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +49 -0
  74. package/dist/node_modules/@tiptap/extension-strike/dist/index.js +66 -0
  75. package/dist/node_modules/@tiptap/extension-text/dist/index.js +13 -0
  76. package/dist/node_modules/@tiptap/extension-underline/dist/index.js +65 -0
  77. package/dist/node_modules/@tiptap/extensions/dist/index.js +439 -0
  78. package/dist/node_modules/@tiptap/react/dist/index.js +501 -0
  79. package/dist/node_modules/@tiptap/starter-kit/dist/index.js +28 -0
  80. package/dist/node_modules/fast-equals/dist/es/index.js +324 -0
  81. package/dist/node_modules/linkifyjs/dist/linkify.js +705 -0
  82. package/dist/node_modules/orderedmap/dist/index.js +103 -0
  83. package/dist/node_modules/prosemirror-commands/dist/index.js +388 -0
  84. package/dist/node_modules/prosemirror-dropcursor/dist/index.js +86 -0
  85. package/dist/node_modules/prosemirror-gapcursor/dist/index.js +204 -0
  86. package/dist/node_modules/prosemirror-history/dist/index.js +248 -0
  87. package/dist/node_modules/prosemirror-keymap/dist/index.js +62 -0
  88. package/dist/node_modules/prosemirror-model/dist/index.js +2736 -0
  89. package/dist/node_modules/prosemirror-schema-list/dist/index.js +88 -0
  90. package/dist/node_modules/prosemirror-state/dist/index.js +822 -0
  91. package/dist/node_modules/prosemirror-transform/dist/index.js +1552 -0
  92. package/dist/node_modules/prosemirror-view/dist/index.js +3802 -0
  93. package/dist/node_modules/rope-sequence/dist/index.js +100 -0
  94. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js +58 -0
  95. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js +57 -0
  96. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +58 -0
  97. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +46 -0
  98. package/dist/node_modules/use-sync-external-store/shim/index.js +10 -0
  99. package/dist/node_modules/use-sync-external-store/shim/with-selector.js +10 -0
  100. package/dist/node_modules/w3c-keyname/index.js +93 -0
  101. package/package.json +7 -1
package/dist/index.js CHANGED
@@ -1,781 +1,792 @@
1
1
  import { useColorMode as e } from "./hooks/use-color-mode.js";
2
2
  import { useDisclosure as n } from "./hooks/use-disclosure.js";
3
- import { AbsenceIcon as p } from "./components/icon/icons/absence-icon.js";
4
- import { AccessibilityIcon as x } from "./components/icon/icons/accessibility-icon.js";
5
- import { Accordion as I } from "./components/accordion/accordion.js";
6
- import { AccordionItem as i } from "./components/accordion/accordion-item.js";
7
- import { AccordionPanel as d } from "./components/accordion/accordion-panel.js";
8
- import { AddAbsenceIcon as s } from "./components/icon/icons/add-absence-icon.js";
9
- import { AddEmojiIcon as C } from "./components/icon/icons/add-emoji-icon.js";
10
- import { AddIcon as b } from "./components/icon/icons/add-icon.js";
11
- import { Alert as k } from "./components/alert/alert.js";
12
- import { AppleIcon as S } from "./components/icon/icons/apple-icon.js";
13
- import { AppsIcon as y } from "./components/icon/icons/apps-icon.js";
14
- import { ArchiveIcon as B } from "./components/icon/icons/archive-icon.js";
15
- import { AreaIcon as D } from "./components/icon/icons/area-icon.js";
16
- import { AtIcon as w } from "./components/icon/icons/at-icon.js";
3
+ import { RichTextEditor as p } from "./components/rich-text-editor/index.js";
4
+ import { AbsenceIcon as x } from "./components/icon/icons/absence-icon.js";
5
+ import { AccessibilityIcon as I } from "./components/icon/icons/accessibility-icon.js";
6
+ import { Accordion as i } from "./components/accordion/accordion.js";
7
+ import { AccordionItem as d } from "./components/accordion/accordion-item.js";
8
+ import { AccordionPanel as u } from "./components/accordion/accordion-panel.js";
9
+ import { AddAbsenceIcon as T } from "./components/icon/icons/add-absence-icon.js";
10
+ import { AddEmojiIcon as h } from "./components/icon/icons/add-emoji-icon.js";
11
+ import { AddIcon as P } from "./components/icon/icons/add-icon.js";
12
+ import { Alert as S } from "./components/alert/alert.js";
13
+ import { AppleIcon as y } from "./components/icon/icons/apple-icon.js";
14
+ import { AppsIcon as B } from "./components/icon/icons/apps-icon.js";
15
+ import { ArchiveIcon as D } from "./components/icon/icons/archive-icon.js";
16
+ import { AreaIcon as w } from "./components/icon/icons/area-icon.js";
17
+ import { AtIcon as H } from "./components/icon/icons/at-icon.js";
17
18
  import { AttachmentIcon as v } from "./components/icon/icons/attachment-icon.js";
18
- import { BabyIcon as V } from "./components/icon/icons/baby-icon.js";
19
- import { BackIcon as U } from "./components/icon/icons/back-icon.js";
20
- import { BackspaceIcon as W } from "./components/icon/icons/backspace-icon.js";
21
- import { Badge as N } from "./components/badge/badge.js";
22
- import { BankIDIcon as K } from "./components/icon/icons/bank-id-icon.js";
23
- import { BankIcon as j } from "./components/icon/icons/bank-icon.js";
24
- import { BarcodeIcon as q } from "./components/icon/icons/barcode-icon.js";
25
- import { BellIcon as Y } from "./components/icon/icons/bell-icon.js";
26
- import { BoltIcon as _ } from "./components/icon/icons/bolt-icon.js";
27
- import { Box as oo } from "./components/box/box.js";
28
- import { Breadcrumbs as eo } from "./components/breadcrumbs/breadcrumbs.js";
29
- import { Button as no } from "./components/button/button.js";
30
- import { CalendarIcon as po } from "./components/icon/icons/calendar-icon.js";
31
- import { CameraIcon as xo } from "./components/icon/icons/camera-icon.js";
32
- import { CancelIcon as Io } from "./components/icon/icons/cancel-icon.js";
33
- import { CardIcon as io } from "./components/icon/icons/card-icon.js";
34
- import { CartIcon as uo } from "./components/icon/icons/cart-icon.js";
35
- import { CaspecoIcon as Mo } from "./components/icon/icons/caspeco-icon.js";
36
- import { ChannelsIcon as To } from "./components/icon/icons/channels-icon.js";
37
- import { ChartIcon as Po } from "./components/icon/icons/chart-icon.js";
38
- import { ChartLineIcon as ho } from "./components/icon/icons/chart-line-icon.js";
39
- import { ChartMixedIcon as go } from "./components/icon/icons/chart-mixed-icon.js";
40
- import { ChartPieIcon as Ao } from "./components/icon/icons/chart-pie-icon.js";
41
- import { ChartScatterIcon as Lo } from "./components/icon/icons/chart-scatter-icon.js";
42
- import { CheckIcon as Fo } from "./components/icon/icons/check-icon.js";
43
- import { Checkbox as Ho } from "./components/checkbox/checkbox.js";
44
- import { CheckboxGroup as Eo } from "./components/checkbox-group/checkbox-group.js";
45
- import { CheckboxIcon as Ro } from "./components/icon/icons/checkbox-icon.js";
46
- import { ChevronLeftIcon as Go } from "./components/icon/icons/chevron-left-icon.js";
47
- import { ChevronRightIcon as Oo } from "./components/icon/icons/chevron-right-icon.js";
48
- import { ChildIcon as zo } from "./components/icon/icons/child-icon.js";
49
- import { CircleInfoIcon as Qo } from "./components/icon/icons/circle-info-icon.js";
50
- import { CircleParkingIcon as Jo } from "./components/icon/icons/circle-parking-icon.js";
51
- import { CircleQuestionIcon as Xo } from "./components/icon/icons/circle-question-icon.js";
52
- import { CircleSelectIcon as Zo } from "./components/icon/icons/circle-select-icon.js";
53
- import { CircleSuccessIcon as $o } from "./components/icon/icons/circle-success-icon.js";
54
- import { CircleUserIcon as rr } from "./components/icon/icons/circle-user-icon.js";
55
- import { ClearIcon as tr } from "./components/icon/icons/clear-icon.js";
56
- import { CloseIcon as mr } from "./components/icon/icons/close-icon.js";
57
- import { ClosedIcon as cr } from "./components/icon/icons/closed-icon.js";
58
- import { CollapseIcon as fr } from "./components/icon/icons/collapse-icon.js";
59
- import { Collapsible as ar } from "./components/collapsible/collapsible.js";
60
- import { ColorIcon as lr } from "./components/icon/icons/color-icon.js";
61
- import { ColumnsIcon as ur } from "./components/icon/icons/columns-icon.js";
62
- import { Combobox as Mr } from "./components/combobox/combobox.js";
63
- import { CommentAddIcon as Tr } from "./components/icon/icons/comment-add-icon.js";
64
- import { CommentIcon as Pr } from "./components/icon/icons/comment-icon.js";
65
- import { CookiesIcon as hr } from "./components/icon/icons/cookies-icon.js";
66
- import { CopyIcon as gr } from "./components/icon/icons/copy-icon.js";
67
- import { DateIcon as Ar } from "./components/icon/icons/date-icon.js";
68
- import { DatePicker as Lr } from "./components/date-picker/date-picker.js";
69
- import { DateRangePicker as Fr } from "./components/date-picker/date-range-picker.js";
70
- import { DateWeekPicker as Hr } from "./components/date-picker/date-week-picker.js";
71
- import { DecreaseIcon as Er } from "./components/icon/icons/decrease-icon.js";
72
- import { DeleteIcon as Rr } from "./components/icon/icons/delete-icon.js";
73
- import { DeliverectIcon as Gr } from "./components/icon/icons/deliverect-icon.js";
74
- import { DeliveryIcon as Or } from "./components/icon/icons/delivery-icon.js";
75
- import { DescriptionIcon as zr } from "./components/icon/icons/description-icon.js";
76
- import { DiscountIcon as Qr } from "./components/icon/icons/discount-icon.js";
77
- import { DistributeEvenlyIcon as Jr } from "./components/icon/icons/distribute-evenly-icon.js";
78
- import { Divider as Xr } from "./components/divider/divider.js";
79
- import { DoorClosedIcon as Zr } from "./components/icon/icons/door-closed-icon.js";
80
- import { DoorOpenIcon as $r } from "./components/icon/icons/door-open-icon.js";
81
- import { DownIcon as re } from "./components/icon/icons/down-icon.js";
82
- import { Drawer as te } from "./components/drawer/drawer.js";
83
- import { EatInIcon as me } from "./components/icon/icons/eat-in-icon.js";
84
- import { EditIcon as ce } from "./components/icon/icons/edit-icon.js";
85
- import { EmailIcon as fe } from "./components/icon/icons/email-icon.js";
86
- import { ErrorIcon as ae } from "./components/icon/icons/error-icon.js";
87
- import { ExpandIcon as le } from "./components/icon/icons/expand-icon.js";
88
- import { ExportIcon as ue } from "./components/icon/icons/export-icon.js";
89
- import { ExtractIcon as Me } from "./components/icon/icons/extract-icon.js";
90
- import { FacebookIcon as Te } from "./components/icon/icons/facebook-icon.js";
91
- import { FailedPrintIcon as Pe } from "./components/icon/icons/failed-print-icon.js";
92
- import { Fieldset as he } from "./components/fieldset/fieldset.js";
93
- import { FieldsetErrorText as ge } from "./components/fieldset/fieldset-error-text.js";
94
- import { FieldsetHelperText as Ae } from "./components/fieldset/fieldset-helper-text.js";
95
- import { FieldsetLegend as Le } from "./components/fieldset/fieldset-legend.js";
96
- import { FileIcon as Fe } from "./components/icon/icons/file-icon.js";
97
- import { FilterIcon as He } from "./components/icon/icons/filter-icon.js";
98
- import { Flex as Ee } from "./components/flex/flex.js";
99
- import { FolderIcon as Re } from "./components/icon/icons/folder-icon.js";
100
- import { FoodoraIcon as Ge } from "./components/icon/icons/foodora-icon.js";
101
- import { FormControl as Oe } from "./components/form-control/form-control.js";
102
- import { FormErrorMessage as ze } from "./components/form-control/form-error-message.js";
103
- import { FormHelperText as Qe } from "./components/form-control/form-helper-text.js";
104
- import { FormLabel as Je } from "./components/form-control/form-label.js";
105
- import { ForwardIcon as Xe } from "./components/icon/icons/forward-icon.js";
106
- import { GlovoIcon as Ze } from "./components/icon/icons/glovo-icon.js";
107
- import { GoalIcon as $e } from "./components/icon/icons/goal-icon.js";
108
- import { GoogleIcon as rt } from "./components/icon/icons/google-icon.js";
109
- import { Grid as tt } from "./components/grid/grid.js";
110
- import { GridItem as mt } from "./components/grid/grid-item.js";
111
- import { GripMoreIcon as ct } from "./components/icon/icons/grip-more-icon.js";
112
- import { HashIcon as ft } from "./components/icon/icons/hash-icon.js";
113
- import { Heading as at } from "./components/heading/heading.js";
114
- import { HexagonErrorIcon as lt } from "./components/icon/icons/hexagon-error-icon.js";
115
- import { HideIcon as ut } from "./components/icon/icons/hide-icon.js";
116
- import { Highlight as Mt } from "./components/highlight/highlight.js";
117
- import { HistoryIcon as Tt } from "./components/icon/icons/history-icon.js";
118
- import { IconButton as Pt } from "./components/icon-button/icon-button.js";
119
- import { IconPickerAnchorIcon as ht } from "./components/icon/icons/icon-picker-anchor-icon.js";
120
- import { IconPickerAsteriskIcon as gt } from "./components/icon/icons/icon-picker-asterisk-icon.js";
121
- import { IconPickerBeerIcon as At } from "./components/icon/icons/icon-picker-beer-icon.js";
122
- import { IconPickerBicycleIcon as Lt } from "./components/icon/icons/icon-picker-bicycle-icon.js";
123
- import { IconPickerBinocularsIcon as Ft } from "./components/icon/icons/icon-picker-binoculars-icon.js";
124
- import { IconPickerBombIcon as Ht } from "./components/icon/icons/icon-picker-bomb-icon.js";
125
- import { IconPickerCarIcon as Et } from "./components/icon/icons/icon-picker-car-icon.js";
126
- import { IconPickerCocktailIcon as Rt } from "./components/icon/icons/icon-picker-cocktail-icon.js";
127
- import { IconPickerGemIcon as Gt } from "./components/icon/icons/icon-picker-gem-icon.js";
128
- import { IconPickerHeartFullIcon as Ot } from "./components/icon/icons/icon-picker-heart-full-icon.js";
129
- import { IconPickerHeartIcon as zt } from "./components/icon/icons/icon-picker-heart-icon.js";
130
- import { IconPickerMagnetIcon as Qt } from "./components/icon/icons/icon-picker-magnet-icon.js";
131
- import { IconPickerMoneyIcon as Jt } from "./components/icon/icons/icon-picker-money-icon.js";
132
- import { IconPickerMoonIcon as Xt } from "./components/icon/icons/icon-picker-moon-icon.js";
133
- import { IconPickerMusicIcon as Zt } from "./components/icon/icons/icon-picker-music-icon.js";
134
- import { IconPickerStarFullIcon as $t } from "./components/icon/icons/icon-picker-star-full-icon.js";
135
- import { IconPickerStarHalfIcon as rn } from "./components/icon/icons/icon-picker-star-half-icon.js";
136
- import { IconPickerStarIcon as tn } from "./components/icon/icons/icon-picker-star-icon.js";
137
- import { IconPickerTintIcon as mn } from "./components/icon/icons/icon-picker-tint-icon.js";
138
- import { IconPickerTreeIcon as cn } from "./components/icon/icons/icon-picker-tree-icon.js";
139
- import { IconPickerUtensilsIcon as fn } from "./components/icon/icons/icon-picker-utensils-icon.js";
140
- import { IconPickerWheelchairIcon as an } from "./components/icon/icons/icon-picker-wheelchair-icon.js";
141
- import { Image as dn } from "./components/image/image.js";
142
- import { ImageIcon as sn } from "./components/icon/icons/image-icon.js";
143
- import { ImageUpload as Cn } from "./components/image-upload/image-upload.js";
144
- import { ImageUploadAspectRatio as bn } from "./components/image-upload/types.js";
145
- import { ImportIcon as kn } from "./components/icon/icons/import-icon.js";
146
- import { InboxIcon as Sn } from "./components/icon/icons/inbox-icon.js";
147
- import { IncreaseIcon as yn } from "./components/icon/icons/increase-icon.js";
148
- import { IndeterminateIcon as Bn } from "./components/icon/icons/indeterminate-icon.js";
149
- import { InfoIcon as Dn } from "./components/icon/icons/info-icon.js";
150
- import { InheritanceIcon as wn } from "./components/icon/icons/inheritance-icon.js";
19
+ import { BabyIcon as U } from "./components/icon/icons/baby-icon.js";
20
+ import { BackIcon as W } from "./components/icon/icons/back-icon.js";
21
+ import { BackspaceIcon as N } from "./components/icon/icons/backspace-icon.js";
22
+ import { Badge as K } from "./components/badge/badge.js";
23
+ import { BankIDIcon as j } from "./components/icon/icons/bank-id-icon.js";
24
+ import { BankIcon as q } from "./components/icon/icons/bank-icon.js";
25
+ import { BarcodeIcon as Y } from "./components/icon/icons/barcode-icon.js";
26
+ import { BellIcon as _ } from "./components/icon/icons/bell-icon.js";
27
+ import { BoltIcon as oo } from "./components/icon/icons/bolt-icon.js";
28
+ import { Box as eo } from "./components/box/box.js";
29
+ import { Breadcrumbs as no } from "./components/breadcrumbs/breadcrumbs.js";
30
+ import { Button as po } from "./components/button/button.js";
31
+ import { CalendarIcon as xo } from "./components/icon/icons/calendar-icon.js";
32
+ import { CameraIcon as Io } from "./components/icon/icons/camera-icon.js";
33
+ import { CancelIcon as io } from "./components/icon/icons/cancel-icon.js";
34
+ import { CardIcon as so } from "./components/icon/icons/card-icon.js";
35
+ import { CartIcon as Mo } from "./components/icon/icons/cart-icon.js";
36
+ import { CaspecoIcon as Co } from "./components/icon/icons/caspeco-icon.js";
37
+ import { ChannelsIcon as bo } from "./components/icon/icons/channels-icon.js";
38
+ import { ChartIcon as ko } from "./components/icon/icons/chart-icon.js";
39
+ import { ChartLineIcon as go } from "./components/icon/icons/chart-line-icon.js";
40
+ import { ChartMixedIcon as Ao } from "./components/icon/icons/chart-mixed-icon.js";
41
+ import { ChartPieIcon as Lo } from "./components/icon/icons/chart-pie-icon.js";
42
+ import { ChartScatterIcon as Fo } from "./components/icon/icons/chart-scatter-icon.js";
43
+ import { CheckIcon as Eo } from "./components/icon/icons/check-icon.js";
44
+ import { Checkbox as Ro } from "./components/checkbox/checkbox.js";
45
+ import { CheckboxGroup as Vo } from "./components/checkbox-group/checkbox-group.js";
46
+ import { CheckboxIcon as Go } from "./components/icon/icons/checkbox-icon.js";
47
+ import { ChevronLeftIcon as Oo } from "./components/icon/icons/chevron-left-icon.js";
48
+ import { ChevronRightIcon as zo } from "./components/icon/icons/chevron-right-icon.js";
49
+ import { ChildIcon as Qo } from "./components/icon/icons/child-icon.js";
50
+ import { CircleInfoIcon as Jo } from "./components/icon/icons/circle-info-icon.js";
51
+ import { CircleParkingIcon as Xo } from "./components/icon/icons/circle-parking-icon.js";
52
+ import { CircleQuestionIcon as Zo } from "./components/icon/icons/circle-question-icon.js";
53
+ import { CircleSelectIcon as $o } from "./components/icon/icons/circle-select-icon.js";
54
+ import { CircleSuccessIcon as rr } from "./components/icon/icons/circle-success-icon.js";
55
+ import { CircleUserIcon as tr } from "./components/icon/icons/circle-user-icon.js";
56
+ import { ClearIcon as mr } from "./components/icon/icons/clear-icon.js";
57
+ import { CloseIcon as cr } from "./components/icon/icons/close-icon.js";
58
+ import { ClosedIcon as fr } from "./components/icon/icons/closed-icon.js";
59
+ import { CollapseIcon as ar } from "./components/icon/icons/collapse-icon.js";
60
+ import { Collapsible as lr } from "./components/collapsible/collapsible.js";
61
+ import { ColorIcon as sr } from "./components/icon/icons/color-icon.js";
62
+ import { ColumnsIcon as Mr } from "./components/icon/icons/columns-icon.js";
63
+ import { Combobox as Cr } from "./components/combobox/combobox.js";
64
+ import { CommentAddIcon as br } from "./components/icon/icons/comment-add-icon.js";
65
+ import { CommentIcon as kr } from "./components/icon/icons/comment-icon.js";
66
+ import { CookiesIcon as gr } from "./components/icon/icons/cookies-icon.js";
67
+ import { CopyIcon as Ar } from "./components/icon/icons/copy-icon.js";
68
+ import { DateIcon as Lr } from "./components/icon/icons/date-icon.js";
69
+ import { DatePicker as Fr } from "./components/date-picker/date-picker.js";
70
+ import { DateRangePicker as Er } from "./components/date-picker/date-range-picker.js";
71
+ import { DateWeekPicker as Rr } from "./components/date-picker/date-week-picker.js";
72
+ import { DecreaseIcon as Vr } from "./components/icon/icons/decrease-icon.js";
73
+ import { DeleteIcon as Gr } from "./components/icon/icons/delete-icon.js";
74
+ import { DeliverectIcon as Or } from "./components/icon/icons/deliverect-icon.js";
75
+ import { DeliveryIcon as zr } from "./components/icon/icons/delivery-icon.js";
76
+ import { DescriptionIcon as Qr } from "./components/icon/icons/description-icon.js";
77
+ import { DiscountIcon as Jr } from "./components/icon/icons/discount-icon.js";
78
+ import { DistributeEvenlyIcon as Xr } from "./components/icon/icons/distribute-evenly-icon.js";
79
+ import { Divider as Zr } from "./components/divider/divider.js";
80
+ import { DoorClosedIcon as $r } from "./components/icon/icons/door-closed-icon.js";
81
+ import { DoorOpenIcon as re } from "./components/icon/icons/door-open-icon.js";
82
+ import { DownIcon as te } from "./components/icon/icons/down-icon.js";
83
+ import { Drawer as me } from "./components/drawer/drawer.js";
84
+ import { EatInIcon as ce } from "./components/icon/icons/eat-in-icon.js";
85
+ import { EditIcon as fe } from "./components/icon/icons/edit-icon.js";
86
+ import { EmailIcon as ae } from "./components/icon/icons/email-icon.js";
87
+ import { ErrorIcon as le } from "./components/icon/icons/error-icon.js";
88
+ import { ExpandIcon as se } from "./components/icon/icons/expand-icon.js";
89
+ import { ExportIcon as Me } from "./components/icon/icons/export-icon.js";
90
+ import { ExtractIcon as Ce } from "./components/icon/icons/extract-icon.js";
91
+ import { FacebookIcon as be } from "./components/icon/icons/facebook-icon.js";
92
+ import { FailedPrintIcon as ke } from "./components/icon/icons/failed-print-icon.js";
93
+ import { Fieldset as ge } from "./components/fieldset/fieldset.js";
94
+ import { FieldsetErrorText as Ae } from "./components/fieldset/fieldset-error-text.js";
95
+ import { FieldsetHelperText as Le } from "./components/fieldset/fieldset-helper-text.js";
96
+ import { FieldsetLegend as Fe } from "./components/fieldset/fieldset-legend.js";
97
+ import { FileIcon as Ee } from "./components/icon/icons/file-icon.js";
98
+ import { FilterIcon as Re } from "./components/icon/icons/filter-icon.js";
99
+ import { Flex as Ve } from "./components/flex/flex.js";
100
+ import { FolderIcon as Ge } from "./components/icon/icons/folder-icon.js";
101
+ import { FoodoraIcon as Oe } from "./components/icon/icons/foodora-icon.js";
102
+ import { FormControl as ze } from "./components/form-control/form-control.js";
103
+ import { FormErrorMessage as Qe } from "./components/form-control/form-error-message.js";
104
+ import { FormHelperText as Je } from "./components/form-control/form-helper-text.js";
105
+ import { FormLabel as Xe } from "./components/form-control/form-label.js";
106
+ import { ForwardIcon as Ze } from "./components/icon/icons/forward-icon.js";
107
+ import { GlovoIcon as $e } from "./components/icon/icons/glovo-icon.js";
108
+ import { GoalIcon as rt } from "./components/icon/icons/goal-icon.js";
109
+ import { GoogleIcon as tt } from "./components/icon/icons/google-icon.js";
110
+ import { Grid as mt } from "./components/grid/grid.js";
111
+ import { GridItem as ct } from "./components/grid/grid-item.js";
112
+ import { GripMoreIcon as ft } from "./components/icon/icons/grip-more-icon.js";
113
+ import { HashIcon as at } from "./components/icon/icons/hash-icon.js";
114
+ import { Heading as lt } from "./components/heading/heading.js";
115
+ import { HexagonErrorIcon as st } from "./components/icon/icons/hexagon-error-icon.js";
116
+ import { HideIcon as Mt } from "./components/icon/icons/hide-icon.js";
117
+ import { Highlight as Ct } from "./components/highlight/highlight.js";
118
+ import { HistoryIcon as bt } from "./components/icon/icons/history-icon.js";
119
+ import { IconButton as kt } from "./components/icon-button/icon-button.js";
120
+ import { IconPickerAnchorIcon as gt } from "./components/icon/icons/icon-picker-anchor-icon.js";
121
+ import { IconPickerAsteriskIcon as At } from "./components/icon/icons/icon-picker-asterisk-icon.js";
122
+ import { IconPickerBeerIcon as Lt } from "./components/icon/icons/icon-picker-beer-icon.js";
123
+ import { IconPickerBicycleIcon as Ft } from "./components/icon/icons/icon-picker-bicycle-icon.js";
124
+ import { IconPickerBinocularsIcon as Et } from "./components/icon/icons/icon-picker-binoculars-icon.js";
125
+ import { IconPickerBombIcon as Rt } from "./components/icon/icons/icon-picker-bomb-icon.js";
126
+ import { IconPickerCarIcon as Vt } from "./components/icon/icons/icon-picker-car-icon.js";
127
+ import { IconPickerCocktailIcon as Gt } from "./components/icon/icons/icon-picker-cocktail-icon.js";
128
+ import { IconPickerGemIcon as Ot } from "./components/icon/icons/icon-picker-gem-icon.js";
129
+ import { IconPickerHeartFullIcon as zt } from "./components/icon/icons/icon-picker-heart-full-icon.js";
130
+ import { IconPickerHeartIcon as Qt } from "./components/icon/icons/icon-picker-heart-icon.js";
131
+ import { IconPickerMagnetIcon as Jt } from "./components/icon/icons/icon-picker-magnet-icon.js";
132
+ import { IconPickerMoneyIcon as Xt } from "./components/icon/icons/icon-picker-money-icon.js";
133
+ import { IconPickerMoonIcon as Zt } from "./components/icon/icons/icon-picker-moon-icon.js";
134
+ import { IconPickerMusicIcon as $t } from "./components/icon/icons/icon-picker-music-icon.js";
135
+ import { IconPickerStarFullIcon as rn } from "./components/icon/icons/icon-picker-star-full-icon.js";
136
+ import { IconPickerStarHalfIcon as tn } from "./components/icon/icons/icon-picker-star-half-icon.js";
137
+ import { IconPickerStarIcon as mn } from "./components/icon/icons/icon-picker-star-icon.js";
138
+ import { IconPickerTintIcon as cn } from "./components/icon/icons/icon-picker-tint-icon.js";
139
+ import { IconPickerTreeIcon as fn } from "./components/icon/icons/icon-picker-tree-icon.js";
140
+ import { IconPickerUtensilsIcon as an } from "./components/icon/icons/icon-picker-utensils-icon.js";
141
+ import { IconPickerWheelchairIcon as dn } from "./components/icon/icons/icon-picker-wheelchair-icon.js";
142
+ import { Image as un } from "./components/image/image.js";
143
+ import { ImageIcon as Tn } from "./components/icon/icons/image-icon.js";
144
+ import { ImageUpload as hn } from "./components/image-upload/image-upload.js";
145
+ import { ImageUploadAspectRatio as Pn } from "./components/image-upload/types.js";
146
+ import { ImportIcon as Sn } from "./components/icon/icons/import-icon.js";
147
+ import { InboxIcon as yn } from "./components/icon/icons/inbox-icon.js";
148
+ import { IncreaseIcon as Bn } from "./components/icon/icons/increase-icon.js";
149
+ import { IndeterminateIcon as Dn } from "./components/icon/icons/indeterminate-icon.js";
150
+ import { InfoIcon as wn } from "./components/icon/icons/info-icon.js";
151
+ import { InheritanceIcon as Hn } from "./components/icon/icons/inheritance-icon.js";
151
152
  import { Input as vn } from "./components/input/input.js";
152
- import { JustEatIcon as Vn } from "./components/icon/icons/just-eat-icon.js";
153
- import { KarmaIcon as Un } from "./components/icon/icons/karma-icon.js";
154
- import { KeyCommandIcon as Wn } from "./components/icon/icons/key-command-icon.js";
155
- import { KeyEnterIcon as Nn } from "./components/icon/icons/key-enter-icon.js";
156
- import { KeyIcon as Kn } from "./components/icon/icons/key-icon.js";
157
- import { KeyOptionIcon as jn } from "./components/icon/icons/key-option-icon.js";
158
- import { LanguageIcon as qn } from "./components/icon/icons/language-icon.js";
159
- import { Link as Yn } from "./components/link/link.js";
160
- import { LinkBrokenIcon as _n } from "./components/icon/icons/link-broken-icon.js";
161
- import { LinkExternalIcon as om } from "./components/icon/icons/link-external-icon.js";
162
- import { LinkIcon as em } from "./components/icon/icons/link-icon.js";
163
- import { List as nm } from "./components/list/list.js";
164
- import { ListItem as pm } from "./components/list/list-item.js";
165
- import { ListOLIcon as xm } from "./components/icon/icons/list-ol-icon.js";
166
- import { ListULIcon as Im } from "./components/icon/icons/list-ul-icon.js";
167
- import { LoadingIcon as im } from "./components/icon/icons/loading-icon.js";
168
- import { LocationIcon as dm } from "./components/icon/icons/location-icon.js";
169
- import { LockIcon as sm } from "./components/icon/icons/lock-icon.js";
170
- import { LogInIcon as Cm } from "./components/icon/icons/log-in-icon.js";
171
- import { LogOutIcon as bm } from "./components/icon/icons/log-out-icon.js";
172
- import { MapIcon as km } from "./components/icon/icons/map-icon.js";
173
- import { MaximizeIcon as Sm } from "./components/icon/icons/maximize-icon.js";
174
- import { MembersIcon as ym } from "./components/icon/icons/members-icon.js";
175
- import { Menu as Bm } from "./components/menu/menu.js";
176
- import { MenuBoxButton as Dm } from "./components/menu/menu-box-button.js";
177
- import { MenuButton as wm } from "./components/menu/menu-button.js";
153
+ import { JustEatIcon as Un } from "./components/icon/icons/just-eat-icon.js";
154
+ import { KarmaIcon as Wn } from "./components/icon/icons/karma-icon.js";
155
+ import { KeyCommandIcon as Nn } from "./components/icon/icons/key-command-icon.js";
156
+ import { KeyEnterIcon as Kn } from "./components/icon/icons/key-enter-icon.js";
157
+ import { KeyIcon as jn } from "./components/icon/icons/key-icon.js";
158
+ import { KeyOptionIcon as qn } from "./components/icon/icons/key-option-icon.js";
159
+ import { LanguageIcon as Yn } from "./components/icon/icons/language-icon.js";
160
+ import { Link as _n } from "./components/link/link.js";
161
+ import { LinkBrokenIcon as om } from "./components/icon/icons/link-broken-icon.js";
162
+ import { LinkExternalIcon as em } from "./components/icon/icons/link-external-icon.js";
163
+ import { LinkIcon as nm } from "./components/icon/icons/link-icon.js";
164
+ import { List as pm } from "./components/list/list.js";
165
+ import { ListItem as xm } from "./components/list/list-item.js";
166
+ import { ListOLIcon as Im } from "./components/icon/icons/list-ol-icon.js";
167
+ import { ListULIcon as im } from "./components/icon/icons/list-ul-icon.js";
168
+ import { LoadingIcon as dm } from "./components/icon/icons/loading-icon.js";
169
+ import { LocationIcon as um } from "./components/icon/icons/location-icon.js";
170
+ import { LockIcon as Tm } from "./components/icon/icons/lock-icon.js";
171
+ import { LogInIcon as hm } from "./components/icon/icons/log-in-icon.js";
172
+ import { LogOutIcon as Pm } from "./components/icon/icons/log-out-icon.js";
173
+ import { MapIcon as Sm } from "./components/icon/icons/map-icon.js";
174
+ import { MaximizeIcon as ym } from "./components/icon/icons/maximize-icon.js";
175
+ import { MembersIcon as Bm } from "./components/icon/icons/members-icon.js";
176
+ import { Menu as Dm } from "./components/menu/menu.js";
177
+ import { MenuBoxButton as wm } from "./components/menu/menu-box-button.js";
178
+ import { MenuButton as Hm } from "./components/menu/menu-button.js";
178
179
  import { MenuDivider as vm } from "./components/menu/menu-divider.js";
179
- import { MenuGroup as Vm } from "./components/menu/menu-group.js";
180
- import { MenuHideIcon as Um } from "./components/icon/icons/menu-hide-icon.js";
181
- import { MenuIcon as Wm } from "./components/icon/icons/menu-icon.js";
182
- import { MenuIconButton as Nm } from "./components/menu/menu-icon-button.js";
183
- import { MenuItem as Km } from "./components/menu/menu-item.js";
184
- import { MenuList as jm } from "./components/menu/menu-list.js";
185
- import { MenuShowIcon as qm } from "./components/icon/icons/menu-show-icon.js";
186
- import { Message as Ym } from "./components/message/message.js";
187
- import { MessageAddIcon as _m } from "./components/icon/icons/message-add-icon.js";
188
- import { MessageIcon as op } from "./components/icon/icons/message-icon.js";
189
- import { MessageLinesIcon as ep } from "./components/icon/icons/message-lines-icon.js";
190
- import { MinimizeIcon as np } from "./components/icon/icons/minimize-icon.js";
191
- import { MinimizeWindowIcon as pp } from "./components/icon/icons/minimize-window-icon.js";
192
- import { MobileRotateIcon as xp } from "./components/icon/icons/mobile-rotate-icon.js";
193
- import { Modal as Ip } from "./components/modal/modal.js";
194
- import { ModalBody as ip } from "./components/modal/modal-body.js";
195
- import { ModalCloseButton as dp } from "./components/modal/modal-close-button.js";
196
- import { ModalFooter as sp } from "./components/modal/modal-footer.js";
197
- import { ModalHeader as Cp } from "./components/modal/modal-header.js";
198
- import { ModuleAccountingIcon as bp } from "./components/icon/icons/module-accounting-icon.js";
199
- import { ModuleAiForecastIcon as kp } from "./components/icon/icons/module-ai-forecast-icon.js";
200
- import { ModuleAppIcon as Sp } from "./components/icon/icons/module-app-icon.js";
201
- import { ModuleArticlesIcon as yp } from "./components/icon/icons/module-articles-icon.js";
202
- import { ModuleBenchmarkIcon as Bp } from "./components/icon/icons/module-benchmark-icon.js";
203
- import { ModuleBookingIcon as Dp } from "./components/icon/icons/module-booking-icon.js";
204
- import { ModuleCaiIcon as wp } from "./components/icon/icons/module-cai-icon.js";
180
+ import { MenuGroup as Um } from "./components/menu/menu-group.js";
181
+ import { MenuHideIcon as Wm } from "./components/icon/icons/menu-hide-icon.js";
182
+ import { MenuIcon as Nm } from "./components/icon/icons/menu-icon.js";
183
+ import { MenuIconButton as Km } from "./components/menu/menu-icon-button.js";
184
+ import { MenuItem as jm } from "./components/menu/menu-item.js";
185
+ import { MenuList as qm } from "./components/menu/menu-list.js";
186
+ import { MenuShowIcon as Ym } from "./components/icon/icons/menu-show-icon.js";
187
+ import { Message as _m } from "./components/message/message.js";
188
+ import { MessageAddIcon as op } from "./components/icon/icons/message-add-icon.js";
189
+ import { MessageIcon as ep } from "./components/icon/icons/message-icon.js";
190
+ import { MessageLinesIcon as np } from "./components/icon/icons/message-lines-icon.js";
191
+ import { MinimizeIcon as pp } from "./components/icon/icons/minimize-icon.js";
192
+ import { MinimizeWindowIcon as xp } from "./components/icon/icons/minimize-window-icon.js";
193
+ import { MobileRotateIcon as Ip } from "./components/icon/icons/mobile-rotate-icon.js";
194
+ import { Modal as ip } from "./components/modal/modal.js";
195
+ import { ModalBody as dp } from "./components/modal/modal-body.js";
196
+ import { ModalCloseButton as up } from "./components/modal/modal-close-button.js";
197
+ import { ModalFooter as Tp } from "./components/modal/modal-footer.js";
198
+ import { ModalHeader as hp } from "./components/modal/modal-header.js";
199
+ import { ModuleAccountingIcon as Pp } from "./components/icon/icons/module-accounting-icon.js";
200
+ import { ModuleAiForecastIcon as Sp } from "./components/icon/icons/module-ai-forecast-icon.js";
201
+ import { ModuleAppIcon as yp } from "./components/icon/icons/module-app-icon.js";
202
+ import { ModuleArticlesIcon as Bp } from "./components/icon/icons/module-articles-icon.js";
203
+ import { ModuleBenchmarkIcon as Dp } from "./components/icon/icons/module-benchmark-icon.js";
204
+ import { ModuleBookingIcon as wp } from "./components/icon/icons/module-booking-icon.js";
205
+ import { ModuleCaiIcon as Hp } from "./components/icon/icons/module-cai-icon.js";
205
206
  import { ModuleCampaignsIcon as vp } from "./components/icon/icons/module-campaigns-icon.js";
206
- import { ModuleCashierIcon as Vp } from "./components/icon/icons/module-cashier-icon.js";
207
- import { ModuleCommunicationIcon as Up } from "./components/icon/icons/module-communication-icon.js";
208
- import { ModuleCopilotIcon as Wp } from "./components/icon/icons/module-copilot-icon.js";
209
- import { ModuleDashboardIcon as Np } from "./components/icon/icons/module-dashboard-icon.js";
210
- import { ModuleDocumentIcon as Kp } from "./components/icon/icons/module-document-icon.js";
211
- import { ModuleEmployeesIcon as jp } from "./components/icon/icons/module-employees-icon.js";
212
- import { ModuleFeedIcon as qp } from "./components/icon/icons/module-feed-icon.js";
213
- import { ModuleHistoryIcon as Yp } from "./components/icon/icons/module-history-icon.js";
214
- import { ModuleHomeIcon as _p } from "./components/icon/icons/module-home-icon.js";
215
- import { ModuleInsightsIcon as oc } from "./components/icon/icons/module-insights-icon.js";
216
- import { ModuleKdsIcon as ec } from "./components/icon/icons/module-kds-icon.js";
217
- import { ModuleMembersIcon as nc } from "./components/icon/icons/module-members-icon.js";
218
- import { ModuleMenusIcon as pc } from "./components/icon/icons/module-menus-icon.js";
219
- import { ModuleMyCityIcon as xc } from "./components/icon/icons/module-my-city-icon.js";
220
- import { ModuleNotificationCenterIcon as Ic } from "./components/icon/icons/module-notification-center-icon.js";
221
- import { ModuleOnlineOrderIcon as ic } from "./components/icon/icons/module-online-order-icon.js";
222
- import { ModuleOrganisationIcon as dc } from "./components/icon/icons/module-organisation-icon.js";
223
- import { ModulePosIcon as sc } from "./components/icon/icons/module-pos-icon.js";
224
- import { ModulePulseIcon as Cc } from "./components/icon/icons/module-pulse-icon.js";
225
- import { ModuleResultIcon as bc } from "./components/icon/icons/module-result-icon.js";
226
- import { ModuleSalaryIcon as kc } from "./components/icon/icons/module-salary-icon.js";
227
- import { ModuleScheduleIcon as Sc } from "./components/icon/icons/module-schedule-icon.js";
228
- import { ModuleSettingsAltIcon as yc } from "./components/icon/icons/module-settings-alt-icon.js";
229
- import { ModuleSettingsIcon as Bc } from "./components/icon/icons/module-settings-icon.js";
230
- import { ModuleSupportIcon as Dc } from "./components/icon/icons/module-support-icon.js";
231
- import { ModuleSurveyIcon as wc } from "./components/icon/icons/module-survey-icon.js";
207
+ import { ModuleCashierIcon as Up } from "./components/icon/icons/module-cashier-icon.js";
208
+ import { ModuleCommunicationIcon as Wp } from "./components/icon/icons/module-communication-icon.js";
209
+ import { ModuleCopilotIcon as Np } from "./components/icon/icons/module-copilot-icon.js";
210
+ import { ModuleDashboardIcon as Kp } from "./components/icon/icons/module-dashboard-icon.js";
211
+ import { ModuleDocumentIcon as jp } from "./components/icon/icons/module-document-icon.js";
212
+ import { ModuleEmployeesIcon as qp } from "./components/icon/icons/module-employees-icon.js";
213
+ import { ModuleFeedIcon as Yp } from "./components/icon/icons/module-feed-icon.js";
214
+ import { ModuleHistoryIcon as _p } from "./components/icon/icons/module-history-icon.js";
215
+ import { ModuleHomeIcon as oc } from "./components/icon/icons/module-home-icon.js";
216
+ import { ModuleInsightsIcon as ec } from "./components/icon/icons/module-insights-icon.js";
217
+ import { ModuleKdsIcon as nc } from "./components/icon/icons/module-kds-icon.js";
218
+ import { ModuleMembersIcon as pc } from "./components/icon/icons/module-members-icon.js";
219
+ import { ModuleMenusIcon as xc } from "./components/icon/icons/module-menus-icon.js";
220
+ import { ModuleMyCityIcon as Ic } from "./components/icon/icons/module-my-city-icon.js";
221
+ import { ModuleNotificationCenterIcon as ic } from "./components/icon/icons/module-notification-center-icon.js";
222
+ import { ModuleOnlineOrderIcon as dc } from "./components/icon/icons/module-online-order-icon.js";
223
+ import { ModuleOrganisationIcon as uc } from "./components/icon/icons/module-organisation-icon.js";
224
+ import { ModulePosIcon as Tc } from "./components/icon/icons/module-pos-icon.js";
225
+ import { ModulePulseIcon as hc } from "./components/icon/icons/module-pulse-icon.js";
226
+ import { ModuleResultIcon as Pc } from "./components/icon/icons/module-result-icon.js";
227
+ import { ModuleSalaryIcon as Sc } from "./components/icon/icons/module-salary-icon.js";
228
+ import { ModuleScheduleIcon as yc } from "./components/icon/icons/module-schedule-icon.js";
229
+ import { ModuleSettingsAltIcon as Bc } from "./components/icon/icons/module-settings-alt-icon.js";
230
+ import { ModuleSettingsIcon as Dc } from "./components/icon/icons/module-settings-icon.js";
231
+ import { ModuleSupportIcon as wc } from "./components/icon/icons/module-support-icon.js";
232
+ import { ModuleSurveyIcon as Hc } from "./components/icon/icons/module-survey-icon.js";
232
233
  import { ModuleTableMapIcon as vc } from "./components/icon/icons/module-table-map-icon.js";
233
- import { ModuleTabletIcon as Vc } from "./components/icon/icons/module-tablet-icon.js";
234
- import { ModuleTimeIcon as Uc } from "./components/icon/icons/module-time-icon.js";
235
- import { ModuleTimelineIcon as Wc } from "./components/icon/icons/module-timeline-icon.js";
236
- import { ModuleTipIcon as Nc } from "./components/icon/icons/module-tip-icon.js";
237
- import { ModuleToDoIcon as Kc } from "./components/icon/icons/module-to-do-icon.js";
238
- import { ModuleToolsIcon as jc } from "./components/icon/icons/module-tools-icon.js";
239
- import { ModuleTopListIcon as qc } from "./components/icon/icons/module-top-list-icon.js";
240
- import { ModuleWebChartsIcon as Yc } from "./components/icon/icons/module-web-charts-icon.js";
241
- import { ModuleWebIcon as _c } from "./components/icon/icons/module-web-icon.js";
242
- import { MoreHorizontalIcon as ox } from "./components/icon/icons/more-horizontal-icon.js";
243
- import { MoreVerticalIcon as ex } from "./components/icon/icons/more-vertical-icon.js";
244
- import { NavigationList as nx } from "./components/navigation-list/navigation-list.js";
245
- import { NavigationListButton as px, NavigationListLink as cx } from "./components/navigation-list/navigation-list-item.js";
246
- import { NfcIcon as fx } from "./components/icon/icons/nfc-icon.js";
247
- import { NoCartIcon as ax } from "./components/icon/icons/no-cart-icon.js";
248
- import { NoteIcon as lx } from "./components/icon/icons/note-icon.js";
249
- import { NumberIcon as ux } from "./components/icon/icons/number-icon.js";
250
- import { OpenModalIcon as Mx } from "./components/icon/icons/open-modal-icon.js";
251
- import { Paginator as Tx } from "./components/paginator/paginator.js";
252
- import { ParkingIcon as Px } from "./components/icon/icons/parking-icon.js";
253
- import { PartyHornIcon as hx } from "./components/icon/icons/party-horn-icon.js";
254
- import { PauseIcon as gx } from "./components/icon/icons/pause-icon.js";
255
- import { PaymentCardIcon as Ax } from "./components/icon/icons/payment-card-icon.js";
256
- import { PaymentCashIcon as Lx } from "./components/icon/icons/payment-cash-icon.js";
257
- import { PaymentGenericIcon as Fx } from "./components/icon/icons/payment-generic-icon.js";
258
- import { PaymentGiftcardIcon as Hx } from "./components/icon/icons/payment-giftcard-icon.js";
259
- import { PaymentHotelIcon as Ex } from "./components/icon/icons/payment-hotel-icon.js";
260
- import { PaymentInvoiceIcon as Rx } from "./components/icon/icons/payment-invoice-icon.js";
261
- import { PercentageIcon as Gx } from "./components/icon/icons/percentage-icon.js";
262
- import { PhoneIcon as Ox } from "./components/icon/icons/phone-icon.js";
263
- import { PinIcon as zx } from "./components/icon/icons/pin-icon.js";
264
- import { PinMapIcon as Qx } from "./components/icon/icons/pin-map-icon.js";
265
- import { PlayIcon as Jx } from "./components/icon/icons/play-icon.js";
266
- import { PreviewIcon as Xx } from "./components/icon/icons/preview-icon.js";
267
- import { PrintIcon as Zx } from "./components/icon/icons/print-icon.js";
268
- import { PrivacyIcon as $x } from "./components/icon/icons/privacy-icon.js";
269
- import { ProductAdminIcon as rf } from "./components/icon/icons/product-admin-icon.js";
270
- import { ProductAnalyticsIcon as tf } from "./components/icon/icons/product-analytics-icon.js";
271
- import { ProductBookingIcon as mf } from "./components/icon/icons/product-booking-icon.js";
272
- import { ProductCheckoutIcon as cf } from "./components/icon/icons/product-checkout-icon.js";
273
- import { ProductMyPagesIcon as ff } from "./components/icon/icons/product-my-pages-icon.js";
274
- import { ProductStaffIcon as af } from "./components/icon/icons/product-staff-icon.js";
275
- import { PuckIcon as df } from "./components/icon/icons/puck-icon.js";
276
- import { QrCodeIcon as sf } from "./components/icon/icons/qr-code-icon.js";
277
- import { QuantityButton as Cf } from "./components/quantity-button/quantity-button.js";
278
- import { QuestionIcon as bf } from "./components/icon/icons/question-icon.js";
279
- import { Radio as kf } from "./components/radio/radio.js";
280
- import { RadioCard as Sf } from "./components/radio-card/radio-card.js";
281
- import { RadioCardGroup as yf } from "./components/radio-card/radio-card-group.js";
282
- import { RadioGroup as Bf } from "./components/radio/radio-group.js";
283
- import { RadioIcon as Df } from "./components/icon/icons/radio-icon.js";
284
- import { ReceiptIcon as wf } from "./components/icon/icons/receipt-icon.js";
234
+ import { ModuleTabletIcon as Uc } from "./components/icon/icons/module-tablet-icon.js";
235
+ import { ModuleTimeIcon as Wc } from "./components/icon/icons/module-time-icon.js";
236
+ import { ModuleTimelineIcon as Nc } from "./components/icon/icons/module-timeline-icon.js";
237
+ import { ModuleTipIcon as Kc } from "./components/icon/icons/module-tip-icon.js";
238
+ import { ModuleToDoIcon as jc } from "./components/icon/icons/module-to-do-icon.js";
239
+ import { ModuleToolsIcon as qc } from "./components/icon/icons/module-tools-icon.js";
240
+ import { ModuleTopListIcon as Yc } from "./components/icon/icons/module-top-list-icon.js";
241
+ import { ModuleWebChartsIcon as _c } from "./components/icon/icons/module-web-charts-icon.js";
242
+ import { ModuleWebIcon as ox } from "./components/icon/icons/module-web-icon.js";
243
+ import { MoreHorizontalIcon as ex } from "./components/icon/icons/more-horizontal-icon.js";
244
+ import { MoreVerticalIcon as nx } from "./components/icon/icons/more-vertical-icon.js";
245
+ import { NavigationList as px } from "./components/navigation-list/navigation-list.js";
246
+ import { NavigationListButton as xx, NavigationListLink as fx } from "./components/navigation-list/navigation-list-item.js";
247
+ import { NfcIcon as ax } from "./components/icon/icons/nfc-icon.js";
248
+ import { NoCartIcon as lx } from "./components/icon/icons/no-cart-icon.js";
249
+ import { NoteIcon as sx } from "./components/icon/icons/note-icon.js";
250
+ import { NumberIcon as Mx } from "./components/icon/icons/number-icon.js";
251
+ import { OpenModalIcon as Cx } from "./components/icon/icons/open-modal-icon.js";
252
+ import { Paginator as bx } from "./components/paginator/paginator.js";
253
+ import { ParkingIcon as kx } from "./components/icon/icons/parking-icon.js";
254
+ import { PartyHornIcon as gx } from "./components/icon/icons/party-horn-icon.js";
255
+ import { PauseIcon as Ax } from "./components/icon/icons/pause-icon.js";
256
+ import { PaymentCardIcon as Lx } from "./components/icon/icons/payment-card-icon.js";
257
+ import { PaymentCashIcon as Fx } from "./components/icon/icons/payment-cash-icon.js";
258
+ import { PaymentGenericIcon as Ex } from "./components/icon/icons/payment-generic-icon.js";
259
+ import { PaymentGiftcardIcon as Rx } from "./components/icon/icons/payment-giftcard-icon.js";
260
+ import { PaymentHotelIcon as Vx } from "./components/icon/icons/payment-hotel-icon.js";
261
+ import { PaymentInvoiceIcon as Gx } from "./components/icon/icons/payment-invoice-icon.js";
262
+ import { PercentageIcon as Ox } from "./components/icon/icons/percentage-icon.js";
263
+ import { PhoneIcon as zx } from "./components/icon/icons/phone-icon.js";
264
+ import { PinIcon as Qx } from "./components/icon/icons/pin-icon.js";
265
+ import { PinMapIcon as Jx } from "./components/icon/icons/pin-map-icon.js";
266
+ import { PlayIcon as Xx } from "./components/icon/icons/play-icon.js";
267
+ import { PreviewIcon as Zx } from "./components/icon/icons/preview-icon.js";
268
+ import { PrintIcon as $x } from "./components/icon/icons/print-icon.js";
269
+ import { PrivacyIcon as rf } from "./components/icon/icons/privacy-icon.js";
270
+ import { ProductAdminIcon as tf } from "./components/icon/icons/product-admin-icon.js";
271
+ import { ProductAnalyticsIcon as mf } from "./components/icon/icons/product-analytics-icon.js";
272
+ import { ProductBookingIcon as cf } from "./components/icon/icons/product-booking-icon.js";
273
+ import { ProductCheckoutIcon as ff } from "./components/icon/icons/product-checkout-icon.js";
274
+ import { ProductMyPagesIcon as af } from "./components/icon/icons/product-my-pages-icon.js";
275
+ import { ProductStaffIcon as df } from "./components/icon/icons/product-staff-icon.js";
276
+ import { PuckIcon as uf } from "./components/icon/icons/puck-icon.js";
277
+ import { QrCodeIcon as Tf } from "./components/icon/icons/qr-code-icon.js";
278
+ import { QuantityButton as hf } from "./components/quantity-button/quantity-button.js";
279
+ import { QuestionIcon as Pf } from "./components/icon/icons/question-icon.js";
280
+ import { Radio as Sf } from "./components/radio/radio.js";
281
+ import { RadioCard as yf } from "./components/radio-card/radio-card.js";
282
+ import { RadioCardGroup as Bf } from "./components/radio-card/radio-card-group.js";
283
+ import { RadioGroup as Df } from "./components/radio/radio-group.js";
284
+ import { RadioIcon as wf } from "./components/icon/icons/radio-icon.js";
285
+ import { ReceiptIcon as Hf } from "./components/icon/icons/receipt-icon.js";
285
286
  import { RedoIcon as vf } from "./components/icon/icons/redo-icon.js";
286
- import { RefundIcon as Vf } from "./components/icon/icons/refund-icon.js";
287
- import { RemoveIcon as Uf } from "./components/icon/icons/remove-icon.js";
288
- import { ReplaceIcon as Wf } from "./components/icon/icons/replace-icon.js";
289
- import { ScheduleIcon as Nf } from "./components/icon/icons/schedule-icon.js";
290
- import { SearchIcon as Kf } from "./components/icon/icons/search-icon.js";
291
- import { SegmentedControl as jf } from "./components/segmented-control/segmented-control.js";
292
- import { Select as qf } from "./components/select/select.js";
293
- import { SelectIcon as Yf } from "./components/icon/icons/select-icon.js";
294
- import { SendIcon as _f } from "./components/icon/icons/send-icon.js";
295
- import { ShareIcon as oI } from "./components/icon/icons/share-icon.js";
296
- import { ShowIcon as eI } from "./components/icon/icons/show-icon.js";
297
- import { ShuffleIcon as nI } from "./components/icon/icons/shuffle-icon.js";
298
- import { SidebarHideIcon as pI } from "./components/icon/icons/sidebar-hide-icon.js";
299
- import { SidebarLeftIcon as xI } from "./components/icon/icons/sidebar-left-icon.js";
300
- import { SidebarRightIcon as II } from "./components/icon/icons/sidebar-right-icon.js";
301
- import { SidebarShowIcon as iI } from "./components/icon/icons/sidebar-show-icon.js";
302
- import { Skeleton as dI } from "./components/skeleton/skeleton.js";
303
- import { SkeletonText as sI } from "./components/skeleton/skeleton-text.js";
304
- import { SlidersIcon as CI } from "./components/icon/icons/sliders-icon.js";
305
- import { SlightlySadIcon as bI } from "./components/icon/icons/slightly-sad-icon.js";
306
- import { SmileIcon as kI } from "./components/icon/icons/smile-icon.js";
307
- import { SortAscIcon as SI } from "./components/icon/icons/sort-asc-icon.js";
308
- import { SortDescIcon as yI } from "./components/icon/icons/sort-desc-icon.js";
309
- import { SplitIcon as BI } from "./components/icon/icons/split-icon.js";
310
- import { Stack as DI } from "./components/stack/stack.js";
311
- import { StatusIcon as wI } from "./components/icon/icons/status-icon.js";
312
- import { StepContext as vI } from "./components/stepper/step-context.js";
313
- import { Stepper as VI } from "./components/stepper/stepper.js";
314
- import { StopIcon as UI } from "./components/icon/icons/stop-icon.js";
315
- import { SubmenuIcon as WI } from "./components/icon/icons/submenu-icon.js";
316
- import { SuccessIcon as NI } from "./components/icon/icons/success-icon.js";
317
- import { SwapIcon as KI } from "./components/icon/icons/swap-icon.js";
318
- import { SwatchIcon as jI } from "./components/icon/icons/swatch-icon.js";
319
- import { SweatIcon as qI } from "./components/icon/icons/sweat-icon.js";
320
- import { Switch as YI } from "./components/switch/switch.js";
321
- import { Tab as _I } from "./components/tabs/tab.js";
322
- import { TabList as oa } from "./components/tabs/tab-list.js";
323
- import { TabPanel as ea } from "./components/tabs/tab-panel.js";
324
- import { TabPanels as na } from "./components/tabs/tab-panels.js";
325
- import { Table as pa } from "./components/table/table.js";
326
- import { TableContent as xa } from "./components/table/table-content.js";
327
- import { TableFilter as Ia } from "./components/table/table-filter.js";
328
- import { TableIcon as ia } from "./components/icon/icons/table-icon.js";
329
- import { TableMapIcon as da } from "./components/icon/icons/table-map-icon.js";
330
- import { TableToolbar as sa } from "./components/table/table-toolbar.js";
331
- import { TableToolbarActions as Ca } from "./components/table/table-toolbar-actions.js";
332
- import { TableToolbarAddButton as ba } from "./components/table/table-toolbar-add-button.js";
333
- import { TableToolbarSearch as ka } from "./components/table/table-toolbar-search.js";
334
- import { TableToolbarSettings as Sa } from "./components/table/table-toolbar-settings.js";
335
- import { Tabs as ya } from "./components/tabs/tabs.js";
336
- import { Tag as Ba } from "./components/tag/tag.js";
337
- import { TakeAwayDotComIcon as Da } from "./components/icon/icons/take-away-dot-com-icon.js";
338
- import { TakeAwayIcon as wa } from "./components/icon/icons/take-away-icon.js";
339
- import { TalkIcon as va } from "./components/icon/icons/talk-icon.js";
340
- import { Text as Va } from "./components/text/text.js";
341
- import { Textarea as Ua } from "./components/textarea/textarea.js";
342
- import { ThemeBorderVariable as Wa, ThemeBreakPointVariable as Oa, ThemeColorVariable as Na, ThemeFontSizeVariable as za, ThemeFontVariable as Ka, ThemeIconSizeVariable as Qa, ThemeRadiusVariable as ja, ThemeShadowVariable as Ja, ThemeSpaceVariable as qa } from "./theme/theme-types.js";
343
- import { ThemeProvider as Ya } from "./theme/theme-provider.js";
344
- import { ThumbtackIcon as _a } from "./components/icon/icons/thumbtack-icon.js";
345
- import { TimeIcon as oi } from "./components/icon/icons/time-icon.js";
346
- import { TimelineIcon as ei } from "./components/icon/icons/timeline-icon.js";
347
- import { TipIcon as ni } from "./components/icon/icons/tip-icon.js";
348
- import { TitleIcon as pi } from "./components/icon/icons/title-icon.js";
349
- import { Toaster as xi } from "./components/toaster/toaster.js";
350
- import { ToggleButton as Ii } from "./components/toggle-button/toggle-button.js";
351
- import { Tooltip as ii } from "./components/tooltip/tooltip.js";
352
- import { TranslateIcon as di } from "./components/icon/icons/translate-icon.js";
353
- import { TreeViewCollapseIcon as si } from "./components/icon/icons/tree-view-collapse-icon.js";
354
- import { TreeViewExpandIcon as Ci } from "./components/icon/icons/tree-view-expand-icon.js";
355
- import { TreeViewLastIcon as bi } from "./components/icon/icons/tree-view-last-icon.js";
356
- import { TrendDownIcon as ki } from "./components/icon/icons/trend-down-icon.js";
357
- import { TrendUpIcon as Si } from "./components/icon/icons/trend-up-icon.js";
358
- import { TriangleWarningIcon as yi } from "./components/icon/icons/triangle-warning-icon.js";
359
- import { TrivecIcon as Bi } from "./components/icon/icons/trivec-icon.js";
360
- import { UberEatsIcon as Di } from "./components/icon/icons/uber-eats-icon.js";
361
- import { UndoIcon as wi } from "./components/icon/icons/undo-icon.js";
362
- import { UnlockIcon as vi } from "./components/icon/icons/unlock-icon.js";
363
- import { UnwrapContentIcon as Vi } from "./components/icon/icons/unwrap-content-icon.js";
364
- import { UpIcon as Ui } from "./components/icon/icons/up-icon.js";
365
- import { UserGroupIcon as Wi } from "./components/icon/icons/user-group-icon.js";
366
- import { UserIcon as Ni } from "./components/icon/icons/user-icon.js";
367
- import { UserPermissionsIcon as Ki } from "./components/icon/icons/user-permissions-icon.js";
368
- import { UserWaitIcon as ji } from "./components/icon/icons/user-wait-icon.js";
369
- import { UsersIcon as qi } from "./components/icon/icons/users-icon.js";
370
- import { VersionControlIcon as Yi } from "./components/icon/icons/version-control-icon.js";
371
- import { VolumeHighIcon as _i } from "./components/icon/icons/volume-high-icon.js";
372
- import { VolumeIcon as ol } from "./components/icon/icons/volume-icon.js";
373
- import { VolumeLowIcon as el } from "./components/icon/icons/volume-low-icon.js";
374
- import { VolumeOffIcon as nl } from "./components/icon/icons/volume-off-icon.js";
375
- import { WarningIcon as pl } from "./components/icon/icons/warning-icon.js";
376
- import { WasteIcon as xl } from "./components/icon/icons/waste-icon.js";
377
- import { WifiIcon as Il } from "./components/icon/icons/wifi-icon.js";
378
- import { WifiOffIcon as il } from "./components/icon/icons/wifi-off-icon.js";
379
- import { WoltIcon as dl } from "./components/icon/icons/wolt-icon.js";
380
- import { WrapContentIcon as sl } from "./components/icon/icons/wrap-content-icon.js";
381
- import { createCasperIcon as Cl } from "./components/icon/create-icon.js";
382
- import { createColumnHelper as bl } from "./node_modules/@tanstack/table-core/build/lib/index.js";
383
- import { isTouchScreenDevice as kl } from "./theme/theme-helper.js";
384
- import { showToast as Sl } from "./components/toaster/toast-store.js";
385
- import { useTableContext as yl } from "./components/table/table-context.js";
287
+ import { RefundIcon as Uf } from "./components/icon/icons/refund-icon.js";
288
+ import { RemoveIcon as Wf } from "./components/icon/icons/remove-icon.js";
289
+ import { ReplaceIcon as Nf } from "./components/icon/icons/replace-icon.js";
290
+ import { RichTextRenderer as Kf } from "./components/rich-text-editor/rich-text-renderer.js";
291
+ import { ScheduleIcon as jf } from "./components/icon/icons/schedule-icon.js";
292
+ import { SearchIcon as qf } from "./components/icon/icons/search-icon.js";
293
+ import { SegmentedControl as Yf } from "./components/segmented-control/segmented-control.js";
294
+ import { Select as _f } from "./components/select/select.js";
295
+ import { SelectIcon as oI } from "./components/icon/icons/select-icon.js";
296
+ import { SendIcon as eI } from "./components/icon/icons/send-icon.js";
297
+ import { ShareIcon as nI } from "./components/icon/icons/share-icon.js";
298
+ import { ShowIcon as pI } from "./components/icon/icons/show-icon.js";
299
+ import { ShuffleIcon as xI } from "./components/icon/icons/shuffle-icon.js";
300
+ import { SidebarHideIcon as II } from "./components/icon/icons/sidebar-hide-icon.js";
301
+ import { SidebarLeftIcon as iI } from "./components/icon/icons/sidebar-left-icon.js";
302
+ import { SidebarRightIcon as dI } from "./components/icon/icons/sidebar-right-icon.js";
303
+ import { SidebarShowIcon as uI } from "./components/icon/icons/sidebar-show-icon.js";
304
+ import { Skeleton as TI } from "./components/skeleton/skeleton.js";
305
+ import { SkeletonText as hI } from "./components/skeleton/skeleton-text.js";
306
+ import { SlidersIcon as PI } from "./components/icon/icons/sliders-icon.js";
307
+ import { SlightlySadIcon as SI } from "./components/icon/icons/slightly-sad-icon.js";
308
+ import { SmileIcon as yI } from "./components/icon/icons/smile-icon.js";
309
+ import { SortAscIcon as BI } from "./components/icon/icons/sort-asc-icon.js";
310
+ import { SortDescIcon as DI } from "./components/icon/icons/sort-desc-icon.js";
311
+ import { SplitIcon as wI } from "./components/icon/icons/split-icon.js";
312
+ import { Stack as HI } from "./components/stack/stack.js";
313
+ import { StatusIcon as vI } from "./components/icon/icons/status-icon.js";
314
+ import { StepContext as UI } from "./components/stepper/step-context.js";
315
+ import { Stepper as WI } from "./components/stepper/stepper.js";
316
+ import { StopIcon as NI } from "./components/icon/icons/stop-icon.js";
317
+ import { SubmenuIcon as KI } from "./components/icon/icons/submenu-icon.js";
318
+ import { SuccessIcon as jI } from "./components/icon/icons/success-icon.js";
319
+ import { SwapIcon as qI } from "./components/icon/icons/swap-icon.js";
320
+ import { SwatchIcon as YI } from "./components/icon/icons/swatch-icon.js";
321
+ import { SweatIcon as _I } from "./components/icon/icons/sweat-icon.js";
322
+ import { Switch as oa } from "./components/switch/switch.js";
323
+ import { Tab as ea } from "./components/tabs/tab.js";
324
+ import { TabList as na } from "./components/tabs/tab-list.js";
325
+ import { TabPanel as pa } from "./components/tabs/tab-panel.js";
326
+ import { TabPanels as xa } from "./components/tabs/tab-panels.js";
327
+ import { Table as Ia } from "./components/table/table.js";
328
+ import { TableContent as ia } from "./components/table/table-content.js";
329
+ import { TableFilter as da } from "./components/table/table-filter.js";
330
+ import { TableIcon as ua } from "./components/icon/icons/table-icon.js";
331
+ import { TableMapIcon as Ta } from "./components/icon/icons/table-map-icon.js";
332
+ import { TableToolbar as ha } from "./components/table/table-toolbar.js";
333
+ import { TableToolbarActions as Pa } from "./components/table/table-toolbar-actions.js";
334
+ import { TableToolbarAddButton as Sa } from "./components/table/table-toolbar-add-button.js";
335
+ import { TableToolbarSearch as ya } from "./components/table/table-toolbar-search.js";
336
+ import { TableToolbarSettings as Ba } from "./components/table/table-toolbar-settings.js";
337
+ import { Tabs as Da } from "./components/tabs/tabs.js";
338
+ import { Tag as wa } from "./components/tag/tag.js";
339
+ import { TakeAwayDotComIcon as Ha } from "./components/icon/icons/take-away-dot-com-icon.js";
340
+ import { TakeAwayIcon as va } from "./components/icon/icons/take-away-icon.js";
341
+ import { TalkIcon as Ua } from "./components/icon/icons/talk-icon.js";
342
+ import { Text as Wa } from "./components/text/text.js";
343
+ import { Textarea as Na } from "./components/textarea/textarea.js";
344
+ import { ThemeBorderVariable as Ka, ThemeBreakPointVariable as Qa, ThemeColorVariable as ja, ThemeFontSizeVariable as Ja, ThemeFontVariable as qa, ThemeIconSizeVariable as Xa, ThemeRadiusVariable as Ya, ThemeShadowVariable as Za, ThemeSpaceVariable as _a } from "./theme/theme-types.js";
345
+ import { ThemeProvider as oi } from "./theme/theme-provider.js";
346
+ import { ThumbtackIcon as ei } from "./components/icon/icons/thumbtack-icon.js";
347
+ import { TimeIcon as ni } from "./components/icon/icons/time-icon.js";
348
+ import { TimelineIcon as pi } from "./components/icon/icons/timeline-icon.js";
349
+ import { TipIcon as xi } from "./components/icon/icons/tip-icon.js";
350
+ import { TitleIcon as Ii } from "./components/icon/icons/title-icon.js";
351
+ import { Toaster as ii } from "./components/toaster/toaster.js";
352
+ import { ToggleButton as di } from "./components/toggle-button/toggle-button.js";
353
+ import { Tooltip as ui } from "./components/tooltip/tooltip.js";
354
+ import { TranslateIcon as Ti } from "./components/icon/icons/translate-icon.js";
355
+ import { TreeViewCollapseIcon as hi } from "./components/icon/icons/tree-view-collapse-icon.js";
356
+ import { TreeViewExpandIcon as Pi } from "./components/icon/icons/tree-view-expand-icon.js";
357
+ import { TreeViewLastIcon as Si } from "./components/icon/icons/tree-view-last-icon.js";
358
+ import { TrendDownIcon as yi } from "./components/icon/icons/trend-down-icon.js";
359
+ import { TrendUpIcon as Bi } from "./components/icon/icons/trend-up-icon.js";
360
+ import { TriangleWarningIcon as Di } from "./components/icon/icons/triangle-warning-icon.js";
361
+ import { TrivecIcon as wi } from "./components/icon/icons/trivec-icon.js";
362
+ import { UberEatsIcon as Hi } from "./components/icon/icons/uber-eats-icon.js";
363
+ import { UndoIcon as vi } from "./components/icon/icons/undo-icon.js";
364
+ import { UnlockIcon as Ui } from "./components/icon/icons/unlock-icon.js";
365
+ import { UnwrapContentIcon as Wi } from "./components/icon/icons/unwrap-content-icon.js";
366
+ import { UpIcon as Ni } from "./components/icon/icons/up-icon.js";
367
+ import { UserGroupIcon as Ki } from "./components/icon/icons/user-group-icon.js";
368
+ import { UserIcon as ji } from "./components/icon/icons/user-icon.js";
369
+ import { UserPermissionsIcon as qi } from "./components/icon/icons/user-permissions-icon.js";
370
+ import { UserWaitIcon as Yi } from "./components/icon/icons/user-wait-icon.js";
371
+ import { UsersIcon as _i } from "./components/icon/icons/users-icon.js";
372
+ import { VersionControlIcon as ol } from "./components/icon/icons/version-control-icon.js";
373
+ import { VolumeHighIcon as el } from "./components/icon/icons/volume-high-icon.js";
374
+ import { VolumeIcon as nl } from "./components/icon/icons/volume-icon.js";
375
+ import { VolumeLowIcon as pl } from "./components/icon/icons/volume-low-icon.js";
376
+ import { VolumeOffIcon as xl } from "./components/icon/icons/volume-off-icon.js";
377
+ import { WarningIcon as Il } from "./components/icon/icons/warning-icon.js";
378
+ import { WasteIcon as il } from "./components/icon/icons/waste-icon.js";
379
+ import { WifiIcon as dl } from "./components/icon/icons/wifi-icon.js";
380
+ import { WifiOffIcon as ul } from "./components/icon/icons/wifi-off-icon.js";
381
+ import { WoltIcon as Tl } from "./components/icon/icons/wolt-icon.js";
382
+ import { WrapContentIcon as hl } from "./components/icon/icons/wrap-content-icon.js";
383
+ import { createCasperIcon as Pl } from "./components/icon/create-icon.js";
384
+ import { createColumnHelper as Sl } from "./node_modules/@tanstack/table-core/build/lib/index.js";
385
+ import { isTouchScreenDevice as yl } from "./theme/theme-helper.js";
386
+ import { parseHtmlToContent as Bl, richTextExtensions as Ll } from "./components/rich-text-editor/extensions.js";
387
+ import { showToast as Fl } from "./components/toaster/toast-store.js";
388
+ import { useRichTextEditor as El } from "./components/rich-text-editor/use-rich-text-editor.js";
389
+ import { useRichTextEditorContext as Rl } from "./components/rich-text-editor/rich-text-editor-context.js";
390
+ import { useTableContext as Vl } from "./components/table/table-context.js";
386
391
  export {
387
- p as AbsenceIcon,
388
- x as AccessibilityIcon,
389
- I as Accordion,
390
- i as AccordionItem,
391
- d as AccordionPanel,
392
- s as AddAbsenceIcon,
393
- C as AddEmojiIcon,
394
- b as AddIcon,
395
- k as Alert,
396
- S as AppleIcon,
397
- y as AppsIcon,
398
- B as ArchiveIcon,
399
- D as AreaIcon,
400
- w as AtIcon,
392
+ x as AbsenceIcon,
393
+ I as AccessibilityIcon,
394
+ i as Accordion,
395
+ d as AccordionItem,
396
+ u as AccordionPanel,
397
+ T as AddAbsenceIcon,
398
+ h as AddEmojiIcon,
399
+ P as AddIcon,
400
+ S as Alert,
401
+ y as AppleIcon,
402
+ B as AppsIcon,
403
+ D as ArchiveIcon,
404
+ w as AreaIcon,
405
+ H as AtIcon,
401
406
  v as AttachmentIcon,
402
- V as BabyIcon,
403
- U as BackIcon,
404
- W as BackspaceIcon,
405
- N as Badge,
406
- K as BankIDIcon,
407
- j as BankIcon,
408
- q as BarcodeIcon,
409
- Y as BellIcon,
410
- _ as BoltIcon,
411
- oo as Box,
412
- eo as Breadcrumbs,
413
- no as Button,
414
- po as CalendarIcon,
415
- xo as CameraIcon,
416
- Io as CancelIcon,
417
- io as CardIcon,
418
- uo as CartIcon,
419
- Mo as CaspecoIcon,
420
- To as ChannelsIcon,
421
- Po as ChartIcon,
422
- ho as ChartLineIcon,
423
- go as ChartMixedIcon,
424
- Ao as ChartPieIcon,
425
- Lo as ChartScatterIcon,
426
- Fo as CheckIcon,
427
- Ho as Checkbox,
428
- Eo as CheckboxGroup,
429
- Ro as CheckboxIcon,
430
- Go as ChevronLeftIcon,
431
- Oo as ChevronRightIcon,
432
- zo as ChildIcon,
433
- Qo as CircleInfoIcon,
434
- Jo as CircleParkingIcon,
435
- Xo as CircleQuestionIcon,
436
- Zo as CircleSelectIcon,
437
- $o as CircleSuccessIcon,
438
- rr as CircleUserIcon,
439
- tr as ClearIcon,
440
- mr as CloseIcon,
441
- cr as ClosedIcon,
442
- fr as CollapseIcon,
443
- ar as Collapsible,
444
- lr as ColorIcon,
445
- ur as ColumnsIcon,
446
- Mr as Combobox,
447
- Tr as CommentAddIcon,
448
- Pr as CommentIcon,
449
- hr as CookiesIcon,
450
- gr as CopyIcon,
451
- Ar as DateIcon,
452
- Lr as DatePicker,
453
- Fr as DateRangePicker,
454
- Hr as DateWeekPicker,
455
- Er as DecreaseIcon,
456
- Rr as DeleteIcon,
457
- Gr as DeliverectIcon,
458
- Or as DeliveryIcon,
459
- zr as DescriptionIcon,
460
- Qr as DiscountIcon,
461
- Jr as DistributeEvenlyIcon,
462
- Xr as Divider,
463
- Zr as DoorClosedIcon,
464
- $r as DoorOpenIcon,
465
- re as DownIcon,
466
- te as Drawer,
467
- me as EatInIcon,
468
- ce as EditIcon,
469
- fe as EmailIcon,
470
- ae as ErrorIcon,
471
- le as ExpandIcon,
472
- ue as ExportIcon,
473
- Me as ExtractIcon,
474
- Te as FacebookIcon,
475
- Pe as FailedPrintIcon,
476
- he as Fieldset,
477
- ge as FieldsetErrorText,
478
- Ae as FieldsetHelperText,
479
- Le as FieldsetLegend,
480
- Fe as FileIcon,
481
- He as FilterIcon,
482
- Ee as Flex,
483
- Re as FolderIcon,
484
- Ge as FoodoraIcon,
485
- Oe as FormControl,
486
- ze as FormErrorMessage,
487
- Qe as FormHelperText,
488
- Je as FormLabel,
489
- Xe as ForwardIcon,
490
- Ze as GlovoIcon,
491
- $e as GoalIcon,
492
- rt as GoogleIcon,
493
- tt as Grid,
494
- mt as GridItem,
495
- ct as GripMoreIcon,
496
- ft as HashIcon,
497
- at as Heading,
498
- lt as HexagonErrorIcon,
499
- ut as HideIcon,
500
- Mt as Highlight,
501
- Tt as HistoryIcon,
502
- Pt as IconButton,
503
- ht as IconPickerAnchorIcon,
504
- gt as IconPickerAsteriskIcon,
505
- At as IconPickerBeerIcon,
506
- Lt as IconPickerBicycleIcon,
507
- Ft as IconPickerBinocularsIcon,
508
- Ht as IconPickerBombIcon,
509
- Et as IconPickerCarIcon,
510
- Rt as IconPickerCocktailIcon,
511
- Gt as IconPickerGemIcon,
512
- Ot as IconPickerHeartFullIcon,
513
- zt as IconPickerHeartIcon,
514
- Qt as IconPickerMagnetIcon,
515
- Jt as IconPickerMoneyIcon,
516
- Xt as IconPickerMoonIcon,
517
- Zt as IconPickerMusicIcon,
518
- $t as IconPickerStarFullIcon,
519
- rn as IconPickerStarHalfIcon,
520
- tn as IconPickerStarIcon,
521
- mn as IconPickerTintIcon,
522
- cn as IconPickerTreeIcon,
523
- fn as IconPickerUtensilsIcon,
524
- an as IconPickerWheelchairIcon,
525
- dn as Image,
526
- sn as ImageIcon,
527
- Cn as ImageUpload,
528
- bn as ImageUploadAspectRatio,
529
- kn as ImportIcon,
530
- Sn as InboxIcon,
531
- yn as IncreaseIcon,
532
- Bn as IndeterminateIcon,
533
- Dn as InfoIcon,
534
- wn as InheritanceIcon,
407
+ U as BabyIcon,
408
+ W as BackIcon,
409
+ N as BackspaceIcon,
410
+ K as Badge,
411
+ j as BankIDIcon,
412
+ q as BankIcon,
413
+ Y as BarcodeIcon,
414
+ _ as BellIcon,
415
+ oo as BoltIcon,
416
+ eo as Box,
417
+ no as Breadcrumbs,
418
+ po as Button,
419
+ xo as CalendarIcon,
420
+ Io as CameraIcon,
421
+ io as CancelIcon,
422
+ so as CardIcon,
423
+ Mo as CartIcon,
424
+ Co as CaspecoIcon,
425
+ bo as ChannelsIcon,
426
+ ko as ChartIcon,
427
+ go as ChartLineIcon,
428
+ Ao as ChartMixedIcon,
429
+ Lo as ChartPieIcon,
430
+ Fo as ChartScatterIcon,
431
+ Eo as CheckIcon,
432
+ Ro as Checkbox,
433
+ Vo as CheckboxGroup,
434
+ Go as CheckboxIcon,
435
+ Oo as ChevronLeftIcon,
436
+ zo as ChevronRightIcon,
437
+ Qo as ChildIcon,
438
+ Jo as CircleInfoIcon,
439
+ Xo as CircleParkingIcon,
440
+ Zo as CircleQuestionIcon,
441
+ $o as CircleSelectIcon,
442
+ rr as CircleSuccessIcon,
443
+ tr as CircleUserIcon,
444
+ mr as ClearIcon,
445
+ cr as CloseIcon,
446
+ fr as ClosedIcon,
447
+ ar as CollapseIcon,
448
+ lr as Collapsible,
449
+ sr as ColorIcon,
450
+ Mr as ColumnsIcon,
451
+ Cr as Combobox,
452
+ br as CommentAddIcon,
453
+ kr as CommentIcon,
454
+ gr as CookiesIcon,
455
+ Ar as CopyIcon,
456
+ Lr as DateIcon,
457
+ Fr as DatePicker,
458
+ Er as DateRangePicker,
459
+ Rr as DateWeekPicker,
460
+ Vr as DecreaseIcon,
461
+ Gr as DeleteIcon,
462
+ Or as DeliverectIcon,
463
+ zr as DeliveryIcon,
464
+ Qr as DescriptionIcon,
465
+ Jr as DiscountIcon,
466
+ Xr as DistributeEvenlyIcon,
467
+ Zr as Divider,
468
+ $r as DoorClosedIcon,
469
+ re as DoorOpenIcon,
470
+ te as DownIcon,
471
+ me as Drawer,
472
+ ce as EatInIcon,
473
+ fe as EditIcon,
474
+ ae as EmailIcon,
475
+ le as ErrorIcon,
476
+ se as ExpandIcon,
477
+ Me as ExportIcon,
478
+ Ce as ExtractIcon,
479
+ be as FacebookIcon,
480
+ ke as FailedPrintIcon,
481
+ ge as Fieldset,
482
+ Ae as FieldsetErrorText,
483
+ Le as FieldsetHelperText,
484
+ Fe as FieldsetLegend,
485
+ Ee as FileIcon,
486
+ Re as FilterIcon,
487
+ Ve as Flex,
488
+ Ge as FolderIcon,
489
+ Oe as FoodoraIcon,
490
+ ze as FormControl,
491
+ Qe as FormErrorMessage,
492
+ Je as FormHelperText,
493
+ Xe as FormLabel,
494
+ Ze as ForwardIcon,
495
+ $e as GlovoIcon,
496
+ rt as GoalIcon,
497
+ tt as GoogleIcon,
498
+ mt as Grid,
499
+ ct as GridItem,
500
+ ft as GripMoreIcon,
501
+ at as HashIcon,
502
+ lt as Heading,
503
+ st as HexagonErrorIcon,
504
+ Mt as HideIcon,
505
+ Ct as Highlight,
506
+ bt as HistoryIcon,
507
+ kt as IconButton,
508
+ gt as IconPickerAnchorIcon,
509
+ At as IconPickerAsteriskIcon,
510
+ Lt as IconPickerBeerIcon,
511
+ Ft as IconPickerBicycleIcon,
512
+ Et as IconPickerBinocularsIcon,
513
+ Rt as IconPickerBombIcon,
514
+ Vt as IconPickerCarIcon,
515
+ Gt as IconPickerCocktailIcon,
516
+ Ot as IconPickerGemIcon,
517
+ zt as IconPickerHeartFullIcon,
518
+ Qt as IconPickerHeartIcon,
519
+ Jt as IconPickerMagnetIcon,
520
+ Xt as IconPickerMoneyIcon,
521
+ Zt as IconPickerMoonIcon,
522
+ $t as IconPickerMusicIcon,
523
+ rn as IconPickerStarFullIcon,
524
+ tn as IconPickerStarHalfIcon,
525
+ mn as IconPickerStarIcon,
526
+ cn as IconPickerTintIcon,
527
+ fn as IconPickerTreeIcon,
528
+ an as IconPickerUtensilsIcon,
529
+ dn as IconPickerWheelchairIcon,
530
+ un as Image,
531
+ Tn as ImageIcon,
532
+ hn as ImageUpload,
533
+ Pn as ImageUploadAspectRatio,
534
+ Sn as ImportIcon,
535
+ yn as InboxIcon,
536
+ Bn as IncreaseIcon,
537
+ Dn as IndeterminateIcon,
538
+ wn as InfoIcon,
539
+ Hn as InheritanceIcon,
535
540
  vn as Input,
536
- Vn as JustEatIcon,
537
- Un as KarmaIcon,
538
- Wn as KeyCommandIcon,
539
- Nn as KeyEnterIcon,
540
- Kn as KeyIcon,
541
- jn as KeyOptionIcon,
542
- qn as LanguageIcon,
543
- Yn as Link,
544
- _n as LinkBrokenIcon,
545
- om as LinkExternalIcon,
546
- em as LinkIcon,
547
- nm as List,
548
- pm as ListItem,
549
- xm as ListOLIcon,
550
- Im as ListULIcon,
551
- im as LoadingIcon,
552
- dm as LocationIcon,
553
- sm as LockIcon,
554
- Cm as LogInIcon,
555
- bm as LogOutIcon,
556
- km as MapIcon,
557
- Sm as MaximizeIcon,
558
- ym as MembersIcon,
559
- Bm as Menu,
560
- Dm as MenuBoxButton,
561
- wm as MenuButton,
541
+ Un as JustEatIcon,
542
+ Wn as KarmaIcon,
543
+ Nn as KeyCommandIcon,
544
+ Kn as KeyEnterIcon,
545
+ jn as KeyIcon,
546
+ qn as KeyOptionIcon,
547
+ Yn as LanguageIcon,
548
+ _n as Link,
549
+ om as LinkBrokenIcon,
550
+ em as LinkExternalIcon,
551
+ nm as LinkIcon,
552
+ pm as List,
553
+ xm as ListItem,
554
+ Im as ListOLIcon,
555
+ im as ListULIcon,
556
+ dm as LoadingIcon,
557
+ um as LocationIcon,
558
+ Tm as LockIcon,
559
+ hm as LogInIcon,
560
+ Pm as LogOutIcon,
561
+ Sm as MapIcon,
562
+ ym as MaximizeIcon,
563
+ Bm as MembersIcon,
564
+ Dm as Menu,
565
+ wm as MenuBoxButton,
566
+ Hm as MenuButton,
562
567
  vm as MenuDivider,
563
- Vm as MenuGroup,
564
- Um as MenuHideIcon,
565
- Wm as MenuIcon,
566
- Nm as MenuIconButton,
567
- Km as MenuItem,
568
- jm as MenuList,
569
- qm as MenuShowIcon,
570
- Ym as Message,
571
- _m as MessageAddIcon,
572
- op as MessageIcon,
573
- ep as MessageLinesIcon,
574
- np as MinimizeIcon,
575
- pp as MinimizeWindowIcon,
576
- xp as MobileRotateIcon,
577
- Ip as Modal,
578
- ip as ModalBody,
579
- dp as ModalCloseButton,
580
- sp as ModalFooter,
581
- Cp as ModalHeader,
582
- bp as ModuleAccountingIcon,
583
- kp as ModuleAiForecastIcon,
584
- Sp as ModuleAppIcon,
585
- yp as ModuleArticlesIcon,
586
- Bp as ModuleBenchmarkIcon,
587
- Dp as ModuleBookingIcon,
588
- wp as ModuleCaiIcon,
568
+ Um as MenuGroup,
569
+ Wm as MenuHideIcon,
570
+ Nm as MenuIcon,
571
+ Km as MenuIconButton,
572
+ jm as MenuItem,
573
+ qm as MenuList,
574
+ Ym as MenuShowIcon,
575
+ _m as Message,
576
+ op as MessageAddIcon,
577
+ ep as MessageIcon,
578
+ np as MessageLinesIcon,
579
+ pp as MinimizeIcon,
580
+ xp as MinimizeWindowIcon,
581
+ Ip as MobileRotateIcon,
582
+ ip as Modal,
583
+ dp as ModalBody,
584
+ up as ModalCloseButton,
585
+ Tp as ModalFooter,
586
+ hp as ModalHeader,
587
+ Pp as ModuleAccountingIcon,
588
+ Sp as ModuleAiForecastIcon,
589
+ yp as ModuleAppIcon,
590
+ Bp as ModuleArticlesIcon,
591
+ Dp as ModuleBenchmarkIcon,
592
+ wp as ModuleBookingIcon,
593
+ Hp as ModuleCaiIcon,
589
594
  vp as ModuleCampaignsIcon,
590
- Vp as ModuleCashierIcon,
591
- Up as ModuleCommunicationIcon,
592
- Wp as ModuleCopilotIcon,
593
- Np as ModuleDashboardIcon,
594
- Kp as ModuleDocumentIcon,
595
- jp as ModuleEmployeesIcon,
596
- qp as ModuleFeedIcon,
597
- Yp as ModuleHistoryIcon,
598
- _p as ModuleHomeIcon,
599
- oc as ModuleInsightsIcon,
600
- ec as ModuleKdsIcon,
601
- nc as ModuleMembersIcon,
602
- pc as ModuleMenusIcon,
603
- xc as ModuleMyCityIcon,
604
- Ic as ModuleNotificationCenterIcon,
605
- ic as ModuleOnlineOrderIcon,
606
- dc as ModuleOrganisationIcon,
607
- sc as ModulePosIcon,
608
- Cc as ModulePulseIcon,
609
- bc as ModuleResultIcon,
610
- kc as ModuleSalaryIcon,
611
- Sc as ModuleScheduleIcon,
612
- yc as ModuleSettingsAltIcon,
613
- Bc as ModuleSettingsIcon,
614
- Dc as ModuleSupportIcon,
615
- wc as ModuleSurveyIcon,
595
+ Up as ModuleCashierIcon,
596
+ Wp as ModuleCommunicationIcon,
597
+ Np as ModuleCopilotIcon,
598
+ Kp as ModuleDashboardIcon,
599
+ jp as ModuleDocumentIcon,
600
+ qp as ModuleEmployeesIcon,
601
+ Yp as ModuleFeedIcon,
602
+ _p as ModuleHistoryIcon,
603
+ oc as ModuleHomeIcon,
604
+ ec as ModuleInsightsIcon,
605
+ nc as ModuleKdsIcon,
606
+ pc as ModuleMembersIcon,
607
+ xc as ModuleMenusIcon,
608
+ Ic as ModuleMyCityIcon,
609
+ ic as ModuleNotificationCenterIcon,
610
+ dc as ModuleOnlineOrderIcon,
611
+ uc as ModuleOrganisationIcon,
612
+ Tc as ModulePosIcon,
613
+ hc as ModulePulseIcon,
614
+ Pc as ModuleResultIcon,
615
+ Sc as ModuleSalaryIcon,
616
+ yc as ModuleScheduleIcon,
617
+ Bc as ModuleSettingsAltIcon,
618
+ Dc as ModuleSettingsIcon,
619
+ wc as ModuleSupportIcon,
620
+ Hc as ModuleSurveyIcon,
616
621
  vc as ModuleTableMapIcon,
617
- Vc as ModuleTabletIcon,
618
- Uc as ModuleTimeIcon,
619
- Wc as ModuleTimelineIcon,
620
- Nc as ModuleTipIcon,
621
- Kc as ModuleToDoIcon,
622
- jc as ModuleToolsIcon,
623
- qc as ModuleTopListIcon,
624
- Yc as ModuleWebChartsIcon,
625
- _c as ModuleWebIcon,
626
- ox as MoreHorizontalIcon,
627
- ex as MoreVerticalIcon,
628
- nx as NavigationList,
629
- px as NavigationListButton,
630
- cx as NavigationListLink,
631
- fx as NfcIcon,
632
- ax as NoCartIcon,
633
- lx as NoteIcon,
634
- ux as NumberIcon,
635
- Mx as OpenModalIcon,
636
- Tx as Paginator,
637
- Px as ParkingIcon,
638
- hx as PartyHornIcon,
639
- gx as PauseIcon,
640
- Ax as PaymentCardIcon,
641
- Lx as PaymentCashIcon,
642
- Fx as PaymentGenericIcon,
643
- Hx as PaymentGiftcardIcon,
644
- Ex as PaymentHotelIcon,
645
- Rx as PaymentInvoiceIcon,
646
- Gx as PercentageIcon,
647
- Ox as PhoneIcon,
648
- zx as PinIcon,
649
- Qx as PinMapIcon,
650
- Jx as PlayIcon,
651
- Xx as PreviewIcon,
652
- Zx as PrintIcon,
653
- $x as PrivacyIcon,
654
- rf as ProductAdminIcon,
655
- tf as ProductAnalyticsIcon,
656
- mf as ProductBookingIcon,
657
- cf as ProductCheckoutIcon,
658
- ff as ProductMyPagesIcon,
659
- af as ProductStaffIcon,
660
- df as PuckIcon,
661
- sf as QrCodeIcon,
662
- Cf as QuantityButton,
663
- bf as QuestionIcon,
664
- kf as Radio,
665
- Sf as RadioCard,
666
- yf as RadioCardGroup,
667
- Bf as RadioGroup,
668
- Df as RadioIcon,
669
- wf as ReceiptIcon,
622
+ Uc as ModuleTabletIcon,
623
+ Wc as ModuleTimeIcon,
624
+ Nc as ModuleTimelineIcon,
625
+ Kc as ModuleTipIcon,
626
+ jc as ModuleToDoIcon,
627
+ qc as ModuleToolsIcon,
628
+ Yc as ModuleTopListIcon,
629
+ _c as ModuleWebChartsIcon,
630
+ ox as ModuleWebIcon,
631
+ ex as MoreHorizontalIcon,
632
+ nx as MoreVerticalIcon,
633
+ px as NavigationList,
634
+ xx as NavigationListButton,
635
+ fx as NavigationListLink,
636
+ ax as NfcIcon,
637
+ lx as NoCartIcon,
638
+ sx as NoteIcon,
639
+ Mx as NumberIcon,
640
+ Cx as OpenModalIcon,
641
+ bx as Paginator,
642
+ kx as ParkingIcon,
643
+ gx as PartyHornIcon,
644
+ Ax as PauseIcon,
645
+ Lx as PaymentCardIcon,
646
+ Fx as PaymentCashIcon,
647
+ Ex as PaymentGenericIcon,
648
+ Rx as PaymentGiftcardIcon,
649
+ Vx as PaymentHotelIcon,
650
+ Gx as PaymentInvoiceIcon,
651
+ Ox as PercentageIcon,
652
+ zx as PhoneIcon,
653
+ Qx as PinIcon,
654
+ Jx as PinMapIcon,
655
+ Xx as PlayIcon,
656
+ Zx as PreviewIcon,
657
+ $x as PrintIcon,
658
+ rf as PrivacyIcon,
659
+ tf as ProductAdminIcon,
660
+ mf as ProductAnalyticsIcon,
661
+ cf as ProductBookingIcon,
662
+ ff as ProductCheckoutIcon,
663
+ af as ProductMyPagesIcon,
664
+ df as ProductStaffIcon,
665
+ uf as PuckIcon,
666
+ Tf as QrCodeIcon,
667
+ hf as QuantityButton,
668
+ Pf as QuestionIcon,
669
+ Sf as Radio,
670
+ yf as RadioCard,
671
+ Bf as RadioCardGroup,
672
+ Df as RadioGroup,
673
+ wf as RadioIcon,
674
+ Hf as ReceiptIcon,
670
675
  vf as RedoIcon,
671
- Vf as RefundIcon,
672
- Uf as RemoveIcon,
673
- Wf as ReplaceIcon,
674
- Nf as ScheduleIcon,
675
- Kf as SearchIcon,
676
- jf as SegmentedControl,
677
- qf as Select,
678
- Yf as SelectIcon,
679
- _f as SendIcon,
680
- oI as ShareIcon,
681
- eI as ShowIcon,
682
- nI as ShuffleIcon,
683
- pI as SidebarHideIcon,
684
- xI as SidebarLeftIcon,
685
- II as SidebarRightIcon,
686
- iI as SidebarShowIcon,
687
- dI as Skeleton,
688
- sI as SkeletonText,
689
- CI as SlidersIcon,
690
- bI as SlightlySadIcon,
691
- kI as SmileIcon,
692
- SI as SortAscIcon,
693
- yI as SortDescIcon,
694
- BI as SplitIcon,
695
- DI as Stack,
696
- wI as StatusIcon,
697
- vI as StepContext,
698
- VI as Stepper,
699
- UI as StopIcon,
700
- WI as SubmenuIcon,
701
- NI as SuccessIcon,
702
- KI as SwapIcon,
703
- jI as SwatchIcon,
704
- qI as SweatIcon,
705
- YI as Switch,
706
- _I as Tab,
707
- oa as TabList,
708
- ea as TabPanel,
709
- na as TabPanels,
710
- pa as Table,
711
- xa as TableContent,
712
- Ia as TableFilter,
713
- ia as TableIcon,
714
- da as TableMapIcon,
715
- sa as TableToolbar,
716
- Ca as TableToolbarActions,
717
- ba as TableToolbarAddButton,
718
- ka as TableToolbarSearch,
719
- Sa as TableToolbarSettings,
720
- ya as Tabs,
721
- Ba as Tag,
722
- Da as TakeAwayDotComIcon,
723
- wa as TakeAwayIcon,
724
- va as TalkIcon,
725
- Va as Text,
726
- Ua as Textarea,
727
- Wa as ThemeBorderVariable,
728
- Oa as ThemeBreakPointVariable,
729
- Na as ThemeColorVariable,
730
- za as ThemeFontSizeVariable,
731
- Ka as ThemeFontVariable,
732
- Qa as ThemeIconSizeVariable,
733
- Ya as ThemeProvider,
734
- ja as ThemeRadiusVariable,
735
- Ja as ThemeShadowVariable,
736
- qa as ThemeSpaceVariable,
737
- _a as ThumbtackIcon,
738
- oi as TimeIcon,
739
- ei as TimelineIcon,
740
- ni as TipIcon,
741
- pi as TitleIcon,
742
- xi as Toaster,
743
- Ii as ToggleButton,
744
- ii as Tooltip,
745
- di as TranslateIcon,
746
- si as TreeViewCollapseIcon,
747
- Ci as TreeViewExpandIcon,
748
- bi as TreeViewLastIcon,
749
- ki as TrendDownIcon,
750
- Si as TrendUpIcon,
751
- yi as TriangleWarningIcon,
752
- Bi as TrivecIcon,
753
- Di as UberEatsIcon,
754
- wi as UndoIcon,
755
- vi as UnlockIcon,
756
- Vi as UnwrapContentIcon,
757
- Ui as UpIcon,
758
- Wi as UserGroupIcon,
759
- Ni as UserIcon,
760
- Ki as UserPermissionsIcon,
761
- ji as UserWaitIcon,
762
- qi as UsersIcon,
763
- Yi as VersionControlIcon,
764
- _i as VolumeHighIcon,
765
- ol as VolumeIcon,
766
- el as VolumeLowIcon,
767
- nl as VolumeOffIcon,
768
- pl as WarningIcon,
769
- xl as WasteIcon,
770
- Il as WifiIcon,
771
- il as WifiOffIcon,
772
- dl as WoltIcon,
773
- sl as WrapContentIcon,
774
- Cl as createCasperIcon,
775
- bl as createColumnHelper,
776
- kl as isTouchScreenDevice,
777
- Sl as showToast,
676
+ Uf as RefundIcon,
677
+ Wf as RemoveIcon,
678
+ Nf as ReplaceIcon,
679
+ p as RichTextEditor,
680
+ Kf as RichTextRenderer,
681
+ jf as ScheduleIcon,
682
+ qf as SearchIcon,
683
+ Yf as SegmentedControl,
684
+ _f as Select,
685
+ oI as SelectIcon,
686
+ eI as SendIcon,
687
+ nI as ShareIcon,
688
+ pI as ShowIcon,
689
+ xI as ShuffleIcon,
690
+ II as SidebarHideIcon,
691
+ iI as SidebarLeftIcon,
692
+ dI as SidebarRightIcon,
693
+ uI as SidebarShowIcon,
694
+ TI as Skeleton,
695
+ hI as SkeletonText,
696
+ PI as SlidersIcon,
697
+ SI as SlightlySadIcon,
698
+ yI as SmileIcon,
699
+ BI as SortAscIcon,
700
+ DI as SortDescIcon,
701
+ wI as SplitIcon,
702
+ HI as Stack,
703
+ vI as StatusIcon,
704
+ UI as StepContext,
705
+ WI as Stepper,
706
+ NI as StopIcon,
707
+ KI as SubmenuIcon,
708
+ jI as SuccessIcon,
709
+ qI as SwapIcon,
710
+ YI as SwatchIcon,
711
+ _I as SweatIcon,
712
+ oa as Switch,
713
+ ea as Tab,
714
+ na as TabList,
715
+ pa as TabPanel,
716
+ xa as TabPanels,
717
+ Ia as Table,
718
+ ia as TableContent,
719
+ da as TableFilter,
720
+ ua as TableIcon,
721
+ Ta as TableMapIcon,
722
+ ha as TableToolbar,
723
+ Pa as TableToolbarActions,
724
+ Sa as TableToolbarAddButton,
725
+ ya as TableToolbarSearch,
726
+ Ba as TableToolbarSettings,
727
+ Da as Tabs,
728
+ wa as Tag,
729
+ Ha as TakeAwayDotComIcon,
730
+ va as TakeAwayIcon,
731
+ Ua as TalkIcon,
732
+ Wa as Text,
733
+ Na as Textarea,
734
+ Ka as ThemeBorderVariable,
735
+ Qa as ThemeBreakPointVariable,
736
+ ja as ThemeColorVariable,
737
+ Ja as ThemeFontSizeVariable,
738
+ qa as ThemeFontVariable,
739
+ Xa as ThemeIconSizeVariable,
740
+ oi as ThemeProvider,
741
+ Ya as ThemeRadiusVariable,
742
+ Za as ThemeShadowVariable,
743
+ _a as ThemeSpaceVariable,
744
+ ei as ThumbtackIcon,
745
+ ni as TimeIcon,
746
+ pi as TimelineIcon,
747
+ xi as TipIcon,
748
+ Ii as TitleIcon,
749
+ ii as Toaster,
750
+ di as ToggleButton,
751
+ ui as Tooltip,
752
+ Ti as TranslateIcon,
753
+ hi as TreeViewCollapseIcon,
754
+ Pi as TreeViewExpandIcon,
755
+ Si as TreeViewLastIcon,
756
+ yi as TrendDownIcon,
757
+ Bi as TrendUpIcon,
758
+ Di as TriangleWarningIcon,
759
+ wi as TrivecIcon,
760
+ Hi as UberEatsIcon,
761
+ vi as UndoIcon,
762
+ Ui as UnlockIcon,
763
+ Wi as UnwrapContentIcon,
764
+ Ni as UpIcon,
765
+ Ki as UserGroupIcon,
766
+ ji as UserIcon,
767
+ qi as UserPermissionsIcon,
768
+ Yi as UserWaitIcon,
769
+ _i as UsersIcon,
770
+ ol as VersionControlIcon,
771
+ el as VolumeHighIcon,
772
+ nl as VolumeIcon,
773
+ pl as VolumeLowIcon,
774
+ xl as VolumeOffIcon,
775
+ Il as WarningIcon,
776
+ il as WasteIcon,
777
+ dl as WifiIcon,
778
+ ul as WifiOffIcon,
779
+ Tl as WoltIcon,
780
+ hl as WrapContentIcon,
781
+ Pl as createCasperIcon,
782
+ Sl as createColumnHelper,
783
+ yl as isTouchScreenDevice,
784
+ Bl as parseHtmlToContent,
785
+ Ll as richTextExtensions,
786
+ Fl as showToast,
778
787
  e as useColorMode,
779
788
  n as useDisclosure,
780
- yl as useTableContext
789
+ El as useRichTextEditor,
790
+ Rl as useRichTextEditorContext,
791
+ Vl as useTableContext
781
792
  };