@solostylist/ui-kit 1.0.200 → 1.0.202

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 (117) hide show
  1. package/dist/{Select-80JhW337.js → Select-D2l9rDWL.js} +1594 -1594
  2. package/dist/entries/core.d.ts +13 -13
  3. package/dist/entries/core.js +109 -110
  4. package/dist/main.js +175 -176
  5. package/dist/s-date-picker/s-date-picker.js +14 -10
  6. package/dist/s-datetime-picker/s-datetime-picker.js +103 -99
  7. package/dist/s-link/index.d.ts +2 -0
  8. package/dist/s-link/index.js +4 -0
  9. package/dist/{s-button-link/s-button-link.d.ts → s-link/s-link.d.ts} +5 -5
  10. package/dist/s-link/s-link.js +37 -0
  11. package/dist/s-text-editor/s-text-editor-toolbar.js +1 -1
  12. package/dist/s-theme-provider/s-theme-provider.js +24 -35
  13. package/dist/s-tool-bar/index.d.ts +2 -0
  14. package/dist/s-tool-bar/index.js +4 -0
  15. package/dist/{s-ai-tool-bar/s-ai-tool-bar.d.ts → s-tool-bar/s-tool-bar.d.ts} +23 -30
  16. package/dist/s-tool-bar/s-tool-bar.js +478 -0
  17. package/dist/theme/components/accordion-details.d.ts +8 -0
  18. package/dist/theme/components/accordion-details.js +8 -0
  19. package/dist/theme/components/accordion-summary.d.ts +1033 -0
  20. package/dist/theme/components/accordion-summary.js +17 -0
  21. package/dist/theme/components/accordion.d.ts +35 -0
  22. package/dist/theme/components/accordion.js +32 -0
  23. package/dist/theme/components/app-bar.d.ts +24 -0
  24. package/dist/theme/components/app-bar.js +18 -0
  25. package/dist/theme/components/autocomplete.d.ts +31 -0
  26. package/dist/theme/components/autocomplete.js +30 -0
  27. package/dist/theme/components/button-base.d.ts +12 -0
  28. package/dist/theme/components/button-base.js +15 -0
  29. package/dist/theme/components/card-actions.d.ts +7 -0
  30. package/dist/theme/components/card-actions.js +10 -0
  31. package/dist/theme/components/card-content.d.ts +7 -0
  32. package/dist/theme/components/card-content.js +11 -0
  33. package/dist/theme/components/card-header.d.ts +7 -0
  34. package/dist/theme/components/card-header.js +10 -0
  35. package/dist/theme/components/card.d.ts +2046 -0
  36. package/dist/theme/components/card.js +35 -0
  37. package/dist/theme/components/checkbox.d.ts +1046 -0
  38. package/dist/theme/components/checkbox.js +65 -0
  39. package/dist/theme/components/components.js +112 -30
  40. package/dist/theme/components/dialog-actions.d.ts +12 -0
  41. package/dist/theme/components/dialog-actions.js +10 -0
  42. package/dist/theme/components/dialog.d.ts +19 -0
  43. package/dist/theme/components/dialog.js +17 -0
  44. package/dist/theme/components/drawer.d.ts +12 -0
  45. package/dist/theme/components/drawer.js +10 -0
  46. package/dist/theme/components/form-label.d.ts +17 -0
  47. package/dist/theme/components/form-label.js +11 -0
  48. package/dist/theme/components/icon.d.ts +17 -0
  49. package/dist/theme/components/icon.js +22 -0
  50. package/dist/theme/components/input-adornment.d.ts +1027 -0
  51. package/dist/theme/components/input-adornment.js +13 -0
  52. package/dist/theme/components/input-base.d.ts +18 -0
  53. package/dist/theme/components/input-base.js +16 -0
  54. package/dist/theme/components/linear-progress.d.ts +1023 -0
  55. package/dist/theme/components/linear-progress.js +16 -0
  56. package/dist/theme/components/link.d.ts +42 -0
  57. package/dist/theme/components/link.js +38 -0
  58. package/dist/theme/components/list-item-button.d.ts +155 -0
  59. package/dist/theme/components/list-item-button.js +44 -0
  60. package/dist/theme/components/list-item-icon.d.ts +7 -0
  61. package/dist/theme/components/list-item-icon.js +10 -0
  62. package/dist/theme/components/list-item-text.d.ts +22 -0
  63. package/dist/theme/components/list-item-text.js +16 -0
  64. package/dist/theme/components/list-item.d.ts +92 -0
  65. package/dist/theme/components/list-item.js +20 -0
  66. package/dist/theme/components/list-subheader.d.ts +20 -0
  67. package/dist/theme/components/list-subheader.js +14 -0
  68. package/dist/theme/components/list.d.ts +10 -0
  69. package/dist/theme/components/list.js +13 -0
  70. package/dist/theme/components/menu-item.d.ts +8 -0
  71. package/dist/theme/components/menu-item.js +8 -0
  72. package/dist/theme/components/menu.d.ts +20 -0
  73. package/dist/theme/components/menu.js +23 -0
  74. package/dist/theme/components/outlined-input.d.ts +81 -0
  75. package/dist/theme/components/outlined-input.js +64 -0
  76. package/dist/theme/components/pagination-item.d.ts +1028 -0
  77. package/dist/theme/components/pagination-item.js +18 -0
  78. package/dist/theme/components/paper.d.ts +5 -0
  79. package/dist/theme/components/paper.js +8 -0
  80. package/dist/theme/components/select.d.ts +7 -0
  81. package/dist/theme/components/select.js +13 -0
  82. package/dist/theme/components/step-connector.d.ts +15 -0
  83. package/dist/theme/components/step-connector.js +13 -0
  84. package/dist/theme/components/step-icon.d.ts +1043 -0
  85. package/dist/theme/components/step-icon.js +46 -0
  86. package/dist/theme/components/step-label.d.ts +1025 -0
  87. package/dist/theme/components/step-label.js +13 -0
  88. package/dist/theme/components/tab.d.ts +1031 -0
  89. package/dist/theme/components/tab.js +34 -0
  90. package/dist/theme/components/table-cell.d.ts +12 -0
  91. package/dist/theme/components/table-cell.js +10 -0
  92. package/dist/theme/components/table-pagination.d.ts +14 -0
  93. package/dist/theme/components/table-pagination.js +18 -0
  94. package/dist/theme/components/tabs.d.ts +1046 -0
  95. package/dist/theme/components/tabs.js +24 -0
  96. package/dist/theme/components/toggle-button-group.d.ts +1024 -0
  97. package/dist/theme/components/toggle-button-group.js +23 -0
  98. package/dist/theme/components/toggle-button.d.ts +1027 -0
  99. package/dist/theme/components/toggle-button.js +21 -0
  100. package/dist/{useMobilePicker-DVnEuXv1.js → useMobilePicker-B-bNHHXB.js} +1 -1
  101. package/package.json +1 -1
  102. package/dist/s-ai-tool-bar/index.d.ts +0 -2
  103. package/dist/s-ai-tool-bar/index.js +0 -5
  104. package/dist/s-ai-tool-bar/s-ai-tool-bar.js +0 -481
  105. package/dist/s-button-link/index.d.ts +0 -2
  106. package/dist/s-button-link/index.js +0 -4
  107. package/dist/s-button-link/s-button-link.js +0 -37
  108. package/dist/theme/customizations/data-display.d.ts +0 -2
  109. package/dist/theme/customizations/data-display.js +0 -142
  110. package/dist/theme/customizations/feedback.d.ts +0 -2
  111. package/dist/theme/customizations/feedback.js +0 -39
  112. package/dist/theme/customizations/inputs.d.ts +0 -2
  113. package/dist/theme/customizations/inputs.js +0 -230
  114. package/dist/theme/customizations/navigation.d.ts +0 -2
  115. package/dist/theme/customizations/navigation.js +0 -226
  116. package/dist/theme/customizations/surfaces.d.ts +0 -2
  117. package/dist/theme/customizations/surfaces.js +0 -111
