@solostylist/ui-kit 1.0.200 → 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 (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 +1 -1
  6. package/dist/s-datetime-picker/s-datetime-picker.js +1 -1
  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,16 @@
1
+ import { gray as r } from "../theme-primitives.js";
2
+ const a = {
3
+ styleOverrides: {
4
+ root: ({ theme: o }) => ({
5
+ height: 8,
6
+ borderRadius: 8,
7
+ backgroundColor: r[200],
8
+ ...o.applyStyles("dark", {
9
+ backgroundColor: r[800]
10
+ })
11
+ })
12
+ }
13
+ };
14
+ export {
15
+ a as MuiLinearProgress
16
+ };
@@ -0,0 +1,42 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiLink: {
3
+ defaultProps: {
4
+ underline: "none";
5
+ };
6
+ styleOverrides: {
7
+ root: ({ theme }: import('@mui/material').LinkOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "className" | "style" | "classes" | "children" | "height" | "sx" | "variant" | "width" | "p" | "color" | "minWidth" | "minHeight" | "border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "maxWidth" | "maxHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform" | "underline" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping" | "TypographyClasses"> & {
8
+ component?: React.ElementType | undefined;
9
+ } & Record<string, unknown> & {
10
+ ownerState: import('@mui/material').LinkOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "className" | "style" | "classes" | "children" | "height" | "sx" | "variant" | "width" | "p" | "color" | "minWidth" | "minHeight" | "border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "maxWidth" | "maxHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform" | "underline" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping" | "TypographyClasses"> & {
11
+ component?: React.ElementType | undefined;
12
+ } & Record<string, unknown>;
13
+ } & {
14
+ theme: Theme;
15
+ }) => {
16
+ color: string;
17
+ fontWeight: number;
18
+ position: "relative";
19
+ textDecoration: string;
20
+ width: string;
21
+ '&::before': {
22
+ content: string;
23
+ position: string;
24
+ width: string;
25
+ height: string;
26
+ bottom: number;
27
+ left: number;
28
+ backgroundColor: string;
29
+ opacity: number;
30
+ transition: string;
31
+ };
32
+ '&:hover::before': {
33
+ width: number;
34
+ };
35
+ '&:focus-visible': {
36
+ outline: string;
37
+ outlineOffset: string;
38
+ borderRadius: string;
39
+ };
40
+ };
41
+ };
42
+ };
@@ -0,0 +1,38 @@
1
+ import { brand as o } from "../theme-primitives.js";
2
+ import { a as e } from "../../createTheme-DgoJyWM-.js";
3
+ const n = {
4
+ defaultProps: {
5
+ underline: "none"
6
+ },
7
+ styleOverrides: {
8
+ root: ({ theme: t }) => ({
9
+ color: (t.vars ?? t).palette.text.primary,
10
+ fontWeight: 500,
11
+ position: "relative",
12
+ textDecoration: "none",
13
+ width: "fit-content",
14
+ "&::before": {
15
+ content: '""',
16
+ position: "absolute",
17
+ width: "100%",
18
+ height: "1px",
19
+ bottom: 0,
20
+ left: 0,
21
+ backgroundColor: (t.vars ?? t).palette.text.secondary,
22
+ opacity: 0.3,
23
+ transition: "width 0.3s ease, opacity 0.3s ease"
24
+ },
25
+ "&:hover::before": {
26
+ width: 0
27
+ },
28
+ "&:focus-visible": {
29
+ outline: `3px solid ${e(o[500], 0.5)}`,
30
+ outlineOffset: "4px",
31
+ borderRadius: "2px"
32
+ }
33
+ })
34
+ }
35
+ };
36
+ export {
37
+ n as MuiLink
38
+ };
@@ -0,0 +1,155 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const listItemButtonStyles: (theme: Theme) => {
3
+ [x: string]: string | number | {
4
+ color: string;
5
+ backgroundColor?: undefined;
6
+ '&:focus-visible'?: undefined;
7
+ '&:hover'?: undefined;
8
+ } | {
9
+ [x: string]: string | {
10
+ color: string;
11
+ backgroundColor?: undefined;
12
+ } | {
13
+ backgroundColor: string;
14
+ color?: undefined;
15
+ };
16
+ backgroundColor: string;
17
+ color: string;
18
+ '&:focus-visible': {
19
+ backgroundColor: string;
20
+ };
21
+ '&:hover': {
22
+ backgroundColor: string;
23
+ };
24
+ } | {
25
+ [x: string]: string | {
26
+ color: string;
27
+ };
28
+ backgroundColor: string;
29
+ color: string;
30
+ '&:focus-visible'?: undefined;
31
+ '&:hover'?: undefined;
32
+ } | {
33
+ backgroundColor: string;
34
+ color?: undefined;
35
+ '&:focus-visible'?: undefined;
36
+ '&:hover'?: undefined;
37
+ };
38
+ alignItems: string;
39
+ display: string;
40
+ gap: number;
41
+ padding: string;
42
+ borderRadius: number;
43
+ whiteSpace: string;
44
+ color: string;
45
+ '&.Mui-selected': {
46
+ [x: string]: string | {
47
+ color: string;
48
+ backgroundColor?: undefined;
49
+ } | {
50
+ backgroundColor: string;
51
+ color?: undefined;
52
+ };
53
+ backgroundColor: string;
54
+ color: string;
55
+ '&:focus-visible': {
56
+ backgroundColor: string;
57
+ };
58
+ '&:hover': {
59
+ backgroundColor: string;
60
+ };
61
+ };
62
+ '&:hover:not(.Mui-selected)': {
63
+ [x: string]: string | {
64
+ color: string;
65
+ };
66
+ backgroundColor: string;
67
+ color: string;
68
+ };
69
+ '&:focus-visible': {
70
+ backgroundColor: string;
71
+ };
72
+ };
73
+ export declare const MuiListItemButton: {
74
+ styleOverrides: {
75
+ root: ({ theme }: import('@mui/material').ListItemButtonOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "className" | "style" | "classes" | "children" | "sx" | "autoFocus" | "tabIndex" | "alignItems" | "dense" | "disabled" | "divider" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableGutters" | "selected"> & {
76
+ component?: React.ElementType | undefined;
77
+ } & Record<string, unknown> & {
78
+ ownerState: import('@mui/material').ListItemButtonOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "className" | "style" | "classes" | "children" | "sx" | "autoFocus" | "tabIndex" | "alignItems" | "dense" | "disabled" | "divider" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableGutters" | "selected"> & {
79
+ component?: React.ElementType | undefined;
80
+ } & Record<string, unknown>;
81
+ } & {
82
+ theme: Theme;
83
+ }) => {
84
+ [x: string]: string | number | {
85
+ color: string;
86
+ backgroundColor?: undefined;
87
+ '&:focus-visible'?: undefined;
88
+ '&:hover'?: undefined;
89
+ } | {
90
+ [x: string]: string | {
91
+ color: string;
92
+ backgroundColor?: undefined;
93
+ } | {
94
+ backgroundColor: string;
95
+ color?: undefined;
96
+ };
97
+ backgroundColor: string;
98
+ color: string;
99
+ '&:focus-visible': {
100
+ backgroundColor: string;
101
+ };
102
+ '&:hover': {
103
+ backgroundColor: string;
104
+ };
105
+ } | {
106
+ [x: string]: string | {
107
+ color: string;
108
+ };
109
+ backgroundColor: string;
110
+ color: string;
111
+ '&:focus-visible'?: undefined;
112
+ '&:hover'?: undefined;
113
+ } | {
114
+ backgroundColor: string;
115
+ color?: undefined;
116
+ '&:focus-visible'?: undefined;
117
+ '&:hover'?: undefined;
118
+ };
119
+ alignItems: string;
120
+ display: string;
121
+ gap: number;
122
+ padding: string;
123
+ borderRadius: number;
124
+ whiteSpace: string;
125
+ color: string;
126
+ '&.Mui-selected': {
127
+ [x: string]: string | {
128
+ color: string;
129
+ backgroundColor?: undefined;
130
+ } | {
131
+ backgroundColor: string;
132
+ color?: undefined;
133
+ };
134
+ backgroundColor: string;
135
+ color: string;
136
+ '&:focus-visible': {
137
+ backgroundColor: string;
138
+ };
139
+ '&:hover': {
140
+ backgroundColor: string;
141
+ };
142
+ };
143
+ '&:hover:not(.Mui-selected)': {
144
+ [x: string]: string | {
145
+ color: string;
146
+ };
147
+ backgroundColor: string;
148
+ color: string;
149
+ };
150
+ '&:focus-visible': {
151
+ backgroundColor: string;
152
+ };
153
+ };
154
+ };
155
+ };
@@ -0,0 +1,44 @@
1
+ import { s as r } from "../../svgIconClasses-C6auqaBA.js";
2
+ const a = (o) => ({
3
+ alignItems: "center",
4
+ display: "flex",
5
+ gap: 8,
6
+ padding: "0.5rem 1rem",
7
+ borderRadius: 0,
8
+ whiteSpace: "nowrap",
9
+ color: (o.vars ?? o).palette.text.secondary,
10
+ [`& .${r.root}`]: {
11
+ color: (o.vars ?? o).palette.text.secondary
12
+ },
13
+ "&.Mui-selected": {
14
+ backgroundColor: (o.vars ?? o).palette.action.selected,
15
+ color: (o.vars ?? o).palette.text.primary,
16
+ [`& .${r.root}`]: {
17
+ color: (o.vars ?? o).palette.text.primary
18
+ },
19
+ "&:focus-visible": {
20
+ backgroundColor: (o.vars ?? o).palette.action.selected
21
+ },
22
+ "&:hover": {
23
+ backgroundColor: (o.vars ?? o).palette.action.selected
24
+ }
25
+ },
26
+ "&:hover:not(.Mui-selected)": {
27
+ backgroundColor: (o.vars ?? o).palette.action.hover,
28
+ color: (o.vars ?? o).palette.text.primary,
29
+ [`& .${r.root}`]: {
30
+ color: (o.vars ?? o).palette.text.primary
31
+ }
32
+ },
33
+ "&:focus-visible": {
34
+ backgroundColor: "transparent"
35
+ }
36
+ }), s = {
37
+ styleOverrides: {
38
+ root: ({ theme: o }) => a(o)
39
+ }
40
+ };
41
+ export {
42
+ s as MuiListItemButton,
43
+ a as listItemButtonStyles
44
+ };
@@ -0,0 +1,7 @@
1
+ export declare const MuiListItemIcon: {
2
+ styleOverrides: {
3
+ root: {
4
+ minWidth: number;
5
+ };
6
+ };
7
+ };
@@ -0,0 +1,10 @@
1
+ const t = {
2
+ styleOverrides: {
3
+ root: {
4
+ minWidth: 0
5
+ }
6
+ }
7
+ };
8
+ export {
9
+ t as MuiListItemIcon
10
+ };
@@ -0,0 +1,22 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiListItemText: {
3
+ styleOverrides: {
4
+ primary: ({ theme }: import('@mui/material').ListItemTextProps<"span", "p"> & Record<string, unknown> & {
5
+ ownerState: import('@mui/material').ListItemTextProps<"span", "p"> & Record<string, unknown>;
6
+ } & {
7
+ theme: Theme;
8
+ }) => {
9
+ fontSize: import("csstype").Property.FontSize<string | number> | undefined;
10
+ fontWeight: number;
11
+ lineHeight: import("csstype").Property.LineHeight<string | number> | undefined;
12
+ };
13
+ secondary: ({ theme }: import('@mui/material').ListItemTextProps<"span", "p"> & Record<string, unknown> & {
14
+ ownerState: import('@mui/material').ListItemTextProps<"span", "p"> & Record<string, unknown>;
15
+ } & {
16
+ theme: Theme;
17
+ }) => {
18
+ fontSize: import("csstype").Property.FontSize<string | number> | undefined;
19
+ lineHeight: import("csstype").Property.LineHeight<string | number> | undefined;
20
+ };
21
+ };
22
+ };
@@ -0,0 +1,16 @@
1
+ const i = {
2
+ styleOverrides: {
3
+ primary: ({ theme: t }) => ({
4
+ fontSize: t.typography.body2.fontSize,
5
+ fontWeight: 500,
6
+ lineHeight: t.typography.body2.lineHeight
7
+ }),
8
+ secondary: ({ theme: t }) => ({
9
+ fontSize: t.typography.caption.fontSize,
10
+ lineHeight: t.typography.caption.lineHeight
11
+ })
12
+ }
13
+ };
14
+ export {
15
+ i as MuiListItemText
16
+ };
@@ -0,0 +1,92 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiListItem: {
3
+ styleOverrides: {
4
+ root: ({ theme }: import('@mui/material').ListItemOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "className" | "style" | "classes" | "children" | "sx" | "alignItems" | "dense" | "components" | "componentsProps" | "slots" | "slotProps" | "divider" | "disableGutters" | "disablePadding" | "secondaryAction" | "ContainerComponent" | "ContainerProps"> & {
5
+ component?: React.ElementType | undefined;
6
+ } & Record<string, unknown> & {
7
+ ownerState: import('@mui/material').ListItemOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "className" | "style" | "classes" | "children" | "sx" | "alignItems" | "dense" | "components" | "componentsProps" | "slots" | "slotProps" | "divider" | "disableGutters" | "disablePadding" | "secondaryAction" | "ContainerComponent" | "ContainerProps"> & {
8
+ component?: React.ElementType | undefined;
9
+ } & Record<string, unknown>;
10
+ } & {
11
+ theme: Theme;
12
+ }) => {
13
+ [x: string]: {
14
+ [x: string]: string | number | {
15
+ color: string;
16
+ backgroundColor?: undefined;
17
+ '&:focus-visible'?: undefined;
18
+ '&:hover'?: undefined;
19
+ } | {
20
+ [x: string]: string | {
21
+ color: string;
22
+ backgroundColor?: undefined;
23
+ } | {
24
+ backgroundColor: string;
25
+ color?: undefined;
26
+ };
27
+ backgroundColor: string;
28
+ color: string;
29
+ '&:focus-visible': {
30
+ backgroundColor: string;
31
+ };
32
+ '&:hover': {
33
+ backgroundColor: string;
34
+ };
35
+ } | {
36
+ [x: string]: string | {
37
+ color: string;
38
+ };
39
+ backgroundColor: string;
40
+ color: string;
41
+ '&:focus-visible'?: undefined;
42
+ '&:hover'?: undefined;
43
+ } | {
44
+ backgroundColor: string;
45
+ color?: undefined;
46
+ '&:focus-visible'?: undefined;
47
+ '&:hover'?: undefined;
48
+ };
49
+ alignItems: string;
50
+ display: string;
51
+ gap: number;
52
+ padding: string;
53
+ borderRadius: number;
54
+ whiteSpace: string;
55
+ color: string;
56
+ '&.Mui-selected': {
57
+ [x: string]: string | {
58
+ color: string;
59
+ backgroundColor?: undefined;
60
+ } | {
61
+ backgroundColor: string;
62
+ color?: undefined;
63
+ };
64
+ backgroundColor: string;
65
+ color: string;
66
+ '&:focus-visible': {
67
+ backgroundColor: string;
68
+ };
69
+ '&:hover': {
70
+ backgroundColor: string;
71
+ };
72
+ };
73
+ '&:hover:not(.Mui-selected)': {
74
+ [x: string]: string | {
75
+ color: string;
76
+ };
77
+ backgroundColor: string;
78
+ color: string;
79
+ };
80
+ '&:focus-visible': {
81
+ backgroundColor: string;
82
+ };
83
+ } | {
84
+ color: string;
85
+ fontWeight?: undefined;
86
+ } | {
87
+ fontWeight: number;
88
+ color?: undefined;
89
+ };
90
+ };
91
+ };
92
+ };
@@ -0,0 +1,20 @@
1
+ import { listItemButtonStyles as t } from "./list-item-button.js";
2
+ import { b as s } from "../../buttonBaseClasses-jtnoTmPn.js";
3
+ import { t as r } from "../../typographyClasses-jmoWZuXc.js";
4
+ import { s as e } from "../../svgIconClasses-C6auqaBA.js";
5
+ const p = {
6
+ styleOverrides: {
7
+ root: ({ theme: o }) => ({
8
+ [`& .${e.root}`]: {
9
+ color: (o.vars ?? o).palette.text.secondary
10
+ },
11
+ [`& .${r.root}`]: {
12
+ fontWeight: 500
13
+ },
14
+ [`& .${s.root}`]: t(o)
15
+ })
16
+ }
17
+ };
18
+ export {
19
+ p as MuiListItem
20
+ };
@@ -0,0 +1,20 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiListSubheader: {
3
+ styleOverrides: {
4
+ root: ({ theme }: import('@mui/material').ListSubheaderOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "className" | "style" | "classes" | "children" | "sx" | "color" | "inset" | "disableGutters" | "disableSticky"> & {
5
+ component?: React.ElementType | undefined;
6
+ } & Record<string, unknown> & {
7
+ ownerState: import('@mui/material').ListSubheaderOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "className" | "style" | "classes" | "children" | "sx" | "color" | "inset" | "disableGutters" | "disableSticky"> & {
8
+ component?: React.ElementType | undefined;
9
+ } & Record<string, unknown>;
10
+ } & {
11
+ theme: Theme;
12
+ }) => {
13
+ backgroundColor: "transparent";
14
+ padding: string;
15
+ fontSize: import("csstype").Property.FontSize<string | number> | undefined;
16
+ fontWeight: number;
17
+ lineHeight: import("csstype").Property.LineHeight<string | number> | undefined;
18
+ };
19
+ };
20
+ };
@@ -0,0 +1,14 @@
1
+ const o = {
2
+ styleOverrides: {
3
+ root: ({ theme: t }) => ({
4
+ backgroundColor: "transparent",
5
+ padding: "4px 8px",
6
+ fontSize: t.typography.caption.fontSize,
7
+ fontWeight: 500,
8
+ lineHeight: t.typography.caption.lineHeight
9
+ })
10
+ }
11
+ };
12
+ export {
13
+ o as MuiListSubheader
14
+ };
@@ -0,0 +1,10 @@
1
+ export declare const MuiList: {
2
+ styleOverrides: {
3
+ root: {
4
+ paddingY: number;
5
+ display: "flex";
6
+ flexDirection: "column";
7
+ gap: number;
8
+ };
9
+ };
10
+ };
@@ -0,0 +1,13 @@
1
+ const e = {
2
+ styleOverrides: {
3
+ root: {
4
+ paddingY: 1,
5
+ display: "flex",
6
+ flexDirection: "column",
7
+ gap: 0
8
+ }
9
+ }
10
+ };
11
+ export {
12
+ e as MuiList
13
+ };
@@ -0,0 +1,8 @@
1
+ export declare const MuiMenuItem: {
2
+ styleOverrides: {
3
+ root: {
4
+ paddingTop: number;
5
+ paddingBottom: number;
6
+ };
7
+ };
8
+ };
@@ -0,0 +1,8 @@
1
+ const o = {
2
+ styleOverrides: {
3
+ root: { paddingTop: 8, paddingBottom: 8 }
4
+ }
5
+ };
6
+ export {
7
+ o as MuiMenuItem
8
+ };
@@ -0,0 +1,20 @@
1
+ export declare const MuiMenu: {
2
+ styleOverrides: {
3
+ list: {
4
+ padding: number;
5
+ paddingTop: number;
6
+ paddingBottom: number;
7
+ };
8
+ };
9
+ defaultProps: {
10
+ anchorOrigin: {
11
+ vertical: "bottom";
12
+ horizontal: "center";
13
+ };
14
+ transformOrigin: {
15
+ vertical: "top";
16
+ horizontal: "center";
17
+ };
18
+ marginThreshold: number;
19
+ };
20
+ };
@@ -0,0 +1,23 @@
1
+ const r = {
2
+ styleOverrides: {
3
+ list: {
4
+ padding: 0,
5
+ paddingTop: 8,
6
+ paddingBottom: 8
7
+ }
8
+ },
9
+ defaultProps: {
10
+ anchorOrigin: {
11
+ vertical: "bottom",
12
+ horizontal: "center"
13
+ },
14
+ transformOrigin: {
15
+ vertical: "top",
16
+ horizontal: "center"
17
+ },
18
+ marginThreshold: 0
19
+ }
20
+ };
21
+ export {
22
+ r as MuiMenu
23
+ };