ui-svelte 0.2.10 → 0.2.12

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 (206) hide show
  1. package/dist/charts/ArcChart.svelte +9 -13
  2. package/dist/charts/ArcChart.svelte.d.ts +3 -3
  3. package/dist/charts/AreaChart.svelte +347 -118
  4. package/dist/charts/AreaChart.svelte.d.ts +33 -4
  5. package/dist/charts/BarChart.svelte +288 -66
  6. package/dist/charts/BarChart.svelte.d.ts +26 -1
  7. package/dist/charts/Candlestick.svelte +53 -50
  8. package/dist/charts/Candlestick.svelte.d.ts +8 -8
  9. package/dist/charts/LineChart.svelte +391 -91
  10. package/dist/charts/LineChart.svelte.d.ts +26 -3
  11. package/dist/charts/PieChart.svelte +333 -92
  12. package/dist/charts/PieChart.svelte.d.ts +33 -5
  13. package/dist/charts/css/arc-chart.css +3 -3
  14. package/dist/charts/css/area-chart.css +127 -29
  15. package/dist/charts/css/bar-chart.css +114 -8
  16. package/dist/charts/css/candlestick.css +2 -0
  17. package/dist/charts/css/line-chart.css +111 -13
  18. package/dist/charts/css/pie-chart.css +92 -20
  19. package/dist/control/Audio.svelte +86 -44
  20. package/dist/control/Audio.svelte.d.ts +4 -1
  21. package/dist/control/Button.svelte +18 -27
  22. package/dist/control/Button.svelte.d.ts +3 -2
  23. package/dist/control/IconButton.svelte +17 -27
  24. package/dist/control/IconButton.svelte.d.ts +3 -3
  25. package/dist/control/Image.svelte +123 -0
  26. package/dist/control/Image.svelte.d.ts +13 -0
  27. package/dist/control/Record.svelte +144 -98
  28. package/dist/control/Record.svelte.d.ts +2 -1
  29. package/dist/control/ToggleGroup.svelte +22 -8
  30. package/dist/control/ToggleGroup.svelte.d.ts +2 -1
  31. package/dist/control/ToggleTheme.svelte +13 -11
  32. package/dist/control/ToggleTheme.svelte.d.ts +3 -2
  33. package/dist/control/Video.svelte +55 -29
  34. package/dist/control/Video.svelte.d.ts +1 -0
  35. package/dist/control/css/btn.css +200 -152
  36. package/dist/control/css/image.css +56 -0
  37. package/dist/control/css/media.css +95 -30
  38. package/dist/control/css/toggle-group.css +269 -84
  39. package/dist/control/css/video.css +1 -14
  40. package/dist/css/animations.css +427 -2
  41. package/dist/css/base.css +13 -347
  42. package/dist/css/decorations.css +402 -0
  43. package/dist/css/rich-text.css +485 -0
  44. package/dist/css/transitions.css +158 -0
  45. package/dist/css/typography.css +291 -0
  46. package/dist/display/Accordion.svelte +28 -4
  47. package/dist/display/Accordion.svelte.d.ts +2 -1
  48. package/dist/display/Alert.svelte +32 -12
  49. package/dist/display/Alert.svelte.d.ts +2 -3
  50. package/dist/display/Avatar.svelte +54 -26
  51. package/dist/display/Avatar.svelte.d.ts +7 -1
  52. package/dist/display/AvatarGroup.svelte +26 -18
  53. package/dist/display/AvatarGroup.svelte.d.ts +9 -3
  54. package/dist/display/Badge.svelte +11 -4
  55. package/dist/display/Badge.svelte.d.ts +2 -1
  56. package/dist/display/Card.svelte +15 -14
  57. package/dist/display/Card.svelte.d.ts +2 -3
  58. package/dist/display/Carousel.svelte +130 -99
  59. package/dist/display/Carousel.svelte.d.ts +6 -4
  60. package/dist/display/ChatBox.svelte +245 -106
  61. package/dist/display/ChatBox.svelte.d.ts +32 -5
  62. package/dist/display/Chip.svelte +31 -17
  63. package/dist/display/Chip.svelte.d.ts +3 -2
  64. package/dist/display/Code.svelte +6 -3
  65. package/dist/display/Code.svelte.d.ts +1 -0
  66. package/dist/display/Collapsible.svelte +30 -4
  67. package/dist/display/Collapsible.svelte.d.ts +2 -1
  68. package/dist/display/Empty.svelte +37 -3
  69. package/dist/display/Empty.svelte.d.ts +3 -0
  70. package/dist/display/Item.svelte +31 -18
  71. package/dist/display/Item.svelte.d.ts +2 -2
  72. package/dist/display/Map.svelte +488 -0
  73. package/dist/display/Map.svelte.d.ts +44 -0
  74. package/dist/display/Section.svelte +14 -12
  75. package/dist/display/Section.svelte.d.ts +2 -3
  76. package/dist/display/Skeleton.svelte +32 -0
  77. package/dist/display/Skeleton.svelte.d.ts +10 -0
  78. package/dist/display/Table.svelte +94 -132
  79. package/dist/display/Table.svelte.d.ts +10 -1
  80. package/dist/display/css/accordion.css +349 -52
  81. package/dist/display/css/alert.css +18 -25
  82. package/dist/display/css/avatar-group.css +38 -44
  83. package/dist/display/css/avatar.css +152 -123
  84. package/dist/display/css/badge.css +50 -27
  85. package/dist/display/css/card.css +51 -71
  86. package/dist/display/css/carousel.css +25 -5
  87. package/dist/display/css/chat-box.css +158 -26
  88. package/dist/display/css/chip.css +142 -68
  89. package/dist/display/css/code.css +2 -6
  90. package/dist/display/css/collapsible.css +349 -45
  91. package/dist/display/css/divider.css +8 -6
  92. package/dist/display/css/empty.css +7 -0
  93. package/dist/display/css/item.css +311 -89
  94. package/dist/display/css/map.css +164 -0
  95. package/dist/display/css/section.css +78 -33
  96. package/dist/display/css/skeleton.css +58 -0
  97. package/dist/display/css/table.css +320 -189
  98. package/dist/form/Checkbox.svelte +11 -5
  99. package/dist/form/Checkbox.svelte.d.ts +2 -1
  100. package/dist/form/ColorField.svelte +543 -0
  101. package/dist/form/ColorField.svelte.d.ts +29 -0
  102. package/dist/form/ComboBox.svelte +24 -9
  103. package/dist/form/ComboBox.svelte.d.ts +2 -2
  104. package/dist/form/CsvField.svelte +62 -136
  105. package/dist/form/CsvField.svelte.d.ts +2 -2
  106. package/dist/form/DateField.svelte +33 -15
  107. package/dist/form/DateField.svelte.d.ts +2 -1
  108. package/dist/form/DateRange.svelte +436 -0
  109. package/dist/form/DateRange.svelte.d.ts +24 -0
  110. package/dist/form/DragDrop.svelte +348 -0
  111. package/dist/form/DragDrop.svelte.d.ts +32 -0
  112. package/dist/form/Dropzone.svelte +28 -8
  113. package/dist/form/Dropzone.svelte.d.ts +2 -2
  114. package/dist/form/Editor.svelte +626 -0
  115. package/dist/form/Editor.svelte.d.ts +50 -0
  116. package/dist/form/ImageCropper.svelte +291 -61
  117. package/dist/form/ImageCropper.svelte.d.ts +15 -1
  118. package/dist/form/PasswordField.svelte +120 -75
  119. package/dist/form/PasswordField.svelte.d.ts +9 -10
  120. package/dist/form/PhoneField.svelte +34 -16
  121. package/dist/form/PhoneField.svelte.d.ts +4 -3
  122. package/dist/form/PinField.svelte +39 -31
  123. package/dist/form/PinField.svelte.d.ts +3 -3
  124. package/dist/form/RadioGroup.svelte +4 -4
  125. package/dist/form/RadioGroup.svelte.d.ts +1 -1
  126. package/dist/form/Select.svelte +20 -19
  127. package/dist/form/Select.svelte.d.ts +2 -2
  128. package/dist/form/Slider.svelte +4 -2
  129. package/dist/form/Slider.svelte.d.ts +1 -0
  130. package/dist/form/TextField.svelte +16 -7
  131. package/dist/form/TextField.svelte.d.ts +2 -2
  132. package/dist/form/Textarea.svelte +15 -6
  133. package/dist/form/Textarea.svelte.d.ts +2 -2
  134. package/dist/form/Toggle.svelte +11 -1
  135. package/dist/form/Toggle.svelte.d.ts +2 -0
  136. package/dist/form/css/checkbox.css +18 -2
  137. package/dist/form/css/color-field.css +141 -0
  138. package/dist/form/css/control.css +193 -82
  139. package/dist/form/css/csv-field.css +226 -0
  140. package/dist/form/css/date-range.css +122 -0
  141. package/dist/form/css/date.css +24 -2
  142. package/dist/form/css/drag-drop.css +271 -0
  143. package/dist/form/css/dropzone.css +153 -34
  144. package/dist/form/css/editor.css +367 -0
  145. package/dist/form/css/field.css +4 -0
  146. package/dist/form/css/image-cropper.css +223 -22
  147. package/dist/form/css/password.css +1 -1
  148. package/dist/form/css/radio-group.css +1 -1
  149. package/dist/form/css/select.css +2 -2
  150. package/dist/form/css/slider.css +1 -0
  151. package/dist/form/css/textarea.css +178 -75
  152. package/dist/form/css/toggle.css +11 -2
  153. package/dist/hooks/use-table.svelte.d.ts +1 -0
  154. package/dist/hooks/use-table.svelte.js +6 -0
  155. package/dist/icons/index.d.ts +38 -2
  156. package/dist/icons/index.js +40 -4
  157. package/dist/index.css +16 -1
  158. package/dist/index.d.ts +11 -3
  159. package/dist/index.js +10 -2
  160. package/dist/layout/AppBar.svelte +22 -14
  161. package/dist/layout/AppBar.svelte.d.ts +2 -1
  162. package/dist/layout/Footer.svelte +19 -11
  163. package/dist/layout/Footer.svelte.d.ts +2 -1
  164. package/dist/layout/Provider.svelte +27 -4
  165. package/dist/layout/Provider.svelte.d.ts +3 -1
  166. package/dist/layout/css/app-bar.css +63 -66
  167. package/dist/layout/css/footer.css +62 -65
  168. package/dist/navigation/BottomNav.svelte +41 -13
  169. package/dist/navigation/FooterGroup.svelte +1 -1
  170. package/dist/navigation/NavMenu.svelte +47 -23
  171. package/dist/navigation/NavMenu.svelte.d.ts +29 -0
  172. package/dist/navigation/Pagination.svelte +158 -0
  173. package/dist/navigation/Pagination.svelte.d.ts +18 -0
  174. package/dist/navigation/SideNav.svelte +30 -25
  175. package/dist/navigation/SideNav.svelte.d.ts +2 -3
  176. package/dist/navigation/Tabs.svelte +17 -7
  177. package/dist/navigation/Tabs.svelte.d.ts +2 -2
  178. package/dist/navigation/css/bottom-nav.css +279 -257
  179. package/dist/navigation/css/footer-group.css +1 -1
  180. package/dist/navigation/css/footer-nav.css +1 -1
  181. package/dist/navigation/css/nav-menu.css +332 -106
  182. package/dist/navigation/css/pagination.css +74 -0
  183. package/dist/navigation/css/side-nav.css +515 -75
  184. package/dist/navigation/css/tabs.css +246 -52
  185. package/dist/overlay/Command.svelte +340 -0
  186. package/dist/overlay/Command.svelte.d.ts +24 -25
  187. package/dist/overlay/Drawer.svelte +49 -21
  188. package/dist/overlay/Drawer.svelte.d.ts +2 -2
  189. package/dist/overlay/Dropdown.svelte +4 -5
  190. package/dist/overlay/Modal.svelte +51 -16
  191. package/dist/overlay/Modal.svelte.d.ts +3 -3
  192. package/dist/overlay/Toast.svelte +41 -17
  193. package/dist/overlay/Toast.svelte.d.ts +1 -1
  194. package/dist/overlay/Tooltip.svelte +40 -26
  195. package/dist/overlay/Tooltip.svelte.d.ts +2 -2
  196. package/dist/overlay/css/command.css +80 -0
  197. package/dist/overlay/css/drawer.css +63 -24
  198. package/dist/overlay/css/dropdown.css +1 -1
  199. package/dist/overlay/css/hovercard.css +1 -1
  200. package/dist/overlay/css/modal.css +27 -27
  201. package/dist/overlay/css/toast.css +17 -29
  202. package/dist/overlay/css/tooltip.css +83 -66
  203. package/dist/stores/theme.svelte.js +26 -1
  204. package/dist/stores/toast.svelte.d.ts +4 -4
  205. package/dist/stores/toast.svelte.js +2 -2
  206. package/package.json +1 -1
