@solostylist/ui-kit 1.0.34 → 1.0.36
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.
- package/dist/{Menu-BDspvd-Q.js → Menu-BTGaz6HX.js} +11 -11
- package/dist/{Stack-hZ9m9_Gh.js → Stack-CHCAZYKm.js} +1 -1
- package/dist/{Typography-Cf3fyOHg.js → Typography-8CUP66S2.js} +2 -2
- package/dist/{createSvgIcon-GD-thYZm.js → createSvgIcon-FIMSBrG5.js} +1 -1
- package/dist/{index-CVr30Fc-.js → index-BKXuuq9K.js} +1 -1
- package/dist/{memoTheme-2xILj8Pd.js → memoTheme-Bz_6CvJG.js} +2 -2
- package/dist/s-data-table/s-data-table.js +3 -3
- package/dist/s-dialog-confirm/s-dialog-confirm.js +1 -1
- package/dist/s-dialog-message/s-dialog-message.js +1 -1
- package/dist/s-file-dropzone/s-file-dropzone.js +2 -2
- package/dist/s-multi-select/s-multi-select.js +84 -81
- package/dist/s-smart-text-field/s-text-field.d.ts +6 -1
- package/dist/s-smart-text-field/s-text-field.js +1584 -1578
- package/dist/s-text-editor/s-text-editor-toolbar.js +1933 -2353
- package/dist/s-tip/s-tip.js +2 -2
- package/dist/theme/components/avatar.d.ts +5 -0
- package/dist/theme/components/avatar.js +6 -3
- package/dist/theme/components/backdrop.d.ts +12 -0
- package/dist/theme/components/backdrop.js +12 -0
- package/dist/theme/components/components.d.ts +60 -0
- package/dist/theme/components/components.js +15 -3
- package/dist/theme/components/container.d.ts +5 -0
- package/dist/theme/components/container.js +6 -0
- package/dist/theme/components/popover.d.ts +16 -0
- package/dist/theme/components/popover.js +7 -0
- package/dist/theme/components/rating.d.ts +7 -0
- package/dist/theme/components/rating.js +8 -0
- package/dist/theme/components/slider.d.ts +7 -0
- package/dist/theme/components/slider.js +8 -0
- package/dist/theme/components/svg-icon.d.ts +9 -0
- package/dist/theme/components/svg-icon.js +10 -0
- package/dist/theme/customizations/data-display.js +3 -1
- package/dist/theme/customizations/inputs.js +55 -35
- package/dist/theme/customizations/navigation.js +30 -48
- package/dist/{useSlot-Cwl3uYYg.js → useSlot-DFX3jR9F.js} +1 -1
- package/package.json +1 -1
- package/dist/menuItemClasses-BuN4fyVT.js +0 -12
package/dist/s-tip/s-tip.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { j as r } from "../jsx-runtime-C5mzlN2N.js";
|
|
2
2
|
import { IconBulb as e } from "@tabler/icons-react";
|
|
3
|
-
import { S as s } from "../Stack-
|
|
4
|
-
import { T as o } from "../Typography-
|
|
3
|
+
import { S as s } from "../Stack-CHCAZYKm.js";
|
|
4
|
+
import { T as o } from "../Typography-8CUP66S2.js";
|
|
5
5
|
const c = ({ message: t }) => /* @__PURE__ */ r.jsxs(
|
|
6
6
|
s,
|
|
7
7
|
{
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { j as r } from "../../jsx-runtime-C5mzlN2N.js";
|
|
2
2
|
import { IconUser as o } from "@tabler/icons-react";
|
|
3
|
-
const
|
|
4
|
-
defaultProps: { children: /* @__PURE__ */ r.jsx(o, {}) }
|
|
3
|
+
const t = {
|
|
4
|
+
defaultProps: { children: /* @__PURE__ */ r.jsx(o, {}) },
|
|
5
|
+
styleOverrides: {
|
|
6
|
+
rounded: { borderRadius: 12 }
|
|
7
|
+
}
|
|
5
8
|
};
|
|
6
9
|
export {
|
|
7
|
-
|
|
10
|
+
t as MuiAvatar
|
|
8
11
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const r = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
invisible: { background: "transparent", backdropFilter: "none" },
|
|
4
|
+
root: {
|
|
5
|
+
backdropFilter: "blur(4px)",
|
|
6
|
+
background: "-webkit-linear-gradient(90deg, rgba(75, 85, 99, 0.8) 0%, rgba(55, 65, 81, 0.4) 100%)"
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
r as MuiBackdrop
|
|
12
|
+
};
|
|
@@ -3,5 +3,65 @@ export declare const components: {
|
|
|
3
3
|
defaultProps: {
|
|
4
4
|
children: import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
};
|
|
6
|
+
styleOverrides: {
|
|
7
|
+
rounded: {
|
|
8
|
+
borderRadius: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
MuiRating: {
|
|
13
|
+
styleOverrides: {
|
|
14
|
+
sizeSmall: {
|
|
15
|
+
fontSize: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
MuiSlider: {
|
|
20
|
+
styleOverrides: {
|
|
21
|
+
valueLabel: {
|
|
22
|
+
borderRadius: number;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
MuiSvgIcon: {
|
|
27
|
+
styleOverrides: {
|
|
28
|
+
root: {
|
|
29
|
+
'& .secondary': {
|
|
30
|
+
opacity: number;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
MuiContainer: {
|
|
36
|
+
defaultProps: {
|
|
37
|
+
maxWidth: "xl";
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
MuiBackdrop: {
|
|
41
|
+
styleOverrides: {
|
|
42
|
+
invisible: {
|
|
43
|
+
background: string;
|
|
44
|
+
backdropFilter: "none";
|
|
45
|
+
};
|
|
46
|
+
root: {
|
|
47
|
+
backdropFilter: "blur(4px)";
|
|
48
|
+
background: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
MuiPopover: {
|
|
53
|
+
defaultProps: {
|
|
54
|
+
elevation: number;
|
|
55
|
+
};
|
|
56
|
+
styleOverrides: {
|
|
57
|
+
paper: ({ theme }: import('@mui/material').PopoverProps & Record<string, unknown> & {
|
|
58
|
+
ownerState: import('@mui/material').PopoverProps & Record<string, unknown>;
|
|
59
|
+
} & {
|
|
60
|
+
theme: import('@mui/material').Theme;
|
|
61
|
+
}) => {
|
|
62
|
+
borderRadius: string | number;
|
|
63
|
+
marginTop: number;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
6
66
|
};
|
|
7
67
|
};
|
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
import { MuiAvatar as o } from "./avatar.js";
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
import { MuiBackdrop as r } from "./backdrop.js";
|
|
3
|
+
import { MuiContainer as i } from "./container.js";
|
|
4
|
+
import { MuiPopover as m } from "./popover.js";
|
|
5
|
+
import { MuiRating as t } from "./rating.js";
|
|
6
|
+
import { MuiSlider as p } from "./slider.js";
|
|
7
|
+
import { MuiSvgIcon as f } from "./svg-icon.js";
|
|
8
|
+
const d = {
|
|
9
|
+
MuiAvatar: o,
|
|
10
|
+
MuiRating: t,
|
|
11
|
+
MuiSlider: p,
|
|
12
|
+
MuiSvgIcon: f,
|
|
13
|
+
MuiContainer: i,
|
|
14
|
+
MuiBackdrop: r,
|
|
15
|
+
MuiPopover: m
|
|
4
16
|
};
|
|
5
17
|
export {
|
|
6
|
-
|
|
18
|
+
d as components
|
|
7
19
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export declare const MuiPopover: {
|
|
3
|
+
defaultProps: {
|
|
4
|
+
elevation: number;
|
|
5
|
+
};
|
|
6
|
+
styleOverrides: {
|
|
7
|
+
paper: ({ theme }: import('@mui/material').PopoverProps & Record<string, unknown> & {
|
|
8
|
+
ownerState: import('@mui/material').PopoverProps & Record<string, unknown>;
|
|
9
|
+
} & {
|
|
10
|
+
theme: Theme;
|
|
11
|
+
}) => {
|
|
12
|
+
borderRadius: string | number;
|
|
13
|
+
marginTop: number;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -195,7 +195,9 @@ const r = d("MuiChip", ["root", "sizeSmall", "sizeMedium", "colorDefault", "colo
|
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
]
|
|
198
|
-
})
|
|
198
|
+
}),
|
|
199
|
+
labelSmall: { paddingInline: 12 },
|
|
200
|
+
colorSecondary: { color: e[500], backgroundColor: e[100] }
|
|
199
201
|
}
|
|
200
202
|
},
|
|
201
203
|
MuiTablePagination: {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { j as
|
|
2
|
-
import { c as l } from "../../createSvgIcon-
|
|
1
|
+
import { j as a } from "../../jsx-runtime-C5mzlN2N.js";
|
|
2
|
+
import { c as l } from "../../createSvgIcon-FIMSBrG5.js";
|
|
3
3
|
import { brand as e, gray as o } from "../theme-primitives.js";
|
|
4
|
-
import { o as
|
|
5
|
-
import { g as
|
|
4
|
+
import { o as n } from "../../outlinedInputClasses-Y-zQ9ZHZ.js";
|
|
5
|
+
import { g as i } from "../../generateUtilityClasses-CvAVhM6T.js";
|
|
6
6
|
import { s } from "../../svgIconClasses-SRBiyaM8.js";
|
|
7
|
-
import { a } from "../../createTheme-CyFSna1a.js";
|
|
8
|
-
const
|
|
7
|
+
import { a as t } from "../../createTheme-CyFSna1a.js";
|
|
8
|
+
const c = l(/* @__PURE__ */ a.jsx("path", {
|
|
9
9
|
d: "M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1m1-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"
|
|
10
|
-
}), "CheckBoxOutlineBlankRounded"),
|
|
10
|
+
}), "CheckBoxOutlineBlankRounded"), p = l(/* @__PURE__ */ a.jsx("path", {
|
|
11
11
|
d: "M9 16.17 5.53 12.7a.996.996 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71c.39-.39.39-1.02 0-1.41a.996.996 0 0 0-1.41 0z"
|
|
12
|
-
}), "CheckRounded"), u = l(/* @__PURE__ */
|
|
12
|
+
}), "CheckRounded"), u = l(/* @__PURE__ */ a.jsx("path", {
|
|
13
13
|
d: "M18 13H6c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1"
|
|
14
|
-
}), "RemoveRounded"), b =
|
|
14
|
+
}), "RemoveRounded"), b = i("MuiToggleButton", ["root", "disabled", "selected", "standard", "primary", "secondary", "sizeSmall", "sizeMedium", "sizeLarge", "fullWidth"]), d = i("MuiToggleButtonGroup", ["root", "selected", "horizontal", "vertical", "disabled", "grouped", "groupedHorizontal", "groupedVertical", "fullWidth", "firstButton", "lastButton", "middleButton"]), m = {
|
|
15
15
|
MuiButtonBase: {
|
|
16
16
|
defaultProps: {
|
|
17
17
|
disableTouchRipple: !0,
|
|
@@ -22,7 +22,7 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
22
22
|
boxSizing: "border-box",
|
|
23
23
|
transition: "all 100ms ease-in",
|
|
24
24
|
"&:focus-visible": {
|
|
25
|
-
outline: `3px solid ${
|
|
25
|
+
outline: `3px solid ${t(r.palette.primary.main, 0.5)}`,
|
|
26
26
|
outlineOffset: "2px"
|
|
27
27
|
}
|
|
28
28
|
})
|
|
@@ -72,6 +72,11 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
72
72
|
"&:active": {
|
|
73
73
|
backgroundColor: o[800]
|
|
74
74
|
},
|
|
75
|
+
"&.MuiButton-loading": {
|
|
76
|
+
"& .MuiButton-loadingIndicator": {
|
|
77
|
+
color: "white"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
75
80
|
...r.applyStyles("dark", {
|
|
76
81
|
color: "black",
|
|
77
82
|
backgroundColor: o[50],
|
|
@@ -85,6 +90,11 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
85
90
|
},
|
|
86
91
|
"&:active": {
|
|
87
92
|
backgroundColor: o[400]
|
|
93
|
+
},
|
|
94
|
+
"&.MuiButton-loading": {
|
|
95
|
+
"& .MuiButton-loadingIndicator": {
|
|
96
|
+
color: "black"
|
|
97
|
+
}
|
|
88
98
|
}
|
|
89
99
|
})
|
|
90
100
|
}
|
|
@@ -97,8 +107,8 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
97
107
|
style: {
|
|
98
108
|
color: "white",
|
|
99
109
|
backgroundColor: e[300],
|
|
100
|
-
backgroundImage: `linear-gradient(to bottom, ${
|
|
101
|
-
boxShadow: `inset 0 2px 0 ${
|
|
110
|
+
backgroundImage: `linear-gradient(to bottom, ${t(e[400], 0.8)}, ${e[500]})`,
|
|
111
|
+
boxShadow: `inset 0 2px 0 ${t(e[200], 0.2)}, inset 0 -2px 0 ${t(e[700], 0.4)}`,
|
|
102
112
|
border: `1px solid ${e[500]}`,
|
|
103
113
|
"&:hover": {
|
|
104
114
|
backgroundColor: e[700],
|
|
@@ -107,6 +117,11 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
107
117
|
"&:active": {
|
|
108
118
|
backgroundColor: e[700],
|
|
109
119
|
backgroundImage: "none"
|
|
120
|
+
},
|
|
121
|
+
"&.MuiButton-loading": {
|
|
122
|
+
"& .MuiButton-loadingIndicator": {
|
|
123
|
+
color: "white"
|
|
124
|
+
}
|
|
110
125
|
}
|
|
111
126
|
}
|
|
112
127
|
},
|
|
@@ -118,7 +133,7 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
118
133
|
color: (r.vars || r).palette.text.primary,
|
|
119
134
|
border: "1px solid",
|
|
120
135
|
borderColor: o[200],
|
|
121
|
-
backgroundColor:
|
|
136
|
+
backgroundColor: t(o[50], 0.3),
|
|
122
137
|
"&:hover": {
|
|
123
138
|
backgroundColor: o[100],
|
|
124
139
|
borderColor: o[300]
|
|
@@ -126,6 +141,11 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
126
141
|
"&:active": {
|
|
127
142
|
backgroundColor: o[200]
|
|
128
143
|
},
|
|
144
|
+
"&.MuiButton-loading": {
|
|
145
|
+
"& .MuiButton-loadingIndicator": {
|
|
146
|
+
color: (r.vars || r).palette.text.primary
|
|
147
|
+
}
|
|
148
|
+
},
|
|
129
149
|
...r.applyStyles("dark", {
|
|
130
150
|
backgroundColor: o[800],
|
|
131
151
|
borderColor: o[700],
|
|
@@ -154,19 +174,19 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
154
174
|
borderColor: e[400]
|
|
155
175
|
},
|
|
156
176
|
"&:active": {
|
|
157
|
-
backgroundColor:
|
|
177
|
+
backgroundColor: t(e[200], 0.7)
|
|
158
178
|
},
|
|
159
179
|
...r.applyStyles("dark", {
|
|
160
180
|
color: e[50],
|
|
161
181
|
border: "1px solid",
|
|
162
182
|
borderColor: e[900],
|
|
163
|
-
backgroundColor:
|
|
183
|
+
backgroundColor: t(e[900], 0.3),
|
|
164
184
|
"&:hover": {
|
|
165
185
|
borderColor: e[700],
|
|
166
|
-
backgroundColor:
|
|
186
|
+
backgroundColor: t(e[900], 0.6)
|
|
167
187
|
},
|
|
168
188
|
"&:active": {
|
|
169
|
-
backgroundColor:
|
|
189
|
+
backgroundColor: t(e[900], 0.5)
|
|
170
190
|
}
|
|
171
191
|
})
|
|
172
192
|
}
|
|
@@ -189,7 +209,7 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
189
209
|
backgroundColor: o[700]
|
|
190
210
|
},
|
|
191
211
|
"&:active": {
|
|
192
|
-
backgroundColor:
|
|
212
|
+
backgroundColor: t(o[700], 0.7)
|
|
193
213
|
}
|
|
194
214
|
})
|
|
195
215
|
}
|
|
@@ -202,18 +222,18 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
202
222
|
style: {
|
|
203
223
|
color: e[700],
|
|
204
224
|
"&:hover": {
|
|
205
|
-
backgroundColor:
|
|
225
|
+
backgroundColor: t(e[100], 0.5)
|
|
206
226
|
},
|
|
207
227
|
"&:active": {
|
|
208
|
-
backgroundColor:
|
|
228
|
+
backgroundColor: t(e[200], 0.7)
|
|
209
229
|
},
|
|
210
230
|
...r.applyStyles("dark", {
|
|
211
231
|
color: e[100],
|
|
212
232
|
"&:hover": {
|
|
213
|
-
backgroundColor:
|
|
233
|
+
backgroundColor: t(e[900], 0.5)
|
|
214
234
|
},
|
|
215
235
|
"&:active": {
|
|
216
|
-
backgroundColor:
|
|
236
|
+
backgroundColor: t(e[900], 0.3)
|
|
217
237
|
}
|
|
218
238
|
})
|
|
219
239
|
}
|
|
@@ -281,7 +301,7 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
281
301
|
styleOverrides: {
|
|
282
302
|
root: ({ theme: r }) => ({
|
|
283
303
|
borderRadius: "10px",
|
|
284
|
-
boxShadow: `0 4px 16px ${
|
|
304
|
+
boxShadow: `0 4px 16px ${t(o[400], 0.2)}`,
|
|
285
305
|
[`& .${d.selected}`]: {
|
|
286
306
|
color: e[500]
|
|
287
307
|
},
|
|
@@ -289,7 +309,7 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
289
309
|
[`& .${d.selected}`]: {
|
|
290
310
|
color: "#fff"
|
|
291
311
|
},
|
|
292
|
-
boxShadow: `0 4px 16px ${
|
|
312
|
+
boxShadow: `0 4px 16px ${t(e[700], 0.5)}`
|
|
293
313
|
})
|
|
294
314
|
})
|
|
295
315
|
}
|
|
@@ -314,9 +334,9 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
314
334
|
MuiCheckbox: {
|
|
315
335
|
defaultProps: {
|
|
316
336
|
disableRipple: !0,
|
|
317
|
-
icon: /* @__PURE__ */
|
|
318
|
-
checkedIcon: /* @__PURE__ */
|
|
319
|
-
indeterminateIcon: /* @__PURE__ */
|
|
337
|
+
icon: /* @__PURE__ */ a.jsx(c, { sx: { color: "hsla(210, 0%, 0%, 0.0)" } }),
|
|
338
|
+
checkedIcon: /* @__PURE__ */ a.jsx(p, { sx: { height: 14, width: 14 } }),
|
|
339
|
+
indeterminateIcon: /* @__PURE__ */ a.jsx(u, { sx: { height: 14, width: 14 } })
|
|
320
340
|
},
|
|
321
341
|
styleOverrides: {
|
|
322
342
|
root: ({ theme: r }) => ({
|
|
@@ -325,15 +345,15 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
325
345
|
width: 16,
|
|
326
346
|
borderRadius: 5,
|
|
327
347
|
border: "1px solid ",
|
|
328
|
-
borderColor:
|
|
348
|
+
borderColor: t(o[300], 0.8),
|
|
329
349
|
boxShadow: "0 0 0 1.5px hsla(210, 0%, 0%, 0.04) inset",
|
|
330
|
-
backgroundColor:
|
|
350
|
+
backgroundColor: t(o[100], 0.4),
|
|
331
351
|
transition: "border-color, background-color, 120ms ease-in",
|
|
332
352
|
"&:hover": {
|
|
333
353
|
borderColor: e[300]
|
|
334
354
|
},
|
|
335
355
|
"&.Mui-focusVisible": {
|
|
336
|
-
outline: `3px solid ${
|
|
356
|
+
outline: `3px solid ${t(e[500], 0.5)}`,
|
|
337
357
|
outlineOffset: "2px",
|
|
338
358
|
borderColor: e[400]
|
|
339
359
|
},
|
|
@@ -347,15 +367,15 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
347
367
|
}
|
|
348
368
|
},
|
|
349
369
|
...r.applyStyles("dark", {
|
|
350
|
-
borderColor:
|
|
370
|
+
borderColor: t(o[700], 0.8),
|
|
351
371
|
boxShadow: "0 0 0 1.5px hsl(210, 0%, 0%) inset",
|
|
352
|
-
backgroundColor:
|
|
372
|
+
backgroundColor: t(o[900], 0.8),
|
|
353
373
|
"&:hover": {
|
|
354
374
|
borderColor: e[300]
|
|
355
375
|
},
|
|
356
376
|
"&.Mui-focusVisible": {
|
|
357
377
|
borderColor: e[400],
|
|
358
|
-
outline: `3px solid ${
|
|
378
|
+
outline: `3px solid ${t(e[500], 0.5)}`,
|
|
359
379
|
outlineOffset: "2px"
|
|
360
380
|
}
|
|
361
381
|
})
|
|
@@ -399,8 +419,8 @@ const p = l(/* @__PURE__ */ t.jsx("path", {
|
|
|
399
419
|
"&:hover": {
|
|
400
420
|
borderColor: o[400]
|
|
401
421
|
},
|
|
402
|
-
[`&.${
|
|
403
|
-
outline: `3px solid ${
|
|
422
|
+
[`&.${n.focused}`]: {
|
|
423
|
+
outline: `3px solid ${t(e[500], 0.5)}`,
|
|
404
424
|
borderColor: e[400]
|
|
405
425
|
},
|
|
406
426
|
...r.applyStyles("dark", {
|
|
@@ -1,61 +1,43 @@
|
|
|
1
|
-
import { j as
|
|
2
|
-
import * as
|
|
3
|
-
import { c as
|
|
4
|
-
import { gray as r, brand as
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { b as u } from "../../buttonBaseClasses-CTVeu_V8.js";
|
|
1
|
+
import { j as s } from "../../jsx-runtime-C5mzlN2N.js";
|
|
2
|
+
import * as d from "react";
|
|
3
|
+
import { c as i } from "../../createSvgIcon-FIMSBrG5.js";
|
|
4
|
+
import { gray as r, brand as p } from "../theme-primitives.js";
|
|
5
|
+
import { g as n } from "../../generateUtilityClasses-CvAVhM6T.js";
|
|
6
|
+
import { s as e } from "../../selectClasses-DWL9Cxkn.js";
|
|
7
|
+
import { b as c } from "../../buttonBaseClasses-CTVeu_V8.js";
|
|
9
8
|
import { a } from "../../createTheme-CyFSna1a.js";
|
|
10
|
-
const
|
|
9
|
+
const b = i(/* @__PURE__ */ s.jsx("path", {
|
|
11
10
|
d: "m12 5.83 2.46 2.46c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L12.7 3.7a.996.996 0 0 0-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0zm0 12.34-2.46-2.46a.996.996 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41a.996.996 0 0 0-1.41 0z"
|
|
12
|
-
}), "UnfoldMoreRounded"), t =
|
|
13
|
-
MuiMenuItem: {
|
|
14
|
-
styleOverrides: {
|
|
15
|
-
root: ({ theme: o }) => ({
|
|
16
|
-
borderRadius: (o.vars || o).shape.borderRadius,
|
|
17
|
-
padding: "6px 8px",
|
|
18
|
-
[`&.${e.focusVisible}`]: {
|
|
19
|
-
backgroundColor: "transparent"
|
|
20
|
-
},
|
|
21
|
-
[`&.${e.selected}`]: {
|
|
22
|
-
[`&.${e.focusVisible}`]: {
|
|
23
|
-
backgroundColor: a(o.palette.action.selected, 0.3)
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
})
|
|
27
|
-
}
|
|
28
|
-
},
|
|
11
|
+
}), "UnfoldMoreRounded"), t = n("MuiTab", ["root", "labelIcon", "textColorInherit", "textColorPrimary", "textColorSecondary", "selected", "disabled", "fullWidth", "wrapped", "iconWrapper", "icon"]), k = {
|
|
29
12
|
MuiMenu: {
|
|
30
13
|
styleOverrides: {
|
|
31
|
-
list: {
|
|
32
|
-
gap: "0px",
|
|
33
|
-
[`&.${c.root}`]: {
|
|
34
|
-
margin: "0 -8px"
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
14
|
paper: ({ theme: o }) => ({
|
|
38
|
-
|
|
15
|
+
backgroundColor: (o.vars || o).palette.background.paper,
|
|
16
|
+
boxShadow: (o.vars || o).shadows[8],
|
|
17
|
+
backgroundImage: (o.vars || o).overlays[8],
|
|
39
18
|
borderRadius: (o.vars || o).shape.borderRadius,
|
|
40
19
|
border: `1px solid ${(o.vars || o).palette.divider}`,
|
|
41
|
-
|
|
42
|
-
background: "hsl(0, 0%, 100%)",
|
|
43
|
-
boxShadow: "hsla(220, 30%, 5%, 0.07) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.07) 0px 8px 16px -5px",
|
|
44
|
-
[`& .${u.root}`]: {
|
|
20
|
+
[`& .${c.root}`]: {
|
|
45
21
|
"&.Mui-selected": {
|
|
46
22
|
backgroundColor: a(o.palette.action.selected, 0.3)
|
|
47
23
|
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
24
|
+
}
|
|
25
|
+
}),
|
|
26
|
+
list: {
|
|
27
|
+
padding: 0,
|
|
28
|
+
paddingTop: 8,
|
|
29
|
+
paddingBottom: 8
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
MuiMenuItem: {
|
|
34
|
+
styleOverrides: {
|
|
35
|
+
root: { paddingTop: 8, paddingBottom: 8 }
|
|
54
36
|
}
|
|
55
37
|
},
|
|
56
38
|
MuiSelect: {
|
|
57
39
|
defaultProps: {
|
|
58
|
-
IconComponent:
|
|
40
|
+
IconComponent: d.forwardRef((o, l) => /* @__PURE__ */ s.jsx(b, { fontSize: "small", ...o, ref: l }))
|
|
59
41
|
},
|
|
60
42
|
styleOverrides: {
|
|
61
43
|
root: ({ theme: o }) => ({
|
|
@@ -69,7 +51,7 @@ const x = p(/* @__PURE__ */ l.jsx("path", {
|
|
|
69
51
|
backgroundColor: (o.vars || o).palette.background.paper,
|
|
70
52
|
boxShadow: "none"
|
|
71
53
|
},
|
|
72
|
-
[`&.${
|
|
54
|
+
[`&.${e.focused}`]: {
|
|
73
55
|
outlineOffset: 0,
|
|
74
56
|
borderColor: r[400]
|
|
75
57
|
},
|
|
@@ -86,7 +68,7 @@ const x = p(/* @__PURE__ */ l.jsx("path", {
|
|
|
86
68
|
backgroundColor: (o.vars || o).palette.background.paper,
|
|
87
69
|
boxShadow: "none"
|
|
88
70
|
},
|
|
89
|
-
[`&.${
|
|
71
|
+
[`&.${e.focused}`]: {
|
|
90
72
|
outlineOffset: 0,
|
|
91
73
|
borderColor: r[900]
|
|
92
74
|
},
|
|
@@ -130,7 +112,7 @@ const x = p(/* @__PURE__ */ l.jsx("path", {
|
|
|
130
112
|
width: 0
|
|
131
113
|
},
|
|
132
114
|
"&:focus-visible": {
|
|
133
|
-
outline: `3px solid ${a(
|
|
115
|
+
outline: `3px solid ${a(p[500], 0.5)}`,
|
|
134
116
|
outlineOffset: "4px",
|
|
135
117
|
borderRadius: "2px"
|
|
136
118
|
}
|
|
@@ -268,5 +250,5 @@ const x = p(/* @__PURE__ */ l.jsx("path", {
|
|
|
268
250
|
}
|
|
269
251
|
};
|
|
270
252
|
export {
|
|
271
|
-
|
|
253
|
+
k as navigationCustomizations
|
|
272
254
|
};
|
|
@@ -6,7 +6,7 @@ import * as h from "react";
|
|
|
6
6
|
import { P as o } from "./createTheme-CyFSna1a.js";
|
|
7
7
|
import { j as x } from "./jsx-runtime-C5mzlN2N.js";
|
|
8
8
|
import { g as je } from "./generateUtilityClasses-CvAVhM6T.js";
|
|
9
|
-
import { u as ce, s as P, c as Oe } from "./memoTheme-
|
|
9
|
+
import { u as ce, s as P, c as Oe } from "./memoTheme-Bz_6CvJG.js";
|
|
10
10
|
import { T as Ae } from "./TransitionGroup-CuA3gNyE.js";
|
|
11
11
|
import { keyframes as ee } from "@emotion/react";
|
|
12
12
|
import { g as De, b as Le } from "./buttonBaseClasses-CTVeu_V8.js";
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { g as e } from "./generateUtilityClasses-CvAVhM6T.js";
|
|
2
|
-
import { g as i } from "./createTheme-CyFSna1a.js";
|
|
3
|
-
const r = e("MuiDivider", ["root", "absolute", "fullWidth", "inset", "middle", "flexItem", "light", "vertical", "withChildren", "withChildrenVertical", "textAlignRight", "textAlignLeft", "wrapper", "wrapperVertical"]);
|
|
4
|
-
function a(t) {
|
|
5
|
-
return i("MuiMenuItem", t);
|
|
6
|
-
}
|
|
7
|
-
const n = e("MuiMenuItem", ["root", "focusVisible", "dense", "disabled", "divider", "gutters", "selected"]);
|
|
8
|
-
export {
|
|
9
|
-
r as d,
|
|
10
|
-
a as g,
|
|
11
|
-
n as m
|
|
12
|
-
};
|