@solostylist/ui-kit 1.0.198 → 1.0.201

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 (210) hide show
  1. package/dist/{Select-80JhW337.js → Select-D2l9rDWL.js} +1594 -1594
  2. package/dist/entries/core.d.ts +15 -15
  3. package/dist/entries/core.js +98 -101
  4. package/dist/main.js +176 -179
  5. package/dist/s-blur-text/s-blur-text.js +25 -24
  6. package/dist/s-chat-message/s-chat-message.js +1 -1
  7. package/dist/s-comment-message/s-comment-message.js +1 -1
  8. package/dist/s-countdown/s-count-box.js +40 -37
  9. package/dist/s-countdown/s-count-down.js +73 -101
  10. package/dist/s-date-picker/s-date-picker.js +1 -1
  11. package/dist/s-datetime-picker/s-datetime-picker.js +1 -1
  12. package/dist/s-dialog-confirm/index.d.ts +1 -1
  13. package/dist/s-dialog-confirm/s-dialog-confirm.d.ts +1 -1
  14. package/dist/s-dialog-message/index.d.ts +1 -1
  15. package/dist/s-dialog-message/s-dialog-message.d.ts +1 -1
  16. package/dist/s-file-dropzone/s-file-dropzone.js +13 -13
  17. package/dist/s-link/index.d.ts +2 -0
  18. package/dist/s-link/index.js +4 -0
  19. package/dist/{s-button-link/s-button-link.d.ts → s-link/s-link.d.ts} +5 -5
  20. package/dist/s-link/s-link.js +37 -0
  21. package/dist/s-pixel-reveal/s-pixel-reveal.js +28 -28
  22. package/dist/s-review/s-review.js +1 -1
  23. package/dist/s-snackbar-message/s-snackbar-message.js +18 -18
  24. package/dist/s-text-editor/s-text-editor-toolbar.js +1 -1
  25. package/dist/s-theme-provider/s-theme-provider.js +24 -35
  26. package/dist/s-tool-bar/index.d.ts +2 -0
  27. package/dist/s-tool-bar/index.js +4 -0
  28. package/dist/{s-ai-tool-bar/s-ai-tool-bar.d.ts → s-tool-bar/s-tool-bar.d.ts} +23 -30
  29. package/dist/s-tool-bar/s-tool-bar.js +478 -0
  30. package/dist/theme/components/accordion-details.d.ts +8 -0
  31. package/dist/theme/components/accordion-details.js +8 -0
  32. package/dist/theme/components/accordion-summary.d.ts +1033 -0
  33. package/dist/theme/components/accordion-summary.js +17 -0
  34. package/dist/theme/components/accordion.d.ts +35 -0
  35. package/dist/theme/components/accordion.js +32 -0
  36. package/dist/theme/components/app-bar.d.ts +24 -0
  37. package/dist/theme/components/app-bar.js +18 -0
  38. package/dist/theme/components/autocomplete.d.ts +31 -0
  39. package/dist/theme/components/autocomplete.js +30 -0
  40. package/dist/theme/components/button-base.d.ts +12 -0
  41. package/dist/theme/components/button-base.js +15 -0
  42. package/dist/theme/components/card-actions.d.ts +7 -0
  43. package/dist/theme/components/card-actions.js +10 -0
  44. package/dist/theme/components/card-content.d.ts +7 -0
  45. package/dist/theme/components/card-content.js +11 -0
  46. package/dist/theme/components/card-header.d.ts +7 -0
  47. package/dist/theme/components/card-header.js +10 -0
  48. package/dist/theme/components/card.d.ts +2046 -0
  49. package/dist/theme/components/card.js +35 -0
  50. package/dist/theme/components/checkbox.d.ts +1046 -0
  51. package/dist/theme/components/checkbox.js +65 -0
  52. package/dist/theme/components/components.js +112 -30
  53. package/dist/theme/components/dialog-actions.d.ts +12 -0
  54. package/dist/theme/components/dialog-actions.js +10 -0
  55. package/dist/theme/components/dialog.d.ts +19 -0
  56. package/dist/theme/components/dialog.js +17 -0
  57. package/dist/theme/components/drawer.d.ts +12 -0
  58. package/dist/theme/components/drawer.js +10 -0
  59. package/dist/theme/components/form-label.d.ts +17 -0
  60. package/dist/theme/components/form-label.js +11 -0
  61. package/dist/theme/components/icon.d.ts +17 -0
  62. package/dist/theme/components/icon.js +22 -0
  63. package/dist/theme/components/input-adornment.d.ts +1027 -0
  64. package/dist/theme/components/input-adornment.js +13 -0
  65. package/dist/theme/components/input-base.d.ts +18 -0
  66. package/dist/theme/components/input-base.js +16 -0
  67. package/dist/theme/components/linear-progress.d.ts +1023 -0
  68. package/dist/theme/components/linear-progress.js +16 -0
  69. package/dist/theme/components/link.d.ts +42 -0
  70. package/dist/theme/components/link.js +38 -0
  71. package/dist/theme/components/list-item-button.d.ts +155 -0
  72. package/dist/theme/components/list-item-button.js +44 -0
  73. package/dist/theme/components/list-item-icon.d.ts +7 -0
  74. package/dist/theme/components/list-item-icon.js +10 -0
  75. package/dist/theme/components/list-item-text.d.ts +22 -0
  76. package/dist/theme/components/list-item-text.js +16 -0
  77. package/dist/theme/components/list-item.d.ts +92 -0
  78. package/dist/theme/components/list-item.js +20 -0
  79. package/dist/theme/components/list-subheader.d.ts +20 -0
  80. package/dist/theme/components/list-subheader.js +14 -0
  81. package/dist/theme/components/list.d.ts +10 -0
  82. package/dist/theme/components/list.js +13 -0
  83. package/dist/theme/components/menu-item.d.ts +8 -0
  84. package/dist/theme/components/menu-item.js +8 -0
  85. package/dist/theme/components/menu.d.ts +20 -0
  86. package/dist/theme/components/menu.js +23 -0
  87. package/dist/theme/components/outlined-input.d.ts +81 -0
  88. package/dist/theme/components/outlined-input.js +64 -0
  89. package/dist/theme/components/pagination-item.d.ts +1028 -0
  90. package/dist/theme/components/pagination-item.js +18 -0
  91. package/dist/theme/components/paper.d.ts +5 -0
  92. package/dist/theme/components/paper.js +8 -0
  93. package/dist/theme/components/select.d.ts +7 -0
  94. package/dist/theme/components/select.js +13 -0
  95. package/dist/theme/components/step-connector.d.ts +15 -0
  96. package/dist/theme/components/step-connector.js +13 -0
  97. package/dist/theme/components/step-icon.d.ts +1043 -0
  98. package/dist/theme/components/step-icon.js +46 -0
  99. package/dist/theme/components/step-label.d.ts +1025 -0
  100. package/dist/theme/components/step-label.js +13 -0
  101. package/dist/theme/components/tab.d.ts +1031 -0
  102. package/dist/theme/components/tab.js +34 -0
  103. package/dist/theme/components/table-cell.d.ts +12 -0
  104. package/dist/theme/components/table-cell.js +10 -0
  105. package/dist/theme/components/table-pagination.d.ts +14 -0
  106. package/dist/theme/components/table-pagination.js +18 -0
  107. package/dist/theme/components/tabs.d.ts +1046 -0
  108. package/dist/theme/components/tabs.js +24 -0
  109. package/dist/theme/components/toggle-button-group.d.ts +1024 -0
  110. package/dist/theme/components/toggle-button-group.js +23 -0
  111. package/dist/theme/components/toggle-button.d.ts +1027 -0
  112. package/dist/theme/components/toggle-button.js +21 -0
  113. package/dist/{useMobilePicker-DVnEuXv1.js → useMobilePicker-B-bNHHXB.js} +1 -1
  114. package/dist/utils/index.d.ts +0 -1
  115. package/dist/utils/index.js +7 -9
  116. package/dist/{utils-CHdpkEZx.js → utils-D1UMIV0b.js} +13 -6
  117. package/package.json +10 -5
  118. package/dist/s-accordion/package.json +0 -5
  119. package/dist/s-action-overlay/package.json +0 -5
  120. package/dist/s-ai-tool-bar/index.d.ts +0 -2
  121. package/dist/s-ai-tool-bar/index.js +0 -5
  122. package/dist/s-ai-tool-bar/package.json +0 -5
  123. package/dist/s-ai-tool-bar/s-ai-tool-bar.js +0 -481
  124. package/dist/s-autocomplete/package.json +0 -5
  125. package/dist/s-avatar/package.json +0 -5
  126. package/dist/s-blur-text/package.json +0 -5
  127. package/dist/s-breadcrumbs/package.json +0 -5
  128. package/dist/s-button/package.json +0 -5
  129. package/dist/s-button-link/index.d.ts +0 -2
  130. package/dist/s-button-link/index.js +0 -4
  131. package/dist/s-button-link/package.json +0 -5
  132. package/dist/s-button-link/s-button-link.js +0 -37
  133. package/dist/s-carousel/package.json +0 -5
  134. package/dist/s-category-card/package.json +0 -5
  135. package/dist/s-chat-input/package.json +0 -5
  136. package/dist/s-chat-message/package.json +0 -5
  137. package/dist/s-checkbox/package.json +0 -5
  138. package/dist/s-chip/package.json +0 -5
  139. package/dist/s-chips/package.json +0 -5
  140. package/dist/s-code-block/package.json +0 -5
  141. package/dist/s-comment-message/package.json +0 -5
  142. package/dist/s-copyable-text/package.json +0 -5
  143. package/dist/s-countdown/package.json +0 -5
  144. package/dist/s-data-table/package.json +0 -5
  145. package/dist/s-date-picker/package.json +0 -5
  146. package/dist/s-datetime-picker/package.json +0 -5
  147. package/dist/s-dialog/package.json +0 -5
  148. package/dist/s-dialog-confirm/package.json +0 -5
  149. package/dist/s-dialog-message/package.json +0 -5
  150. package/dist/s-empty/package.json +0 -5
  151. package/dist/s-error/package.json +0 -5
  152. package/dist/s-error-layout/package.json +0 -5
  153. package/dist/s-file-dropzone/package.json +0 -5
  154. package/dist/s-file-icon/package.json +0 -5
  155. package/dist/s-flex-box/package.json +0 -5
  156. package/dist/s-form/package.json +0 -5
  157. package/dist/s-gallery/package.json +0 -5
  158. package/dist/s-glow-button/package.json +0 -5
  159. package/dist/s-gradient-icon/package.json +0 -5
  160. package/dist/s-i18n-provider/package.json +0 -5
  161. package/dist/s-icon-button/package.json +0 -5
  162. package/dist/s-image-comparison/package.json +0 -5
  163. package/dist/s-image-modal/package.json +0 -5
  164. package/dist/s-item-not-found/package.json +0 -5
  165. package/dist/s-label/package.json +0 -5
  166. package/dist/s-language-switcher/package.json +0 -5
  167. package/dist/s-lazy-image/package.json +0 -5
  168. package/dist/s-localization-provider/package.json +0 -5
  169. package/dist/s-moving-border/package.json +0 -5
  170. package/dist/s-multi-select/package.json +0 -5
  171. package/dist/s-no-ssr/package.json +0 -5
  172. package/dist/s-overlay-scrollbar/package.json +0 -5
  173. package/dist/s-pagination/package.json +0 -5
  174. package/dist/s-pixel-reveal/package.json +0 -5
  175. package/dist/s-radial-pulse-animate/package.json +0 -5
  176. package/dist/s-rating/package.json +0 -5
  177. package/dist/s-review/package.json +0 -5
  178. package/dist/s-scroll-reveal/package.json +0 -6
  179. package/dist/s-scroll-to-top/package.json +0 -5
  180. package/dist/s-scroll-velocity/package.json +0 -5
  181. package/dist/s-select/package.json +0 -5
  182. package/dist/s-select-list/package.json +0 -5
  183. package/dist/s-skeleton/package.json +0 -5
  184. package/dist/s-snackbar-message/package.json +0 -5
  185. package/dist/s-spotlight-cursor/package.json +0 -5
  186. package/dist/s-stripe/package.json +0 -5
  187. package/dist/s-tabs/package.json +0 -4
  188. package/dist/s-text-editor/package.json +0 -5
  189. package/dist/s-text-field/package.json +0 -5
  190. package/dist/s-text-shimmer/package.json +0 -5
  191. package/dist/s-text-truncation/package.json +0 -5
  192. package/dist/s-theme-demo/package.json +0 -5
  193. package/dist/s-theme-provider/package.json +0 -5
  194. package/dist/s-theme-switch/package.json +0 -5
  195. package/dist/s-tip/package.json +0 -5
  196. package/dist/s-two-pane-layout/package.json +0 -5
  197. package/dist/s-typewriter-text/package.json +0 -6
  198. package/dist/s-zoom-image/package.json +0 -5
  199. package/dist/theme/customizations/data-display.d.ts +0 -2
  200. package/dist/theme/customizations/data-display.js +0 -142
  201. package/dist/theme/customizations/feedback.d.ts +0 -2
  202. package/dist/theme/customizations/feedback.js +0 -39
  203. package/dist/theme/customizations/inputs.d.ts +0 -2
  204. package/dist/theme/customizations/inputs.js +0 -230
  205. package/dist/theme/customizations/navigation.d.ts +0 -2
  206. package/dist/theme/customizations/navigation.js +0 -226
  207. package/dist/theme/customizations/surfaces.d.ts +0 -2
  208. package/dist/theme/customizations/surfaces.js +0 -111
  209. package/dist/utils/bytes-to-size.d.ts +0 -1
  210. package/dist/utils/bytes-to-size.js +0 -9