@@ -7,124 +7,227 @@
7
7
  .textarea-control-label {
8
8
  @apply absolute left-3 top-3;
9
9
  @apply transition-all duration-300;
10
- }
11
10
 
12
- .textarea-control-label.is-active {
13
- @apply text-xs left-3 top-1 translate-y-px!;
11
+ &.is-active {
12
+ @apply text-xs left-3 top-1 translate-y-px!;
13
+ }
14
14
  }
15
15
 
16
- .textarea-control.is-sm {
17
- @apply text-sm py-2;
18
- }
16
+ .textarea-control {
17
+ &.is-sm {
18
+ @apply text-sm py-2;
19
+ }
19
20
 
20
- .textarea-control.is-md {
21
- @apply text-base py-2.5;
22
- }
21
+ &.is-md {
22
+ @apply text-base py-2.5;
23
+ }
23
24
 
24
- .textarea-control.is-lg {
25
- @apply text-xl py-3;
25
+ &.is-lg {
26
+ @apply text-xl py-3;
26
27
 
27
- .textarea-control-label.is-active {
28
- @apply text-sm;
28
+ .textarea-control-label.is-active {
29
+ @apply text-sm;
30
+ }
29
31
  }
30
- }
31
32
 
32
- .textarea-control.is-float.is-sm {
33
- @apply pt-5 pb-2;
34
- }
33
+ &.is-float {
34
+ &.is-sm {
35
+ @apply pt-5 pb-2;
36
+ }
35
37
 
36
- .textarea-control.is-float.is-md {
37
- @apply pt-6 pb-2.5;
38
- }
38
+ &.is-md {
39
+ @apply pt-6 pb-2.5;
40
+ }
39
41
 
40
- .textarea-control.is-float.is-lg {
41
- @apply pt-7 pb-3;
42
+ &.is-lg {
43
+ @apply pt-7 pb-3;
44
+ }
45
+ }
42
46
  }
43
47
 
44
- .textarea-control.is-primary {
45
- @apply bg-on-primary text-primary rounded-ui;
46
- }
48
+ .textarea-control.is-soft {
49
+ @apply rounded-ui;
47
50
 
48
- .textarea-control.is-solid.is-primary {
49
- @apply bg-primary text-on-primary;
50
- }
51
+ &.is-primary {
52
+ @apply bg-on-primary text-primary;
53
+ &.is-active {
54
+ @apply bg-on-primary/90;
55
+ }
56
+ }
51
57
 
52
- .textarea-control.is-primary.is-active {
53
- @apply bg-on-primary/90;
54
- }
58
+ &.is-secondary {
59
+ @apply bg-on-secondary text-secondary;
60
+ &.is-active {
61
+ @apply bg-on-secondary/90;
62
+ }
63
+ }
55
64
 
56
- .textarea-control.is-solid.is-primary.is-active {
57
- @apply bg-primary/90;
58
- }
65
+ &.is-muted {
66
+ @apply bg-muted text-on-muted;
67
+ &.is-active {
68
+ @apply bg-muted/90;
69
+ }
70
+ }
59
71
 
60
- .textarea-control.is-secondary {
61
- @apply bg-on-secondary text-secondary rounded-ui;
62
- }
72
+ &.is-success {
73
+ @apply bg-on-success text-success;
74
+ &.is-active {
75
+ @apply bg-on-success/90;
76
+ }
77
+ }
63
78
 
64
- .textarea-control.is-solid.is-secondary {
65
- @apply bg-secondary text-on-secondary;
66
- }
79
+ &.is-info {
80
+ @apply bg-on-info text-info;
81
+ &.is-active {
82
+ @apply bg-on-info/90;
83
+ }
84
+ }
67
85
 
68
- .textarea-control.is-secondary.is-active {
69
- @apply bg-on-secondary/90;
70
- }
86
+ &.is-danger {
87
+ @apply bg-on-danger text-danger;
88
+ &.is-active {
89
+ @apply bg-on-danger/90;
90
+ }
91
+ }
71
92
 
72
- .textarea-control.is-solid.is-secondary.is-active {
73
- @apply bg-secondary/90;
93
+ &.is-warning {
94
+ @apply bg-on-warning text-warning;
95
+ &.is-active {
96
+ @apply bg-on-warning/90;
97
+ }
98
+ }
74
99
  }
75
100
 
76
- .textarea-control.is-muted {
77
- @apply bg-muted text-on-muted rounded-ui;
78
- }
101
+ .textarea-control.is-solid {
102
+ @apply rounded-ui;
79
103
 
80
- .textarea-control.is-solid.is-muted {
81
- @apply bg-on-muted text-muted;
82
- }
104
+ &.is-primary {
105
+ @apply bg-primary text-on-primary;
106
+ &.is-active {
107
+ @apply bg-primary/90;
108
+ }
109
+ }
83
110
 
84
- .textarea-control.is-muted.is-active {
85
- @apply bg-muted/90;
86
- }
111
+ &.is-secondary {
112
+ @apply bg-secondary text-on-secondary;
113
+ &.is-active {
114
+ @apply bg-secondary/90;
115
+ }
116
+ }
117
+
118
+ &.is-muted {
119
+ @apply bg-on-muted text-muted;
120
+ &.is-active {
121
+ @apply bg-on-muted/90;
122
+ }
123
+ }
124
+
125
+ &.is-success {
126
+ @apply bg-success text-on-success;
127
+ &.is-active {
128
+ @apply bg-success/90;
129
+ }
130
+ }
87
131
 
88
- .textarea-control.is-solid.is-muted.is-active {
89
- @apply bg-on-muted/90;
132
+ &.is-info {
133
+ @apply bg-info text-on-info;
134
+ &.is-active {
135
+ @apply bg-info/90;
136
+ }
137
+ }
138
+
139
+ &.is-danger {
140
+ @apply bg-danger text-on-danger;
141
+ &.is-active {
142
+ @apply bg-danger/90;
143
+ }
144
+ }
145
+
146
+ &.is-warning {
147
+ @apply bg-warning text-on-warning;
148
+ &.is-active {
149
+ @apply bg-warning/90;
150
+ }
151
+ }
90
152
  }
91
153
 
92
154
  .textarea-control.is-outlined {
93
- @apply inset-ring-2 inset-ring-muted rounded-ui;
94
- }
155
+ @apply rounded-ui inset-ring;
156
+
157
+ &.is-active {
158
+ @apply inset-ring-2;
159
+ }
95
160
 
96
- .textarea-control.is-outlined.is-active {
97
- @apply inset-ring-2 inset-ring-primary;
161
+ &.is-primary {
162
+ @apply inset-ring-primary;
163
+ }
164
+ &.is-secondary {
165
+ @apply inset-ring-secondary;
166
+ }
167
+ &.is-muted {
168
+ @apply inset-ring-muted;
169
+ }
170
+ &.is-success {
171
+ @apply inset-ring-success;
172
+ }
173
+ &.is-info {
174
+ @apply inset-ring-info;
175
+ }
176
+ &.is-danger {
177
+ @apply inset-ring-danger;
178
+ }
179
+ &.is-warning {
180
+ @apply inset-ring-warning;
181
+ }
98
182
  }
99
183
 
100
184
  .textarea-control.is-line {
101
- @apply box-border border-b-2 border-muted text-on-muted px-0;
185
+ @apply box-border border-b px-0;
102
186
 
103
187
  .textarea-control-label {
104
188
  @apply left-0!;
105
189
  }
106
- }
107
190
 
108
- .textarea-control.is-line.is-active {
109
- @apply border-primary;
191
+ &.is-active {
192
+ @apply border-b-2;
193
+ }
194
+
195
+ &.is-primary {
196
+ @apply border-primary text-primary;
197
+ }
198
+ &.is-secondary {
199
+ @apply border-secondary text-secondary;
200
+ }
201
+ &.is-muted {
202
+ @apply border-on-muted text-on-muted;
203
+ }
204
+ &.is-success {
205
+ @apply border-success text-success;
206
+ }
207
+ &.is-info {
208
+ @apply border-info text-info;
209
+ }
210
+ &.is-danger {
211
+ @apply border-danger text-danger;
212
+ }
213
+ &.is-warning {
214
+ @apply border-warning text-warning;
215
+ }
110
216
  }
111
217
 
112
218
  .textarea-control-input {
113
219
  @apply appearance-none flex-1 w-full border-none outline-none;
114
- @apply placeholder:transition-opacity placeholder:duration-200;
220
+ @apply placeholder:transition-opacity placeholder:duration-300;
115
221
  @apply bg-transparent;
116
222
  @apply min-h-12;
117
- }
118
-
119
- .textarea-control-input.invisible {
120
- @apply opacity-0;
121
- }
122
-
123
- .textarea-control-input {
124
223
  resize: none;
125
- }
126
224
 
127
- .textarea-control-input.is-resizable {
128
- resize: both;
225
+ &.invisible {
226
+ @apply opacity-0;
227
+ }
228
+
229
+ &.is-resizable {
230
+ resize: both;
231
+ }
129
232
  }
130
233
  }
@@ -4,11 +4,11 @@
4
4
 
5
5
  .toggle-input {
6
6
  @apply relative appearance-none w-10 h-6 rounded-full;
7
- @apply bg-muted transition-colors duration-200 ease-in-out;
7
+ @apply bg-muted transition-colors duration-300 ease-in-out;
8
8
  @apply focus:outline-none;
9
9
  @apply before:content-[''] before:absolute before:h-4 before:w-4 before:left-1 before:top-1;
10
10
  @apply before:bg-white before:rounded-full before:shadow;
11
- @apply before:transition-transform before:duration-200 before:ease-in-out;
11
+ @apply before:transition-transform before:duration-300 before:ease-in-out;
12
12
  @apply checked:before:translate-x-4;
13
13
  }
14
14
 
@@ -23,5 +23,14 @@
23
23
  @apply bg-on-muted;
24
24
  }
25
25
  }
26
+
27
+ .toggle-label-left,
28
+ .toggle-label-right {
29
+ @apply text-muted transition-colors duration-300;
30
+
31
+ &.is-active {
32
+ @apply text-on-muted;
33
+ }
34
+ }
26
35
  }