package/dist/main.js CHANGED
@@ -1,197 +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 v } from "./s-chat-message/s-chat-message.js";
10
- import { SCommentMessage as L } 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 z, 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";
34
- import { SSelect as yo } from "./s-select/s-select.js";
35
- import { SSelectList as bo } 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 Vo } 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";
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
+ import { SSelect as vo } from "./s-select/s-select.js";
35
+ import { SSelectList as Lo } from "./s-select-list/s-select-list.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 { LogLevel as ir, Logger as lr, createLogger as nr, logger as sr } from "./utils/logger.js";
56
- import { SDatePicker as ur } from "./s-date-picker/s-date-picker.js";
57
- import { SDateTimePicker as dr } from "./s-datetime-picker/s-datetime-picker.js";
58
- import { SLocalizationProvider as Cr } from "./s-localization-provider/s-localization-provider.js";
59
- import { SCountdown as vr } from "./s-countdown/s-count-down.js";
60
- import { SCountBox as Lr } from "./s-countdown/s-count-box.js";
61
- import { STextEditor as Dr } 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";
62
62
  import "./s-text-editor/s-text-editor-toolbar.js";
63
63
  import { StripeTextField as hr } from "./s-stripe/s-stripe.js";
64
64
  import { SStripeNumber as Mr } from "./s-stripe/s-stripe-number.js";
