@zidsa/zidmui 2.1.6 → 2.1.8
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/react/cjs/theme/components/app-bar.js +153 -0
- package/dist/react/cjs/theme/components/app-bar.js.map +1 -0
- package/dist/react/cjs/theme/components/autocomplete.js +14 -0
- package/dist/react/cjs/theme/components/autocomplete.js.map +1 -0
- package/dist/react/cjs/theme/components/card.js +31 -0
- package/dist/react/cjs/theme/components/card.js.map +1 -0
- package/dist/react/cjs/theme/components/drawer.js +37 -0
- package/dist/react/cjs/theme/components/drawer.js.map +1 -0
- package/dist/react/cjs/theme/components/form-control-label.js +14 -0
- package/dist/react/cjs/theme/components/form-control-label.js.map +1 -0
- package/dist/react/cjs/theme/components/form-helper-text.js +46 -0
- package/dist/react/cjs/theme/components/form-helper-text.js.map +1 -0
- package/dist/react/cjs/theme/components/form-label.js +31 -0
- package/dist/react/cjs/theme/components/form-label.js.map +1 -0
- package/dist/react/cjs/theme/components/icon.js +77 -0
- package/dist/react/cjs/theme/components/icon.js.map +1 -0
- package/dist/react/cjs/theme/components/menu.js +26 -0
- package/dist/react/cjs/theme/components/menu.js.map +1 -0
- package/dist/react/cjs/theme/components/paper.js +11 -0
- package/dist/react/cjs/theme/components/paper.js.map +1 -0
- package/dist/react/cjs/theme/components/select.js +32 -0
- package/dist/react/cjs/theme/components/select.js.map +1 -0
- package/dist/react/cjs/theme/components/switch.js +5 -0
- package/dist/react/cjs/theme/components/switch.js.map +1 -1
- package/dist/react/cjs/theme/components/table.js +45 -0
- package/dist/react/cjs/theme/components/table.js.map +1 -0
- package/dist/react/cjs/theme/components.js +27 -1
- package/dist/react/cjs/theme/components.js.map +1 -1
- package/dist/react/es/theme/components/app-bar.js +153 -0
- package/dist/react/es/theme/components/app-bar.js.map +1 -0
- package/dist/react/es/theme/components/autocomplete.js +14 -0
- package/dist/react/es/theme/components/autocomplete.js.map +1 -0
- package/dist/react/es/theme/components/card.js +31 -0
- package/dist/react/es/theme/components/card.js.map +1 -0
- package/dist/react/es/theme/components/drawer.js +37 -0
- package/dist/react/es/theme/components/drawer.js.map +1 -0
- package/dist/react/es/theme/components/form-control-label.js +14 -0
- package/dist/react/es/theme/components/form-control-label.js.map +1 -0
- package/dist/react/es/theme/components/form-helper-text.js +46 -0
- package/dist/react/es/theme/components/form-helper-text.js.map +1 -0
- package/dist/react/es/theme/components/form-label.js +31 -0
- package/dist/react/es/theme/components/form-label.js.map +1 -0
- package/dist/react/es/theme/components/icon.js +77 -0
- package/dist/react/es/theme/components/icon.js.map +1 -0
- package/dist/react/es/theme/components/menu.js +26 -0
- package/dist/react/es/theme/components/menu.js.map +1 -0
- package/dist/react/es/theme/components/paper.js +11 -0
- package/dist/react/es/theme/components/paper.js.map +1 -0
- package/dist/react/es/theme/components/select.js +32 -0
- package/dist/react/es/theme/components/select.js.map +1 -0
- package/dist/react/es/theme/components/switch.js +5 -0
- package/dist/react/es/theme/components/switch.js.map +1 -1
- package/dist/react/es/theme/components/table.js +45 -0
- package/dist/react/es/theme/components/table.js.map +1 -0
- package/dist/react/es/theme/components.js +27 -1
- package/dist/react/es/theme/components.js.map +1 -1
- package/dist/react/types/theme/components/app-bar.d.ts +2 -0
- package/dist/react/types/theme/components/autocomplete.d.ts +2 -0
- package/dist/react/types/theme/components/card.d.ts +2 -0
- package/dist/react/types/theme/components/drawer.d.ts +2 -0
- package/dist/react/types/theme/components/form-control-label.d.ts +2 -0
- package/dist/react/types/theme/components/form-helper-text.d.ts +2 -0
- package/dist/react/types/theme/components/form-label.d.ts +2 -0
- package/dist/react/types/theme/components/icon.d.ts +2 -0
- package/dist/react/types/theme/components/menu.d.ts +3 -0
- package/dist/react/types/theme/components/paper.d.ts +2 -0
- package/dist/react/types/theme/components/select.d.ts +2 -0
- package/dist/react/types/theme/components/table.d.ts +3 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const MuiTable = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
border: "none",
|
|
7
|
+
".MuiTableHead-root": {
|
|
8
|
+
".MuiTableCell-root": {
|
|
9
|
+
borderBottom: `1px solid ${theme.palette.background.gray200}`,
|
|
10
|
+
borderTop: `1px solid ${theme.palette.background.gray200}`,
|
|
11
|
+
background: theme.palette.background.gray,
|
|
12
|
+
verticalAlign: "baseline"
|
|
13
|
+
},
|
|
14
|
+
whiteSpace: "nowrap"
|
|
15
|
+
},
|
|
16
|
+
".MuiTableBody-root": {
|
|
17
|
+
".MuiTableRow-root": {
|
|
18
|
+
".MuiTableCell-root": {
|
|
19
|
+
borderBottom: `1px solid ${theme.palette.background.gray200}`,
|
|
20
|
+
borderTop: `1px solid ${theme.palette.background.gray200}`
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
".MuiTableRow-root:last-child": {
|
|
24
|
+
".MuiTableCell-root": {
|
|
25
|
+
borderBottom: "none"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
const MuiTableRow = {
|
|
33
|
+
styleOverrides: {
|
|
34
|
+
root: ({ ownerState }) => ({
|
|
35
|
+
...ownerState["disable-row-hover"] ? {} : {
|
|
36
|
+
"&:hover": {
|
|
37
|
+
backgroundColor: "#FBFBFB"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
})
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
exports.MuiTable = MuiTable;
|
|
44
|
+
exports.MuiTableRow = MuiTableRow;
|
|
45
|
+
//# sourceMappingURL=table.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.js","sources":["../../../../../src/theme/components/table.ts"],"sourcesContent":["import type {} from '@mui/lab/themeAugmentation';\nimport { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\nexport const MuiTable: Components<Theme & CssVarsTheme>['MuiTable'] = {\n styleOverrides: {\n root: ({ theme }) => ({\n border: 'none',\n\n '.MuiTableHead-root': {\n '.MuiTableCell-root': {\n borderBottom: `1px solid ${theme.palette.background.gray200}`,\n borderTop: `1px solid ${theme.palette.background.gray200}`,\n background: theme.palette.background.gray,\n verticalAlign: 'baseline',\n },\n whiteSpace: 'nowrap',\n },\n\n '.MuiTableBody-root': {\n '.MuiTableRow-root': {\n '.MuiTableCell-root': {\n borderBottom: `1px solid ${theme.palette.background.gray200}`,\n borderTop: `1px solid ${theme.palette.background.gray200}`,\n },\n },\n\n '.MuiTableRow-root:last-child': {\n '.MuiTableCell-root': {\n borderBottom: 'none',\n },\n },\n },\n }),\n },\n};\n\nexport const MuiTableRow: Components<Theme & CssVarsTheme>['MuiTableRow'] = {\n styleOverrides: {\n root: ({ ownerState }) => ({\n ...(ownerState['disable-row-hover']\n ? {}\n : {\n '&:hover': {\n backgroundColor: '#FBFBFB',\n },\n }),\n }),\n },\n};\n"],"names":[],"mappings":";;AAGO,MAAM,WAAyD;AAAA,EACpE,gBAAgB;AAAA,IACd,MAAM,CAAC,EAAE,aAAa;AAAA,MACpB,QAAQ;AAAA,MAER,sBAAsB;AAAA,QACpB,sBAAsB;AAAA,UACpB,cAAc,aAAa,MAAM,QAAQ,WAAW,OAAO;AAAA,UAC3D,WAAW,aAAa,MAAM,QAAQ,WAAW,OAAO;AAAA,UACxD,YAAY,MAAM,QAAQ,WAAW;AAAA,UACrC,eAAe;AAAA,QAAA;AAAA,QAEjB,YAAY;AAAA,MAAA;AAAA,MAGd,sBAAsB;AAAA,QACpB,qBAAqB;AAAA,UACnB,sBAAsB;AAAA,YACpB,cAAc,aAAa,MAAM,QAAQ,WAAW,OAAO;AAAA,YAC3D,WAAW,aAAa,MAAM,QAAQ,WAAW,OAAO;AAAA,UAAA;AAAA,QAC1D;AAAA,QAGF,gCAAgC;AAAA,UAC9B,sBAAsB;AAAA,YACpB,cAAc;AAAA,UAAA;AAAA,QAChB;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEJ;AAEO,MAAM,cAA+D;AAAA,EAC1E,gBAAgB;AAAA,IACd,MAAM,CAAC,EAAE,kBAAkB;AAAA,MACzB,GAAI,WAAW,mBAAmB,IAC9B,KACA;AAAA,QACE,WAAW;AAAA,UACT,iBAAiB;AAAA,QAAA;AAAA,MACnB;AAAA,IACF;AAAA,EACN;AAEJ;;;"}
|
|
@@ -25,6 +25,18 @@ const formGroup = require("./components/form-group.js");
|
|
|
25
25
|
const backdrop = require("./components/backdrop.js");
|
|
26
26
|
const svgIcon = require("./components/svg-icon.js");
|
|
27
27
|
const timeline = require("./components/timeline.js");
|
|
28
|
+
const formControlLabel = require("./components/form-control-label.js");
|
|
29
|
+
const formLabel = require("./components/form-label.js");
|
|
30
|
+
const formHelperText = require("./components/form-helper-text.js");
|
|
31
|
+
const appBar = require("./components/app-bar.js");
|
|
32
|
+
const autocomplete = require("./components/autocomplete.js");
|
|
33
|
+
const drawer = require("./components/drawer.js");
|
|
34
|
+
const menu = require("./components/menu.js");
|
|
35
|
+
const icon = require("./components/icon.js");
|
|
36
|
+
const paper = require("./components/paper.js");
|
|
37
|
+
const table = require("./components/table.js");
|
|
38
|
+
const select = require("./components/select.js");
|
|
39
|
+
const card = require("./components/card.js");
|
|
28
40
|
const components = {
|
|
29
41
|
MuiTypography: typography.MuiTypography,
|
|
30
42
|
MuiChip: chip.MuiChip,
|
|
@@ -55,7 +67,21 @@ const components = {
|
|
|
55
67
|
MuiFormGroup: formGroup.MuiFormGroup,
|
|
56
68
|
MuiBackdrop: backdrop.MuiBackdrop,
|
|
57
69
|
MuiSvgIcon: svgIcon.MuiSvgIcon,
|
|
58
|
-
MuiTimeline: timeline.MuiTimeline
|
|
70
|
+
MuiTimeline: timeline.MuiTimeline,
|
|
71
|
+
MuiFormControlLabel: formControlLabel.MuiFormControlLabel,
|
|
72
|
+
MuiFormLabel: formLabel.MuiFormLabel,
|
|
73
|
+
MuiFormHelperText: formHelperText.MuiFormHelperText,
|
|
74
|
+
MuiAppBar: appBar.MuiAppBar,
|
|
75
|
+
MuiAutocomplete: autocomplete.MuiAutocomplete,
|
|
76
|
+
MuiDrawer: drawer.MuiDrawer,
|
|
77
|
+
MuiMenu: menu.MuiMenu,
|
|
78
|
+
MuiMenuItem: menu.MuiMenuItem,
|
|
79
|
+
MuiIcon: icon.MuiIcon,
|
|
80
|
+
MuiPaper: paper.MuiPaper,
|
|
81
|
+
MuiTable: table.MuiTable,
|
|
82
|
+
MuiTableRow: table.MuiTableRow,
|
|
83
|
+
MuiSelect: select.MuiSelect,
|
|
84
|
+
MuiCard: card.MuiCard
|
|
59
85
|
};
|
|
60
86
|
exports.components = components;
|
|
61
87
|
//# sourceMappingURL=components.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sources":["../../../../src/theme/components.ts"],"sourcesContent":["import { MuiAlert } from './components/alert';\nimport { MuiButton } from './components/button';\nimport { MuiChip } from './components/chip';\nimport { MuiList, MuiListItemText, MuiListItemIcon } from './components/list';\nimport { MuiStack } from './components/stack';\nimport { MuiTooltip } from './components/tooltip';\nimport { MuiTypography } from './components/typography';\nimport { MuiDivider } from './components/divider';\nimport { MuiIconButton } from './components/icon-button';\nimport { MuiTab } from './components/tab';\nimport { MuiTabs } from './components/tabs';\nimport { MuiSkeleton } from './components/skeleton';\nimport { MuiCheckbox } from './components/checkbox';\nimport { MuiDialog, MuiDialogTitle, MuiDialogContent, MuiDialogActions } from './components/dialog';\nimport { MuiInputAdornment } from './components/input-adornment';\nimport { MuiInputBase } from './components/input-base';\nimport { MuiInputLabel } from './components/input-label';\nimport { MuiTextField } from './components/text-field';\nimport { MuiPagination } from './components/pagination';\nimport { MuiSwitch } from './components/switch';\nimport { MuiRadio } from './components/radio';\nimport { MuiFormGroup } from './components/form-group';\nimport { MuiBackdrop } from './components/backdrop';\nimport { MuiSvgIcon } from './components/svg-icon';\nimport { MuiTimeline } from './components/timeline';\n\n//\n//\n\n// NOTE: We use any here to avoid type inference issues\n// oxlint-disable-next-line @typescript-eslint/no-explicit-any\nexport const components: Record<string, any> = {\n MuiTypography,\n MuiChip,\n MuiButton,\n MuiAlert,\n MuiStack,\n MuiList,\n MuiListItemText,\n MuiListItemIcon,\n MuiTooltip,\n MuiDivider,\n MuiIconButton,\n MuiTabs,\n MuiTab,\n MuiSkeleton,\n MuiCheckbox,\n MuiDialog,\n MuiDialogTitle,\n MuiDialogContent,\n MuiDialogActions,\n MuiTextField,\n MuiInputBase,\n MuiInputLabel,\n MuiInputAdornment,\n MuiPagination,\n MuiSwitch,\n MuiRadio,\n MuiFormGroup,\n MuiBackdrop,\n MuiSvgIcon,\n MuiTimeline,\n};\n"],"names":["MuiTypography","MuiChip","MuiButton","MuiAlert","MuiStack","MuiList","MuiListItemText","MuiListItemIcon","MuiTooltip","MuiDivider","MuiIconButton","MuiTabs","MuiTab","MuiSkeleton","MuiCheckbox","MuiDialog","MuiDialogTitle","MuiDialogContent","MuiDialogActions","MuiTextField","MuiInputBase","MuiInputLabel","MuiInputAdornment","MuiPagination","MuiSwitch","MuiRadio","MuiFormGroup","MuiBackdrop","MuiSvgIcon","MuiTimeline"],"mappings":"
|
|
1
|
+
{"version":3,"file":"components.js","sources":["../../../../src/theme/components.ts"],"sourcesContent":["import { MuiAlert } from './components/alert';\nimport { MuiButton } from './components/button';\nimport { MuiChip } from './components/chip';\nimport { MuiList, MuiListItemText, MuiListItemIcon } from './components/list';\nimport { MuiStack } from './components/stack';\nimport { MuiTooltip } from './components/tooltip';\nimport { MuiTypography } from './components/typography';\nimport { MuiDivider } from './components/divider';\nimport { MuiIconButton } from './components/icon-button';\nimport { MuiTab } from './components/tab';\nimport { MuiTabs } from './components/tabs';\nimport { MuiSkeleton } from './components/skeleton';\nimport { MuiCheckbox } from './components/checkbox';\nimport { MuiDialog, MuiDialogTitle, MuiDialogContent, MuiDialogActions } from './components/dialog';\nimport { MuiInputAdornment } from './components/input-adornment';\nimport { MuiInputBase } from './components/input-base';\nimport { MuiInputLabel } from './components/input-label';\nimport { MuiTextField } from './components/text-field';\nimport { MuiPagination } from './components/pagination';\nimport { MuiSwitch } from './components/switch';\nimport { MuiRadio } from './components/radio';\nimport { MuiFormGroup } from './components/form-group';\nimport { MuiBackdrop } from './components/backdrop';\nimport { MuiSvgIcon } from './components/svg-icon';\nimport { MuiTimeline } from './components/timeline';\nimport { MuiFormControlLabel } from './components/form-control-label';\nimport { MuiFormLabel } from './components/form-label';\nimport { MuiFormHelperText } from './components/form-helper-text';\nimport { MuiAppBar } from './components/app-bar';\nimport { MuiAutocomplete } from './components/autocomplete';\nimport { MuiDrawer } from './components/drawer';\nimport { MuiMenu, MuiMenuItem } from './components/menu';\nimport { MuiIcon } from './components/icon';\nimport { MuiPaper } from './components/paper';\nimport { MuiTable, MuiTableRow } from './components/table';\nimport { MuiSelect } from './components/select';\nimport { MuiCard } from './components/card';\n\n//\n//\n\n// NOTE: We use any here to avoid type inference issues\n// oxlint-disable-next-line @typescript-eslint/no-explicit-any\nexport const components: Record<string, any> = {\n MuiTypography,\n MuiChip,\n MuiButton,\n MuiAlert,\n MuiStack,\n MuiList,\n MuiListItemText,\n MuiListItemIcon,\n MuiTooltip,\n MuiDivider,\n MuiIconButton,\n MuiTabs,\n MuiTab,\n MuiSkeleton,\n MuiCheckbox,\n MuiDialog,\n MuiDialogTitle,\n MuiDialogContent,\n MuiDialogActions,\n MuiTextField,\n MuiInputBase,\n MuiInputLabel,\n MuiInputAdornment,\n MuiPagination,\n MuiSwitch,\n MuiRadio,\n MuiFormGroup,\n MuiBackdrop,\n MuiSvgIcon,\n MuiTimeline,\n MuiFormControlLabel,\n MuiFormLabel,\n MuiFormHelperText,\n MuiAppBar,\n MuiAutocomplete,\n MuiDrawer,\n MuiMenu,\n MuiMenuItem,\n MuiIcon,\n MuiPaper,\n MuiTable,\n MuiTableRow,\n MuiSelect,\n MuiCard,\n};\n"],"names":["MuiTypography","MuiChip","MuiButton","MuiAlert","MuiStack","MuiList","MuiListItemText","MuiListItemIcon","MuiTooltip","MuiDivider","MuiIconButton","MuiTabs","MuiTab","MuiSkeleton","MuiCheckbox","MuiDialog","MuiDialogTitle","MuiDialogContent","MuiDialogActions","MuiTextField","MuiInputBase","MuiInputLabel","MuiInputAdornment","MuiPagination","MuiSwitch","MuiRadio","MuiFormGroup","MuiBackdrop","MuiSvgIcon","MuiTimeline","MuiFormControlLabel","MuiFormLabel","MuiFormHelperText","MuiAppBar","MuiAutocomplete","MuiDrawer","MuiMenu","MuiMenuItem","MuiIcon","MuiPaper","MuiTable","MuiTableRow","MuiSelect","MuiCard"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CO,MAAM,aAAkC;AAAA,EAAA,eAC7CA,WAAAA;AAAAA,EAAA,SACAC,KAAAA;AAAAA,EAAA,WACAC,OAAAA;AAAAA,EAAA,UACAC,MAAAA;AAAAA,EAAA,UACAC,MAAAA;AAAAA,EAAA,SACAC,KAAAA;AAAAA,EAAA,iBACAC,KAAAA;AAAAA,EAAA,iBACAC,KAAAA;AAAAA,EAAA,YACAC,QAAAA;AAAAA,EAAA,YACAC,QAAAA;AAAAA,EAAA,eACAC,WAAAA;AAAAA,EAAA,SACAC,KAAAA;AAAAA,EAAA,QACAC,IAAAA;AAAAA,EAAA,aACAC,SAAAA;AAAAA,EAAA,aACAC,SAAAA;AAAAA,EAAA,WACAC,OAAAA;AAAAA,EAAA,gBACAC,OAAAA;AAAAA,EAAA,kBACAC,OAAAA;AAAAA,EAAA,kBACAC,OAAAA;AAAAA,EAAA,cACAC,UAAAA;AAAAA,EAAA,cACAC,UAAAA;AAAAA,EAAA,eACAC,WAAAA;AAAAA,EAAA,mBACAC,eAAAA;AAAAA,EAAA,eACAC,WAAAA;AAAAA,EAAA,WACAC,QAAAA;AAAAA,EAAA,UACAC,MAAAA;AAAAA,EAAA,cACAC,UAAAA;AAAAA,EAAA,aACAC,SAAAA;AAAAA,EAAA,YACAC,QAAAA;AAAAA,EAAA,aACAC,SAAAA;AAAAA,EAAA,qBACAC,iBAAAA;AAAAA,EAAA,cACAC,UAAAA;AAAAA,EAAA,mBACAC,eAAAA;AAAAA,EAAA,WACAC,OAAAA;AAAAA,EAAA,iBACAC,aAAAA;AAAAA,EAAA,WACAC,OAAAA;AAAAA,EAAA,SACAC,KAAAA;AAAAA,EAAA,aACAC,KAAAA;AAAAA,EAAA,SACAC,KAAAA;AAAAA,EAAA,UACAC,MAAAA;AAAAA,EAAA,UACAC,MAAAA;AAAAA,EAAA,aACAC,MAAAA;AAAAA,EAAA,WACAC,OAAAA;AAAAA,EAAA,SACAC,KAAAA;AACF;;"}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { palette } from "../palette.js";
|
|
2
|
+
import { shadows } from "../shadows.js";
|
|
3
|
+
const MuiAppBar = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
boxShadow: shadows?.[4],
|
|
7
|
+
input: {
|
|
8
|
+
fontSize: 14,
|
|
9
|
+
"&:-webkit-autofill": {
|
|
10
|
+
transitionDelay: "9999s !important"
|
|
11
|
+
},
|
|
12
|
+
"&::-webkit-input-placeholder": {
|
|
13
|
+
opacity: 1,
|
|
14
|
+
color: theme.palette.text.secondary
|
|
15
|
+
},
|
|
16
|
+
"&::-moz-placeholder": {
|
|
17
|
+
opacity: 1,
|
|
18
|
+
color: theme.palette.text.secondary
|
|
19
|
+
},
|
|
20
|
+
"&:-ms-input-placeholder": {
|
|
21
|
+
opacity: 1,
|
|
22
|
+
color: theme.palette.text.secondary
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"& form": {
|
|
26
|
+
margin: 0,
|
|
27
|
+
maxWidth: 564,
|
|
28
|
+
width: "100%",
|
|
29
|
+
"& .MuiFormControl-root": {
|
|
30
|
+
marginTop: 0
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
//
|
|
34
|
+
variants: [
|
|
35
|
+
{
|
|
36
|
+
props: { color: "primary" },
|
|
37
|
+
style: ({ theme: theme2 }) => ({
|
|
38
|
+
"& .MuiButtonBase-root.menuIcon > .MuiSvgIcon-root, .MuiButtonBase-root.searchIcon > .MuiSvgIcon-root": {
|
|
39
|
+
color: theme2.palette.common.white_states.main
|
|
40
|
+
},
|
|
41
|
+
input: {
|
|
42
|
+
color: theme2.palette.primary.contrastText,
|
|
43
|
+
"&::-webkit-input-placeholder": {
|
|
44
|
+
opacity: 1,
|
|
45
|
+
color: theme2.palette.primary.contrastText
|
|
46
|
+
},
|
|
47
|
+
"&::-moz-placeholder": {
|
|
48
|
+
opacity: 1,
|
|
49
|
+
color: theme2.palette.primary.contrastText
|
|
50
|
+
},
|
|
51
|
+
"&:-ms-input-placeholder": {
|
|
52
|
+
opacity: 1,
|
|
53
|
+
color: theme2.palette.primary.contrastText
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"& .MuiTextField-root": {
|
|
57
|
+
"& .MuiOutlinedInput-root": {
|
|
58
|
+
"& fieldset": {
|
|
59
|
+
border: "none",
|
|
60
|
+
background: theme2.palette.common.white_states.focusVisible
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
})
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
props: { color: "default" },
|
|
68
|
+
style: ({ theme: theme2 }) => ({
|
|
69
|
+
"& .MuiTextField-root": {
|
|
70
|
+
"& .MuiOutlinedInput-root": {
|
|
71
|
+
"& fieldset": {
|
|
72
|
+
border: "none",
|
|
73
|
+
background: theme2.palette.common.black_states.selected
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
})
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
props: { color: "secondary" },
|
|
81
|
+
style: ({ theme: theme2 }) => ({
|
|
82
|
+
"& .MuiButtonBase-root.menuIcon > .MuiSvgIcon-root, .MuiButtonBase-root.searchIcon > .MuiSvgIcon-root": {
|
|
83
|
+
color: theme2.palette.common.white_states.main
|
|
84
|
+
},
|
|
85
|
+
input: {
|
|
86
|
+
opacity: 1,
|
|
87
|
+
color: theme2.palette.primary.contrastText,
|
|
88
|
+
"&::-webkit-input-placeholder": {
|
|
89
|
+
opacity: 1,
|
|
90
|
+
color: theme2.palette.primary.contrastText
|
|
91
|
+
},
|
|
92
|
+
"&::-moz-placeholder, &:-ms-input-placeholder": {
|
|
93
|
+
opacity: 1,
|
|
94
|
+
color: theme2.palette.primary.contrastText
|
|
95
|
+
},
|
|
96
|
+
"&:-ms-input-placeholder": {
|
|
97
|
+
opacity: 1,
|
|
98
|
+
color: theme2.palette.primary.contrastText
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"& .MuiTextField-root": {
|
|
102
|
+
"& .MuiOutlinedInput-root": {
|
|
103
|
+
"& fieldset": {
|
|
104
|
+
border: "none",
|
|
105
|
+
background: theme2.palette.common.white_states.focus
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
props: { color: "inherit" },
|
|
113
|
+
style: ({ theme: theme2 }) => ({
|
|
114
|
+
"& .MuiTextField-root": {
|
|
115
|
+
"& .MuiOutlinedInput-root": {
|
|
116
|
+
"& fieldset": {
|
|
117
|
+
border: "none",
|
|
118
|
+
background: theme2.palette.common.black_states.hover
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
})
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
props: { color: "transparent" },
|
|
126
|
+
style: ({ theme: theme2 }) => ({
|
|
127
|
+
backgroundColor: palette?.background?.default,
|
|
128
|
+
boxShadow: shadows?.[0],
|
|
129
|
+
borderBottom: `1px solid ${theme2.palette?.outlined?.outlined_2}`,
|
|
130
|
+
"& .MuiTextField-root": {
|
|
131
|
+
"& .MuiOutlinedInput-root": {
|
|
132
|
+
"& fieldset": {
|
|
133
|
+
borderColor: theme2.palette?.outlined?.outlined,
|
|
134
|
+
background: theme2.palette?.common?.black_states?.hover
|
|
135
|
+
},
|
|
136
|
+
"&.Mui-focused fieldset": {
|
|
137
|
+
borderColor: theme2.palette.primary.main
|
|
138
|
+
},
|
|
139
|
+
"&:active fieldset": {
|
|
140
|
+
borderColor: theme2.palette.primary.main
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
})
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
})
|
|
148
|
+
}
|
|
149
|
+
};
|
|
150
|
+
export {
|
|
151
|
+
MuiAppBar
|
|
152
|
+
};
|
|
153
|
+
//# sourceMappingURL=app-bar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-bar.js","sources":["../../../../../src/theme/components/app-bar.ts"],"sourcesContent":["import { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\nimport { palette } from '../palette';\nimport { shadows } from '../shadows';\n\n//\n//\n\nexport const MuiAppBar: Components<Theme & CssVarsTheme>['MuiAppBar'] = {\n styleOverrides: {\n root: ({ theme }) => ({\n boxShadow: shadows?.[4],\n input: {\n fontSize: 14,\n '&:-webkit-autofill': {\n transitionDelay: '9999s !important',\n },\n '&::-webkit-input-placeholder': {\n opacity: 1,\n color: theme.palette.text.secondary,\n },\n '&::-moz-placeholder': {\n opacity: 1,\n color: theme.palette.text.secondary,\n },\n '&:-ms-input-placeholder': {\n opacity: 1,\n color: theme.palette.text.secondary,\n },\n },\n '& form': {\n margin: 0,\n maxWidth: 564,\n width: '100%',\n '& .MuiFormControl-root': {\n marginTop: 0,\n },\n },\n //\n variants: [\n {\n props: { color: 'primary' },\n style: ({ theme }) => ({\n '& .MuiButtonBase-root.menuIcon > .MuiSvgIcon-root, .MuiButtonBase-root.searchIcon > .MuiSvgIcon-root':\n {\n color: theme.palette.common.white_states.main,\n },\n input: {\n color: theme.palette.primary.contrastText,\n '&::-webkit-input-placeholder': {\n opacity: 1,\n color: theme.palette.primary.contrastText,\n },\n '&::-moz-placeholder': {\n opacity: 1,\n color: theme.palette.primary.contrastText,\n },\n '&:-ms-input-placeholder': {\n opacity: 1,\n color: theme.palette.primary.contrastText,\n },\n },\n '& .MuiTextField-root': {\n '& .MuiOutlinedInput-root': {\n '& fieldset': {\n border: 'none',\n background: theme.palette.common.white_states.focusVisible,\n },\n },\n },\n }),\n },\n {\n props: { color: 'default' },\n style: ({ theme }) => ({\n '& .MuiTextField-root': {\n '& .MuiOutlinedInput-root': {\n '& fieldset': {\n border: 'none',\n background: theme.palette.common.black_states.selected,\n },\n },\n },\n }),\n },\n {\n props: { color: 'secondary' },\n style: ({ theme }) => ({\n '& .MuiButtonBase-root.menuIcon > .MuiSvgIcon-root, .MuiButtonBase-root.searchIcon > .MuiSvgIcon-root':\n {\n color: theme.palette.common.white_states.main,\n },\n input: {\n opacity: 1,\n color: theme.palette.primary.contrastText,\n '&::-webkit-input-placeholder': {\n opacity: 1,\n color: theme.palette.primary.contrastText,\n },\n '&::-moz-placeholder, &:-ms-input-placeholder': {\n opacity: 1,\n color: theme.palette.primary.contrastText,\n },\n '&:-ms-input-placeholder': {\n opacity: 1,\n color: theme.palette.primary.contrastText,\n },\n },\n '& .MuiTextField-root': {\n '& .MuiOutlinedInput-root': {\n '& fieldset': {\n border: 'none',\n background: theme.palette.common.white_states.focus,\n },\n },\n },\n }),\n },\n {\n props: { color: 'inherit' },\n style: ({ theme }) => ({\n '& .MuiTextField-root': {\n '& .MuiOutlinedInput-root': {\n '& fieldset': {\n border: 'none',\n background: theme.palette.common.black_states.hover,\n },\n },\n },\n }),\n },\n {\n props: { color: 'transparent' },\n style: ({ theme }) => ({\n backgroundColor: palette?.background?.default,\n boxShadow: shadows?.[0],\n borderBottom: `1px solid ${theme.palette?.outlined?.outlined_2}`,\n '& .MuiTextField-root': {\n '& .MuiOutlinedInput-root': {\n '& fieldset': {\n borderColor: theme.palette?.outlined?.outlined,\n background: theme.palette?.common?.black_states?.hover,\n },\n '&.Mui-focused fieldset': {\n borderColor: theme.palette.primary.main,\n },\n '&:active fieldset': {\n borderColor: theme.palette.primary.main,\n },\n },\n },\n }),\n },\n ],\n }),\n },\n};\n"],"names":["theme"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"autocomplete.js","sources":["../../../../../src/theme/components/autocomplete.ts"],"sourcesContent":["import { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\n//\n//\n\nexport const MuiAutocomplete: Components<\n Omit<Theme, 'components' | 'palette'> & CssVarsTheme\n>['MuiAutocomplete'] = {\n styleOverrides: {\n root: () => ({\n '& .MuiOutlinedInput-root': {\n paddingTop: 0,\n paddingBottom: 0,\n },\n }),\n },\n};\n"],"names":[],"mappings":"AAKO,MAAM,kBAEU;AAAA,EACrB,gBAAgB;AAAA,IACd,MAAM,OAAO;AAAA,MACX,4BAA4B;AAAA,QAC1B,YAAY;AAAA,QACZ,eAAe;AAAA,MAAA;AAAA,IACjB;AAAA,EACF;AAEJ;"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const MuiCard = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: () => ({
|
|
4
|
+
borderRadius: 16,
|
|
5
|
+
"& > .MuiCardContent-root:last-child": {
|
|
6
|
+
paddingBottom: 16
|
|
7
|
+
},
|
|
8
|
+
"& .MuiCardContent-root .MuiCardContent-root": {
|
|
9
|
+
borderRadius: 8,
|
|
10
|
+
border: "1px solid #F2F2F2",
|
|
11
|
+
padding: 16
|
|
12
|
+
},
|
|
13
|
+
"& .MuiCardContent-root .MuiCardContent-root .MuiCardContent-root": {
|
|
14
|
+
borderRadius: 4,
|
|
15
|
+
backgroundColor: "#F8F8F8",
|
|
16
|
+
border: "none"
|
|
17
|
+
},
|
|
18
|
+
form: {
|
|
19
|
+
marginBottom: 0
|
|
20
|
+
},
|
|
21
|
+
"& .MuiList-root:last-child .MuiListItem-root:last-of-type": {
|
|
22
|
+
borderBottom: "none",
|
|
23
|
+
paddingBottom: 0
|
|
24
|
+
}
|
|
25
|
+
})
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
export {
|
|
29
|
+
MuiCard
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=card.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card.js","sources":["../../../../../src/theme/components/card.ts"],"sourcesContent":["import type {} from '@mui/lab/themeAugmentation';\nimport { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\n//\n//\n\nexport const MuiCard: Components<Omit<Theme, 'components' | 'palette'> & CssVarsTheme>['MuiCard'] =\n {\n styleOverrides: {\n root: () => ({\n borderRadius: 16,\n\n '& > .MuiCardContent-root:last-child': {\n paddingBottom: 16,\n },\n\n '& .MuiCardContent-root .MuiCardContent-root': {\n borderRadius: 8,\n border: '1px solid #F2F2F2',\n padding: 16,\n },\n\n '& .MuiCardContent-root .MuiCardContent-root .MuiCardContent-root': {\n borderRadius: 4,\n backgroundColor: '#F8F8F8',\n border: 'none',\n },\n\n form: {\n marginBottom: 0,\n },\n\n '& .MuiList-root:last-child .MuiListItem-root:last-of-type': {\n borderBottom: 'none',\n paddingBottom: 0,\n },\n }),\n },\n };\n"],"names":[],"mappings":"AAMO,MAAM,UACX;AAAA,EACE,gBAAgB;AAAA,IACd,MAAM,OAAO;AAAA,MACX,cAAc;AAAA,MAEd,uCAAuC;AAAA,QACrC,eAAe;AAAA,MAAA;AAAA,MAGjB,+CAA+C;AAAA,QAC7C,cAAc;AAAA,QACd,QAAQ;AAAA,QACR,SAAS;AAAA,MAAA;AAAA,MAGX,oEAAoE;AAAA,QAClE,cAAc;AAAA,QACd,iBAAiB;AAAA,QACjB,QAAQ;AAAA,MAAA;AAAA,MAGV,MAAM;AAAA,QACJ,cAAc;AAAA,MAAA;AAAA,MAGhB,8DAA8D;AAAA,QAC5D,cAAc;AAAA,QACd,eAAe;AAAA,MAAA;AAAA,IACjB;AAAA,EACF;AAEJ;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
const MuiDrawer = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: {
|
|
4
|
+
overflow: "hidden"
|
|
5
|
+
},
|
|
6
|
+
paper: {
|
|
7
|
+
padding: "16px 0 0 0"
|
|
8
|
+
},
|
|
9
|
+
modal: {
|
|
10
|
+
maxHeight: "100vh"
|
|
11
|
+
},
|
|
12
|
+
paperAnchorLeft: {
|
|
13
|
+
width: 390,
|
|
14
|
+
maxWidth: "calc(100vw - 24px)",
|
|
15
|
+
borderRadius: "0 16px 16px 0"
|
|
16
|
+
},
|
|
17
|
+
paperAnchorRight: {
|
|
18
|
+
width: 390,
|
|
19
|
+
maxWidth: "calc(100vw - 24px)",
|
|
20
|
+
borderRadius: "16px 0 0 16px"
|
|
21
|
+
},
|
|
22
|
+
paperAnchorTop: {
|
|
23
|
+
height: 390,
|
|
24
|
+
maxHeight: "calc(100vh - 24px)",
|
|
25
|
+
borderRadius: "0 0 16px 16px"
|
|
26
|
+
},
|
|
27
|
+
paperAnchorBottom: {
|
|
28
|
+
height: 390,
|
|
29
|
+
maxHeight: "calc(100vh - 24px)",
|
|
30
|
+
borderRadius: "16px 16px 0 0"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
export {
|
|
35
|
+
MuiDrawer
|
|
36
|
+
};
|
|
37
|
+
//# sourceMappingURL=drawer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"drawer.js","sources":["../../../../../src/theme/components/drawer.ts"],"sourcesContent":["import { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\nexport const MuiDrawer: Components<\n Omit<Theme, 'components' | 'palette'> & CssVarsTheme\n>['MuiDrawer'] = {\n styleOverrides: {\n root: {\n overflow: 'hidden',\n },\n paper: {\n padding: '16px 0 0 0',\n },\n modal: {\n maxHeight: '100vh',\n },\n\n paperAnchorLeft: {\n width: 390,\n maxWidth: 'calc(100vw - 24px)',\n borderRadius: '0 16px 16px 0',\n },\n\n paperAnchorRight: {\n width: 390,\n maxWidth: 'calc(100vw - 24px)',\n borderRadius: '16px 0 0 16px',\n },\n\n paperAnchorTop: {\n height: 390,\n maxHeight: 'calc(100vh - 24px)',\n borderRadius: '0 0 16px 16px',\n },\n\n paperAnchorBottom: {\n height: 390,\n maxHeight: 'calc(100vh - 24px)',\n borderRadius: '16px 16px 0 0',\n },\n },\n};\n"],"names":[],"mappings":"AAEO,MAAM,YAEI;AAAA,EACf,gBAAgB;AAAA,IACd,MAAM;AAAA,MACJ,UAAU;AAAA,IAAA;AAAA,IAEZ,OAAO;AAAA,MACL,SAAS;AAAA,IAAA;AAAA,IAEX,OAAO;AAAA,MACL,WAAW;AAAA,IAAA;AAAA,IAGb,iBAAiB;AAAA,MACf,OAAO;AAAA,MACP,UAAU;AAAA,MACV,cAAc;AAAA,IAAA;AAAA,IAGhB,kBAAkB;AAAA,MAChB,OAAO;AAAA,MACP,UAAU;AAAA,MACV,cAAc;AAAA,IAAA;AAAA,IAGhB,gBAAgB;AAAA,MACd,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,cAAc;AAAA,IAAA;AAAA,IAGhB,mBAAmB;AAAA,MACjB,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,cAAc;AAAA,IAAA;AAAA,EAChB;AAEJ;"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const MuiFormControlLabel = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }) => ({
|
|
4
|
+
marginInline: 0,
|
|
5
|
+
".MuiFormControlLabel-label": {
|
|
6
|
+
...theme.typography.body2
|
|
7
|
+
}
|
|
8
|
+
})
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
MuiFormControlLabel
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=form-control-label.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form-control-label.js","sources":["../../../../../src/theme/components/form-control-label.ts"],"sourcesContent":["import { Components, CssVarsTheme, Theme } from '@mui/material';\n\n//\n//\n\nexport const MuiFormControlLabel: Components<Theme & CssVarsTheme>['MuiFormControlLabel'] = {\n styleOverrides: {\n root: ({ theme }) => ({\n marginInline: 0,\n '.MuiFormControlLabel-label': {\n ...theme.typography.body2,\n },\n }),\n },\n};\n"],"names":[],"mappings":"AAKO,MAAM,sBAA+E;AAAA,EAC1F,gBAAgB;AAAA,IACd,MAAM,CAAC,EAAE,aAAa;AAAA,MACpB,cAAc;AAAA,MACd,8BAA8B;AAAA,QAC5B,GAAG,MAAM,WAAW;AAAA,MAAA;AAAA,IACtB;AAAA,EACF;AAEJ;"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const MuiFormHelperText = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }) => ({
|
|
4
|
+
...theme.typography.caption,
|
|
5
|
+
marginInline: 0,
|
|
6
|
+
marginTop: theme.spacing(1),
|
|
7
|
+
color: "inherit",
|
|
8
|
+
[`&.MuiFormHelperText-root`]: {
|
|
9
|
+
color: theme.palette.text.tertiary
|
|
10
|
+
},
|
|
11
|
+
[`&.MuiFormHelperText-filled`]: {
|
|
12
|
+
color: theme.palette.text.tertiary,
|
|
13
|
+
"&.Mui-error": {
|
|
14
|
+
color: theme.palette.error.main
|
|
15
|
+
},
|
|
16
|
+
"&.Mui-disabled": {
|
|
17
|
+
color: theme.palette.text.disabled
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"&.Mui-focused": {
|
|
21
|
+
// color: 'inherit',
|
|
22
|
+
"&.Mui-error": {
|
|
23
|
+
color: theme.palette.error.main
|
|
24
|
+
},
|
|
25
|
+
"&.Mui-disabled": {
|
|
26
|
+
color: theme.palette.text.disabled
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
[`&.Mui-error`]: {
|
|
30
|
+
color: theme.palette.error.main
|
|
31
|
+
},
|
|
32
|
+
variants: [
|
|
33
|
+
{
|
|
34
|
+
props: { error: true },
|
|
35
|
+
style: {
|
|
36
|
+
color: theme.palette.error.main
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
})
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
export {
|
|
44
|
+
MuiFormHelperText
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=form-helper-text.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form-helper-text.js","sources":["../../../../../src/theme/components/form-helper-text.ts"],"sourcesContent":["import type {} from '@mui/lab/themeAugmentation';\nimport { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\nexport const MuiFormHelperText: Components<Theme & CssVarsTheme>['MuiFormHelperText'] = {\n styleOverrides: {\n root: ({ theme }) => ({\n ...theme.typography.caption,\n\n marginInline: 0,\n marginTop: theme.spacing(1),\n color: 'inherit',\n [`&.MuiFormHelperText-root`]: {\n color: theme.palette.text.tertiary,\n },\n [`&.MuiFormHelperText-filled`]: {\n color: theme.palette.text.tertiary,\n '&.Mui-error': {\n color: theme.palette.error.main,\n },\n '&.Mui-disabled': {\n color: theme.palette.text.disabled,\n },\n },\n '&.Mui-focused': {\n // color: 'inherit',\n '&.Mui-error': {\n color: theme.palette.error.main,\n },\n '&.Mui-disabled': {\n color: theme.palette.text.disabled,\n },\n },\n [`&.Mui-error`]: {\n color: theme.palette.error.main,\n },\n variants: [\n {\n props: { error: true },\n style: {\n color: theme.palette.error.main,\n },\n },\n ],\n }),\n },\n};\n"],"names":[],"mappings":"AAGO,MAAM,oBAA2E;AAAA,EACtF,gBAAgB;AAAA,IACd,MAAM,CAAC,EAAE,aAAa;AAAA,MACpB,GAAG,MAAM,WAAW;AAAA,MAEpB,cAAc;AAAA,MACd,WAAW,MAAM,QAAQ,CAAC;AAAA,MAC1B,OAAO;AAAA,MACP,CAAC,0BAA0B,GAAG;AAAA,QAC5B,OAAO,MAAM,QAAQ,KAAK;AAAA,MAAA;AAAA,MAE5B,CAAC,4BAA4B,GAAG;AAAA,QAC9B,OAAO,MAAM,QAAQ,KAAK;AAAA,QAC1B,eAAe;AAAA,UACb,OAAO,MAAM,QAAQ,MAAM;AAAA,QAAA;AAAA,QAE7B,kBAAkB;AAAA,UAChB,OAAO,MAAM,QAAQ,KAAK;AAAA,QAAA;AAAA,MAC5B;AAAA,MAEF,iBAAiB;AAAA;AAAA,QAEf,eAAe;AAAA,UACb,OAAO,MAAM,QAAQ,MAAM;AAAA,QAAA;AAAA,QAE7B,kBAAkB;AAAA,UAChB,OAAO,MAAM,QAAQ,KAAK;AAAA,QAAA;AAAA,MAC5B;AAAA,MAEF,CAAC,aAAa,GAAG;AAAA,QACf,OAAO,MAAM,QAAQ,MAAM;AAAA,MAAA;AAAA,MAE7B,UAAU;AAAA,QACR;AAAA,UACE,OAAO,EAAE,OAAO,KAAA;AAAA,UAChB,OAAO;AAAA,YACL,OAAO,MAAM,QAAQ,MAAM;AAAA,UAAA;AAAA,QAC7B;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEJ;"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const MuiFormLabel = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }) => ({
|
|
4
|
+
...theme.typography.body1,
|
|
5
|
+
marginBottom: theme.spacing(1),
|
|
6
|
+
color: "inherit",
|
|
7
|
+
[`&.MuiFormLabel-filled`]: {
|
|
8
|
+
color: "inherit",
|
|
9
|
+
"&.Mui-error": {
|
|
10
|
+
color: theme.palette.error.main
|
|
11
|
+
},
|
|
12
|
+
"&.Mui-disabled": {
|
|
13
|
+
color: theme.palette.text.disabled
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"&.Mui-focused": {
|
|
17
|
+
color: "inherit",
|
|
18
|
+
"&.Mui-error": {
|
|
19
|
+
color: theme.palette.error.main
|
|
20
|
+
},
|
|
21
|
+
"&.Mui-disabled": {
|
|
22
|
+
color: theme.palette.text.disabled
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
})
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
export {
|
|
29
|
+
MuiFormLabel
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=form-label.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form-label.js","sources":["../../../../../src/theme/components/form-label.ts"],"sourcesContent":["import type {} from '@mui/lab/themeAugmentation';\nimport { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\nexport const MuiFormLabel: Components<Theme & CssVarsTheme>['MuiFormLabel'] = {\n styleOverrides: {\n root: ({ theme }) => ({\n ...theme.typography.body1,\n\n marginBottom: theme.spacing(1),\n color: 'inherit',\n [`&.MuiFormLabel-filled`]: {\n color: 'inherit',\n '&.Mui-error': {\n color: theme.palette.error.main,\n },\n '&.Mui-disabled': {\n color: theme.palette.text.disabled,\n },\n },\n '&.Mui-focused': {\n color: 'inherit',\n '&.Mui-error': {\n color: theme.palette.error.main,\n },\n '&.Mui-disabled': {\n color: theme.palette.text.disabled,\n },\n },\n }),\n },\n};\n"],"names":[],"mappings":"AAGO,MAAM,eAAiE;AAAA,EAC5E,gBAAgB;AAAA,IACd,MAAM,CAAC,EAAE,aAAa;AAAA,MACpB,GAAG,MAAM,WAAW;AAAA,MAEpB,cAAc,MAAM,QAAQ,CAAC;AAAA,MAC7B,OAAO;AAAA,MACP,CAAC,uBAAuB,GAAG;AAAA,QACzB,OAAO;AAAA,QACP,eAAe;AAAA,UACb,OAAO,MAAM,QAAQ,MAAM;AAAA,QAAA;AAAA,QAE7B,kBAAkB;AAAA,UAChB,OAAO,MAAM,QAAQ,KAAK;AAAA,QAAA;AAAA,MAC5B;AAAA,MAEF,iBAAiB;AAAA,QACf,OAAO;AAAA,QACP,eAAe;AAAA,UACb,OAAO,MAAM,QAAQ,MAAM;AAAA,QAAA;AAAA,QAE7B,kBAAkB;AAAA,UAChB,OAAO,MAAM,QAAQ,KAAK;AAAA,QAAA;AAAA,MAC5B;AAAA,IACF;AAAA,EACF;AAEJ;"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
const MuiIcon = {
|
|
2
|
+
defaultProps: {
|
|
3
|
+
fontSize: "medium",
|
|
4
|
+
color: "primary"
|
|
5
|
+
},
|
|
6
|
+
styleOverrides: {
|
|
7
|
+
root: ({ theme }) => ({
|
|
8
|
+
display: "flex",
|
|
9
|
+
alignItems: "center",
|
|
10
|
+
justifyContent: "center",
|
|
11
|
+
borderRadius: "50%",
|
|
12
|
+
variants: [
|
|
13
|
+
{
|
|
14
|
+
props: { fontSize: "large" },
|
|
15
|
+
style: {
|
|
16
|
+
minWidth: theme.spacing(6),
|
|
17
|
+
minHeight: theme.spacing(6)
|
|
18
|
+
},
|
|
19
|
+
"> svg": {
|
|
20
|
+
width: theme.spacing(3),
|
|
21
|
+
height: theme.spacing(3)
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
props: { fontSize: "medium" },
|
|
26
|
+
style: {
|
|
27
|
+
minWidth: theme.spacing(5),
|
|
28
|
+
minHeight: theme.spacing(5)
|
|
29
|
+
},
|
|
30
|
+
"> svg": {
|
|
31
|
+
width: theme.spacing(2.5),
|
|
32
|
+
height: theme.spacing(2.5)
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
props: { fontSize: "small" },
|
|
37
|
+
style: {
|
|
38
|
+
minWidth: theme.spacing(4),
|
|
39
|
+
minHeight: theme.spacing(4),
|
|
40
|
+
"> svg": {
|
|
41
|
+
width: theme.spacing(2),
|
|
42
|
+
height: theme.spacing(2)
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
props: { color: "primary" },
|
|
48
|
+
style: {
|
|
49
|
+
backgroundColor: "transparent",
|
|
50
|
+
color: theme.palette._components.iconButton.primary.text,
|
|
51
|
+
border: `1px solid ${theme.palette._components.button.primary.contained}`
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
props: { color: "secondary" },
|
|
56
|
+
style: {
|
|
57
|
+
backgroundColor: "transparent",
|
|
58
|
+
color: theme.palette._components.iconButton.secondary.text,
|
|
59
|
+
border: `1px solid ${theme.palette._components.button.secondary.border}`
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
props: { color: "error" },
|
|
64
|
+
style: {
|
|
65
|
+
backgroundColor: "transparent",
|
|
66
|
+
color: theme.palette._components.button.error.focused,
|
|
67
|
+
border: `1px solid ${theme.palette._components.button.error.border}`
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
})
|
|
72
|
+
}
|
|
73
|
+
};
|
|
74
|
+
export {
|
|
75
|
+
MuiIcon
|
|
76
|
+
};
|
|
77
|
+
//# sourceMappingURL=icon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon.js","sources":["../../../../../src/theme/components/icon.ts"],"sourcesContent":["import type {} from '@mui/lab/themeAugmentation';\nimport { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\n//\n//\n\nexport const MuiIcon: Components<Omit<Theme, 'components' | 'palette'> & CssVarsTheme>['MuiIcon'] =\n {\n defaultProps: {\n fontSize: 'medium',\n color: 'primary',\n },\n styleOverrides: {\n root: ({ theme }) => ({\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n borderRadius: '50%',\n variants: [\n {\n props: { fontSize: 'large' },\n style: {\n minWidth: theme.spacing(6),\n minHeight: theme.spacing(6),\n },\n '> svg': {\n width: theme.spacing(3),\n height: theme.spacing(3),\n },\n },\n {\n props: { fontSize: 'medium' },\n style: {\n minWidth: theme.spacing(5),\n minHeight: theme.spacing(5),\n },\n '> svg': {\n width: theme.spacing(2.5),\n height: theme.spacing(2.5),\n },\n },\n {\n props: { fontSize: 'small' },\n style: {\n minWidth: theme.spacing(4),\n minHeight: theme.spacing(4),\n '> svg': {\n width: theme.spacing(2),\n height: theme.spacing(2),\n },\n },\n },\n {\n props: { color: 'primary' },\n style: {\n backgroundColor: 'transparent',\n color: theme.palette._components.iconButton.primary.text,\n border: `1px solid ${theme.palette._components.button.primary.contained}`,\n },\n },\n {\n props: { color: 'secondary' },\n style: {\n backgroundColor: 'transparent',\n color: theme.palette._components.iconButton.secondary.text,\n border: `1px solid ${theme.palette._components.button.secondary.border}`,\n },\n },\n {\n props: { color: 'error' },\n style: {\n backgroundColor: 'transparent',\n color: theme.palette._components.button.error.focused,\n border: `1px solid ${theme.palette._components.button.error.border}`,\n },\n },\n ],\n }),\n },\n };\n"],"names":[],"mappings":"AAMO,MAAM,UACX;AAAA,EACE,cAAc;AAAA,IACZ,UAAU;AAAA,IACV,OAAO;AAAA,EAAA;AAAA,EAET,gBAAgB;AAAA,IACd,MAAM,CAAC,EAAE,aAAa;AAAA,MACpB,SAAS;AAAA,MACT,YAAY;AAAA,MACZ,gBAAgB;AAAA,MAChB,cAAc;AAAA,MACd,UAAU;AAAA,QACR;AAAA,UACE,OAAO,EAAE,UAAU,QAAA;AAAA,UACnB,OAAO;AAAA,YACL,UAAU,MAAM,QAAQ,CAAC;AAAA,YACzB,WAAW,MAAM,QAAQ,CAAC;AAAA,UAAA;AAAA,UAE5B,SAAS;AAAA,YACP,OAAO,MAAM,QAAQ,CAAC;AAAA,YACtB,QAAQ,MAAM,QAAQ,CAAC;AAAA,UAAA;AAAA,QACzB;AAAA,QAEF;AAAA,UACE,OAAO,EAAE,UAAU,SAAA;AAAA,UACnB,OAAO;AAAA,YACL,UAAU,MAAM,QAAQ,CAAC;AAAA,YACzB,WAAW,MAAM,QAAQ,CAAC;AAAA,UAAA;AAAA,UAE5B,SAAS;AAAA,YACP,OAAO,MAAM,QAAQ,GAAG;AAAA,YACxB,QAAQ,MAAM,QAAQ,GAAG;AAAA,UAAA;AAAA,QAC3B;AAAA,QAEF;AAAA,UACE,OAAO,EAAE,UAAU,QAAA;AAAA,UACnB,OAAO;AAAA,YACL,UAAU,MAAM,QAAQ,CAAC;AAAA,YACzB,WAAW,MAAM,QAAQ,CAAC;AAAA,YAC1B,SAAS;AAAA,cACP,OAAO,MAAM,QAAQ,CAAC;AAAA,cACtB,QAAQ,MAAM,QAAQ,CAAC;AAAA,YAAA;AAAA,UACzB;AAAA,QACF;AAAA,QAEF;AAAA,UACE,OAAO,EAAE,OAAO,UAAA;AAAA,UAChB,OAAO;AAAA,YACL,iBAAiB;AAAA,YACjB,OAAO,MAAM,QAAQ,YAAY,WAAW,QAAQ;AAAA,YACpD,QAAQ,aAAa,MAAM,QAAQ,YAAY,OAAO,QAAQ,SAAS;AAAA,UAAA;AAAA,QACzE;AAAA,QAEF;AAAA,UACE,OAAO,EAAE,OAAO,YAAA;AAAA,UAChB,OAAO;AAAA,YACL,iBAAiB;AAAA,YACjB,OAAO,MAAM,QAAQ,YAAY,WAAW,UAAU;AAAA,YACtD,QAAQ,aAAa,MAAM,QAAQ,YAAY,OAAO,UAAU,MAAM;AAAA,UAAA;AAAA,QACxE;AAAA,QAEF;AAAA,UACE,OAAO,EAAE,OAAO,QAAA;AAAA,UAChB,OAAO;AAAA,YACL,iBAAiB;AAAA,YACjB,OAAO,MAAM,QAAQ,YAAY,OAAO,MAAM;AAAA,YAC9C,QAAQ,aAAa,MAAM,QAAQ,YAAY,OAAO,MAAM,MAAM;AAAA,UAAA;AAAA,QACpE;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEJ;"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const MuiMenu = {
|
|
2
|
+
defaultProps: {
|
|
3
|
+
disableRestoreFocus: true,
|
|
4
|
+
disableAutoFocusItem: true
|
|
5
|
+
},
|
|
6
|
+
styleOverrides: {
|
|
7
|
+
paper: ({ theme }) => ({
|
|
8
|
+
borderRadius: theme.spacing(1.5),
|
|
9
|
+
marginTop: theme.spacing(1),
|
|
10
|
+
borderStyle: "solid",
|
|
11
|
+
borderWidth: 1,
|
|
12
|
+
borderColor: theme.palette.outlined?.outlined
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const MuiMenuItem = {
|
|
17
|
+
defaultProps: {
|
|
18
|
+
disableRipple: true,
|
|
19
|
+
disableTouchRipple: true
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
MuiMenu,
|
|
24
|
+
MuiMenuItem
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=menu.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menu.js","sources":["../../../../../src/theme/components/menu.ts"],"sourcesContent":["import type {} from '@mui/lab/themeAugmentation';\nimport { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\nexport const MuiMenu: Components<Theme & CssVarsTheme>['MuiMenu'] = {\n defaultProps: {\n disableRestoreFocus: true,\n disableAutoFocusItem: true,\n },\n styleOverrides: {\n paper: ({ theme }) => ({\n borderRadius: theme.spacing(1.5),\n marginTop: theme.spacing(1),\n borderStyle: 'solid',\n borderWidth: 1,\n borderColor: theme.palette.outlined?.outlined,\n }),\n },\n};\n\nexport const MuiMenuItem: Components<Theme & CssVarsTheme>['MuiMenuItem'] = {\n defaultProps: {\n disableRipple: true,\n disableTouchRipple: true,\n },\n};\n"],"names":[],"mappings":"AAGO,MAAM,UAAuD;AAAA,EAClE,cAAc;AAAA,IACZ,qBAAqB;AAAA,IACrB,sBAAsB;AAAA,EAAA;AAAA,EAExB,gBAAgB;AAAA,IACd,OAAO,CAAC,EAAE,aAAa;AAAA,MACrB,cAAc,MAAM,QAAQ,GAAG;AAAA,MAC/B,WAAW,MAAM,QAAQ,CAAC;AAAA,MAC1B,aAAa;AAAA,MACb,aAAa;AAAA,MACb,aAAa,MAAM,QAAQ,UAAU;AAAA,IAAA;AAAA,EACvC;AAEJ;AAEO,MAAM,cAA+D;AAAA,EAC1E,cAAc;AAAA,IACZ,eAAe;AAAA,IACf,oBAAoB;AAAA,EAAA;AAExB;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"paper.js","sources":["../../../../../src/theme/components/paper.ts"],"sourcesContent":["import type {} from '@mui/lab/themeAugmentation';\nimport { Components, CssVarsTheme, Theme } from '@mui/material/styles';\n\n//\n//\n\nexport const MuiPaper: Components<\n Omit<Theme, 'components' | 'palette'> & CssVarsTheme\n>['MuiPaper'] = {\n styleOverrides: {\n root: {\n border: '1px solid #F2F2F2',\n },\n },\n};\n"],"names":[],"mappings":"AAMO,MAAM,WAEG;AAAA,EACd,gBAAgB;AAAA,IACd,MAAM;AAAA,MACJ,QAAQ;AAAA,IAAA;AAAA,EACV;AAEJ;"}
|