27
36
  }
@@ -10,6 +10,7 @@ interface Column {
10
10
  export interface TableState {
11
11
  data: any[];
12
12
  isLoading: boolean;
13
+ hasInitialized: boolean;
13
14
  error: any;
14
15
  sortBy?: string;
15
16
  sortOrder: 'ASC' | 'DESC';
@@ -9,6 +9,7 @@ export const useTable = (config) => {
9
9
  let sortOrder = $state(config.initialSortOrder ?? 'ASC');
10
10
  let search = $state(config.initialSearch ?? '');
11
11
  let isLoading = $state(false);
12
+ let hasInitialized = $state(false);
12
13
  let error = $state(null);
13
14
  const selectable = config.selectable ?? false;
14
15
  const rowKey = config.rowKey ?? 'id';
@@ -82,6 +83,7 @@ export const useTable = (config) => {
82
83
  const startIndex = (page - 1) * pageSize;
83
84
  const endIndex = startIndex + pageSize;
84
85
  data = processedData.slice(startIndex, endIndex);
86
+ hasInitialized = true;
85
87
  };
86
88
  const fetchData = async () => {
87
89
  if (isManualMode) {
@@ -125,6 +127,7 @@ export const useTable = (config) => {
125
127
  catch (err) {
126
128
  error = err;
127
129
  config.onError?.(err);
130
+ hasInitialized = true;
128
131
  }
129
132
  finally {
130
133
  isLoading = false;
@@ -307,6 +310,9 @@ export const useTable = (config) => {
307
310
  get isLoading() {
308
311
  return isLoading;
309
312
  },
313
+ get hasInitialized() {
314
+ return hasInitialized;
315
+ },
310
316
  get error() {
311
317
  return error;
312
318
  },
@@ -90,7 +90,7 @@ export declare const SpeakerMute24RegularIcon: {
90
90
  body: string;
91
91
  viewbox: string;
92
92
  };
93
- export declare const Pause24RegularIcon: {
93
+ export declare const PauseFilledIcon: {
94
94
  body: string;
95
95
  viewbox: string;
96
96
  };
@@ -98,7 +98,7 @@ export declare const PictureInPicture24RegularIcon: {
98
98
  body: string;
99
99
  viewbox: string;
100
100
  };
101
- export declare const Play24RegularIcon: {
101
+ export declare const PlayFilledIcon: {
102
102
  body: string;
103
103
  viewbox: string;
104
104
  };
@@ -130,3 +130,39 @@ export declare const Warning24RegularIcon: {
130
130
  body: string;
131
131
  viewbox: string;
132
132
  };
133
+ export declare const EyeShowRegularIcon: {
134
+ body: string;
135
+ viewbox: string;
136
+ };
137
+ export declare const EyeOffRegularIcon: {
138
+ body: string;
139
+ viewbox: string;
140
+ };
141
+ export declare const ArrowLeftRegularIcon: {
142
+ body: string;
143
+ viewbox: string;
144
+ };
145
+ export declare const ArrowRightRegularIcon: {
146
+ body: string;
147
+ viewbox: string;
148
+ };
149
+ export declare const ArrowDownloadRegularIcon: {
150
+ body: string;
151
+ viewbox: string;
152
+ };
153
+ export declare const ArrowUploadRegularIcon: {
154
+ body: string;
155
+ viewbox: string;
156
+ };
157
+ export declare const ImageAddRegularIcon: {
158
+ body: string;
159
+ viewbox: string;
160
+ };
161
+ export declare const ArrowResetRegularIcon: {
162
+ body: string;
163
+ viewbox: string;
164
+ };
165
+ export declare const CropRegularIcon: {
166
+ body: string;
167
+ viewbox: string;
168
+ };
@@ -90,16 +90,16 @@ export const SpeakerMute24RegularIcon = {
90
90
  body: '<path fill="currentColor" d="M12.92 3.315C13.726 2.6 15 3.171 15 4.25v15.495c0 1.079-1.274 1.651-2.08.934l-4.492-3.993a.75.75 0 0 0-.498-.19H4.25A2.25 2.25 0 0 1 2 14.246V9.748a2.25 2.25 0 0 1 2.25-2.25h3.68a.75.75 0 0 0 .498-.19zm.58 1.491L9.425 8.43a2.25 2.25 0 0 1-1.495.568H4.25a.75.75 0 0 0-.75.75v4.498c0 .414.336.75.75.75h3.68a2.25 2.25 0 0 1 1.495.569l4.075 3.623zm2.72 4.413a.75.75 0 0 1 1.06 0L19 10.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L20.06 12l1.72 1.72a.75.75 0 0 1-1.06 1.06L19 13.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L17.94 12l-1.72-1.72a.75.75 0 0 1 0-1.06"/>',
91
91
  viewbox: '0 0 24 24'
92
92
  };
93
- export const Pause24RegularIcon = {
94
- body: '<path fill="currentColor" d="M6.25 3A2.25 2.25 0 0 0 4 5.25v13.5A2.25 2.25 0 0 0 6.25 21h2.5A2.25 2.25 0 0 0 11 18.75V5.25A2.25 2.25 0 0 0 8.75 3zM5.5 5.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1-.75-.75zM15.25 3A2.25 2.25 0 0 0 13 5.25v13.5A2.25 2.25 0 0 0 15.25 21h2.5A2.25 2.25 0 0 0 20 18.75V5.25A2.25 2.25 0 0 0 17.75 3zm-.75 2.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1-.75-.75z"/>',
93
+ export const PauseFilledIcon = {
94
+ body: '<path fill="currentColor" d="M5.746 3a1.75 1.75 0 0 0-1.75 1.75v14.5c0 .966.784 1.75 1.75 1.75h3.5a1.75 1.75 0 0 0 1.75-1.75V4.75A1.75 1.75 0 0 0 9.246 3zm9 0a1.75 1.75 0 0 0-1.75 1.75v14.5c0 .966.784 1.75 1.75 1.75h3.5a1.75 1.75 0 0 0 1.75-1.75V4.75A1.75 1.75 0 0 0 18.246 3z"/>',
95
95
  viewbox: '0 0 24 24'
96
96
  };
97
97
  export const PictureInPicture24RegularIcon = {
98
98
  body: '<path fill="currentColor" d="M2 6.25A3.25 3.25 0 0 1 5.25 3h13.5A3.25 3.25 0 0 1 22 6.25V12h-1.5V6.25a1.75 1.75 0 0 0-1.75-1.75H5.25A1.75 1.75 0 0 0 3.5 6.25v9.5c0 .966.784 1.75 1.75 1.75H11V19H5.25A3.25 3.25 0 0 1 2 15.75zM14 13a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2z"/>',
99
99
  viewbox: '0 0 24 24'
100
100
  };
101
- export const Play24RegularIcon = {
102
- body: '<path fill="currentColor" d="M7.608 4.615a.75.75 0 0 0-1.108.659v13.452a.75.75 0 0 0 1.108.659l12.362-6.726a.75.75 0 0 0 0-1.318zM5 5.274c0-1.707 1.826-2.792 3.325-1.977l12.362 6.727c1.566.852 1.566 3.1 0 3.952L8.325 20.702C6.826 21.518 5 20.432 5 18.726z"/>',
101
+ export const PlayFilledIcon = {
102
+ body: '<path fill="currentColor" d="M5 5.274c0-1.707 1.826-2.792 3.325-1.977l12.362 6.727c1.566.852 1.566 3.1 0 3.952L8.325 20.702C6.826 21.518 5 20.432 5 18.726z"/>',
103
103
  viewbox: '0 0 24 24'
104
104
  };
105
105
  export const Record24RegularIcon = {
@@ -130,3 +130,39 @@ export const Warning24RegularIcon = {
130
130
  body: '<path fill="currentColor" d="M13 17a.999.999 0 1 0-1.998 0a.999.999 0 0 0 1.997 0m-.26-7.853a.75.75 0 0 0-1.493.103l.004 4.501l.007.102a.75.75 0 0 0 1.493-.103l-.004-4.502zm1.23-5.488c-.857-1.548-3.082-1.548-3.938 0L2.286 17.66c-.83 1.5.255 3.34 1.97 3.34h15.49c1.714 0 2.799-1.84 1.969-3.34zm-2.626.726a.75.75 0 0 1 1.313 0l7.746 14.002a.75.75 0 0 1-.657 1.113H4.256a.75.75 0 0 1-.657-1.113z"/>',
131
131
  viewbox: '0 0 24 24'
132
132
  };
133
+ export const EyeShowRegularIcon = {
134
+ body: '<g fill="none"><path d="M12 9.005a4 4 0 1 1 0 8a4 4 0 0 1 0-8zm0 1.5a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5zM12 5.5c4.613 0 8.596 3.15 9.701 7.564a.75.75 0 1 1-1.455.365a8.503 8.503 0 0 0-16.493.004a.75.75 0 0 1-1.455-.363A10.003 10.003 0 0 1 12 5.5z" fill="currentColor"/></g>',
135
+ viewbox: '0 0 24 24'
136
+ };
137
+ export const EyeOffRegularIcon = {
138
+ body: '<path fill="currentColor" d="M2.22 2.22a.75.75 0 0 0-.073.976l.073.084l4.034 4.035a10 10 0 0 0-3.955 5.75a.75.75 0 0 0 1.455.364a8.5 8.5 0 0 1 3.58-5.034l1.81 1.81A4 4 0 0 0 14.8 15.86l5.919 5.92a.75.75 0 0 0 1.133-.977l-.073-.084l-6.113-6.114l.001-.002l-1.2-1.198l-2.87-2.87h.002l-2.88-2.877l.001-.002l-1.133-1.13L3.28 2.22a.75.75 0 0 0-1.06 0m7.984 9.045l3.535 3.536a2.5 2.5 0 0 1-3.535-3.535M12 5.5c-1 0-1.97.148-2.889.425l1.237 1.236a8.503 8.503 0 0 1 9.899 6.272a.75.75 0 0 0 1.455-.363A10 10 0 0 0 12 5.5m.195 3.51l3.801 3.8a4.003 4.003 0 0 0-3.801-3.8"/>',
139
+ viewbox: '0 0 24 24'
140
+ };
141
+ export const ArrowLeftRegularIcon = {
142
+ body: '<path fill="currentColor" d="M10.733 19.79a.75.75 0 0 0 1.034-1.086L5.516 12.75H20.25a.75.75 0 0 0 0-1.5H5.516l6.251-5.955a.75.75 0 0 0-1.034-1.086l-7.42 7.067a1 1 0 0 0-.3.58a.8.8 0 0 0 .001.289a1 1 0 0 0 .3.579z"/>',
143
+ viewbox: '0 0 24 24'
144
+ };
145
+ export const ArrowRightRegularIcon = {
146
+ body: '<path fill="currentColor" d="M13.267 4.209a.75.75 0 0 0-1.034 1.086l6.251 5.955H3.75a.75.75 0 0 0 0 1.5h14.734l-6.251 5.954a.75.75 0 0 0 1.034 1.087l7.42-7.067a1 1 0 0 0 .3-.58a.8.8 0 0 0-.001-.29a1 1 0 0 0-.3-.578z"/>',
147
+ viewbox: '0 0 24 24'
148
+ };
149
+ export const ArrowDownloadRegularIcon = {
150
+ body: '<path fill="currentColor" d="M18.25 20.5a.75.75 0 1 1 0 1.5l-13 .005a.75.75 0 1 1 0-1.5zM11.648 2.014l.102-.007a.75.75 0 0 1 .743.648l.007.102l-.001 13.685l3.722-3.72a.75.75 0 0 1 .976-.073l.085.073a.75.75 0 0 1 .072.976l-.073.084l-4.997 4.997a.75.75 0 0 1-.976.073l-.085-.073l-5.003-4.996a.75.75 0 0 1 .976-1.134l.084.072l3.719 3.714L11 2.756a.75.75 0 0 1 .648-.743l.102-.007z"/>',
151
+ viewbox: '0 0 24 24'
152
+ };
153
+ export const ArrowUploadRegularIcon = {
154
+ body: '<path fill="currentColor" d="M18.25 3.51a.75.75 0 1 0 0-1.5l-13-.004a.75.75 0 1 0 0 1.5zm-6.602 18.488l.102.007a.75.75 0 0 0 .743-.649l.007-.101l-.001-13.685l3.722 3.72a.75.75 0 0 0 .976.073l.085-.073a.75.75 0 0 0 .072-.977l-.073-.084l-4.997-4.996a.75.75 0 0 0-.976-.073l-.085.072L6.22 10.23a.75.75 0 0 0 .976 1.134l.084-.073l3.719-3.713L11 21.255c0 .38.282.693.648.743"/>',
155
+ viewbox: '0 0 24 24'
156
+ };
157
+ export const ImageAddRegularIcon = {
158
+ body: '<path fill="currentColor" d="M12 6.5a5.5 5.5 0 1 0-11 0a5.5 5.5 0 0 0 11 0M7 7l.001 2.504a.5.5 0 0 1-1 0V7H3.496a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 1 0V6h2.497a.5.5 0 0 1 0 1zm10.75-2.5h-5.063a6.5 6.5 0 0 0-.709-1.5h5.772A3.25 3.25 0 0 1 21 6.25v11.5A3.25 3.25 0 0 1 17.75 21H6.25A3.25 3.25 0 0 1 3 17.75v-5.772c.463.297.967.536 1.5.709v5.063q.001.313.103.594l5.823-5.701a2.25 2.25 0 0 1 3.02-.116l.128.116l5.822 5.702q.102-.28.104-.595V6.25a1.75 1.75 0 0 0-1.75-1.75m.58 14.901l-5.805-5.686a.75.75 0 0 0-.966-.071l-.084.07l-5.807 5.687q.274.097.582.099h11.5c.203 0 .399-.035.58-.099M15.253 6.5a2.252 2.252 0 1 1 0 4.504a2.252 2.252 0 0 1 0-4.504m0 1.5a.752.752 0 1 0 0 1.504a.752.752 0 0 0 0-1.504"/>',
159
+ viewbox: '0 0 24 24'
160
+ };
161
+ export const ArrowResetRegularIcon = {
162
+ body: '<path fill="currentColor" d="M6.78 2.72a.75.75 0 0 1 0 1.06L4.56 6h8.69a7.75 7.75 0 1 1-7.75 7.75a.75.75 0 0 1 1.5 0a6.25 6.25 0 1 0 6.25-6.25H4.56l2.22 2.22a.75.75 0 1 1-1.06 1.06l-3.5-3.5a.75.75 0 0 1 0-1.06l3.5-3.5a.75.75 0 0 1 1.06 0"/>',
163
+ viewbox: '0 0 24 24'
164
+ };
165
+ export const CropRegularIcon = {
166
+ body: '<path fill="currentColor" d="M21.25 17a.75.75 0 0 1 .102 1.493l-.102.007H18.5v2.75a.75.75 0 0 1-1.493.102L17 21.25V18.5H8.75a3.25 3.25 0 0 1-3.245-3.066L5.5 15.25L5.499 7H2.75a.75.75 0 0 1-.102-1.493L2.75 5.5h2.749L5.5 2.75a.75.75 0 0 1 1.493-.102L7 2.75L6.999 5.5H7V7h-.001L7 15.25a1.75 1.75 0 0 0 1.606 1.744L8.75 17zM8 5.5h7.25a3.25 3.25 0 0 1 3.245 3.066l.005.184V16H17V8.75a1.75 1.75 0 0 0-1.607-1.744L15.25 7H8z"/>',
167
+ viewbox: '0 0 24 24'
168
+ };
package/dist/index.css CHANGED
@@ -4,8 +4,13 @@
4
4
  @import './css/utilities.css';
5
5
  @import './css/animations.css';
6
6
  @import './css/base.css';
7
+ @import './css/decorations.css';
8
+ @import './css/rich-text.css';
9
+ @import './css/transitions.css';
10
+ @import './css/typography.css';
7
11
 
8
12
  @import './control/css/btn.css';
13
+ @import './control/css/image.css';
9
14
  @import './control/css/media.css';
10
15
  @import './control/css/video.css';
11
16
  @import './control/css/toggle-group.css';
@@ -33,20 +38,26 @@
33
38
  @import './display/css/item.css';
34
39
  @import './display/css/marquee.css';
35
40
  @import './display/css/section.css';
41
+ @import './display/css/skeleton.css';
36
42
  @import './display/css/table.css';
43
+ @import './display/css/map.css';
37
44
 
38
45
  @import './form/css/checkbox.css';
39
46
  @import './form/css/combo-box.css';
40
47
  @import './form/css/control.css';
41
48
  @import './form/css/csv-field.css';
42
49
  @import './form/css/date.css';
50
+ @import './form/css/date-range.css';
51
+ @import './form/css/drag-drop.css';
43
52
  @import './form/css/dropzone.css';
53
+ @import './form/css/editor.css';
44
54
  @import './form/css/field.css';
45
55
  @import './form/css/image-cropper.css';
46
56
  @import './form/css/password.css';
47
57
  @import './form/css/radio-group.css';
48
58
  @import './form/css/slider.css';
49
59
  @import './form/css/select.css';
60
+ @import './form/css/color-field.css';
50
61
  @import './form/css/textarea.css';
51
62
  @import './form/css/toggle.css';
52
63
 
@@ -60,10 +71,12 @@
60
71
  @import './navigation/css/nav-menu.css';
61
72
  @import './navigation/css/footer-nav.css';
62
73
  @import './navigation/css/footer-group.css';
74
+ @import './navigation/css/pagination.css';
63
75
  @import './navigation/css/side-nav.css';
64
76
  @import './navigation/css/tabs.css';
65
77
 
66
78
  @import './overlay/css/modal.css';
79
+ @import './overlay/css/command.css';
67
80
  @import './overlay/css/drawer.css';
68
81
  @import './overlay/css/dropdown.css';
69
82
  @import './overlay/css/hovercard.css';
@@ -133,6 +146,8 @@
133
146
  --color-on-danger: var(--on-danger, oklch(93.6% 0.032 17.717));
134
147
  /* red-100 */
135
148
 
149
+ --radius-avatar: calc(infinity * 1px);
150
+ --radius-box: 0.75rem;
136
151
  --radius-ui: 0.75rem;
137
152
  --scrollbar-size: 6px;
138
- }
153
+ }
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ import LineChart from './charts/LineChart.svelte';
6
6
  import PieChart from './charts/PieChart.svelte';
7
7
  import Audio from './control/Audio.svelte';
8
8
  import Button from './control/Button.svelte';
9
+ import Image from './control/Image.svelte';
9
10
  import IconButton from './control/IconButton.svelte';
10
11
  import Record from './control/Record.svelte';
11
12
  import ToggleTheme from './control/ToggleTheme.svelte';
@@ -18,7 +19,7 @@ import AvatarGroup from './display/AvatarGroup.svelte';
18
19
  import Badge from './display/Badge.svelte';
19
20
  import Carousel from './display/Carousel.svelte';
20
21
  import Card from './display/Card.svelte';
21
- import ChatBox from './display/ChatBox.svelte';
22
+ import ChatBox, { type PromptMessage, type PromptState } from './display/ChatBox.svelte';
22
23
  import Chip from './display/Chip.svelte';
23
24
  import Code from './display/Code.svelte';
24
25
  import Collapsible from './display/Collapsible.svelte';
@@ -28,12 +29,18 @@ import Icon, { type IconData } from './display/Icon.svelte';
28
29
  import Item from './display/Item.svelte';
29
30
  import Marquee from './display/Marquee.svelte';
30
31
  import Section from './display/Section.svelte';
32
+ import Skeleton from './display/Skeleton.svelte';
33
+ import Map, { type LatLng, type MapMarker, type RouteInfo } from './display/Map.svelte';
31
34
  import Table from './display/Table.svelte';
32
35
  import Checkbox from './form/Checkbox.svelte';
36
+ import ColorField from './form/ColorField.svelte';
33
37
  import ComboBox from './form/ComboBox.svelte';
34
38
  import CsvField from './form/CsvField.svelte';
35
39
  import DateField from './form/DateField.svelte';
40
+ import DateRange from './form/DateRange.svelte';
41
+ import DragDrop, { type DragDropItem, type DragDropGroup } from './form/DragDrop.svelte';
36
42
  import Dropzone from './form/Dropzone.svelte';
43
+ import Editor from './form/Editor.svelte';
37
44
  import ImageCropper from './form/ImageCropper.svelte';
38
45
  import TextField from './form/TextField.svelte';
39
46
  import PasswordField from './form/PasswordField.svelte';
@@ -53,6 +60,7 @@ import NavMenu from './navigation/NavMenu.svelte';
53
60
  import BottomNav from './navigation/BottomNav.svelte';
54
61
  import FooterNav from './navigation/FooterNav.svelte';
55
62
  import FooterGroup from './navigation/FooterGroup.svelte';
63
+ import Pagination from './navigation/Pagination.svelte';
56
64
  import SideNav, { type SideNavItem, type SideNavSubItem } from './navigation/SideNav.svelte';
57
65
  import Tabs from './navigation/Tabs.svelte';
58
66
  import AlertDialog from './overlay/AlertDialog.svelte';
@@ -76,5 +84,5 @@ import { useAuth } from './hooks/use-auth.svelte.js';
76
84
  import { theme } from './stores/theme.svelte.js';
77
85
  import { useSearch } from './hooks/use-search.svelte.js';
78
86
  import { useChat } from './hooks/use-chat.svelte.js';
79
- export { AreaChart, ArcChart, BarChart, Candlestick, LineChart, PieChart, Alert, AlertDialog, AppBar, Accordion, Avatar, AvatarGroup, Audio, Badge, Button, BottomNav, Carousel, Card, ChatBox, Checkbox, Chip, Code, Collapsible, Command, ComboBox, CsvField, DateField, Drawer, Dropzone, Divider, Dropdown, Empty, Footer, FooterNav, FooterGroup, formatCurrency, formatDate, formatNumber, getWeekdays, i18n, Icon, IconButton, ImageCropper, Item, initLanguage, Modal, Marquee, NavMenu, PasswordField, PhoneField, PinField, plural, PopoverStack, Provider, RadioGroup, Record, Scaffold, Section, Select, setLanguage, Sidebar, SideNav, Slider, t, Table, Tabs, TextField, Textarea, theme, Toast, toast, Toggle, ToggleGroup, ToggleTheme, Tooltip, useAuth, useChat, useClipboard, useFetch, useForm, useLocalStorage, useScroll, useSearch, useTable, useWebSocket, Video };
80
- export type { IconData, SideNavItem, SideNavSubItem };
87
+ export { AreaChart, ArcChart, BarChart, Candlestick, LineChart, PieChart, Alert, AlertDialog, AppBar, Accordion, Avatar, AvatarGroup, Audio, Badge, Button, BottomNav, Carousel, Card, ChatBox, Checkbox, Chip, Code, ColorField, Collapsible, Command, ComboBox, CsvField, DateField, DateRange, Drawer, Dropzone, Divider, DragDrop, Dropdown, Editor, Empty, Footer, FooterNav, FooterGroup, formatCurrency, formatDate, formatNumber, getWeekdays, i18n, Icon, IconButton, Image, ImageCropper, Item, initLanguage, Modal, Map, Marquee, NavMenu, Pagination, PasswordField, PhoneField, PinField, plural, PopoverStack, Provider, RadioGroup, Record, Scaffold, Section, Skeleton, Select, setLanguage, Sidebar, SideNav, Slider, t, Table, Tabs, TextField, Textarea, theme, Toast, toast, Toggle, ToggleGroup, ToggleTheme, Tooltip, useAuth, useChat, useClipboard, useFetch, useForm, useLocalStorage, useScroll, useSearch, useTable, useWebSocket, Video };
88
+ export type { IconData, SideNavItem, SideNavSubItem, DragDropItem, DragDropGroup, PromptMessage, PromptState, LatLng, MapMarker, RouteInfo };
package/dist/index.js CHANGED
@@ -6,6 +6,7 @@ import LineChart from './charts/LineChart.svelte';
6
6
  import PieChart from './charts/PieChart.svelte';
7
7
  import Audio from './control/Audio.svelte';
8
8
  import Button from './control/Button.svelte';
9
+ import Image from './control/Image.svelte';
9
10
  import IconButton from './control/IconButton.svelte';
10
11
  import Record from './control/Record.svelte';
11
12
  import ToggleTheme from './control/ToggleTheme.svelte';
@@ -18,7 +19,7 @@ import AvatarGroup from './display/AvatarGroup.svelte';
18
19
  import Badge from './display/Badge.svelte';
19
20
  import Carousel from './display/Carousel.svelte';
20
21
  import Card from './display/Card.svelte';
21
- import ChatBox from './display/ChatBox.svelte';
22
+ import ChatBox, {} from './display/ChatBox.svelte';
22
23
  import Chip from './display/Chip.svelte';
23
24
  import Code from './display/Code.svelte';
24
25
  import Collapsible from './display/Collapsible.svelte';
@@ -28,12 +29,18 @@ import Icon, {} from './display/Icon.svelte';
28
29
  import Item from './display/Item.svelte';
29
30
  import Marquee from './display/Marquee.svelte';
30
31
  import Section from './display/Section.svelte';
32
+ import Skeleton from './display/Skeleton.svelte';
33
+ import Map, {} from './display/Map.svelte';
31
34
  import Table from './display/Table.svelte';
32
35
  import Checkbox from './form/Checkbox.svelte';
36
+ import ColorField from './form/ColorField.svelte';
33
37
  import ComboBox from './form/ComboBox.svelte';
34
38
  import CsvField from './form/CsvField.svelte';
35
39
  import DateField from './form/DateField.svelte';
40
+ import DateRange from './form/DateRange.svelte';
41
+ import DragDrop, {} from './form/DragDrop.svelte';
36
42
  import Dropzone from './form/Dropzone.svelte';
43
+ import Editor from './form/Editor.svelte';
37
44
  import ImageCropper from './form/ImageCropper.svelte';
38
45
  import TextField from './form/TextField.svelte';
39
46
  import PasswordField from './form/PasswordField.svelte';
@@ -53,6 +60,7 @@ import NavMenu from './navigation/NavMenu.svelte';
53
60
  import BottomNav from './navigation/BottomNav.svelte';
54
61
  import FooterNav from './navigation/FooterNav.svelte';
55
62
  import FooterGroup from './navigation/FooterGroup.svelte';
63
+ import Pagination from './navigation/Pagination.svelte';
56
64
  import SideNav, {} from './navigation/SideNav.svelte';
57
65
  import Tabs from './navigation/Tabs.svelte';
58
66
  import AlertDialog from './overlay/AlertDialog.svelte';
@@ -76,4 +84,4 @@ import { useAuth } from './hooks/use-auth.svelte.js';
76
84
  import { theme } from './stores/theme.svelte.js';
77
85
  import { useSearch } from './hooks/use-search.svelte.js';
78
86
  import { useChat } from './hooks/use-chat.svelte.js';
79
- export { AreaChart, ArcChart, BarChart, Candlestick, LineChart, PieChart, Alert, AlertDialog, AppBar, Accordion, Avatar, AvatarGroup, Audio, Badge, Button, BottomNav, Carousel, Card, ChatBox, Checkbox, Chip, Code, Collapsible, Command, ComboBox, CsvField, DateField, Drawer, Dropzone, Divider, Dropdown, Empty, Footer, FooterNav, FooterGroup, formatCurrency, formatDate, formatNumber, getWeekdays, i18n, Icon, IconButton, ImageCropper, Item, initLanguage, Modal, Marquee, NavMenu, PasswordField, PhoneField, PinField, plural, PopoverStack, Provider, RadioGroup, Record, Scaffold, Section, Select, setLanguage, Sidebar, SideNav, Slider, t, Table, Tabs, TextField, Textarea, theme, Toast, toast, Toggle, ToggleGroup, ToggleTheme, Tooltip, useAuth, useChat, useClipboard, useFetch, useForm, useLocalStorage, useScroll, useSearch, useTable, useWebSocket, Video };
87
+ export { AreaChart, ArcChart, BarChart, Candlestick, LineChart, PieChart, Alert, AlertDialog, AppBar, Accordion, Avatar, AvatarGroup, Audio, Badge, Button, BottomNav, Carousel, Card, ChatBox, Checkbox, Chip, Code, ColorField, Collapsible, Command, ComboBox, CsvField, DateField, DateRange, Drawer, Dropzone, Divider, DragDrop, Dropdown, Editor, Empty, Footer, FooterNav, FooterGroup, formatCurrency, formatDate, formatNumber, getWeekdays, i18n, Icon, IconButton, Image, ImageCropper, Item, initLanguage, Modal, Map, Marquee, NavMenu, Pagination, PasswordField, PhoneField, PinField, plural, PopoverStack, Provider, RadioGroup, Record, Scaffold, Section, Skeleton, Select, setLanguage, Sidebar, SideNav, Slider, t, Table, Tabs, TextField, Textarea, theme, Toast, toast, Toggle, ToggleGroup, ToggleTheme, Tooltip, useAuth, useChat, useClipboard, useFetch, useForm, useLocalStorage, useScroll, useSearch, useTable, useWebSocket, Video };