package/dist/main.js CHANGED
@@ -1,199 +1,196 @@
1
1
  import { SAccordion as m } from "./s-accordion/s-accordion.js";
2
2
  import { SActionOverlay as S } from "./s-action-overlay/s-action-overlay.js";
3
- import { SAiToolBar as f, SAiToolBarInputType as a } from "./s-ai-tool-bar/s-ai-tool-bar.js";
4
- import { SAutocomplete as l } from "./s-autocomplete/s-autocomplete.js";
5
- import { SAvatar as s } from "./s-avatar/s-avatar.js";
6
- import { SBreadcrumbs as u } from "./s-breadcrumbs/s-breadcrumbs.js";
7
- import { SButton as d } from "./s-button/s-button.js";
8
- import { SButtonLink as C } from "./s-button-link/s-button-link.js";
9
- import { SChatMessage as y } from "./s-chat-message/s-chat-message.js";
10
- import { SCommentMessage as b } from "./s-comment-message/s-comment-message.js";
11
- import { SCheckbox as D } from "./s-checkbox/s-checkbox.js";
3
+ import { SToolBar as f } from "./s-tool-bar/s-tool-bar.js";
4
+ import { SAutocomplete as i } from "./s-autocomplete/s-autocomplete.js";
5
+ import { SAvatar as n } from "./s-avatar/s-avatar.js";
6
+ import { SBreadcrumbs as g } from "./s-breadcrumbs/s-breadcrumbs.js";
7
+ import { SButton as c } from "./s-button/s-button.js";
8
+ import { SLink as T } from "./s-link/s-link.js";
9
+ import { SChatMessage as P } from "./s-chat-message/s-chat-message.js";
10
+ import { SCommentMessage as y } from "./s-comment-message/s-comment-message.js";
11
+ import { SCheckbox as b } from "./s-checkbox/s-checkbox.js";
12
12
  import { SSwitch as h } from "./s-switch/s-switch.js";
