@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,65 @@
1
+ import { j as r } from "../../jsx-runtime-tc70JA_2.js";
2
+ import { c } from "../../createSvgIcon-BkbeLOhM.js";
3
+ import { brand as o, gray as d } from "../theme-primitives.js";
4
+ import { a as e } from "../../createTheme-DgoJyWM-.js";
5
+ const n = c(/* @__PURE__ */ r.jsx("path", {
6
+ 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"
7
+ }), "CheckBoxOutlineBlankRounded"), s = c(/* @__PURE__ */ r.jsx("path", {
8
+ 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"
9
+ }), "CheckRounded"), t = c(/* @__PURE__ */ r.jsx("path", {
10
+ d: "M18 13H6c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1"
11
+ }), "RemoveRounded"), x = {
12
+ defaultProps: {
13
+ disableRipple: !0,
14
+ icon: /* @__PURE__ */ r.jsx(n, { sx: { color: "hsla(210, 0%, 0%, 0.0)" } }),
15
+ checkedIcon: /* @__PURE__ */ r.jsx(s, { sx: { height: 14, width: 14 } }),
16
+ indeterminateIcon: /* @__PURE__ */ r.jsx(t, { sx: { height: 14, width: 14 } })
17
+ },
18
+ styleOverrides: {
19
+ root: ({ theme: i }) => ({
20
+ margin: 8,
21
+ marginLeft: 0,
22
+ height: 16,
23
+ width: 16,
24
+ borderRadius: 5,
25
+ border: "1px solid",
26
+ borderColor: e(d[300], 0.8),
27
+ boxShadow: "0 0 0 1.5px hsla(210, 0%, 0%, 0.04) inset",
28
+ backgroundColor: e(d[100], 0.4),
29
+ transition: "border-color, background-color, 120ms ease-in",
30
+ "&:hover": {
31
+ borderColor: o[300]
32
+ },
33
+ "&.Mui-focusVisible": {
34
+ outline: `3px solid ${e(o[500], 0.5)}`,
35
+ outlineOffset: "2px",
36
+ borderColor: o[400]
37
+ },
38
+ "&.Mui-checked": {
39
+ color: "white",
40
+ backgroundColor: o[500],
41
+ borderColor: o[500],
42
+ boxShadow: "none",
43
+ "&:hover": {
44
+ backgroundColor: o[600]
45
+ }
46
+ },
47
+ ...i.applyStyles("dark", {
48
+ borderColor: e(d[700], 0.8),
49
+ boxShadow: "0 0 0 1.5px hsl(210, 0%, 0%) inset",
50
+ backgroundColor: e(d[900], 0.8),
51
+ "&:hover": {
52
+ borderColor: o[300]
53
+ },
54
+ "&.Mui-focusVisible": {
55
+ borderColor: o[400],
56
+ outline: `3px solid ${e(o[500], 0.5)}`,
57
+ outlineOffset: "2px"
58
+ }
59
+ })
60
+ })
61
+ }
62
+ };
63
+ export {
64
+ x as MuiCheckbox
65
+ };
@@ -1,33 +1,115 @@
1
- import { MuiAlert as o } from "./alert.js";
2
- import { MuiAvatar as r } from "./avatar.js";
3
- import { MuiBackdrop as i } from "./backdrop.js";
4
- import { MuiButton as m } from "./button.js";
5
- import { MuiChip as t } from "./chip.js";
6
- import { MuiContainer as p } from "./container.js";
7
- import { MuiFormControl as u } from "./form-control.js";
8
- import { MuiIconButton as f } from "./icon-button.js";
9
- import { MuiPopover as M } from "./popover.js";
10
- import { MuiRating as n } from "./rating.js";
11
- import { MuiSkeleton as e } from "./skeleton.js";
12
- import { MuiSlider as a } from "./slider.js";
13
- import { MuiSvgIcon as c } from "./svg-icon.js";
14
- import { MuiTooltip as l } from "./tooltip.js";
15
- const R = {
16
- MuiAvatar: r,
17
- MuiRating: n,
18
- MuiSlider: a,
19
- MuiSvgIcon: c,
20
- MuiContainer: p,
21
- MuiBackdrop: i,
22
- MuiPopover: M,
23
- MuiFormControl: u,
24
- MuiChip: t,
25
- MuiButton: m,
26
- MuiIconButton: f,
27
- MuiTooltip: l,
28
- MuiAlert: o,
29
- MuiSkeleton: e
1
+ import { MuiAccordion as o } from "./accordion.js";
2
+ import { MuiAccordionDetails as r } from "./accordion-details.js";
3
+ import { MuiAccordionSummary as i } from "./accordion-summary.js";
4
+ import { MuiAlert as m } from "./alert.js";
5
+ import { MuiAppBar as t } from "./app-bar.js";
6
+ import { MuiAutocomplete as p } from "./autocomplete.js";
7
+ import { MuiAvatar as u } from "./avatar.js";
8
+ import { MuiBackdrop as M } from "./backdrop.js";
9
+ import { MuiButton as f } from "./button.js";
10
+ import { MuiButtonBase as e } from "./button-base.js";
11
+ import { MuiCard as n } from "./card.js";
12
+ import { MuiCardActions as a } from "./card-actions.js";
13
+ import { MuiCardContent as c } from "./card-content.js";
14
+ import { MuiCardHeader as l } from "./card-header.js";
15
+ import { MuiCheckbox as s } from "./checkbox.js";
16
+ import { MuiChip as I } from "./chip.js";
17
+ import { MuiContainer as d } from "./container.js";
18
+ import { MuiDialog as g } from "./dialog.js";
19
+ import { MuiDialogActions as C } from "./dialog-actions.js";
20
+ import { MuiDrawer as A } from "./drawer.js";
21
+ import { MuiFormControl as B } from "./form-control.js";
22
+ import { MuiFormLabel as L } from "./form-label.js";
23
+ import { MuiIcon as S } from "./icon.js";
24
+ import { MuiIconButton as b } from "./icon-button.js";
25
+ import { MuiInputAdornment as T } from "./input-adornment.js";
26
+ import { MuiInputBase as P } from "./input-base.js";
27
+ import { MuiLinearProgress as k } from "./linear-progress.js";
28
+ import { MuiLink as D } from "./link.js";
29
+ import { MuiList as h } from "./list.js";
30
+ import { MuiListItem as v } from "./list-item.js";
31
+ import { MuiListItemButton as x } from "./list-item-button.js";
32
+ import { MuiListItemIcon as F } from "./list-item-icon.js";
33
+ import { MuiListItemText as w } from "./list-item-text.js";
34
+ import { MuiListSubheader as y } from "./list-subheader.js";
35
+ import { MuiMenu as G } from "./menu.js";
36
+ import { MuiMenuItem as H } from "./menu-item.js";
37
+ import { MuiOutlinedInput as O } from "./outlined-input.js";
38
+ import { MuiPaginationItem as R } from "./pagination-item.js";
39
+ import { MuiPaper as j } from "./paper.js";
40
+ import { MuiPopover as q } from "./popover.js";
41
+ import { MuiRating as z } from "./rating.js";
42
+ import { MuiSelect as E } from "./select.js";
43
+ import { MuiSkeleton as J } from "./skeleton.js";
44
+ import { MuiSlider as K } from "./slider.js";
45
+ import { MuiStepConnector as N } from "./step-connector.js";
46
+ import { MuiStepIcon as Q } from "./step-icon.js";
47
+ import { MuiStepLabel as U } from "./step-label.js";
48
+ import { MuiSvgIcon as V } from "./svg-icon.js";
49
+ import { MuiTab as W } from "./tab.js";
50
+ import { MuiTableCell as X } from "./table-cell.js";
51
+ import { MuiTablePagination as Y } from "./table-pagination.js";
52
+ import { MuiTabs as Z } from "./tabs.js";
53
+ import { MuiToggleButton as _ } from "./toggle-button.js";
54
+ import { MuiToggleButtonGroup as $ } from "./toggle-button-group.js";
55
+ import { MuiTooltip as oo } from "./tooltip.js";
56
+ const mr = {
57
+ MuiAccordion: o,
58
+ MuiAccordionDetails: r,
59
+ MuiAccordionSummary: i,
60
+ MuiAlert: m,
61
+ MuiAppBar: t,
62
+ MuiAutocomplete: p,
63
+ MuiAvatar: u,
64
+ MuiBackdrop: M,
65
+ MuiButton: f,
66
+ MuiButtonBase: e,
67
+ MuiCard: n,
68
+ MuiCardActions: a,
69
+ MuiCardContent: c,
70
+ MuiCardHeader: l,
71
+ MuiCheckbox: s,
72
+ MuiChip: I,
73
+ MuiContainer: d,
74
+ MuiDialog: g,
75
+ MuiDialogActions: C,
76
+ MuiDrawer: A,
77
+ MuiFormLabel: L,
78
+ MuiFormControl: B,
79
+ MuiIcon: S,
80
+ MuiIconButton: b,
81
+ MuiInputAdornment: T,
82
+ MuiInputBase: P,
83
+ MuiLinearProgress: k,
84
+ MuiLink: D,
85
+ MuiList: h,
86
+ MuiListItem: v,
87
+ MuiListItemButton: x,
88
+ MuiListItemIcon: F,
89
+ MuiListItemText: w,
90
+ MuiListSubheader: y,
91
+ MuiMenu: G,
92
+ MuiMenuItem: H,
93
+ MuiOutlinedInput: O,
94
+ MuiPaginationItem: R,
95
+ MuiPaper: j,
96
+ MuiPopover: q,
97
+ MuiRating: z,
98
+ MuiSelect: E,
99
+ MuiSkeleton: J,
100
+ MuiSlider: K,
101
+ MuiStepConnector: N,
102
+ MuiStepIcon: Q,
103
+ MuiStepLabel: U,
104
+ MuiSvgIcon: V,
105
+ MuiTab: W,
106
+ MuiTablePagination: Y,
107
+ MuiTableCell: X,
108
+ MuiTabs: Z,
109
+ MuiToggleButton: _,
110
+ MuiToggleButtonGroup: $,
111
+ MuiTooltip: oo
30
112
  };
31
113
  export {
32
- R as components
114
+ mr as components
33
115
  };
@@ -0,0 +1,12 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiDialogActions: {
3
+ styleOverrides: {
4
+ root: ({ theme }: import('@mui/material').DialogActionsProps & Record<string, unknown> & {
5
+ ownerState: import('@mui/material').DialogActionsProps & Record<string, unknown>;
6
+ } & {
7
+ theme: Theme;
8
+ }) => {
9
+ padding: string;
10
+ };
11
+ };
12
+ };
@@ -0,0 +1,10 @@
1
+ const o = {
2
+ styleOverrides: {
3
+ root: ({ theme: i }) => ({
4
+ padding: `${i.spacing(2)} ${i.spacing(3)}`
5
+ })
6
+ }
7
+ };
8
+ export {
9
+ o as MuiDialogActions
10
+ };
@@ -0,0 +1,19 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiDialog: {
3
+ styleOverrides: {
4
+ root: ({ theme }: import('@mui/material').DialogProps & Record<string, unknown> & {
5
+ ownerState: import('@mui/material').DialogProps & Record<string, unknown>;
6
+ } & {
7
+ theme: Theme;
8
+ }) => {
9
+ '& .MuiDialog-paper': {
10
+ borderRadius: string;
11
+ border: string;
12
+ borderColor: string;
13
+ backgroundColor: string;
14
+ backgroundImage: string;
15
+ boxShadow: string;
16
+ };
17
+ };
18
+ };
19
+ };
@@ -0,0 +1,17 @@
1
+ const r = {
2
+ styleOverrides: {
3
+ root: ({ theme: o }) => ({
4
+ "& .MuiDialog-paper": {
5
+ borderRadius: "10px",
6
+ border: "1px solid",
7
+ borderColor: (o.vars ?? o).palette.divider,
8
+ backgroundColor: (o.vars ?? o).palette.background.paper,
9
+ backgroundImage: "none",
10
+ boxShadow: "none"
11
+ }
12
+ })
13
+ }
14
+ };
15
+ export {
16
+ r as MuiDialog
17
+ };
@@ -0,0 +1,12 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiDrawer: {
3
+ styleOverrides: {
4
+ paper: ({ theme }: import('@mui/material').DrawerProps & Record<string, unknown> & {
5
+ ownerState: import('@mui/material').DrawerProps & Record<string, unknown>;
6
+ } & {
7
+ theme: Theme;
8
+ }) => {
9
+ backgroundColor: string;
10
+ };
11
+ };
12
+ };
@@ -0,0 +1,10 @@
1
+ const a = {
2
+ styleOverrides: {
3
+ paper: ({ theme: r }) => ({
4
+ backgroundColor: (r.vars ?? r).palette.background.default
5
+ })
6
+ }
7
+ };
8
+ export {
9
+ a as MuiDrawer
10
+ };
@@ -0,0 +1,17 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const MuiFormLabel: {
3
+ styleOverrides: {
4
+ root: ({ theme }: import('@mui/material').FormLabelBaseProps & import('@mui/material').FormLabelOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, keyof import('@mui/material/OverridableComponent').CommonProps | "children" | "sx" | "form" | "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "filled" | "disabled" | "error" | "required" | "htmlFor" | "focused"> & {
5
+ component?: React.ElementType | undefined;
6
+ } & Record<string, unknown> & {
7
+ ownerState: import('@mui/material').FormLabelBaseProps & import('@mui/material').FormLabelOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, keyof import('@mui/material/OverridableComponent').CommonProps | "children" | "sx" | "form" | "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "filled" | "disabled" | "error" | "required" | "htmlFor" | "focused"> & {
8
+ component?: React.ElementType | undefined;
9
+ } & Record<string, unknown>;
10
+ } & {
11
+ theme: Theme;
12
+ }) => {
13
+ typography: import('@mui/material').CSSProperties;
14
+ marginBottom: number;
15
+ };
16
+ };
17
+ };
@@ -0,0 +1,11 @@
1
+ const t = {
2
+ styleOverrides: {
3
+ root: ({ theme: o }) => ({
4
+ typography: o.typography.caption,
5
+ marginBottom: 8
6
+ })
7
+ }
8
+ };
9
+ export {
10
+ t as MuiFormLabel
11
+ };
@@ -0,0 +1,17 @@
1
+ export declare const MuiIcon: {
2
+ defaultProps: {
3
+ fontSize: "small";
4
+ };
5
+ styleOverrides: {
6
+ root: {
7
+ variants: {
8
+ props: {
9
+ fontSize: "small";
10
+ };
11
+ style: {
12
+ fontSize: string;
13
+ };
14
+ }[];
15
+ };
16
+ };
17
+ };
@@ -0,0 +1,22 @@
1
+ const e = {
2
+ defaultProps: {
3
+ fontSize: "small"
4
+ },
5
+ styleOverrides: {
6
+ root: {
7
+ variants: [
8
+ {
9
+ props: {
10
+ fontSize: "small"
11
+ },
12
+ style: {
13
+ fontSize: "0.75rem"
14
+ }
15
+ }
16
+ ]
17
+ }
18
+ }
19
+ };
20
+ export {
21
+ e as MuiIcon
22
+ };