65
- import { SStripeExpiry as wr } from "./s-stripe/s-stripe-expiry.js";
65
+ import { SStripeExpiry as kr } from "./s-stripe/s-stripe-expiry.js";
66
66
  import { SStripeCVC as Fr } from "./s-stripe/s-stripe-cvc.js";
67
- import { SBlurText as Er } from "./s-blur-text/s-blur-text.js";
68
- import { default as zr } from "./s-glow-button/s-glow-button.js";
69
- import { SMovingBorder as Nr } from "./s-moving-border/s-moving-border.js";
70
- import { SPixelReveal as jr } from "./s-pixel-reveal/s-pixel-reveal.js";
71
- import { SRadialPulseAnimate as qr } from "./s-radial-pulse-animate/s-radial-pulse-animate.js";
72
- import { SScrollReveal as Jr } from "./s-scroll-reveal/s-scroll-reveal.js";
73
- import { SScrollToTop as Qr } from "./s-scroll-to-top/s-scroll-to-top.js";
74
- import { SScrollVelocity as Wr } from "./s-scroll-velocity/s-scroll-velocity.js";
75
- import { ScrollVelocityContainer as Yr } 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 re } from "./s-spotlight-cursor/s-spotlight-cursor.js";
78
- import { STextShimmer as te } from "./s-text-shimmer/s-text-shimmer.js";
79
- import { STypewriterText as pe } from "./s-typewriter-text/s-typewriter-text.js";
80
- import { MediaItem as xe, SGallery as fe } from "./s-gallery/s-gallery.js";
81
- import { default as ie } from "./s-image-comparison/s-image-comparison.js";
82
- import { SImageModal as ne } from "./s-image-modal/s-image-modal.js";
83
- import { default as ge } from "./s-lazy-image/s-lazy-image.js";
84
- import { SZoomImage as ce } from "./s-zoom-image/s-zoom-image.js";
85
- import { SCarousel as Te } from "./s-carousel/s-carousel.js";
86
- import { SChatInput as Pe } from "./s-chat-input/s-chat-input.js";
87
- import { SFileDropzone as ye } from "./s-file-dropzone/s-file-dropzone.js";
88
- import { SCodeBlock as be } from "./s-code-block/s-code-block.js";
89
- import { SOverlayScrollbar as Ie } from "./s-overlay-scrollbar/s-overlay-scrollbar.js";
90
- import { SI18nProvider as Be } from "./s-i18n-provider/s-i18n-provider.js";
91
- import { SLanguagePopover as ke, SLanguageSwitcher as we, defaultLanguageOptions as Ae } from "./s-language-switcher/s-language-switcher.js";
92
- import { default as Re } from "dayjs";
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";
93
93
  export {
94
- z as DialogConfirmProvider,
95
- j as DialogMessageProvider,
96
- ir as LogLevel,
97
- lr as Logger,
98
- xe as MediaItem,
94
+ V as DialogConfirmProvider,
95
+ O as DialogMessageProvider,
96
+ ar as LogLevel,
97
+ ir as Logger,
98
+ Se as MediaItem,
99
99
  m as SAccordion,
100
100
  S as SActionOverlay,
101
- f as SAiToolBar,
102
- a as SAiToolBarInputType,
103
- l as SAutocomplete,
104
- s as SAvatar,
105
- Er as SBlurText,
106
- u as SBreadcrumbs,
107
- d as SButton,
108
- C as SButtonLink,
109
- Te as SCarousel,
110
- Uo as SCategoryCard,
111
- Pe as SChatInput,
112
- v as SChatMessage,
113
- 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,
114
111
  M as SChip,
115
- w as SChips,
116
- be as SCodeBlock,
117
- L as SCommentMessage,
118
- Ko as SCopyableText,
119
- Lr as SCountBox,
120
- vr 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,
121
118
  F as SDataTable,
122
- ur as SDatePicker,
123
- dr as SDateTimePicker,
124
- E as SDialog,
125
- G as SDialogConfirm,
126
- Z as SDialogMessage,
127
- J as SEmpty,
128
- Q as SError,
129
- W as SErrorLayout,
130
- ye as SFileDropzone,
131
- Y as SFileIcon,
132
- $ as SFlexBox,
133
- ro as SForm,
134
- fe as SGallery,
135
- zr as SGlowButton,
136
- to as SGradientIcon,
137
- Be as SI18nProvider,
138
- po as SIconButton,
139
- ie as SImageComparison,
140
- ne as SImageModal,
141
- xo as SItemNotFound,
142
- ao as SLabel,
143
- ke as SLanguagePopover,
144
- we as SLanguageSwitcher,
145
- ge as SLazyImage,
146
- Cr as SLocalizationProvider,
147
- Nr as SMovingBorder,
148
- lo as SMultiSelect,
149
- so as SNoSsr,
150
- Ie as SOverlayScrollbar,
151
- uo as SPagination,
152
- jr as SPixelReveal,
153
- qr as SRadialPulseAnimate,
154
- To as SRating,
155
- Po as SReview,
156
- Jr as SScrollReveal,
157
- Qr as SScrollToTop,
158
- Wr as SScrollVelocity,
159
- yo as SSelect,
160
- bo as SSelectList,
161
- Io as SSkeleton,
162
- Bo as SSnackbarMessage,
163
- re as SSpotlightCursor,
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,
157
+ vo as SSelect,
158
+ Lo as SSelectList,
159
+ Do as SSkeleton,
160
+ Io as SSnackbarMessage,
161
+ oe as SSpotlightCursor,
164
162
  Fr as SStripeCVC,
165
- wr as SStripeExpiry,
163
+ kr as SStripeExpiry,
166
164
  Mr as SStripeNumber,
167
165
  h as SSwitch,
168
- Ro as STab,
169
- Vo as STabPanel,
170
- Ao as STabs,
171
- Dr as STextEditor,
172
- Go as STextField,
173
- te as STextShimmer,
174
- Oo as STextTruncation,
175
- Xo as SThemeProvider,
176
- _o as SThemeSwitch,
177
- Zo as STip,
178
- Ho as STwoPaneLayout,
179
- pe as STypewriterText,
180
- ce as SZoomImage,
181
- Yr as ScrollVelocityContainer,
182
- $r 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,
183
182
  Mo as SnackbarMessageProvider,
184
183
  hr as StripeTextField,
185
- nr as createLogger,
186
- Re as dayjs,
187
- Ae as defaultLanguageOptions,
188
- fr as formatDatePosted,
189
- sr as logger,
190
- or as useDialog,
191
- N as useDialogConfirm,
192
- q as useDialogMessage,
193
- Sr as useIsPassedPosition,
194
- er as usePopover,
195
- mr as useScrollAnimation,
196
- ko as useSnackbarMessage
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
197
196
  };