13
13
  import { SChip as M } from "./s-chip/s-chip.js";
14
- import { SChips as w } from "./s-chips/s-chips.js";
14
+ import { SChips as k } from "./s-chips/s-chips.js";
15
15
  import { SDataTable as F } from "./s-data-table/s-data-table.js";
16
- import { SDialog as E } from "./s-dialog/s-dialog.js";
17
- import { DialogConfirmProvider as V, SDialogConfirm as G, useDialogConfirm as N } from "./s-dialog-confirm/s-dialog-confirm.js";
18
- import { DialogMessageProvider as j, SDialogMessage as Z, useDialogMessage as q } from "./s-dialog-message/s-dialog-message.js";
19
- import { SEmpty as J } from "./s-empty/s-empty.js";
20
- import { SError as Q } from "./s-error/s-error.js";
21
- import { SErrorLayout as W } from "./s-error-layout/s-error-layout.js";
22
- import { SFileIcon as Y } from "./s-file-icon/s-file-icon.js";
23
- import { SFlexBox as $ } from "./s-flex-box/s-flex-box.js";
24
- import { SForm as ro } from "./s-form/s-form.js";
25
- import { SGradientIcon as to } from "./s-gradient-icon/s-gradient-icon.js";
26
- import { SIconButton as po } from "./s-icon-button/s-icon-button.js";
27
- import { SItemNotFound as xo } from "./s-item-not-found/s-item-not-found.js";
28
- import { SLabel as ao } from "./s-label/s-label.js";
29
- import { SMultiSelect as lo } from "./s-multi-select/s-multi-select.js";
30
- import { SNoSsr as so } from "./s-no-ssr/s-no-ssr.js";
31
- import { SPagination as uo } from "./s-pagination/s-pagination.js";
32
- import { SRating as To } from "./s-rating/s-rating.js";
33
- import { SReview as Po } from "./s-review/s-review.js";
16
+ import { SDialog as R } from "./s-dialog/s-dialog.js";
17
+ import { DialogConfirmProvider as V, SDialogConfirm as z, useDialogConfirm as G } from "./s-dialog-confirm/s-dialog-confirm.js";
18
+ import { DialogMessageProvider as O, SDialogMessage as j, useDialogMessage as Z } from "./s-dialog-message/s-dialog-message.js";
19
+ import { SEmpty as H } from "./s-empty/s-empty.js";
20
+ import { SError as K } from "./s-error/s-error.js";
21
+ import { SErrorLayout as U } from "./s-error-layout/s-error-layout.js";
22
+ import { SFileIcon as X } from "./s-file-icon/s-file-icon.js";
23
+ import { SFlexBox as _ } from "./s-flex-box/s-flex-box.js";
24
+ import { SForm as oo } from "./s-form/s-form.js";
25
+ import { SGradientIcon as eo } from "./s-gradient-icon/s-gradient-icon.js";
26
+ import { SIconButton as mo } from "./s-icon-button/s-icon-button.js";
27
+ import { SItemNotFound as So } from "./s-item-not-found/s-item-not-found.js";
28
+ import { SLabel as fo } from "./s-label/s-label.js";
29
+ import { SMultiSelect as io } from "./s-multi-select/s-multi-select.js";
30
+ import { SNoSsr as no } from "./s-no-ssr/s-no-ssr.js";
31
+ import { SPagination as go } from "./s-pagination/s-pagination.js";
32
+ import { SRating as co } from "./s-rating/s-rating.js";
33
+ import { SReview as Co } from "./s-review/s-review.js";
34
34
  import { SSelect as vo } from "./s-select/s-select.js";
