@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
@@ -0,0 +1,17 @@
1
+ import { gray as r } from "../theme-primitives.js";
2
+ const a = {
3
+ styleOverrides: {
4
+ root: ({ theme: o }) => ({
5
+ border: "none",
6
+ borderRadius: 8,
7
+ "&:hover": { backgroundColor: r[50] },
8
+ "&:focus-visible": { backgroundColor: "transparent" },
9
+ ...o.applyStyles("dark", {
10
+ "&:hover": { backgroundColor: r[800] }
11
+ })
12
+ })
13
+ }
14
+ };
15
+ export {
16
+ a as MuiAccordionSummary
17
+ };
@@ -0,0 +1,35 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiAccordion: {
3
+ styleOverrides: {
4
+ root: ({ theme, ownerState }: import('@mui/material').AccordionOwnProps & import('@mui/material').AccordionSlotsAndSlotProps & Omit<import('@mui/material').PaperOwnProps, "classes" | "onChange"> & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "className" | "style" | "classes" | "children" | "sx" | "variant" | "onChange" | "expanded" | "square" | "disabled" | "slots" | "slotProps" | "TransitionComponent" | "elevation" | "defaultExpanded" | "disableGutters" | "TransitionProps"> & {
5
+ component?: React.ElementType | undefined;
6
+ } & Record<string, unknown> & {
7
+ ownerState: import('@mui/material').AccordionOwnProps & import('@mui/material').AccordionSlotsAndSlotProps & Omit<import('@mui/material').PaperOwnProps, "classes" | "onChange"> & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "className" | "style" | "classes" | "children" | "sx" | "variant" | "onChange" | "expanded" | "square" | "disabled" | "slots" | "slotProps" | "TransitionComponent" | "elevation" | "defaultExpanded" | "disableGutters" | "TransitionProps"> & {
8
+ component?: React.ElementType | undefined;
9
+ } & Record<string, unknown>;
10
+ } & {
11
+ theme: Theme;
12
+ }) => {
13
+ borderRadius: string | number;
14
+ '&:not(:last-of-type)'?: {
15
+ borderBottom: string;
16
+ } | undefined;
17
+ '&:first-of-type'?: {
18
+ borderTopLeftRadius: string | number;
19
+ borderTopRightRadius: string | number;
20
+ } | undefined;
21
+ '&:last-of-type'?: {
22
+ borderBottomLeftRadius: string | number;
23
+ borderBottomRightRadius: string | number;
24
+ } | undefined;
25
+ padding: number;
26
+ overflow: "clip";
27
+ backgroundColor: string;
28
+ border: string;
29
+ borderColor: string;
30
+ ':before': {
31
+ backgroundColor: string;
32
+ };
33
+ };
34
+ };
35
+ };
@@ -0,0 +1,32 @@
1
+ const d = {
2
+ styleOverrides: {
3
+ root: ({ theme: r, ownerState: o }) => ({
4
+ padding: 2,
5
+ overflow: "clip",
6
+ backgroundColor: (r.vars ?? r).palette.background.default,
7
+ border: "1px solid",
8
+ borderColor: (r.vars ?? r).palette.divider,
9
+ borderRadius: (r.vars ?? r).shape.borderRadius,
10
+ ":before": {
11
+ backgroundColor: "transparent"
12
+ },
13
+ ...o.disableGutters ? {
14
+ borderRadius: "none",
15
+ "&:not(:last-of-type)": {
16
+ borderBottom: "none"
17
+ },
18
+ "&:first-of-type": {
19
+ borderTopLeftRadius: (r.vars ?? r).shape.borderRadius,
20
+ borderTopRightRadius: (r.vars ?? r).shape.borderRadius
21
+ },
22
+ "&:last-of-type": {
23
+ borderBottomLeftRadius: (r.vars ?? r).shape.borderRadius,
24
+ borderBottomRightRadius: (r.vars ?? r).shape.borderRadius
25
+ }
26
+ } : {}
27
+ })
28
+ }
29
+ };
30
+ export {
31
+ d as MuiAccordion
32
+ };
@@ -0,0 +1,24 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiAppBar: {
3
+ styleOverrides: {
4
+ root: ({ theme }: import('@mui/material').AppBarOwnProps & Omit<import('@mui/material').PaperOwnProps, "classes" | "color" | "position" | "square" | "elevation"> & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLElement>, HTMLElement>, "className" | "style" | "classes" | "children" | "sx" | "variant" | "color" | "position" | "square" | "elevation" | "enableColorOnDark"> & {
5
+ component?: React.ElementType | undefined;
6
+ } & Record<string, unknown> & {
7
+ ownerState: import('@mui/material').AppBarOwnProps & Omit<import('@mui/material').PaperOwnProps, "classes" | "color" | "position" | "square" | "elevation"> & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLElement>, HTMLElement>, "className" | "style" | "classes" | "children" | "sx" | "variant" | "color" | "position" | "square" | "elevation" | "enableColorOnDark"> & {
8
+ component?: React.ElementType | undefined;
9
+ } & Record<string, unknown>;
10
+ } & {
11
+ theme: Theme;
12
+ }) => {
13
+ backgroundColor: string;
14
+ color: string;
15
+ '&.MuiAppBar-colorPrimary': {
16
+ backgroundColor: string;
17
+ };
18
+ boxShadow: "none";
19
+ backgroundImage: "none";
20
+ borderBottom: string;
21
+ borderColor: string;
22
+ };
23
+ };
24
+ };
@@ -0,0 +1,18 @@
1
+ const o = {
2
+ styleOverrides: {
3
+ root: ({ theme: r }) => ({
4
+ backgroundColor: (r.vars ?? r).palette.background.default,
5
+ color: (r.vars ?? r).palette.text.primary,
6
+ "&.MuiAppBar-colorPrimary": {
7
+ backgroundColor: (r.vars ?? r).palette.background.default
8
+ },
9
+ boxShadow: "none",
10
+ backgroundImage: "none",
11
+ borderBottom: "1px solid",
12
+ borderColor: (r.vars ?? r).palette.divider
13
+ })
14
+ }
15
+ };
16
+ export {
17
+ o as MuiAppBar
18
+ };
@@ -0,0 +1,31 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiAutocomplete: {
3
+ styleOverrides: {
4
+ paper: ({ theme }: import('@mui/material').AutocompleteProps<any, any, any, any, "div"> & Record<string, unknown> & {
5
+ ownerState: import('@mui/material').AutocompleteProps<any, any, any, any, "div"> & Record<string, unknown>;
6
+ } & {
7
+ theme: Theme;
8
+ }) => {
9
+ marginTop: number;
10
+ border: string;
11
+ borderColor: string;
12
+ };
13
+ popupIndicator: {
14
+ background: string;
15
+ '&:hover': {
16
+ background: string;
17
+ };
18
+ };
19
+ clearIndicator: {
20
+ background: string;
21
+ '&:hover': {
22
+ background: string;
23
+ };
24
+ };
25
+ inputRoot: {
26
+ '& .MuiAutocomplete-input': {
27
+ padding: number;
28
+ };
29
+ };
30
+ };
31
+ };
@@ -0,0 +1,30 @@
1
+ const r = {
2
+ styleOverrides: {
3
+ paper: ({ theme: o }) => ({
4
+ marginTop: 2,
5
+ border: "1px solid",
6
+ borderColor: (o.vars ?? o).palette.divider
7
+ }),
8
+ popupIndicator: {
9
+ background: "none",
10
+ "&:hover": {
11
+ background: "none"
12
+ }
13
+ },
14
+ clearIndicator: {
15
+ background: "none",
16
+ "&:hover": {
17
+ background: "none"
18
+ }
19
+ },
20
+ inputRoot: {
21
+ "& .MuiAutocomplete-input": {
22
+ padding: 0
23
+ // <-- your desired padding
24
+ }
25
+ }
26
+ }
27
+ };
28
+ export {
29
+ r as MuiAutocomplete
30
+ };
@@ -0,0 +1,12 @@
1
+ export declare const MuiButtonBase: {
2
+ defaultProps: {
3
+ disableTouchRipple: true;
4
+ disableRipple: true;
5
+ };
6
+ styleOverrides: {
7
+ root: {
8
+ boxSizing: "border-box";
9
+ transition: "all 100ms ease-in";
10
+ };
11
+ };
12
+ };
@@ -0,0 +1,15 @@
1
+ const e = {
2
+ defaultProps: {
3
+ disableTouchRipple: !0,
4
+ disableRipple: !0
5
+ },
6
+ styleOverrides: {
7
+ root: {
8
+ boxSizing: "border-box",
9
+ transition: "all 100ms ease-in"
10
+ }
11
+ }
12
+ };
13
+ export {
14
+ e as MuiButtonBase
15
+ };
@@ -0,0 +1,7 @@
1
+ export declare const MuiCardActions: {
2
+ styleOverrides: {
3
+ root: {
4
+ padding: number;
5
+ };
6
+ };
7
+ };
@@ -0,0 +1,10 @@
1
+ const o = {
2
+ styleOverrides: {
3
+ root: {
4
+ padding: 16
5
+ }
6
+ }
7
+ };
8
+ export {
9
+ o as MuiCardActions
10
+ };
@@ -0,0 +1,7 @@
1
+ export declare const MuiCardContent: {
2
+ styleOverrides: {
3
+ root: {
4
+ padding: number;
5
+ };
6
+ };
7
+ };
@@ -0,0 +1,11 @@
1
+ const t = {
2
+ styleOverrides: {
3
+ root: {
4
+ padding: 16
5
+ // '&:last-child': { paddingBottom: 16 },
6
+ }
7
+ }
8
+ };
9
+ export {
10
+ t as MuiCardContent
11
+ };
@@ -0,0 +1,7 @@
1
+ export declare const MuiCardHeader: {
2
+ styleOverrides: {
3
+ root: {
4
+ padding: number;
5
+ };
6
+ };
7
+ };
@@ -0,0 +1,10 @@
1
+ const e = {
2
+ styleOverrides: {
3
+ root: {
4
+ padding: 16
5
+ }
6
+ }
7
+ };
8
+ export {
9
+ e as MuiCardHeader
10
+ };