@@ -1,10 +1,10 @@
1
1
  import { j as c } from "../jsx-runtime-tc70JA_2.js";
2
2
  import { useTheme as I, TextField as z } from "@mui/material";
3
3
  import { SForm as L } from "../s-form/s-form.js";
4
- import { _ as P, a as s } from "../objectWithoutPropertiesLoose-DiWPeE4c.js";
4
+ import { _ as D, a as s } from "../objectWithoutPropertiesLoose-DiWPeE4c.js";
5
5
  import * as f from "react";
6
6
  import { P as e } from "../createTheme-DgoJyWM-.js";
7
- import { g as U, a as Y, u as O, b as q, c as Q, d as B, r as T, e as H, P as $, f as K, h as Z, i as G, j as J, k as X, l as ee, m as oe, C as te, n as m, o as p, p as M, q as F, s as se, v as R, t as N, w as ae, D as ne, x as re } from "../useMobilePicker-DVnEuXv1.js";
7
+ import { g as U, a as Y, u as O, b as q, c as B, d as Q, r as T, e as H, P as $, f as K, h as Z, i as G, j as J, k as X, l as ee, m as oe, C as te, n as m, o as p, p as M, q as F, s as se, v as R, t as N, w as ae, D as ne, x as re } from "../useMobilePicker-B-bNHHXB.js";
8
8
  import { u as y } from "../warning-Ba-7BBAN.js";