35
35
  import { SSelectList as Lo } from "./s-select-list/s-select-list.js";
36
- import { SSkeleton as Io } from "./s-skeleton/s-skeleton.js";
37
- import { SSnackbarMessage as Bo, SnackbarMessageProvider as Mo, useSnackbarMessage as ko } from "./s-snackbar-message/s-snackbar-message.js";
38
- import { STabs as Ao } from "./s-tabs/s-tabs.js";
39
- import { default as Ro } from "./s-tabs/s-tab.js";
40
- import { STabPanel as zo } from "./s-tabs/s-tab-panel.js";
41
- import { STextField as Go } from "./s-text-field/s-text-field.js";
42
- import { STextTruncation as Oo } from "./s-text-truncation/s-text-truncation.js";
43
- import { STip as Zo } from "./s-tip/s-tip.js";
44
- import { STwoPaneLayout as Ho } from "./s-two-pane-layout/s-two-pane-layout.js";
45
- import { SCopyableText as Ko } from "./s-copyable-text/s-copyable-text.js";
46
- import { SCategoryCard as Uo } from "./s-category-card/s-category-card.js";
47
- import { SThemeProvider as Xo } from "./s-theme-provider/s-theme-provider.js";
48
- import { default as _o } from "./s-theme-switch/s-theme-switch.js";
49
- import { useDialog as or } from "./hooks/use-dialog.js";
50
- import { usePopover as er } from "./hooks/use-popover.js";
36
+ import { SSkeleton as Do } from "./s-skeleton/s-skeleton.js";
37
+ import { SSnackbarMessage as Io, SnackbarMessageProvider as Mo, useSnackbarMessage as Bo } from "./s-snackbar-message/s-snackbar-message.js";
38
+ import { STabs as wo } from "./s-tabs/s-tabs.js";
39
+ import { default as Ao } from "./s-tabs/s-tab.js";
40
+ import { STabPanel as Eo } from "./s-tabs/s-tab-panel.js";
41
+ import { STextField as zo } from "./s-text-field/s-text-field.js";
42
+ import { STextTruncation as No } from "./s-text-truncation/s-text-truncation.js";
43
+ import { STip as jo } from "./s-tip/s-tip.js";
44
+ import { STwoPaneLayout as qo } from "./s-two-pane-layout/s-two-pane-layout.js";
45
+ import { SCopyableText as Jo } from "./s-copyable-text/s-copyable-text.js";
46
+ import { SCategoryCard as Qo } from "./s-category-card/s-category-card.js";
47
+ import { SThemeProvider as Wo } from "./s-theme-provider/s-theme-provider.js";
48
+ import { default as Yo } from "./s-theme-switch/s-theme-switch.js";
49
+ import { useDialog as $o } from "./hooks/use-dialog.js";
50
+ import { usePopover as rr } from "./hooks/use-popover.js";
51
51
  import "react";
52
- import { useScrollAnimation as mr } from "./hooks/use-scroll-animation.js";
53
- import { useIsPassedPosition as Sr } from "./hooks/use-is-passed-position.js";
54
- import { formatDatePosted as fr } from "./utils/dayjs.js";
55
- import { bytesToSize as ir } from "./utils/bytes-to-size.js";
56
- import { LogLevel as nr, Logger as sr, createLogger as gr, logger as ur } from "./utils/logger.js";
57
- import { SDatePicker as dr } from "./s-date-picker/s-date-picker.js";
58
- import { SDateTimePicker as Cr } from "./s-datetime-picker/s-datetime-picker.js";
59
- import { SLocalizationProvider as yr } from "./s-localization-provider/s-localization-provider.js";
60
- import { SCountdown as br } from "./s-countdown/s-count-down.js";
61
- import { SCountBox as Dr } from "./s-countdown/s-count-box.js";
62
- import { STextEditor as hr } from "./s-text-editor/s-text-editor.js";
52
+ import { useScrollAnimation as tr } from "./hooks/use-scroll-animation.js";
53
+ import { useIsPassedPosition as pr } from "./hooks/use-is-passed-position.js";
54
+ import { formatDatePosted as xr } from "./utils/dayjs.js";
55
+ import { LogLevel as ar, Logger as ir, createLogger as lr, logger as nr } from "./utils/logger.js";
56
+ import { SDatePicker as gr } from "./s-date-picker/s-date-picker.js";
57
+ import { SDateTimePicker as cr } from "./s-datetime-picker/s-datetime-picker.js";
58
+ import { SLocalizationProvider as Tr } from "./s-localization-provider/s-localization-provider.js";
59
+ import { SCountdown as Pr } from "./s-countdown/s-count-down.js";
60
+ import { SCountBox as yr } from "./s-countdown/s-count-box.js";
61
+ import { STextEditor as br } from "./s-text-editor/s-text-editor.js";
63
62
  import "./s-text-editor/s-text-editor-toolbar.js";
64
- import { StripeTextField as Mr } from "./s-stripe/s-stripe.js";
65
- import { SStripeNumber as wr } from "./s-stripe/s-stripe-number.js";
66
- import { SStripeExpiry as Fr } from "./s-stripe/s-stripe-expiry.js";
67
- import { SStripeCVC as Er } from "./s-stripe/s-stripe-cvc.js";
68
- import { SBlurText as Vr } from "./s-blur-text/s-blur-text.js";
69
- import { default as Nr } from "./s-glow-button/s-glow-button.js";
70
- import { SMovingBorder as jr } from "./s-moving-border/s-moving-border.js";
71
- import { SPixelReveal as qr } from "./s-pixel-reveal/s-pixel-reveal.js";
72
- import { SRadialPulseAnimate as Jr } from "./s-radial-pulse-animate/s-radial-pulse-animate.js";
73
- import { SScrollReveal as Qr } from "./s-scroll-reveal/s-scroll-reveal.js";
74
- import { SScrollToTop as Wr } from "./s-scroll-to-top/s-scroll-to-top.js";
75
- import { SScrollVelocity as Yr } from "./s-scroll-velocity/s-scroll-velocity.js";
76
- import { ScrollVelocityContainer as $r } from "./s-scroll-velocity/scroll-velocity-container.js";
77
- import { ScrollVelocityRow as re } from "./s-scroll-velocity/scroll-velocity-row.js";
78
- import { SSpotlightCursor as te } from "./s-spotlight-cursor/s-spotlight-cursor.js";
79
- import { STextShimmer as pe } from "./s-text-shimmer/s-text-shimmer.js";
80
- import { STypewriterText as xe } from "./s-typewriter-text/s-typewriter-text.js";
81
- import { MediaItem as ae, SGallery as ie } from "./s-gallery/s-gallery.js";
82
- import { default as ne } from "./s-image-comparison/s-image-comparison.js";
83
- import { SImageModal as ge } from "./s-image-modal/s-image-modal.js";
84
- import { default as ce } from "./s-lazy-image/s-lazy-image.js";
85
- import { SZoomImage as Te } from "./s-zoom-image/s-zoom-image.js";
86
- import { SCarousel as Pe } from "./s-carousel/s-carousel.js";
87
- import { SChatInput as ve } from "./s-chat-input/s-chat-input.js";
88
- import { SFileDropzone as Le } from "./s-file-dropzone/s-file-dropzone.js";
89
- import { SCodeBlock as Ie } from "./s-code-block/s-code-block.js";
90
- import { SOverlayScrollbar as Be } from "./s-overlay-scrollbar/s-overlay-scrollbar.js";
91
- import { SI18nProvider as ke } from "./s-i18n-provider/s-i18n-provider.js";
92
- import { SLanguagePopover as Ae, SLanguageSwitcher as Fe, defaultLanguageOptions as Re } from "./s-language-switcher/s-language-switcher.js";
93
- import { default as ze } from "dayjs";
63
+ import { StripeTextField as hr } from "./s-stripe/s-stripe.js";
64
+ import { SStripeNumber as Mr } from "./s-stripe/s-stripe-number.js";
65
+ import { SStripeExpiry as kr } from "./s-stripe/s-stripe-expiry.js";
66
+ import { SStripeCVC as Fr } from "./s-stripe/s-stripe-cvc.js";
67
+ import { SBlurText as Rr } from "./s-blur-text/s-blur-text.js";
68
+ import { default as Vr } from "./s-glow-button/s-glow-button.js";
69
+ import { SMovingBorder as Gr } from "./s-moving-border/s-moving-border.js";
70
+ import { SPixelReveal as Or } from "./s-pixel-reveal/s-pixel-reveal.js";
71
+ import { SRadialPulseAnimate as Zr } from "./s-radial-pulse-animate/s-radial-pulse-animate.js";
72
+ import { SScrollReveal as Hr } from "./s-scroll-reveal/s-scroll-reveal.js";
73
+ import { SScrollToTop as Kr } from "./s-scroll-to-top/s-scroll-to-top.js";
74
+ import { SScrollVelocity as Ur } from "./s-scroll-velocity/s-scroll-velocity.js";
75
+ import { ScrollVelocityContainer as Xr } from "./s-scroll-velocity/scroll-velocity-container.js";
76
+ import { ScrollVelocityRow as _r } from "./s-scroll-velocity/scroll-velocity-row.js";
77
+ import { SSpotlightCursor as oe } from "./s-spotlight-cursor/s-spotlight-cursor.js";
78
+ import { STextShimmer as ee } from "./s-text-shimmer/s-text-shimmer.js";
79
+ import { STypewriterText as me } from "./s-typewriter-text/s-typewriter-text.js";
80
+ import { MediaItem as Se, SGallery as xe } from "./s-gallery/s-gallery.js";
81
+ import { default as ae } from "./s-image-comparison/s-image-comparison.js";
82
+ import { SImageModal as le } from "./s-image-modal/s-image-modal.js";
83
+ import { default as se } from "./s-lazy-image/s-lazy-image.js";
84
+ import { SZoomImage as ue } from "./s-zoom-image/s-zoom-image.js";
85
+ import { SCarousel as de } from "./s-carousel/s-carousel.js";
86
+ import { SChatInput as Ce } from "./s-chat-input/s-chat-input.js";
87
+ import { SFileDropzone as ve } from "./s-file-dropzone/s-file-dropzone.js";
88
+ import { SCodeBlock as Le } from "./s-code-block/s-code-block.js";
89
+ import { SOverlayScrollbar as De } from "./s-overlay-scrollbar/s-overlay-scrollbar.js";
90
+ import { SI18nProvider as Ie } from "./s-i18n-provider/s-i18n-provider.js";
91
+ import { SLanguagePopover as Be, SLanguageSwitcher as ke, defaultLanguageOptions as we } from "./s-language-switcher/s-language-switcher.js";
92
+ import { default as Ae } from "dayjs";
94
93
  export {
95
94
  V as DialogConfirmProvider,
96
- j as DialogMessageProvider,
97
- nr as LogLevel,
98
- sr as Logger,
99
- ae as MediaItem,
95
+ O as DialogMessageProvider,
96
+ ar as LogLevel,
97
+ ir as Logger,
98
+ Se as MediaItem,
100
99
  m as SAccordion,
101
100
  S as SActionOverlay,
102
- f as SAiToolBar,
103
- a as SAiToolBarInputType,
104
- l as SAutocomplete,
105
- s as SAvatar,
106
- Vr as SBlurText,
107
- u as SBreadcrumbs,
108
- d as SButton,
109
- C as SButtonLink,
110
- Pe as SCarousel,
111
- Uo as SCategoryCard,
112
- ve as SChatInput,
113
- y as SChatMessage,
114
- D as SCheckbox,
101
+ i as SAutocomplete,
102
+ n as SAvatar,
103
+ Rr as SBlurText,
104
+ g as SBreadcrumbs,
105
+ c as SButton,
106
+ de as SCarousel,
107
+ Qo as SCategoryCard,
108
+ Ce as SChatInput,
109
+ P as SChatMessage,
110
+ b as SCheckbox,
115
111
  M as SChip,
116
- w as SChips,
117
- Ie as SCodeBlock,
118
- b as SCommentMessage,
119
- Ko as SCopyableText,
120
- Dr as SCountBox,
121
- br as SCountdown,
112
+ k as SChips,
113
+ Le as SCodeBlock,
114
+ y as SCommentMessage,
115
+ Jo as SCopyableText,
116
+ yr as SCountBox,
117
+ Pr as SCountdown,
122
118
  F as SDataTable,
123
- dr as SDatePicker,
124
- Cr as SDateTimePicker,
125
- E as SDialog,
126
- G as SDialogConfirm,
127
- Z as SDialogMessage,
128
- J as SEmpty,
129
- Q as SError,
130
- W as SErrorLayout,
131
- Le as SFileDropzone,
132
- Y as SFileIcon,
133
- $ as SFlexBox,
134
- ro as SForm,
135
- ie as SGallery,
136
- Nr as SGlowButton,
137
- to as SGradientIcon,
138
- ke as SI18nProvider,
139
- po as SIconButton,
140
- ne as SImageComparison,
141
- ge as SImageModal,
142
- xo as SItemNotFound,
143
- ao as SLabel,
144
- Ae as SLanguagePopover,
145
- Fe as SLanguageSwitcher,
146
- ce as SLazyImage,
147
- yr as SLocalizationProvider,
148
- jr as SMovingBorder,
149
- lo as SMultiSelect,
150
- so as SNoSsr,
151
- Be as SOverlayScrollbar,
152
- uo as SPagination,
153
- qr as SPixelReveal,
154
- Jr as SRadialPulseAnimate,
155
- To as SRating,
156
- Po as SReview,
157
- Qr as SScrollReveal,
158
- Wr as SScrollToTop,
159
- Yr as SScrollVelocity,
119
+ gr as SDatePicker,
120
+ cr as SDateTimePicker,
121
+ R as SDialog,
122
+ z as SDialogConfirm,
123
+ j as SDialogMessage,
124
+ H as SEmpty,
125
+ K as SError,
126
+ U as SErrorLayout,
127
+ ve as SFileDropzone,
128
+ X as SFileIcon,
129
+ _ as SFlexBox,
130
+ oo as SForm,
131
+ xe as SGallery,
132
+ Vr as SGlowButton,
133
+ eo as SGradientIcon,
134
+ Ie as SI18nProvider,
135
+ mo as SIconButton,
136
+ ae as SImageComparison,
137
+ le as SImageModal,
138
+ So as SItemNotFound,
139
+ fo as SLabel,
140
+ Be as SLanguagePopover,
141
+ ke as SLanguageSwitcher,
142
+ se as SLazyImage,
143
+ T as SLink,
144
+ Tr as SLocalizationProvider,
145
+ Gr as SMovingBorder,
146
+ io as SMultiSelect,
147
+ no as SNoSsr,
148
+ De as SOverlayScrollbar,
149
+ go as SPagination,
150
+ Or as SPixelReveal,
151
+ Zr as SRadialPulseAnimate,
152
+ co as SRating,
153
+ Co as SReview,
154
+ Hr as SScrollReveal,
155
+ Kr as SScrollToTop,
156
+ Ur as SScrollVelocity,
160
157
  vo as SSelect,
161
158
  Lo as SSelectList,
162
- Io as SSkeleton,
163
- Bo as SSnackbarMessage,
164
- te as SSpotlightCursor,
165
- Er as SStripeCVC,
166
- Fr as SStripeExpiry,
167
- wr as SStripeNumber,
159
+ Do as SSkeleton,
160
+ Io as SSnackbarMessage,
161
+ oe as SSpotlightCursor,
162
+ Fr as SStripeCVC,
163
+ kr as SStripeExpiry,
164
+ Mr as SStripeNumber,
168
165
  h as SSwitch,
169
- Ro as STab,
170
- zo as STabPanel,
171
- Ao as STabs,
172
- hr as STextEditor,
173
- Go as STextField,
174
- pe as STextShimmer,
175
- Oo as STextTruncation,
176
- Xo as SThemeProvider,
177
- _o as SThemeSwitch,
178
- Zo as STip,
179
- Ho as STwoPaneLayout,
180
- xe as STypewriterText,
181
- Te as SZoomImage,
182
- $r as ScrollVelocityContainer,
183
- re as ScrollVelocityRow,
166
+ Ao as STab,
167
+ Eo as STabPanel,
168
+ wo as STabs,
169
+ br as STextEditor,
170
+ zo as STextField,
171
+ ee as STextShimmer,
172
+ No as STextTruncation,
173
+ Wo as SThemeProvider,
174
+ Yo as SThemeSwitch,
175
+ jo as STip,
176
+ f as SToolBar,
177
+ qo as STwoPaneLayout,
178
+ me as STypewriterText,
179
+ ue as SZoomImage,
180
+ Xr as ScrollVelocityContainer,
181
+ _r as ScrollVelocityRow,
184
182
  Mo as SnackbarMessageProvider,
185
- Mr as StripeTextField,
186
- ir as bytesToSize,
187
- gr as createLogger,
188
- ze as dayjs,
189
- Re as defaultLanguageOptions,
190
- fr as formatDatePosted,
191
- ur as logger,
192
- or as useDialog,
193
- N as useDialogConfirm,
194
- q as useDialogMessage,
195
- Sr as useIsPassedPosition,
196
- er as usePopover,
197
- mr as useScrollAnimation,
198
- ko as useSnackbarMessage
183
+ hr as StripeTextField,
184
+ lr as createLogger,
185
+ Ae as dayjs,
186
+ we as defaultLanguageOptions,
187
+ xr as formatDatePosted,
188
+ nr as logger,
189
+ $o as useDialog,
190
+ G as useDialogConfirm,
191
+ Z as useDialogMessage,
192
+ pr as useIsPassedPosition,
193
+ rr as usePopover,
194
+ tr as useScrollAnimation,
195
+ Bo as useSnackbarMessage
199
196
  };