9
9
  import { c as le } from "../clsx-OuTLNxxd.js";
10
10
  import { s as C } from "../styled-8Y5KoVix.js";
@@ -40,19 +40,19 @@ const de = ["toolbarFormat", "toolbarPlaceholder", "className", "classes"], ue =
40
40
  toolbarPlaceholder: r = "––",
41
41
  className: i,
42
42
  classes: d
43
- } = n, u = P(n, de), b = O(), {
44
- value: D,
43
+ } = n, u = D(n, de), b = O(), {
44
+ value: P,
45
45
  views: v,
46
46
  orientation: E
47
- } = q(), V = Q(), _ = B(), w = ue(d), A = f.useMemo(() => {
48
- if (!b.isValid(D))
47
+ } = q(), V = B(), _ = Q(), w = ue(d), A = f.useMemo(() => {
48
+ if (!b.isValid(P))
49
49
  return r;
50
50
  const W = T(b, {
51
51
  format: o,
52
52
  views: v
53
53
  }, !0);
54
- return b.formatByString(D, W);
55
- }, [D, o, r, b, v]);
54
+ return b.formatByString(P, W);
55
+ }, [P, o, r, b, v]);
56
56
  return /* @__PURE__ */ c.jsx(fe, s({
57
57
  ref: t,
58
58
  toolbarTitle: V.datePickerToolbarTitle,
@@ -131,7 +131,7 @@ const be = (l) => {
131
131
  }), {
132
132
  slots: o,
133
133
  slotProps: r
134
- } = n, i = P(n, me), d = X({
134
+ } = n, i = D(n, me), d = X({
135
135
  slotProps: r,
136
136
  ref: t,
137
137
  externalForwardedProps: i
@@ -1136,7 +1136,7 @@ const ye = ["desktopModeMediaQuery"], x = /* @__PURE__ */ f.forwardRef(function(
1136
1136
  name: "MuiDatePicker"
1137
1137
  }), {
1138
1138
  desktopModeMediaQuery: o = ne
1139
- } = n, r = P(n, ye);
1139
+ } = n, r = D(n, ye);
1140
1140
  return re(o, {
1141
1141
  defaultMatches: !0
1142
1142
  }) ? /* @__PURE__ */ c.jsx(k, s({
@@ -1492,6 +1492,10 @@ const he = ({
1492
1492
  // Allow user to override slots if needed
1493
1493
  },
1494
1494
  slotProps: {
1495
+ openPickerButton: {
1496
+ edge: "end",
1497
+ sx: { my: -1 }
1498
+ },
1495
1499
  popper: {
1496
1500
  sx: {
1497
1501
  "& .MuiPaper-root": {