@@ -1,5 +1,5 @@
1
- import { j as y } from "../jsx-runtime-tc70JA_2.js";
2
- import { useState as K, useRef as R, useEffect as V, useMemo as b } from "react";
1
+ import { j as m } from "../jsx-runtime-tc70JA_2.js";
2
+ import { useState as K, useRef as R, useEffect as V, useMemo as y } from "react";
3
3
  import { Typography as B } from "@mui/material";
4
4
  import { motion as D } from "framer-motion";
5
5
  const F = (s, a) => {
@@ -14,30 +14,30 @@ const F = (s, a) => {
14
14
  direction: o = "top",
15
15
  threshold: t = 0.1,
16
16
  rootMargin: l = "0px",
17
- animationFrom: d,
18
- animationTo: h,
19
- easing: w = (n) => n,
20
- onAnimationComplete: x,
21
- stepDuration: j = 0.35,
22
- variant: S = "body1",
23
- sx: g,
24
- ...v
17
+ animationFrom: b,
18
+ animationTo: d,
19
+ easing: h = (n) => n,
20
+ onAnimationComplete: w,
21
+ stepDuration: x = 0.35,
22
+ variant: j = "body1",
23
+ sx: S,
24
+ ...g
25
25
  }) => {
26
- const n = i === "words" ? s.split(" ") : s.split(""), [T, k] = K(!1), c = R(null);
26
+ const n = i === "words" ? s.split(" ") : s.split(""), [v, T] = K(!1), c = R(null);
27
27
  V(() => {
28
28
  if (!c.current) return;
29
29
  const r = new IntersectionObserver(
30
30
  ([e]) => {
31
- e.isIntersecting && (k(!0), r.unobserve(c.current));
31
+ e.isIntersecting && (T(!0), r.unobserve(c.current));
32
32
  },
33
33
  { threshold: t, rootMargin: l }
34
34
  );
35
35
  return r.observe(c.current), () => r.disconnect();
36
36
  }, [t, l]);
37
- const C = b(
37
+ const k = y(
38
38
  () => o === "top" ? { filter: "blur(10px)", opacity: 0, y: -50 } : { filter: "blur(10px)", opacity: 0, y: 50 },
39
39
  [o]
40
- ), E = b(
40
+ ), C = y(
41
41
  () => [
42
42
  {
43
43
  filter: "blur(5px)",
@@ -47,20 +47,21 @@ const F = (s, a) => {
47
47
  { filter: "blur(0px)", opacity: 1, y: 0 }
48
48
  ],
49
49
  [o]
50
- ), u = d ?? C, f = h ?? E, p = f.length + 1, I = j * (p - 1), O = Array.from({ length: p }, (r, e) => p === 1 ? 0 : e / (p - 1));
51
- return /* @__PURE__ */ y.jsx(B, { ref: c, variant: S, sx: g, ...v, children: n.map((r, e) => {
52
- const A = F(u, f), m = {
53
- duration: I,
54
- times: O,
55
- delay: e * a / 1e3
50
+ ), u = b ?? k, f = d ?? C, p = f.length + 1, E = x * (p - 1), I = Array.from({ length: p }, (r, e) => p === 1 ? 0 : e / (p - 1));
51
+ return /* @__PURE__ */ m.jsx(B, { ref: c, variant: j, sx: S, ...g, children: n.map((r, e) => {
52
+ const O = F(u, f), A = {
53
+ duration: E,
54
+ times: I,
55
+ delay: e * a / 1e3,
56
+ ease: h
56
57
  };
57
- return m.ease = w, /* @__PURE__ */ y.jsxs(
58
+ return /* @__PURE__ */ m.jsxs(
58
59
  D.span,
59
60
  {
60
61
  initial: u,
61
- animate: T ? A : u,
62
- transition: m,
63
- onAnimationComplete: e === n.length - 1 ? x : void 0,
62
+ animate: v ? O : u,
63
+ transition: A,
64
+ onAnimationComplete: e === n.length - 1 ? w : void 0,
64
65
  style: {
65
66
  display: "inline-block",
66
67
  willChange: "transform, filter, opacity"
@@ -6,7 +6,7 @@ import { SImageModal as P } from "../s-image-modal/s-image-modal.js";
6
6
  import U from "../s-lazy-image/s-lazy-image.js";
7
7
  import { SSkeleton as t } from "../s-skeleton/s-skeleton.js";
8
8
  import { c as v } from "../createSvgIcon-BkbeLOhM.js";
9
- import { f as H, a as q } from "../utils-CHdpkEZx.js";
9
+ import { f as H, a as q } from "../utils-D1UMIV0b.js";
10
10
  import { D as E } from "../Download-BoRQUwCf.js";
11
11
  const G = v(/* @__PURE__ */ e.jsx("path", {
12
12
  d: "M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2M12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8"
@@ -3,7 +3,7 @@ import { useId as N, useState as v, useEffect as R } from "react";
3
3
  import { Box as i, Stack as n, Typography as a, IconButton as O, Button as k, Collapse as Q } from "@mui/material";
4
4
  import { SAvatar as U } from "../s-avatar/s-avatar.js";
5
5
  import { SSkeleton as e } from "../s-skeleton/s-skeleton.js";
6
- import { g as X } from "../utils-CHdpkEZx.js";
6
+ import { g as X } from "../utils-D1UMIV0b.js";
7
7
  import { F as Y } from "../Favorite-Bz_HcMgN.js";
8
8
  import { c as I } from "../createSvgIcon-BkbeLOhM.js";
9
9
  import { E as Z } from "../ExpandMore-C7yRQv1-.js";
@@ -1,23 +1,23 @@
1
1
  import { j as t } from "../jsx-runtime-tc70JA_2.js";
2
- import { Typography as r, Fade as H, Slide as v } from "@mui/material";
3
- import { SFlexBox as c } from "../s-flex-box/s-flex-box.js";
4
- const B = ({
5
- digit: d = 0,
6
- title: m = "",
7
- size: x = "medium",
8
- color: l = "inherit",
9
- animation: o = "none",
2
+ import { Typography as l, Fade as v, Slide as B } from "@mui/material";
3
+ import { SFlexBox as d } from "../s-flex-box/s-flex-box.js";
4
+ const C = ({
5
+ digit: m = 0,
6
+ title: x = "",
7
+ size: f = "medium",
8
+ color: o = "inherit",
9
+ animation: s = "none",
10
10
  sx: g,
11
- digitSx: f,
12
- titleSx: p,
13
- showSeparator: h = !1,
14
- separator: u = ":",
15
- digitFormat: S = "default",
16
- hidden: j = !1
11
+ digitSx: p,
12
+ titleSx: h,
13
+ showSeparator: u = !1,
14
+ separator: S = ":",
15
+ digitFormat: j = "default",
16
+ hidden: y = !1
17
17
  }) => {
18
- if (j) return null;
19
- const y = (a) => S === "padded" ? a.toString().padStart(2, "0") : a.toString(), e = (() => {
20
- switch (x) {
18
+ if (y) return null;
19
+ const z = (c) => j === "padded" ? c.toString().padStart(2, "0") : c.toString(), e = (() => {
20
+ switch (f) {
21
21
  case "small":
22
22
  return {
23
23
  digit: { fontSize: "1.5rem", lineHeight: 1.2 },
@@ -34,22 +34,22 @@ const B = ({
34
34
  title: { fontSize: "0.875rem", letterSpacing: "0.08em" }
35
35
  };
36
36
  }
37
- })(), i = y(d), n = /* @__PURE__ */ t.jsx(
38
- r,
37
+ })(), i = z(m), n = /* @__PURE__ */ t.jsx(
38
+ l,
39
39
  {
40
40
  variant: "h3",
41
41
  component: "span",
42
42
  sx: {
43
43
  fontWeight: 700,
44
- color: l === "inherit" ? "text.primary" : `${l}.main`,
44
+ color: o === "inherit" ? "text.primary" : `${o}.main`,
45
45
  width: "70px",
46
46
  ...e.digit,
47
- ...f
47
+ ...p
48
48
  },
49
49
  children: i
50
50
  }
51
- ), z = /* @__PURE__ */ t.jsx(
52
- r,
51
+ ), H = /* @__PURE__ */ t.jsx(
52
+ l,
53
53
  {
54
54
  component: "span",
55
55
  sx: {
@@ -59,12 +59,15 @@ const B = ({
59
59
  display: "block",
60
60
  mt: 0.5,
61
61
  ...e.title,
62
- ...p
62
+ ...h
63
63
  },
64
- children: m
64
+ children: x
65
65
  }
66
- ), s = /* @__PURE__ */ t.jsxs(
67
- c,
66
+ );
67
+ let r = n;
68
+ s === "fade" ? r = /* @__PURE__ */ t.jsx(v, { in: !0, timeout: 300, children: /* @__PURE__ */ t.jsx("div", { children: n }) }, i) : s === "slide" && (r = /* @__PURE__ */ t.jsx(B, { in: !0, direction: "up", timeout: 300, children: /* @__PURE__ */ t.jsx("div", { children: n }) }, i));
69
+ const a = /* @__PURE__ */ t.jsxs(
70
+ d,
68
71
  {
69
72
  flexDirection: "column",
70
73
  alignItems: "center",
@@ -74,15 +77,15 @@ const B = ({
74
77
  ...g
75
78
  },
76
79
  children: [
77
- o === "fade" ? /* @__PURE__ */ t.jsx(H, { in: !0, timeout: 300, children: /* @__PURE__ */ t.jsx("div", { children: n }) }, i) : o === "slide" ? /* @__PURE__ */ t.jsx(v, { in: !0, direction: "up", timeout: 300, children: /* @__PURE__ */ t.jsx("div", { children: n }) }, i) : n,
78
- z
80
+ r,
81
+ H
79
82
  ]
80
83
  }
81
84
  );
82
- return h ? /* @__PURE__ */ t.jsxs(c, { alignItems: "center", children: [
83
- s,
85
+ return u ? /* @__PURE__ */ t.jsxs(d, { alignItems: "center", children: [
86
+ a,
84
87
  /* @__PURE__ */ t.jsx(
85
- r,
88
+ l,
86
89
  {
87
90
  variant: "h3",
88
91
  sx: {
@@ -92,13 +95,13 @@ const B = ({
92
95
  alignSelf: "flex-start",
93
96
  mt: 0.5
94
97
  },
95
- children: u
98
+ children: S
96
99
  }
97
100
  )
98
- ] }) : s;
101
+ ] }) : a;
99
102
  };
100
- B.displayName = "SCountBox";
103
+ C.displayName = "SCountBox";
101
104
  export {
102
- B as SCountBox,
103
- B as default
105
+ C as SCountBox,
106
+ C as default
104
107
  };