@digital-ai/dot-components 2.5.3 → 2.5.5
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/CHANGE_LOG.md +31 -13
- package/index.esm.js +385 -217
- package/index.umd.js +569 -385
- package/lib/components/date-picker/DatePicker.d.ts +68 -0
- package/lib/components/date-picker/DatePicker.stories.d.ts +20 -0
- package/lib/components/date-picker/DatePicker.stories.styles.d.ts +4 -0
- package/lib/components/date-picker/DatePicker.styles.d.ts +11 -0
- package/lib/components/date-picker/index.d.ts +3 -0
- package/lib/components/date-picker/utils/models.d.ts +38 -0
- package/lib/components/index.d.ts +2 -0
- package/lib/components/input-form-fields/InputText.d.ts +3 -3
- package/lib/components/input-form-fields/common.styles.d.ts +3 -0
- package/lib/theme-provider/ThemeProvider.d.ts +1 -0
- package/package.json +2 -1
package/index.esm.js
CHANGED
|
@@ -9,6 +9,10 @@ import { StylesProvider } from '@mui/styles';
|
|
|
9
9
|
import jwt_decode from 'jwt-decode';
|
|
10
10
|
import { useDropzone } from 'react-dropzone';
|
|
11
11
|
import GridLayout, { WidthProvider } from 'react-grid-layout';
|
|
12
|
+
import dayjs from 'dayjs';
|
|
13
|
+
import updateLocale from 'dayjs/plugin/updateLocale';
|
|
14
|
+
import { DatePicker, PickersDay, LocalizationProvider } from '@mui/x-date-pickers';
|
|
15
|
+
import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs';
|
|
12
16
|
|
|
13
17
|
function useStylesWithRootClass(name, className, ...args) {
|
|
14
18
|
// combine the root classes into one string
|
|
@@ -43,11 +47,11 @@ const DotTooltip = ({
|
|
|
43
47
|
}), void 0) : children;
|
|
44
48
|
};
|
|
45
49
|
|
|
46
|
-
const rootClassName$
|
|
50
|
+
const rootClassName$13 = 'dot-icon';
|
|
47
51
|
const StyledIcon = styled(Icon).withConfig({
|
|
48
52
|
displayName: "Iconstyles__StyledIcon",
|
|
49
53
|
componentId: "st0ybo-0"
|
|
50
|
-
})(["", ""], () => css(["&.", "{font-size:20px;&.MuiIcon-fontSizeLarge{font-size:28px;height:35px;width:35px;i{height:28px;}}&.MuiIcon-fontSizeSmall{font-size:18px;i{height:18px;}}i{height:20px;}}"], rootClassName$
|
|
54
|
+
})(["", ""], () => css(["&.", "{font-size:20px;&.MuiIcon-fontSizeLarge{font-size:28px;height:35px;width:35px;i{height:28px;}}&.MuiIcon-fontSizeSmall{font-size:18px;i{height:18px;}}i{height:20px;}}"], rootClassName$13));
|
|
51
55
|
|
|
52
56
|
const DotIcon = ({
|
|
53
57
|
ariaLabel,
|
|
@@ -57,7 +61,7 @@ const DotIcon = ({
|
|
|
57
61
|
iconId,
|
|
58
62
|
tooltip
|
|
59
63
|
}) => {
|
|
60
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
64
|
+
const rootClasses = useStylesWithRootClass(rootClassName$13, className);
|
|
61
65
|
return jsx(DotTooltip, Object.assign({
|
|
62
66
|
title: tooltip
|
|
63
67
|
}, {
|
|
@@ -106,7 +110,7 @@ const DotTypography = ({
|
|
|
106
110
|
}), void 0);
|
|
107
111
|
};
|
|
108
112
|
|
|
109
|
-
const rootClassName$
|
|
113
|
+
const rootClassName$12 = 'dot-accordion';
|
|
110
114
|
const summaryClassName = 'dot-accordion-summary';
|
|
111
115
|
const detailClassName = 'dot-accordion-details';
|
|
112
116
|
const StyledAccordion = styled(Accordion).withConfig({
|
|
@@ -114,7 +118,7 @@ const StyledAccordion = styled(Accordion).withConfig({
|
|
|
114
118
|
componentId: "sc-1amx4r3-0"
|
|
115
119
|
})(["", ""], ({
|
|
116
120
|
theme
|
|
117
|
-
}) => css(["&.", " .", "{align-items:center;display:flex;&.Mui-expanded{border-top:1px solid rgba(0,0,0,0.12);&:before{opacity:1;}}.MuiAccordionSummary-content{align-items:center;gap:", ";width:calc(100% - ", ");.dot-tooltip{overflow:hidden;}}.MuiAccordionSummary-expandIconWrapper{padding:", ";margin-right:", ";}.MuiTypography-root{margin-bottom:0;}.MuiTypography-body1{padding:2px 0;}}"], rootClassName$
|
|
121
|
+
}) => css(["&.", " .", "{align-items:center;display:flex;&.Mui-expanded{border-top:1px solid rgba(0,0,0,0.12);&:before{opacity:1;}}.MuiAccordionSummary-content{align-items:center;gap:", ";width:calc(100% - ", ");.dot-tooltip{overflow:hidden;}}.MuiAccordionSummary-expandIconWrapper{padding:", ";margin-right:", ";}.MuiTypography-root{margin-bottom:0;}.MuiTypography-body1{padding:2px 0;}}"], rootClassName$12, summaryClassName, theme.spacing(1), theme.spacing(5), theme.spacing(1.5), theme.spacing(-1.5)));
|
|
118
122
|
|
|
119
123
|
const DotAccordion = ({
|
|
120
124
|
actions,
|
|
@@ -131,7 +135,7 @@ const DotAccordion = ({
|
|
|
131
135
|
summary,
|
|
132
136
|
noWrap: _noWrap = true
|
|
133
137
|
}) => {
|
|
134
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
138
|
+
const rootClasses = useStylesWithRootClass(rootClassName$12, className);
|
|
135
139
|
const [elevation, setElevation] = useState();
|
|
136
140
|
useEffect(() => {
|
|
137
141
|
if (onChange && expanded === undefined) {
|
|
@@ -184,7 +188,10 @@ const DotAccordion = ({
|
|
|
184
188
|
}), void 0);
|
|
185
189
|
};
|
|
186
190
|
|
|
187
|
-
const
|
|
191
|
+
const formHelperTextRootStyles = theme => css(["font-family:", ";font-size:", "px;font-weight:400;margin:", ";display:flex;align-items:flex-end;&:not(.Mui-error){color:", ";}&.read-only .MuiOutlinedInput-root:hover > fieldset{border-color:", ";}"], theme.typography.fontFamily, theme.typography.body2.fontSize, theme.spacing(0.5, 0, 0, 1.5), theme.palette.grey[400], theme.palette.layer.n200);
|
|
192
|
+
const adornmentIconStyles = () => css(["font-size:24px;height:24px;padding:0;width:24px;"]);
|
|
193
|
+
|
|
194
|
+
const rootClassName$11 = 'dot-text-field';
|
|
188
195
|
const rootSelectClassName = 'dot-select-field';
|
|
189
196
|
const labelClassName = 'dot-input-label';
|
|
190
197
|
const errorClassName = 'dot-error';
|
|
@@ -195,7 +202,7 @@ const fieldsetClassName = 'MuiOutlinedInput-notchedOutline';
|
|
|
195
202
|
const StyledAdornment = styled(InputAdornment).withConfig({
|
|
196
203
|
displayName: "InputFormFieldsstyles__StyledAdornment",
|
|
197
204
|
componentId: "sc-1mbn9f0-0"
|
|
198
|
-
})([".dot-icon{
|
|
205
|
+
})([".dot-icon{", ";}"], adornmentIconStyles());
|
|
199
206
|
const StyledInputLabel = styled(InputLabel).withConfig({
|
|
200
207
|
displayName: "InputFormFieldsstyles__StyledInputLabel",
|
|
201
208
|
componentId: "sc-1mbn9f0-1"
|
|
@@ -212,15 +219,15 @@ const StyledTextField = styled(TextField).withConfig({
|
|
|
212
219
|
})(["", ""], ({
|
|
213
220
|
theme,
|
|
214
221
|
InputProps
|
|
215
|
-
}) => css(["&.", "{.MuiInputBase-root{margin-bottom:0;}.MuiInputBase-input{box-sizing:content-box;}.MuiOutlinedInput-input{padding:", ";}.MuiInputBase-inputSizeSmall{padding-top:10.5px;padding-bottom:10.5px;&:not(textarea){height:19px;}}.MuiInputBase-inputMultiline{padding:0;}}&.", ",&.", "{.", "{color:", ";.dot-icon i{margin-top:-2px;}}.MuiInputBase-root{margin-bottom:0;}.MuiInputBase-inputSizeSmall:not(textarea){height:19px;padding-top:10.5px;padding-bottom:10.5px;}select.dot-select{padding-left:", ";}.MuiSelect-select:focus{background-color:transparent;}.MuiSelect-icon{right:", ";}&.", "{.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiFormLabel-root.Mui-focused{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}.MuiOutlinedInput-adornedStart{padding-left:12px;&.", " .", "{border-color:", ";}}.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.MuiInputBase-inputAdornedStart{padding-left:12px;}.MuiInputBase-inputAdornedEnd{padding-right:12px;}.MuiFormHelperText-root{
|
|
222
|
+
}) => css(["&.", "{.MuiInputBase-root{margin-bottom:0;}.MuiInputBase-input{box-sizing:content-box;}.MuiOutlinedInput-input{padding:", ";}.MuiInputBase-inputSizeSmall{padding-top:10.5px;padding-bottom:10.5px;&:not(textarea){height:19px;}}.MuiInputBase-inputMultiline{padding:0;}}&.", ",&.", "{.", "{color:", ";.dot-icon i{margin-top:-2px;}}.MuiInputBase-root{margin-bottom:0;}.MuiInputBase-inputSizeSmall:not(textarea){height:19px;padding-top:10.5px;padding-bottom:10.5px;}select.dot-select{padding-left:", ";}.MuiSelect-select:focus{background-color:transparent;}.MuiSelect-icon{right:", ";}&.", "{.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiFormLabel-root.Mui-focused{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}.MuiOutlinedInput-adornedStart{padding-left:12px;&.", " .", "{border-color:", ";}}.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.MuiInputBase-inputAdornedStart{padding-left:12px;}.MuiInputBase-inputAdornedEnd{padding-right:12px;}.MuiFormHelperText-root{", ";}}"], rootClassName$11, InputProps.startAdornment ? `18px 12px 18px 0px` : `18px 12px`, rootSelectClassName, rootClassName$11, adornmentIconClassName, theme.palette.layer.n700, theme.spacing(1.5), InputProps.endAdornment ? `44px` : `12px`, successClassName, theme.palette.secondary.main, theme.palette.grey[700], adornmentIconClassName, theme.palette.secondary.main, errorClassName, theme.palette.error.main, adornmentIconClassName, theme.palette.error.main, warningClassName, theme.palette.warning.main, theme.palette.grey[700], adornmentIconClassName, theme.palette.warning.main, warningClassName, fieldsetClassName, theme.palette.warning[500], theme.palette.grey[700], formHelperTextRootStyles(theme)));
|
|
216
223
|
|
|
217
|
-
const rootClassName
|
|
224
|
+
const rootClassName$10 = 'dot-action-toolbar';
|
|
218
225
|
const StyledToolbar = styled(Toolbar).withConfig({
|
|
219
226
|
displayName: "ActionToolbarstyles__StyledToolbar",
|
|
220
227
|
componentId: "sc-5llm03-0"
|
|
221
228
|
})(["", ""], ({
|
|
222
229
|
theme
|
|
223
|
-
}) => css(["&.", "{border-bottom:1px solid ", ";.", " .MuiInputBase-root{margin-bottom:0;}}"], rootClassName
|
|
230
|
+
}) => css(["&.", "{border-bottom:1px solid ", ";.", " .MuiInputBase-root{margin-bottom:0;}}"], rootClassName$10, theme.palette.grey[100], rootClassName$11));
|
|
224
231
|
|
|
225
232
|
const DotActionToolbar = ({
|
|
226
233
|
ariaLabel,
|
|
@@ -229,7 +236,7 @@ const DotActionToolbar = ({
|
|
|
229
236
|
'data-testid': dataTestId,
|
|
230
237
|
variant: _variant = 'dense'
|
|
231
238
|
}) => {
|
|
232
|
-
const rootClasses = useStylesWithRootClass(rootClassName
|
|
239
|
+
const rootClasses = useStylesWithRootClass(rootClassName$10, className);
|
|
233
240
|
return jsx(StyledToolbar, Object.assign({
|
|
234
241
|
"aria-label": ariaLabel,
|
|
235
242
|
className: rootClasses,
|
|
@@ -240,13 +247,13 @@ const DotActionToolbar = ({
|
|
|
240
247
|
}), void 0);
|
|
241
248
|
};
|
|
242
249
|
|
|
243
|
-
const rootClassName
|
|
250
|
+
const rootClassName$$ = 'dot-alert-banner';
|
|
244
251
|
const StyledAlertBanner = styled(Alert).withConfig({
|
|
245
252
|
displayName: "AlertBannerstyles__StyledAlertBanner",
|
|
246
253
|
componentId: "sc-1u3aqgz-0"
|
|
247
254
|
})(["", ""], ({
|
|
248
255
|
theme
|
|
249
|
-
}) => css(["&.", "{align-items:center;border-radius:8px;box-sizing:border-box;display:flex;min-height:48px;overflow:hidden;padding:", ";.dot-icon,.MuiAlert-icon,.MuiAlert-message{padding:0;.dot-typography{margin-bottom:0;}}&.MuiAlert-standardSuccess{.dot-icon,.MuiAlert-icon,.dot-typography{color:", ";}}&.MuiAlert-standardInfo{background-color:", ";.dot-icon,.MuiAlert-icon,.dot-typography{color:", ";}}&.MuiAlert-standardWarning{background-color:", ";.dot-icon,.MuiAlert-icon,.dot-typography{color:", ";}}&.MuiAlert-standardError{background-color:", ";.dot-typography{color:", ";}.dot-icon,.MuiAlert-icon{color:", ";}}}"], rootClassName
|
|
256
|
+
}) => css(["&.", "{align-items:center;border-radius:8px;box-sizing:border-box;display:flex;min-height:48px;overflow:hidden;padding:", ";.dot-icon,.MuiAlert-icon,.MuiAlert-message{padding:0;.dot-typography{margin-bottom:0;}}&.MuiAlert-standardSuccess{.dot-icon,.MuiAlert-icon,.dot-typography{color:", ";}}&.MuiAlert-standardInfo{background-color:", ";.dot-icon,.MuiAlert-icon,.dot-typography{color:", ";}}&.MuiAlert-standardWarning{background-color:", ";.dot-icon,.MuiAlert-icon,.dot-typography{color:", ";}}&.MuiAlert-standardError{background-color:", ";.dot-typography{color:", ";}.dot-icon,.MuiAlert-icon{color:", ";}}}"], rootClassName$$, theme.spacing(0.75, 2), theme.palette.success[700], theme.palette.primary[50], theme.palette.primary[500], theme.palette.warning[100], theme.palette.grey[700], theme.palette.error[50], theme.palette.error[700], theme.palette.error[500]));
|
|
250
257
|
|
|
251
258
|
var LatoRegular = "data:font/woff;base64,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";
|
|
252
259
|
|
|
@@ -928,7 +935,7 @@ const DotAlertBanner = ({
|
|
|
928
935
|
success: AlertBannerIcon('check-solid'),
|
|
929
936
|
warning: AlertBannerIcon('warning-solid')
|
|
930
937
|
};
|
|
931
|
-
const rootClasses = useStylesWithRootClass(rootClassName
|
|
938
|
+
const rootClasses = useStylesWithRootClass(rootClassName$$, severity, className);
|
|
932
939
|
/* For simple string use default component, for everything else use 'div' */
|
|
933
940
|
const typographyComponent = isString$1(children) ? undefined : 'div';
|
|
934
941
|
return jsx(StyledAlertBanner, Object.assign({
|
|
@@ -1585,7 +1592,7 @@ const useDotCoreApiContext = () => {
|
|
|
1585
1592
|
return useContext(DotCoreApiContext);
|
|
1586
1593
|
};
|
|
1587
1594
|
|
|
1588
|
-
const rootClassName$
|
|
1595
|
+
const rootClassName$_ = 'dot-avatar';
|
|
1589
1596
|
const avatarSpacing = {
|
|
1590
1597
|
small: 3,
|
|
1591
1598
|
medium: 5,
|
|
@@ -1596,7 +1603,7 @@ const StyledAvatar = styled(Avatar).withConfig({
|
|
|
1596
1603
|
componentId: "sc-13bzj2s-0"
|
|
1597
1604
|
})(["", ""], ({
|
|
1598
1605
|
theme
|
|
1599
|
-
}) => css(["&.", "{display:inline-flex;background-color:", ";border:0px;&:focus-visible{box-shadow:0px 0px 0px 3px ", ",0px 0px 0px 5px ", ";outline:0;}img{width:auto;height:105%;}.dot-i,.dot-typography{color:", ";margin-bottom:0;}&.small{height:", ";width:", ";}&.medium{height:", ";width:", ";}&.large{height:", ";width:", ";}}"], rootClassName$
|
|
1606
|
+
}) => css(["&.", "{display:inline-flex;background-color:", ";border:0px;&:focus-visible{box-shadow:0px 0px 0px 3px ", ",0px 0px 0px 5px ", ";outline:0;}img{width:auto;height:105%;}.dot-i,.dot-typography{color:", ";margin-bottom:0;}&.small{height:", ";width:", ";}&.medium{height:", ";width:", ";}&.large{height:", ";width:", ";}}"], rootClassName$_, ({
|
|
1600
1607
|
color
|
|
1601
1608
|
}) => {
|
|
1602
1609
|
return color && theme.palette.avatarColors[color] ? theme.palette.avatarColors[color].backgroundColor : theme.palette.avatarColors['default'].backgroundColor;
|
|
@@ -1660,7 +1667,7 @@ const DotAvatar = ({
|
|
|
1660
1667
|
variant: _variant = 'circular',
|
|
1661
1668
|
style
|
|
1662
1669
|
}) => {
|
|
1663
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
1670
|
+
const rootClasses = useStylesWithRootClass(rootClassName$_, className);
|
|
1664
1671
|
const getAvatarColor = () => {
|
|
1665
1672
|
if (color) return color;
|
|
1666
1673
|
if (_text && _text !== alt) return getAvatarColorForInputText(_text);
|
|
@@ -1698,13 +1705,13 @@ const DotAvatar = ({
|
|
|
1698
1705
|
}), void 0);
|
|
1699
1706
|
};
|
|
1700
1707
|
|
|
1701
|
-
const rootClassName$
|
|
1708
|
+
const rootClassName$Z = 'dot-button';
|
|
1702
1709
|
const StyledButton = styled(Button).withConfig({
|
|
1703
1710
|
displayName: "Buttonstyles__StyledButton",
|
|
1704
1711
|
componentId: "sx99hh-0"
|
|
1705
1712
|
})(["", ""], ({
|
|
1706
1713
|
theme
|
|
1707
|
-
}) => css(["&.", "{margin:", ";min-width:auto;white-space:nowrap;&.MuiButton-outlined:not([disabled]){border-color:rgba(0,0,0,0.23);color:", ";}&:not(.MuiButton-sizeLarge):not(.MuiButton-sizeSmall){height:", ";}&.MuiButton-containedSecondary{background-color:", ";&:hover,&:active{background-color:", ";}}&.MuiButton-text{padding:6px 16px;}.dot-icon{display:flex;padding:0;}}"], rootClassName$
|
|
1714
|
+
}) => css(["&.", "{margin:", ";min-width:auto;white-space:nowrap;&.MuiButton-outlined:not([disabled]){border-color:rgba(0,0,0,0.23);color:", ";}&:not(.MuiButton-sizeLarge):not(.MuiButton-sizeSmall){height:", ";}&.MuiButton-containedSecondary{background-color:", ";&:hover,&:active{background-color:", ";}}&.MuiButton-text{padding:6px 16px;}.dot-icon{display:flex;padding:0;}}"], rootClassName$Z, theme.spacing(0.5), theme.palette.grey[700], theme.spacing(5), theme.palette.error.main, darken(theme.palette.error.main, 0.2)));
|
|
1708
1715
|
|
|
1709
1716
|
/** This component wraps the Button component from @material-ui. */
|
|
1710
1717
|
const DotButton = /*#__PURE__*/forwardRef(({
|
|
@@ -1724,7 +1731,7 @@ const DotButton = /*#__PURE__*/forwardRef(({
|
|
|
1724
1731
|
tooltip,
|
|
1725
1732
|
type: _type = 'primary'
|
|
1726
1733
|
}, ref) => {
|
|
1727
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
1734
|
+
const rootClasses = useStylesWithRootClass(rootClassName$Z, className);
|
|
1728
1735
|
let color;
|
|
1729
1736
|
let variant;
|
|
1730
1737
|
switch (_type) {
|
|
@@ -1772,11 +1779,11 @@ const DotButton = /*#__PURE__*/forwardRef(({
|
|
|
1772
1779
|
}), void 0);
|
|
1773
1780
|
});
|
|
1774
1781
|
|
|
1775
|
-
const rootClassName$
|
|
1782
|
+
const rootClassName$Y = 'dot-link';
|
|
1776
1783
|
const StyledLink = styled(Link).withConfig({
|
|
1777
1784
|
displayName: "Linkstyles__StyledLink",
|
|
1778
1785
|
componentId: "sc-1lpmaww-0"
|
|
1779
|
-
})(["", ""], () => css(["&.", "{cursor:pointer;&:hover:not(.MuiLink-underlineHover){text-decoration:none;}}"], rootClassName$
|
|
1786
|
+
})(["", ""], () => css(["&.", "{cursor:pointer;&:hover:not(.MuiLink-underlineHover){text-decoration:none;}}"], rootClassName$Y));
|
|
1780
1787
|
|
|
1781
1788
|
const DotLink = ({
|
|
1782
1789
|
ariaLabel,
|
|
@@ -1794,7 +1801,7 @@ const DotLink = ({
|
|
|
1794
1801
|
tooltip,
|
|
1795
1802
|
underline
|
|
1796
1803
|
}) => {
|
|
1797
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
1804
|
+
const rootClasses = useStylesWithRootClass(rootClassName$Y, className);
|
|
1798
1805
|
const handleKeyPress = event => {
|
|
1799
1806
|
if (onClick && event.key === 'Enter') {
|
|
1800
1807
|
event.preventDefault();
|
|
@@ -1826,7 +1833,7 @@ const DotLink = ({
|
|
|
1826
1833
|
}), void 0);
|
|
1827
1834
|
};
|
|
1828
1835
|
|
|
1829
|
-
const rootClassName$
|
|
1836
|
+
const rootClassName$X = 'dot-list';
|
|
1830
1837
|
const listItemRootClass = 'dot-list-item';
|
|
1831
1838
|
const nestedListClassName = 'dot-nested-list';
|
|
1832
1839
|
const nestedDrawerClassName = 'dot-nested-drawer';
|
|
@@ -1835,7 +1842,7 @@ const StyledList = styled(List).withConfig({
|
|
|
1835
1842
|
componentId: "wxwqwr-0"
|
|
1836
1843
|
})(["", ""], ({
|
|
1837
1844
|
theme
|
|
1838
|
-
}) => css(["&.", "{background:", ";.dot-icon{color:", ";}&.", " .", "{padding-left:", ";}.MuiListSubheader-root{padding:0;.MuiTypography-root{padding:", ";}}}"], rootClassName$
|
|
1845
|
+
}) => css(["&.", "{background:", ";.dot-icon{color:", ";}&.", " .", "{padding-left:", ";}.MuiListSubheader-root{padding:0;.MuiTypography-root{padding:", ";}}}"], rootClassName$X, theme.palette.layer.n0, theme.palette.layer.n700, nestedListClassName, listItemRootClass, theme.spacing(4), theme.spacing(1)));
|
|
1839
1846
|
|
|
1840
1847
|
const getChevronIcon = (nestedListType, isOpened) => {
|
|
1841
1848
|
if (nestedListType !== 'expandable') {
|
|
@@ -1857,11 +1864,11 @@ const StyledListItem = styled(ListItem).withConfig({
|
|
|
1857
1864
|
theme
|
|
1858
1865
|
}) => css(["&.", "{&.", "{padding:0;}p.MuiTypography-root{margin-bottom:0;}.", "{align-items:center;display:flex;flex-grow:2;}.", " .MuiIcon-root{margin-right:", ";}.dot-icon i:before{color:", ";}}"], listItemRootClass, flyoutListItemClassName, listItemLinkClassName, flyoutItemLinkClassName, theme.spacing(4), theme.palette.text.primary));
|
|
1859
1866
|
|
|
1860
|
-
const rootClassName$
|
|
1867
|
+
const rootClassName$W = 'dot-progress';
|
|
1861
1868
|
const StyledCircularProgress = styled(CircularProgress).withConfig({
|
|
1862
1869
|
displayName: "Progressstyles__StyledCircularProgress",
|
|
1863
1870
|
componentId: "sc-1gs77rb-0"
|
|
1864
|
-
})(["&.", "{&.MuiCircularProgress-colorSecondary{color:#649a3d;}}"], rootClassName$
|
|
1871
|
+
})(["&.", "{&.MuiCircularProgress-colorSecondary{color:#649a3d;}}"], rootClassName$W);
|
|
1865
1872
|
|
|
1866
1873
|
const DotProgress = ({
|
|
1867
1874
|
ariaLabel,
|
|
@@ -1874,7 +1881,7 @@ const DotProgress = ({
|
|
|
1874
1881
|
value,
|
|
1875
1882
|
variant: _variant = 'indeterminate'
|
|
1876
1883
|
}) => {
|
|
1877
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
1884
|
+
const rootClasses = useStylesWithRootClass(rootClassName$W, className);
|
|
1878
1885
|
return jsx(DotTooltip, Object.assign({
|
|
1879
1886
|
title: _tooltip
|
|
1880
1887
|
}, {
|
|
@@ -1910,23 +1917,23 @@ var variables = /*#__PURE__*/Object.freeze({
|
|
|
1910
1917
|
levelTop: levelTop
|
|
1911
1918
|
});
|
|
1912
1919
|
|
|
1913
|
-
const rootClassName$
|
|
1920
|
+
const rootClassName$V = 'dot-popper';
|
|
1914
1921
|
const StyledPopper$1 = styled(Popper).withConfig({
|
|
1915
1922
|
displayName: "Popperstyles__StyledPopper",
|
|
1916
1923
|
componentId: "sd1h8p-0"
|
|
1917
1924
|
})(["", ""], ({
|
|
1918
1925
|
theme
|
|
1919
|
-
}) => css(["&.", "{font-family:", ";font-size:", "px;}"], rootClassName$
|
|
1926
|
+
}) => css(["&.", "{font-family:", ";font-size:", "px;}"], rootClassName$V, theme.typography.fontFamily, theme.typography.body1.fontSize));
|
|
1920
1927
|
|
|
1921
1928
|
const flyoutMenuClassName = 'dot-flyout-menu';
|
|
1922
|
-
const rootClassName$
|
|
1929
|
+
const rootClassName$U = 'dot-menu';
|
|
1923
1930
|
const getListMaxHeight = maxHeight => isString$1(maxHeight) ? maxHeight : `${maxHeight}px`;
|
|
1924
1931
|
const StyledPopper = styled(Popper).withConfig({
|
|
1925
1932
|
displayName: "Menustyles__StyledPopper",
|
|
1926
1933
|
componentId: "sc-134fmqu-0"
|
|
1927
1934
|
})(["", ""], ({
|
|
1928
1935
|
theme
|
|
1929
|
-
}) => css(["&.", "{font-family:", ";font-size:", "px;z-index:", ";}&.", ",&.", "{&.loading .MuiPaper-root{align-items:center;display:flex;justify-content:center;min-height:200px;min-width:200px;}ul,.dot-action-item{.dot-action-item-text{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis;}}ul{box-sizing:content-box;min-width:112px;overflow:auto;", " .dot-li{min-height:auto;}}.dot-action-item{height:", ";border-top:1px solid ", ";line-height:inherit;button.dot-button{border-radius:", ";justify-content:flex-start;height:100%;margin:0;&:focus-visible{background-color:", ";}.MuiButton-label{gap:", ";.MuiButton-startIcon{margin-left:0;.dot-icon{flex-shrink:0;}}}}}}"], rootClassName$
|
|
1936
|
+
}) => css(["&.", "{font-family:", ";font-size:", "px;z-index:", ";}&.", ",&.", "{&.loading .MuiPaper-root{align-items:center;display:flex;justify-content:center;min-height:200px;min-width:200px;}ul,.dot-action-item{.dot-action-item-text{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis;}}ul{box-sizing:content-box;min-width:112px;overflow:auto;", " .dot-li{min-height:auto;}}.dot-action-item{height:", ";border-top:1px solid ", ";line-height:inherit;button.dot-button{border-radius:", ";justify-content:flex-start;height:100%;margin:0;&:focus-visible{background-color:", ";}.MuiButton-label{gap:", ";.MuiButton-startIcon{margin-left:0;.dot-icon{flex-shrink:0;}}}}}}"], rootClassName$V, theme.typography.fontFamily, theme.typography.body1.fontSize, levelSecond, rootClassName$U, rootClassName$V, ({
|
|
1930
1937
|
$maxHeight
|
|
1931
1938
|
}) => $maxHeight !== undefined && `
|
|
1932
1939
|
max-height: ${getListMaxHeight($maxHeight)};
|
|
@@ -1936,7 +1943,7 @@ const MENU_ITEM_HEIGHT_NORMAL = 48;
|
|
|
1936
1943
|
const MENU_ITEM_HEIGHT_DENSE = 36;
|
|
1937
1944
|
const DEFAULT_MAX_VISIBLE_ITEMS = 7;
|
|
1938
1945
|
|
|
1939
|
-
const rootClassName$
|
|
1946
|
+
const rootClassName$T = 'dot-ul';
|
|
1940
1947
|
const listItemClassName$1 = 'dot-li';
|
|
1941
1948
|
const listItemWithSubmenuClassName = 'dot-li-with-submenu';
|
|
1942
1949
|
const StyledMenuList = styled(MenuList).withConfig({
|
|
@@ -1944,7 +1951,7 @@ const StyledMenuList = styled(MenuList).withConfig({
|
|
|
1944
1951
|
componentId: "yqdwwg-0"
|
|
1945
1952
|
})(["", ""], ({
|
|
1946
1953
|
theme
|
|
1947
|
-
}) => css(["&.", "{.dot-li{font-size:", "px;justify-content:space-between;gap:", ";&:hover{background:", ";}&.Mui-selected,&.Mui-selected:hover{background:", ";}&.", "{padding-right:", ";}}}"], rootClassName$
|
|
1954
|
+
}) => css(["&.", "{.dot-li{font-size:", "px;justify-content:space-between;gap:", ";&:hover{background:", ";}&.Mui-selected,&.Mui-selected:hover{background:", ";}&.", "{padding-right:", ";}}}"], rootClassName$T, theme.typography.body1.fontSize, theme.spacing(3), hoverGray, lightSelectedGray, listItemWithSubmenuClassName, theme.spacing(0.5)));
|
|
1948
1955
|
|
|
1949
1956
|
const getDefaultItemHeight = isDense => isDense ? MENU_ITEM_HEIGHT_DENSE : MENU_ITEM_HEIGHT_NORMAL;
|
|
1950
1957
|
const calculateItemHeight = (isDense, customItemHeight, menuItemHeight) => {
|
|
@@ -2017,7 +2024,7 @@ const DotMenuList = /*#__PURE__*/forwardRef(({
|
|
|
2017
2024
|
onSubMenuCreate,
|
|
2018
2025
|
selectedKey
|
|
2019
2026
|
}, ref) => {
|
|
2020
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2027
|
+
const rootClasses = useStylesWithRootClass(rootClassName$T, className);
|
|
2021
2028
|
const [activeSubmenu, setActiveSubmenu] = useState(null);
|
|
2022
2029
|
const [subItemAnchorEl, setSubItemAnchorEl] = useState(null);
|
|
2023
2030
|
const openSubmenu = (target, itemKey) => {
|
|
@@ -2127,7 +2134,7 @@ const DotMenu = ({
|
|
|
2127
2134
|
open: _open = false,
|
|
2128
2135
|
selectedKey
|
|
2129
2136
|
}) => {
|
|
2130
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2137
|
+
const rootClasses = useStylesWithRootClass(rootClassName$U, className, _loading ? 'loading' : '');
|
|
2131
2138
|
const isSubmenu = checkIfSubmenu(anchorEl);
|
|
2132
2139
|
const hasSubItems = checkForSubItems(_menuItems);
|
|
2133
2140
|
// Timeout object is customizable when Menu component is either submenu
|
|
@@ -2225,13 +2232,13 @@ const CreateUUID = () => {
|
|
|
2225
2232
|
});
|
|
2226
2233
|
};
|
|
2227
2234
|
|
|
2228
|
-
const rootClassName$
|
|
2235
|
+
const rootClassName$S = 'dot-drawer';
|
|
2229
2236
|
const StyledDrawer = styled(Drawer).withConfig({
|
|
2230
2237
|
displayName: "Drawerstyles__StyledDrawer",
|
|
2231
2238
|
componentId: "sc-1uiowy0-0"
|
|
2232
2239
|
})(["", ""], ({
|
|
2233
2240
|
theme
|
|
2234
|
-
}) => css(["&.", " .MuiBackdrop-root{background-color:", ";}.dot-drawer-paper{height:", ";padding:", ";width:", ";}"], rootClassName$
|
|
2241
|
+
}) => css(["&.", " .MuiBackdrop-root{background-color:", ";}.dot-drawer-paper{height:", ";padding:", ";width:", ";}"], rootClassName$S, alpha(theme.palette.grey[900], 0.7), ({
|
|
2235
2242
|
height,
|
|
2236
2243
|
anchor
|
|
2237
2244
|
}) => anchor === 'left' || anchor === 'right' ? '100%' : height, theme.spacing(2), ({
|
|
@@ -2239,19 +2246,19 @@ const StyledDrawer = styled(Drawer).withConfig({
|
|
|
2239
2246
|
anchor
|
|
2240
2247
|
}) => anchor === 'bottom' || anchor === 'top' ? 'auto' : width));
|
|
2241
2248
|
|
|
2242
|
-
const rootClassName$
|
|
2249
|
+
const rootClassName$R = 'dot-drawer-header';
|
|
2243
2250
|
const StyleDrawerHeader = styled.div.withConfig({
|
|
2244
2251
|
displayName: "DrawerHeaderstyles__StyleDrawerHeader",
|
|
2245
2252
|
componentId: "sc-2d2xd3-0"
|
|
2246
2253
|
})(["", ""], ({
|
|
2247
2254
|
theme
|
|
2248
|
-
}) => css(["&.", "{padding:", ";display:flex;align-items:center;.close-button{margin-left:auto;}}"], rootClassName$
|
|
2255
|
+
}) => css(["&.", "{padding:", ";display:flex;align-items:center;.close-button{margin-left:auto;}}"], rootClassName$R, theme.spacing(0, 0, 2)));
|
|
2249
2256
|
|
|
2250
|
-
const rootClassName$
|
|
2257
|
+
const rootClassName$Q = 'dot-icon-btn';
|
|
2251
2258
|
const StyledIconButton = styled(IconButton).withConfig({
|
|
2252
2259
|
displayName: "IconButtonstyles__StyledIconButton",
|
|
2253
2260
|
componentId: "eko0kb-0"
|
|
2254
|
-
})(["", ""], () => css(["&.", "{font-size:inherit;padding:10px;.dot-icon.MuiIcon-fontSizeSmall{padding:1px;}&.MuiIconButton-sizeSmall{padding:3px;}&.ripple-disabled{&:hover,&:active,&:focus{background:", ";}}"], rootClassName$
|
|
2261
|
+
})(["", ""], () => css(["&.", "{font-size:inherit;padding:10px;.dot-icon.MuiIcon-fontSizeSmall{padding:1px;}&.MuiIconButton-sizeSmall{padding:3px;}&.ripple-disabled{&:hover,&:active,&:focus{background:", ";}}"], rootClassName$Q, hoverGray));
|
|
2255
2262
|
|
|
2256
2263
|
const DotIconButton = ({
|
|
2257
2264
|
ariaLabel,
|
|
@@ -2267,7 +2274,7 @@ const DotIconButton = ({
|
|
|
2267
2274
|
size: _size = 'medium'
|
|
2268
2275
|
}) => {
|
|
2269
2276
|
const rippleClassName = _disableRipple ? 'ripple-disabled' : '';
|
|
2270
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2277
|
+
const rootClasses = useStylesWithRootClass(rootClassName$Q, rippleClassName, className);
|
|
2271
2278
|
return jsx(DotTooltip, Object.assign({
|
|
2272
2279
|
"data-testid": "icon-button-tooltip",
|
|
2273
2280
|
title: tooltip
|
|
@@ -2301,7 +2308,7 @@ const DotDrawerHeader = ({
|
|
|
2301
2308
|
onClose,
|
|
2302
2309
|
variant
|
|
2303
2310
|
}) => {
|
|
2304
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2311
|
+
const rootClasses = useStylesWithRootClass(rootClassName$R, className);
|
|
2305
2312
|
return jsxs(StyleDrawerHeader, Object.assign({
|
|
2306
2313
|
"aria-label": ariaLabel,
|
|
2307
2314
|
className: rootClasses,
|
|
@@ -2315,11 +2322,11 @@ const DotDrawerHeader = ({
|
|
|
2315
2322
|
}), void 0);
|
|
2316
2323
|
};
|
|
2317
2324
|
|
|
2318
|
-
const rootClassName$
|
|
2325
|
+
const rootClassName$P = 'dot-drawer-body';
|
|
2319
2326
|
const StyleDrawerBody = styled.div.withConfig({
|
|
2320
2327
|
displayName: "DrawerBodystyles__StyleDrawerBody",
|
|
2321
2328
|
componentId: "sc-1mpmjdk-0"
|
|
2322
|
-
})(["", ""], () => css(["&.", "{display:flex;.dot-drawer-close-button{align-self:self-start;padding:0;margin-left:auto;}}"], rootClassName$
|
|
2329
|
+
})(["", ""], () => css(["&.", "{display:flex;.dot-drawer-close-button{align-self:self-start;padding:0;margin-left:auto;}}"], rootClassName$P));
|
|
2323
2330
|
|
|
2324
2331
|
const DotDrawerBody = ({
|
|
2325
2332
|
ariaLabel,
|
|
@@ -2330,7 +2337,7 @@ const DotDrawerBody = ({
|
|
|
2330
2337
|
onClose,
|
|
2331
2338
|
variant
|
|
2332
2339
|
}) => {
|
|
2333
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2340
|
+
const rootClasses = useStylesWithRootClass(rootClassName$P, className);
|
|
2334
2341
|
return jsxs(StyleDrawerBody, Object.assign({
|
|
2335
2342
|
"aria-label": ariaLabel,
|
|
2336
2343
|
className: rootClasses,
|
|
@@ -2344,13 +2351,13 @@ const DotDrawerBody = ({
|
|
|
2344
2351
|
}), void 0);
|
|
2345
2352
|
};
|
|
2346
2353
|
|
|
2347
|
-
const rootClassName$
|
|
2354
|
+
const rootClassName$O = 'dot-drawer-footer';
|
|
2348
2355
|
const StyleDrawerFooter = styled.div.withConfig({
|
|
2349
2356
|
displayName: "DrawerFooterstyles__StyleDrawerFooter",
|
|
2350
2357
|
componentId: "sc-1ki05ze-0"
|
|
2351
2358
|
})(["", ""], ({
|
|
2352
2359
|
theme
|
|
2353
|
-
}) => css(["&.", "{padding:", ";}"], rootClassName$
|
|
2360
|
+
}) => css(["&.", "{padding:", ";}"], rootClassName$O, theme.spacing(2, 0, 0)));
|
|
2354
2361
|
|
|
2355
2362
|
const DotDrawerFooter = ({
|
|
2356
2363
|
ariaLabel,
|
|
@@ -2358,7 +2365,7 @@ const DotDrawerFooter = ({
|
|
|
2358
2365
|
className,
|
|
2359
2366
|
'data-testid': dataTestId
|
|
2360
2367
|
}) => {
|
|
2361
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2368
|
+
const rootClasses = useStylesWithRootClass(rootClassName$O, className);
|
|
2362
2369
|
return jsx(StyleDrawerFooter, Object.assign({
|
|
2363
2370
|
"aria-label": ariaLabel,
|
|
2364
2371
|
className: rootClasses,
|
|
@@ -2395,7 +2402,7 @@ const DotDrawer = ({
|
|
|
2395
2402
|
onClose(event);
|
|
2396
2403
|
}
|
|
2397
2404
|
};
|
|
2398
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2405
|
+
const rootClasses = useStylesWithRootClass(rootClassName$S, className);
|
|
2399
2406
|
const headerExists = !!drawerHeaderProps;
|
|
2400
2407
|
const bodyTestId = drawerBodyProps ? drawerBodyProps[`data-testid`] : 'drawer-body';
|
|
2401
2408
|
return jsxs(StyledDrawer, Object.assign({
|
|
@@ -2481,7 +2488,7 @@ const DotList = ({
|
|
|
2481
2488
|
nestedListType: _nestedListType = 'expandable',
|
|
2482
2489
|
width: _width = 240
|
|
2483
2490
|
}) => {
|
|
2484
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2491
|
+
const rootClasses = useStylesWithRootClass(rootClassName$X, className);
|
|
2485
2492
|
const listWidth = typeof _width === 'number' ? `${_width}px` : _width;
|
|
2486
2493
|
const listRef = useRef();
|
|
2487
2494
|
const [listItemIndex, setListItemIndex] = useState(null);
|
|
@@ -2854,7 +2861,7 @@ const DotInputText = ({
|
|
|
2854
2861
|
const hasEndAdornmentIcon = endIcon || _error || hasWarning || hasSuccess;
|
|
2855
2862
|
// This state is used only with debounce feature enabled
|
|
2856
2863
|
const [inputTextState, setInputTextState] = useState(hasDebounce && getInitialState(value));
|
|
2857
|
-
const rootStyles = useStylesWithRootClass(rootClassName$
|
|
2864
|
+
const rootStyles = useStylesWithRootClass(rootClassName$11, hasError, hasWarning, hasSuccess, _readOnly ? 'read-only' : '');
|
|
2858
2865
|
// Used to control text value from the consumer component
|
|
2859
2866
|
// when debounce feature is enabled
|
|
2860
2867
|
useEffect(() => {
|
|
@@ -2962,11 +2969,11 @@ const DotInputText = ({
|
|
|
2962
2969
|
}), void 0);
|
|
2963
2970
|
};
|
|
2964
2971
|
|
|
2965
|
-
const rootClassName$
|
|
2972
|
+
const rootClassName$N = 'dot-search-input';
|
|
2966
2973
|
const StyledSearchInput = styled.span.withConfig({
|
|
2967
2974
|
displayName: "SearchInputstyles__StyledSearchInput",
|
|
2968
2975
|
componentId: "qlwzku-0"
|
|
2969
|
-
})(["", ""], () => css(["&.", "{}"], rootClassName$
|
|
2976
|
+
})(["", ""], () => css(["&.", "{}"], rootClassName$N));
|
|
2970
2977
|
|
|
2971
2978
|
function SearchInput({
|
|
2972
2979
|
'data-testid': dataTestId,
|
|
@@ -2979,7 +2986,7 @@ function SearchInput({
|
|
|
2979
2986
|
tooltip = null,
|
|
2980
2987
|
value
|
|
2981
2988
|
}) {
|
|
2982
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
2989
|
+
const rootClasses = useStylesWithRootClass(rootClassName$N, className);
|
|
2983
2990
|
const [searchText, setSearchText] = useState(value);
|
|
2984
2991
|
let previousSearchText = '';
|
|
2985
2992
|
const handleChange = useCallback(event => {
|
|
@@ -3030,13 +3037,13 @@ function SearchInput({
|
|
|
3030
3037
|
}), void 0);
|
|
3031
3038
|
}
|
|
3032
3039
|
|
|
3033
|
-
const rootClassName$
|
|
3040
|
+
const rootClassName$M = 'dot-copy-button';
|
|
3034
3041
|
const StyledCopyButton = styled.span.withConfig({
|
|
3035
3042
|
displayName: "CopyButtonstyles__StyledCopyButton",
|
|
3036
3043
|
componentId: "sc-18ff0u-0"
|
|
3037
3044
|
})(["", ""], ({
|
|
3038
3045
|
theme
|
|
3039
|
-
}) => css(["&.", "{.copied-to-clipboard{color:", ";}}"], rootClassName$
|
|
3046
|
+
}) => css(["&.", "{.copied-to-clipboard{color:", ";}}"], rootClassName$M, theme.palette.success[400]));
|
|
3040
3047
|
|
|
3041
3048
|
const DotCopyButton = ({
|
|
3042
3049
|
ariaLabel: _ariaLabel = 'Copy to clipboard',
|
|
@@ -3065,7 +3072,7 @@ const DotCopyButton = ({
|
|
|
3065
3072
|
return false;
|
|
3066
3073
|
};
|
|
3067
3074
|
return jsxs(StyledCopyButton, Object.assign({
|
|
3068
|
-
className: rootClassName$
|
|
3075
|
+
className: rootClassName$M,
|
|
3069
3076
|
"data-testid": dataTestId
|
|
3070
3077
|
}, {
|
|
3071
3078
|
children: [!showCopiedIcon && jsx(DotIconButton, {
|
|
@@ -3306,13 +3313,13 @@ const recentAppInstancesSetter = (latestInstance, maxRecentItems
|
|
|
3306
3313
|
};
|
|
3307
3314
|
};
|
|
3308
3315
|
|
|
3309
|
-
const rootClassName$
|
|
3316
|
+
const rootClassName$L = 'dot-app-switcher';
|
|
3310
3317
|
const StyledAppSwitcher = styled(DotDrawer).withConfig({
|
|
3311
3318
|
displayName: "AppSwitcherstyles__StyledAppSwitcher",
|
|
3312
3319
|
componentId: "hhxfqg-0"
|
|
3313
3320
|
})(["", ""], ({
|
|
3314
3321
|
theme
|
|
3315
|
-
}) => css(["&.", "{.dot-drawer-paper{padding:0;width:382px;}.content{padding:", ";overflow-y:auto;}.app-menu-item{display:flex;justify-content:space-between;align-items:center;}.dot-link,.product-menu-item{display:flex;justify-content:space-between;align-items:center;width:100%;height:60px;margin-bottom:", ";text-decoration:none;cursor:pointer;}.logo-title{display:flex;align-items:center;gap:16px;width:100%;.start-icon{width:40px;display:flex;justify-content:space-around;align-items:center;}}.dot-avatar{flex-basis:40px;}.section-title{display:flex;align-items:center;height:30px;padding:", ";margin:", ";border-bottom:1px solid ", ";}.dot-app-switcher-app-title{min-width:150px;}.dot-icon{flex-basis:content;}.app-switcher-header{.app-switcher-header-title{display:flex;align-items:center;}display:flex;justify-content:space-between;align-items:end;border-bottom:1px solid ", ";padding:", ";.app-switcher-label{padding-left:", ";}}.app-switcher-back-button{&.dot-button.MuiButton-text{padding-left:0;}}.product-heading{display:flex;align-items:center;gap:16px;}.product-applications{margin-top:", ";width:100%;}.app-instance-search{margin-top:", ";}}"], rootClassName$
|
|
3322
|
+
}) => css(["&.", "{.dot-drawer-paper{padding:0;width:382px;}.content{padding:", ";overflow-y:auto;}.app-menu-item{display:flex;justify-content:space-between;align-items:center;}.dot-link,.product-menu-item{display:flex;justify-content:space-between;align-items:center;width:100%;height:60px;margin-bottom:", ";text-decoration:none;cursor:pointer;}.logo-title{display:flex;align-items:center;gap:16px;width:100%;.start-icon{width:40px;display:flex;justify-content:space-around;align-items:center;}}.dot-avatar{flex-basis:40px;}.section-title{display:flex;align-items:center;height:30px;padding:", ";margin:", ";border-bottom:1px solid ", ";}.dot-app-switcher-app-title{min-width:150px;}.dot-icon{flex-basis:content;}.app-switcher-header{.app-switcher-header-title{display:flex;align-items:center;}display:flex;justify-content:space-between;align-items:end;border-bottom:1px solid ", ";padding:", ";.app-switcher-label{padding-left:", ";}}.app-switcher-back-button{&.dot-button.MuiButton-text{padding-left:0;}}.product-heading{display:flex;align-items:center;gap:16px;}.product-applications{margin-top:", ";width:100%;}.app-instance-search{margin-top:", ";}}"], rootClassName$L, theme.spacing(0, 2, 1, 2), theme.spacing(1), theme.spacing(0, 0, 0, 2), theme.spacing(0, -2, 0), theme.palette.grey[100], theme.palette.grey[100], theme.spacing(0, 2, 1, 2), theme.spacing(2), theme.spacing(2), theme.spacing(2)));
|
|
3316
3323
|
|
|
3317
3324
|
const DotAppSwitcherView = ({
|
|
3318
3325
|
activeApp,
|
|
@@ -3333,7 +3340,7 @@ const DotAppSwitcherView = ({
|
|
|
3333
3340
|
if (dotCoreApiContext !== null) {
|
|
3334
3341
|
setSelectedAppType = dotCoreApiContext.setSelectedAppSwitcherAppType;
|
|
3335
3342
|
}
|
|
3336
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3343
|
+
const rootClasses = useStylesWithRootClass(rootClassName$L, className);
|
|
3337
3344
|
const [appTypeMap, setAppTypeMap] = useState();
|
|
3338
3345
|
const [appTypeLabels, setAppTypeLabels] = useState();
|
|
3339
3346
|
const [appTypeMenuItems, setAppTypeMenuItems] = useState();
|
|
@@ -3563,8 +3570,7 @@ const DotAppSwitcherView = ({
|
|
|
3563
3570
|
ModalProps: {
|
|
3564
3571
|
style: {
|
|
3565
3572
|
zIndex: _zIndex
|
|
3566
|
-
}
|
|
3567
|
-
hideBackdrop: true
|
|
3573
|
+
}
|
|
3568
3574
|
},
|
|
3569
3575
|
drawerHeaderProps: header,
|
|
3570
3576
|
variant: "temporary",
|
|
@@ -3715,19 +3721,19 @@ function SvgLogoDigitalAiWhite(_ref, svgRef) {
|
|
|
3715
3721
|
}
|
|
3716
3722
|
var ForwardRef = /*#__PURE__*/React.forwardRef(SvgLogoDigitalAiWhite);
|
|
3717
3723
|
|
|
3718
|
-
const rootClassName$
|
|
3724
|
+
const rootClassName$K = 'dot-sidebar';
|
|
3719
3725
|
const StyledSidebar = styled.aside.withConfig({
|
|
3720
3726
|
displayName: "Sidebarstyles__StyledSidebar",
|
|
3721
3727
|
componentId: "l3atb4-0"
|
|
3722
3728
|
})(["", ""], ({
|
|
3723
3729
|
theme
|
|
3724
|
-
}) => css(["&.", "{align-items:stretch;background:", ";border-width:0 1px;border-style:solid;border-color:", ";box-sizing:border-box;color:", ";display:flex;height:100%;flex-direction:column;justify-content:space-between;letter-spacing:0.01em;-o-transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;-moz-transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;-webkit-transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;header{align-items:center;border-bottom:1px solid;border-bottom-color:", ";display:flex;height:40px;flex-shrink:0;overflow:hidden;padding:", ";white-space:nowrap;&.app-logo{box-sizing:border-box;.dot-app-logo{svg,img{max-width:100%;}}}.dot-avatar{margin-right:", ";}}.go-back{align-items:center;border-bottom:1px solid;border-bottom-color:", ";display:flex;.go-back-button{margin:", ";background-color:", ";&:hover{background-color:", ";}&:focus-visible{box-shadow:0 0 0 2px ", ",0 0 0 4px ", ";}}.back-button-text{margin-right:", ";}}hr.MuiDivider-root{border-color:", ";margin:", ";}.MuiListSubheader-root{border-bottom:1px solid ", ";margin:", ";.dot-typography{display:block;margin:0;padding:", ";}}ul.side-nav{background:transparent;flex-grow:2;overflow-x:hidden;overflow-y:auto;padding:0;width:auto;.dot-nested-list{background:transparent;}.", "{.dot-drawer-paper{padding:", ";overflow-y:auto;border-right:1px solid ", ";box-shadow:0 0 5px 0 rgba(0,0,0,0.15);}.MuiTypography-root.MuiTypography-subtitle2{line-height:40px;}.", "{margin:0;padding-left:", ";}}.dot-list-item{height:44px;padding:0;&.Mui-focusVisible{box-shadow:inset 0 0 0 2px ", ";border:2px solid ", ";}&.open{border:'none';}.dot-list-item-link .dot-icon{margin-right:", ";}.dot-icon{border-radius:50%;height:40px;margin:", ";width:40px;}.dot-typography{white-space:nowrap;}}}.toggle-nav{border-top:1px solid;border-top-color:", ";padding:", ";text-align:right;.dot-icon{transform:rotate(0deg);-o-transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;-moz-transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;-webkit-transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;}}.powered-by{border-top:1px solid;border-top-color:", ";color:", ";display:flex;flex-direction:column;flex-shrink:0;font-size:12px;overflow:hidden;padding:", ";p.desc{white-space:nowrap;}.company-name{margin-top:", ";}.d-icon{display:none;}}&.collapsed{overflow:hidden;width:58px;-o-transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;-moz-transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;-webkit-transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;li.MuiListSubheader-root .dot-typography,.go-back .MuiTypography-root,.MuiListItem-divider .dot-list-item-link,.child,.powered-by .company-name,.powered-by p.desc{display:none;}.dot-nested-drawer li.MuiListSubheader-root .dot-typography,.powered-by .d-icon{display:block;}header .dot-app-logo{text-align:center;}ul.side-nav{width:56px;.dot-list-item{margin-left:0;}.toggle-nav{align-self:center;}}.powered-by{align-items:center;}}}"], rootClassName$
|
|
3730
|
+
}) => css(["&.", "{align-items:stretch;background:", ";border-width:0 1px;border-style:solid;border-color:", ";box-sizing:border-box;color:", ";display:flex;height:100%;flex-direction:column;justify-content:space-between;letter-spacing:0.01em;-o-transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;-moz-transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;-webkit-transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;transition:width cubic-bezier(0.4,0,0.6,1) 0.3s;header{align-items:center;border-bottom:1px solid;border-bottom-color:", ";display:flex;height:40px;flex-shrink:0;overflow:hidden;padding:", ";white-space:nowrap;&.app-logo{box-sizing:border-box;.dot-app-logo{svg,img{max-width:100%;}}}.dot-avatar{margin-right:", ";}}.go-back{align-items:center;border-bottom:1px solid;border-bottom-color:", ";display:flex;.go-back-button{margin:", ";background-color:", ";&:hover{background-color:", ";}&:focus-visible{box-shadow:0 0 0 2px ", ",0 0 0 4px ", ";}}.back-button-text{margin-right:", ";}}hr.MuiDivider-root{border-color:", ";margin:", ";}.MuiListSubheader-root{border-bottom:1px solid ", ";margin:", ";.dot-typography{display:block;margin:0;padding:", ";}}ul.side-nav{background:transparent;flex-grow:2;overflow-x:hidden;overflow-y:auto;padding:0;width:auto;.dot-nested-list{background:transparent;}.", "{.dot-drawer-paper{padding:", ";overflow-y:auto;border-right:1px solid ", ";box-shadow:0 0 5px 0 rgba(0,0,0,0.15);}.MuiTypography-root.MuiTypography-subtitle2{line-height:40px;}.", "{margin:0;padding-left:", ";}}.dot-list-item{height:44px;padding:0;&.Mui-focusVisible{box-shadow:inset 0 0 0 2px ", ";border:2px solid ", ";}&.open{border:'none';}.dot-list-item-link .dot-icon{margin-right:", ";}.dot-icon{border-radius:50%;height:40px;margin:", ";width:40px;}.dot-typography{white-space:nowrap;}}}.toggle-nav{border-top:1px solid;border-top-color:", ";padding:", ";text-align:right;.dot-icon{transform:rotate(0deg);-o-transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;-moz-transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;-webkit-transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;transition:all cubic-bezier(0.4,0,0.2,1) 0.3s;}}.powered-by{border-top:1px solid;border-top-color:", ";color:", ";display:flex;flex-direction:column;flex-shrink:0;font-size:12px;overflow:hidden;padding:", ";p.desc{white-space:nowrap;}.company-name{margin-top:", ";}.d-icon{display:none;}}&.collapsed{overflow:hidden;width:58px;-o-transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;-moz-transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;-webkit-transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;transition:all cubic-bezier(0.4,0,0.6,1) 0.3s;li.MuiListSubheader-root .dot-typography,.go-back .MuiTypography-root,.MuiListItem-divider .dot-list-item-link,.child,.powered-by .company-name,.powered-by p.desc{display:none;}.dot-nested-drawer li.MuiListSubheader-root .dot-typography,.powered-by .d-icon{display:block;}header .dot-app-logo{text-align:center;}ul.side-nav{width:56px;.dot-list-item{margin-left:0;}.toggle-nav{align-self:center;}}.powered-by{align-items:center;}}}"], rootClassName$K, theme.palette.layer.n50, theme.palette.layer.n100, theme.palette.grey[700], theme.palette.layer.n100, theme.spacing(1, 2), theme.spacing(1), theme.palette.layer.n100, theme.spacing(0.5, 1), theme.palette.layer.n100, theme.palette.layer.n200, theme.palette.layer.n0, theme.palette.layer.n900, theme.spacing(2.5), theme.palette.layer.n100, theme.spacing(1, 0), theme.palette.layer.n100, theme.spacing(0, 0, 1), theme.spacing(1.5, 2), nestedDrawerClassName, theme.spacing(2), theme.palette.layer.n100, listItemRootClass, theme.spacing(2), theme.palette.layer.n0, theme.palette.layer.n900, theme.spacing(1), theme.spacing(0, 1), theme.palette.layer.n100, theme.spacing(1), theme.palette.layer.n100, theme.palette.grey[400], theme.spacing(1), theme.spacing(1)));
|
|
3725
3731
|
|
|
3726
|
-
const rootClassName$
|
|
3732
|
+
const rootClassName$J = 'dot-truncate-with-tooltip';
|
|
3727
3733
|
const StyledTruncateWithTooltip = styled(Tooltip).withConfig({
|
|
3728
3734
|
displayName: "TruncateWithTooltipstyles__StyledTruncateWithTooltip",
|
|
3729
3735
|
componentId: "sc-1o80lur-0"
|
|
3730
|
-
})(["", ""], () => css(["&.", "{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}&.dot-characters-limit{display:inline;}"], rootClassName$
|
|
3736
|
+
})(["", ""], () => css(["&.", "{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}&.dot-characters-limit{display:inline;}"], rootClassName$J));
|
|
3731
3737
|
|
|
3732
3738
|
const getTruncatedLabel = (label, charactersLimit) => {
|
|
3733
3739
|
if (!charactersLimit || charactersLimit <= 0 || label.length < charactersLimit) return label;
|
|
@@ -3746,7 +3752,7 @@ const DotTruncateWithTooltip = ({
|
|
|
3746
3752
|
label,
|
|
3747
3753
|
width
|
|
3748
3754
|
}) => {
|
|
3749
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3755
|
+
const rootClasses = useStylesWithRootClass(rootClassName$J, className, charactersLimit ? 'dot-characters-limit' : '');
|
|
3750
3756
|
return jsx(StyledTruncateWithTooltip, Object.assign({
|
|
3751
3757
|
"aria-label": ariaLabel,
|
|
3752
3758
|
className: rootClasses,
|
|
@@ -3862,7 +3868,7 @@ const DotSidebar = ({
|
|
|
3862
3868
|
setIsOpen(!isOpen);
|
|
3863
3869
|
};
|
|
3864
3870
|
const sidebarClasses = useStylesWithRootClass('side-nav', openClass);
|
|
3865
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3871
|
+
const rootClasses = useStylesWithRootClass(rootClassName$K, openClass, className);
|
|
3866
3872
|
return jsxs(StyledSidebar, Object.assign({
|
|
3867
3873
|
"aria-label": ariaLabel,
|
|
3868
3874
|
className: rootClasses,
|
|
@@ -3933,13 +3939,13 @@ const DotSidebar = ({
|
|
|
3933
3939
|
}), void 0);
|
|
3934
3940
|
};
|
|
3935
3941
|
|
|
3936
|
-
const rootClassName$
|
|
3942
|
+
const rootClassName$I = 'dot-badge';
|
|
3937
3943
|
const StyledBadge = styled(Badge).withConfig({
|
|
3938
3944
|
displayName: "Badgestyles__StyledBadge",
|
|
3939
3945
|
componentId: "sc-1brv3h5-0"
|
|
3940
3946
|
})(["", ""], ({
|
|
3941
3947
|
theme
|
|
3942
|
-
}) => css(["&.", "{color:", ";word-break:normal;.MuiBadge-badge{background-color:", ";&.MuiBadge-standard{font-size:10px;height:", ";min-width:", ";padding:", ";}}}"], rootClassName$
|
|
3948
|
+
}) => css(["&.", "{color:", ";word-break:normal;.MuiBadge-badge{background-color:", ";&.MuiBadge-standard{font-size:10px;height:", ";min-width:", ";padding:", ";}}}"], rootClassName$I, theme.palette.text.primary, ({
|
|
3943
3949
|
$badgeColor
|
|
3944
3950
|
}) => {
|
|
3945
3951
|
return $badgeColor;
|
|
@@ -3957,7 +3963,7 @@ const DotBadge = ({
|
|
|
3957
3963
|
overlap,
|
|
3958
3964
|
variant: _variant = 'dot'
|
|
3959
3965
|
}) => {
|
|
3960
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3966
|
+
const rootClasses = useStylesWithRootClass(rootClassName$I, className);
|
|
3961
3967
|
return jsx(StyledBadge, Object.assign({
|
|
3962
3968
|
"$badgeColor": badgeColor,
|
|
3963
3969
|
anchorOrigin: {
|
|
@@ -3980,7 +3986,7 @@ const DotBadge = ({
|
|
|
3980
3986
|
}), void 0);
|
|
3981
3987
|
};
|
|
3982
3988
|
|
|
3983
|
-
const rootClassName$
|
|
3989
|
+
const rootClassName$H = 'dot-app-toolbar';
|
|
3984
3990
|
const denseClassName = 'dense';
|
|
3985
3991
|
const StyledMainMenu = styled(DotDrawer).withConfig({
|
|
3986
3992
|
displayName: "AppToolbarstyles__StyledMainMenu",
|
|
@@ -3993,7 +3999,7 @@ const StyledAppToolbar = styled.header.withConfig({
|
|
|
3993
3999
|
componentId: "sc-3kokby-1"
|
|
3994
4000
|
})(["", ""], ({
|
|
3995
4001
|
theme
|
|
3996
|
-
}) => css(["&.", "{align-items:center;background:", ";border-bottom:4px solid ", ";box-sizing:border-box;color:", ";display:flex;height:64px;padding:", ";position:fixed;width:100%;z-index:", ";top:0;left:0;right:0;&.without-menu-icon{padding-left:", ";}&.", "{height:48px;}.dot-main-menu-btn,.dot-right-side{.dot-icon-btn{color:", ";}}.dot-main-menu-btn{text-align:center;}.dot-branding{align-items:center;display:flex;padding:", ";.primary-logo,.app-logo{margin-right:", ";}.primary-logo,.dot-app-logo{display:flex;max-width:200px;svg,img{max-height:36px;max-width:200px;}}a{line-height:0;}.divider{margin-left:", ";}}div.dot-right-side{display:flex;flex-grow:2;justify-content:flex-end;.dot-badge .MuiBadge-anchorOriginTopRightRectangular{top:", ";right:", ";}}.avatar-wrapper{display:flex;align-items:center;justify-content:center;width:40px;button.dot-avatar:focus-visible{box-shadow:0px 0px 0px 3px ", ",0px 0px 0px 5px ", ";}}}"], rootClassName$
|
|
4002
|
+
}) => css(["&.", "{align-items:center;background:", ";border-bottom:4px solid ", ";box-sizing:border-box;color:", ";display:flex;height:64px;padding:", ";position:fixed;width:100%;z-index:", ";top:0;left:0;right:0;&.without-menu-icon{padding-left:", ";}&.", "{height:48px;}.dot-main-menu-btn,.dot-right-side{.dot-icon-btn{color:", ";}}.dot-main-menu-btn{text-align:center;}.dot-branding{align-items:center;display:flex;padding:", ";.primary-logo,.app-logo{margin-right:", ";}.primary-logo,.dot-app-logo{display:flex;max-width:200px;svg,img{max-height:36px;max-width:200px;}}a{line-height:0;}.divider{margin-left:", ";}}div.dot-right-side{display:flex;flex-grow:2;justify-content:flex-end;.dot-badge .MuiBadge-anchorOriginTopRightRectangular{top:", ";right:", ";}}.avatar-wrapper{display:flex;align-items:center;justify-content:center;width:40px;button.dot-avatar:focus-visible{box-shadow:0px 0px 0px 3px ", ",0px 0px 0px 5px ", ";}}}"], rootClassName$H, theme.palette.grey[700], theme.palette.grey[100], theme.palette.grey[0], theme.spacing(1.5, 2, 1.5, 1), levelFourth, theme.spacing(1.5), denseClassName, theme.palette.grey[100], theme.spacing(0, 4, 0, 0.75), theme.spacing(1.5), theme.spacing(2), theme.spacing(1.5), theme.spacing(1.5), theme.palette.layer.n900, theme.palette.layer.n0));
|
|
3997
4003
|
|
|
3998
4004
|
const DotAppToolbar = ({
|
|
3999
4005
|
ariaLabel,
|
|
@@ -4021,7 +4027,7 @@ const DotAppToolbar = ({
|
|
|
4021
4027
|
const displayAppLogo = appLogo || appLogoSmall;
|
|
4022
4028
|
const mainMenuRef = useRef(null);
|
|
4023
4029
|
const denseClass = _dense ? denseClassName : '';
|
|
4024
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4030
|
+
const rootClasses = useStylesWithRootClass(rootClassName$H, className, denseClass, showMainMenu ? '' : 'without-menu-icon');
|
|
4025
4031
|
const mainMenuClasses = useStylesWithRootClass('dot-main-menu', denseClass, menuOpen ? 'open' : '');
|
|
4026
4032
|
const targetBreakpoint = useMediaQuery(theme => theme.breakpoints.up('md'));
|
|
4027
4033
|
useEffect(() => {
|
|
@@ -4162,7 +4168,7 @@ const DotAppToolbar = ({
|
|
|
4162
4168
|
}), void 0) : appToolbar;
|
|
4163
4169
|
};
|
|
4164
4170
|
|
|
4165
|
-
const rootClassName$
|
|
4171
|
+
const rootClassName$G = 'dot-autocomplete';
|
|
4166
4172
|
const inputRootClassName = 'dot-input-root';
|
|
4167
4173
|
const inputMediumClassName = 'dot-input-medium';
|
|
4168
4174
|
const StyledAutocomplete = styled(Autocomplete).withConfig({
|
|
@@ -4170,15 +4176,15 @@ const StyledAutocomplete = styled(Autocomplete).withConfig({
|
|
|
4170
4176
|
componentId: "j2sgjy-0"
|
|
4171
4177
|
})(["", ""], ({
|
|
4172
4178
|
theme
|
|
4173
|
-
}) => css(["&.", "{&.", " .dot-text-field .", "{height:56px;padding-left:", ";}.", "{padding-top:", ";padding-bottom:", ";}.dot-chip:first-child{margin-left:", ";}.dot-text-field{.", "{min-height:", ";}.warning-icon{color:", ";}.error-icon{color:", ";}}}"], rootClassName$
|
|
4179
|
+
}) => css(["&.", "{&.", " .dot-text-field .", "{height:56px;padding-left:", ";}.", "{padding-top:", ";padding-bottom:", ";}.dot-chip:first-child{margin-left:", ";}.dot-text-field{.", "{min-height:", ";}.warning-icon{color:", ";}.error-icon{color:", ";}}}"], rootClassName$G, inputMediumClassName, inputRootClassName, theme.spacing(2), inputRootClassName, theme.spacing(0), theme.spacing(0), theme.spacing(0), inputRootClassName, theme.spacing(5), theme.palette.warning.main, theme.palette.error.main));
|
|
4174
4180
|
|
|
4175
|
-
const rootClassName$
|
|
4181
|
+
const rootClassName$F = 'dot-chip';
|
|
4176
4182
|
const StyledChip = styled(Chip).withConfig({
|
|
4177
4183
|
displayName: "Chipstyles__StyledChip",
|
|
4178
4184
|
componentId: "f1tsra-0"
|
|
4179
4185
|
})(["", ""], ({
|
|
4180
4186
|
theme
|
|
4181
|
-
}) => css(["&.", "{border-color:", ";.dot-icon i{height:auto;}&.MuiChip-sizeSmall{.dot-icon,.dot-avatar{width:18px;height:18px;}}&.Mui-error{background-color:", ";border-color:", ";.MuiChip-deleteIcon{color:", ";}}&:not(.Mui-error){&:hover{background-color:", ";}.MuiChip-deleteIcon{&:hover{color:", ";}}}.MuiChip-deleteIcon{width:18px;height:18px;color:", ";}}"], rootClassName$
|
|
4187
|
+
}) => css(["&.", "{border-color:", ";.dot-icon i{height:auto;}&.MuiChip-sizeSmall{.dot-icon,.dot-avatar{width:18px;height:18px;}}&.Mui-error{background-color:", ";border-color:", ";.MuiChip-deleteIcon{color:", ";}}&:not(.Mui-error){&:hover{background-color:", ";}.MuiChip-deleteIcon{&:hover{color:", ";}}}.MuiChip-deleteIcon{width:18px;height:18px;color:", ";}}"], rootClassName$F, theme.palette.grey[300], theme.palette.error[50], theme.palette.error.main, theme.palette.error.main, theme.palette.grey[50], theme.palette.grey[400], theme.palette.grey[300]));
|
|
4182
4188
|
|
|
4183
4189
|
const DEFAULT_CHARACTERS_LIMIT = 32;
|
|
4184
4190
|
const DotChip = ({
|
|
@@ -4198,7 +4204,7 @@ const DotChip = ({
|
|
|
4198
4204
|
startIcon
|
|
4199
4205
|
}) => {
|
|
4200
4206
|
const errorClass = _error ? 'Mui-error' : '';
|
|
4201
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4207
|
+
const rootClasses = useStylesWithRootClass(rootClassName$F, className, errorClass);
|
|
4202
4208
|
const getChipLabel = () => {
|
|
4203
4209
|
if (_charactersLimit <= 0 || children.length < _charactersLimit) return children;
|
|
4204
4210
|
const label = `${children.substring(0, _charactersLimit)}...`;
|
|
@@ -4330,8 +4336,8 @@ const DotAutoComplete = ({
|
|
|
4330
4336
|
const [isOpened, setIsOpened] = useState(false);
|
|
4331
4337
|
const [inputText, setInputText] = useState('');
|
|
4332
4338
|
const textFieldWarningClassName = !_error && _warning && warningClassName;
|
|
4333
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4334
|
-
const textFieldRootClasses = useStylesWithRootClass(rootClassName$
|
|
4339
|
+
const rootClasses = useStylesWithRootClass(rootClassName$G, _size === 'medium' && inputMediumClassName, className);
|
|
4340
|
+
const textFieldRootClasses = useStylesWithRootClass(rootClassName$11, className, _readOnly ? 'read-only' : '', textFieldWarningClassName);
|
|
4335
4341
|
const inputRootClasses = useStylesWithRootClass(inputRootClassName, !_dense && inputMediumClassName);
|
|
4336
4342
|
let textFieldInput;
|
|
4337
4343
|
// Used for focus management while popper is opened
|
|
@@ -4377,7 +4383,7 @@ const DotAutoComplete = ({
|
|
|
4377
4383
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
4378
4384
|
const DotPopper = props => {
|
|
4379
4385
|
if (!isActionItemDefined) return jsx(StyledPopper, Object.assign({}, props, {
|
|
4380
|
-
className: rootClassName$
|
|
4386
|
+
className: rootClassName$V,
|
|
4381
4387
|
disablePortal: _disablePortal,
|
|
4382
4388
|
"$maxHeight": maxHeight
|
|
4383
4389
|
}), void 0);
|
|
@@ -4401,7 +4407,7 @@ const DotAutoComplete = ({
|
|
|
4401
4407
|
const paperProps = props.children.props;
|
|
4402
4408
|
const paperChildren = paperProps.children;
|
|
4403
4409
|
return jsx(StyledPopper, Object.assign({}, props, {
|
|
4404
|
-
className: rootClassName$
|
|
4410
|
+
className: rootClassName$V,
|
|
4405
4411
|
disablePortal: _disablePortal,
|
|
4406
4412
|
"$maxHeight": maxHeight
|
|
4407
4413
|
}, {
|
|
@@ -4603,11 +4609,11 @@ const DotAutoComplete = ({
|
|
|
4603
4609
|
}, void 0);
|
|
4604
4610
|
};
|
|
4605
4611
|
|
|
4606
|
-
const rootClassName$
|
|
4612
|
+
const rootClassName$E = 'dot-avatar-group';
|
|
4607
4613
|
const StyledAvatarGroup = styled(AvatarGroup).withConfig({
|
|
4608
4614
|
displayName: "AvatarGroupstyles__StyledAvatarGroup",
|
|
4609
4615
|
componentId: "sc-25by6z-0"
|
|
4610
|
-
})(["", ""], () => css(["&.", "{justify-content:flex-end;.MuiAvatar-root{border:none;}}}"], rootClassName$
|
|
4616
|
+
})(["", ""], () => css(["&.", "{justify-content:flex-end;.MuiAvatar-root{border:none;}}}"], rootClassName$E));
|
|
4611
4617
|
|
|
4612
4618
|
const DotAvatarGroup = ({
|
|
4613
4619
|
ariaLabel,
|
|
@@ -4617,7 +4623,7 @@ const DotAvatarGroup = ({
|
|
|
4617
4623
|
max: _max = 3,
|
|
4618
4624
|
spacing: _spacing = 'medium'
|
|
4619
4625
|
}) => {
|
|
4620
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4626
|
+
const rootClasses = useStylesWithRootClass(rootClassName$E, className);
|
|
4621
4627
|
return jsx(StyledAvatarGroup, Object.assign({
|
|
4622
4628
|
"aria-label": ariaLabel,
|
|
4623
4629
|
classes: {
|
|
@@ -4633,20 +4639,20 @@ const DotAvatarGroup = ({
|
|
|
4633
4639
|
}), void 0);
|
|
4634
4640
|
};
|
|
4635
4641
|
|
|
4636
|
-
const rootClassName$
|
|
4642
|
+
const rootClassName$D = 'dot-breadcrumbs';
|
|
4637
4643
|
const breadcrumbsWrapperClass = 'dot-breadcrumbs-wrapper';
|
|
4638
4644
|
const StyledBreadcrumbsWrapper = styled.div.withConfig({
|
|
4639
4645
|
displayName: "Breadcrumbsstyles__StyledBreadcrumbsWrapper",
|
|
4640
4646
|
componentId: "sc-7cg374-0"
|
|
4641
4647
|
})(["", ""], ({
|
|
4642
4648
|
theme
|
|
4643
|
-
}) => css(["&.", "{overflow:hidden;.dot-breadcrumbs-menu{.MuiMenuItem-root{padding:0;}a.breadcrumb{width:100%;padding:", ";}}}"], rootClassName$
|
|
4649
|
+
}) => css(["&.", "{overflow:hidden;.dot-breadcrumbs-menu{.MuiMenuItem-root{padding:0;}a.breadcrumb{width:100%;padding:", ";}}}"], rootClassName$D, theme.spacing(0.5, 2)));
|
|
4644
4650
|
const StyledBreadcrumbs = styled(Breadcrumbs).withConfig({
|
|
4645
4651
|
displayName: "Breadcrumbsstyles__StyledBreadcrumbs",
|
|
4646
4652
|
componentId: "sc-7cg374-1"
|
|
4647
4653
|
})(["", ""], ({
|
|
4648
4654
|
theme
|
|
4649
|
-
}) => css(["&.", "{margin-bottom:0;.MuiBreadcrumbs-ol{flex-wrap:nowrap;}.MuiBreadcrumbs-li,.separator{color:", ";margin:0;white-space:nowrap;}.separator{font-size:12px;width:20px;height:20px;padding:0;}.MuiBreadcrumbs-separator{margin:0;}.MuiLink-underlineHover{cursor:pointer;}.MuiBreadcrumbs-li:last-child{overflow:hidden;text-overflow:ellipsis;}.breadcrumb{padding:", ";}.current-page{color:", ";cursor:default;}}"], rootClassName$
|
|
4655
|
+
}) => css(["&.", "{margin-bottom:0;.MuiBreadcrumbs-ol{flex-wrap:nowrap;}.MuiBreadcrumbs-li,.separator{color:", ";margin:0;white-space:nowrap;}.separator{font-size:12px;width:20px;height:20px;padding:0;}.MuiBreadcrumbs-separator{margin:0;}.MuiLink-underlineHover{cursor:pointer;}.MuiBreadcrumbs-li:last-child{overflow:hidden;text-overflow:ellipsis;}.breadcrumb{padding:", ";}.current-page{color:", ";cursor:default;}}"], rootClassName$D, theme.palette.grey[300], theme.spacing(0.5, 2), theme.palette.grey[700]));
|
|
4650
4656
|
|
|
4651
4657
|
const compareWidth = (parentEl, childEl) => {
|
|
4652
4658
|
return parentEl.getBoundingClientRect().width < childEl.getBoundingClientRect().width;
|
|
@@ -4937,7 +4943,7 @@ const DotBreadcrumbs = ({
|
|
|
4937
4943
|
children: [jsx(StyledBreadcrumbs, Object.assign({
|
|
4938
4944
|
"aria-label": "breadcrumb",
|
|
4939
4945
|
classes: {
|
|
4940
|
-
root: rootClassName$
|
|
4946
|
+
root: rootClassName$D,
|
|
4941
4947
|
ol: 'dot-ol',
|
|
4942
4948
|
li: 'dot-li'
|
|
4943
4949
|
},
|
|
@@ -4967,13 +4973,13 @@ const DotBreadcrumbs = ({
|
|
|
4967
4973
|
}), void 0);
|
|
4968
4974
|
};
|
|
4969
4975
|
|
|
4970
|
-
const rootClassName$
|
|
4976
|
+
const rootClassName$C = 'dot-button-toggle';
|
|
4971
4977
|
const StyledToggleButtonGroup = styled(ToggleButtonGroup).withConfig({
|
|
4972
4978
|
displayName: "ButtonTogglestyles__StyledToggleButtonGroup",
|
|
4973
4979
|
componentId: "sc-1oh4ljv-0"
|
|
4974
4980
|
})(["", ""], ({
|
|
4975
4981
|
theme
|
|
4976
|
-
}) => css(["&.", "{button:not(.MuiToggleButton-sizeLarge):not(.MuiToggleButton-sizeSmall){height:", ";.dot-icon{width:", ";}}.dot-icon{color:", ";+ p{margin-left:", ";}i{height:auto;}}.dot-typography{margin-bottom:0;}.MuiToggleButton-label{color:", ";p{margin-bottom:0;}}.MuiToggleButtonGroup-groupedHorizontal{border:1px solid ", ";border-radius:0;}.dot-tooltip{&:first-child .MuiToggleButtonGroup-groupedHorizontal{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}&:last-child .MuiToggleButtonGroup-groupedHorizontal{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}&:not(:first-child) .MuiToggleButtonGroup-groupedHorizontal{margin-left:-1px;}}& > .MuiToggleButtonGroup-groupedHorizontal{:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}}}.MuiButtonBase-root{&.Mui-disabled p,&.Mui-disabled .dot-icon{color:", ";}&.Mui-selected{&.MuiToggleButton-standard{background:", ";}.dot-typography{color:inherit;}}}"], rootClassName$
|
|
4982
|
+
}) => css(["&.", "{button:not(.MuiToggleButton-sizeLarge):not(.MuiToggleButton-sizeSmall){height:", ";.dot-icon{width:", ";}}.dot-icon{color:", ";display:flex;+ p{margin-left:", ";}i{height:auto;}}.dot-typography{margin-bottom:0;}.MuiToggleButton-label{color:", ";p{margin-bottom:0;}}.MuiToggleButtonGroup-groupedHorizontal{border:1px solid ", ";border-radius:0;}.dot-tooltip{&:first-child .MuiToggleButtonGroup-groupedHorizontal{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}&:last-child .MuiToggleButtonGroup-groupedHorizontal{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}&:not(:first-child) .MuiToggleButtonGroup-groupedHorizontal{margin-left:-1px;}}& > .MuiToggleButtonGroup-groupedHorizontal{:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}}}.MuiButtonBase-root{&.Mui-disabled p,&.Mui-disabled .dot-icon{color:", ";}&.Mui-selected{&.MuiToggleButton-standard{background:", ";}.dot-typography{color:inherit;}}}"], rootClassName$C, theme.spacing(5), theme.spacing(2), theme.palette.layer.n700, theme.spacing(1), theme.palette.layer.n700, theme.palette.layer.n300, theme.palette.grey[200], selectedGray));
|
|
4977
4983
|
|
|
4978
4984
|
const DotButtonToggle = ({
|
|
4979
4985
|
ariaLabel,
|
|
@@ -4989,7 +4995,7 @@ const DotButtonToggle = ({
|
|
|
4989
4995
|
size: _size = 'medium',
|
|
4990
4996
|
value
|
|
4991
4997
|
}) => {
|
|
4992
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4998
|
+
const rootClasses = useStylesWithRootClass(rootClassName$C, className);
|
|
4993
4999
|
const renderToggleButton = ({
|
|
4994
5000
|
ariaLabel: optionAriaLabel,
|
|
4995
5001
|
className: optionClassName,
|
|
@@ -5095,13 +5101,13 @@ const DotCardContent = ({
|
|
|
5095
5101
|
}), void 0);
|
|
5096
5102
|
};
|
|
5097
5103
|
|
|
5098
|
-
const rootClassName$
|
|
5104
|
+
const rootClassName$B = 'dot-card-footer';
|
|
5099
5105
|
const StyledDiv = styled.div.withConfig({
|
|
5100
5106
|
displayName: "CardFooterstyles__StyledDiv",
|
|
5101
5107
|
componentId: "koblh6-0"
|
|
5102
5108
|
})(["", ""], ({
|
|
5103
5109
|
theme
|
|
5104
|
-
}) => css(["&.", "{padding:", ";}"], rootClassName$
|
|
5110
|
+
}) => css(["&.", "{padding:", ";}"], rootClassName$B, theme.spacing(2)));
|
|
5105
5111
|
|
|
5106
5112
|
const DotCardFooter = ({
|
|
5107
5113
|
ariaLabel,
|
|
@@ -5109,7 +5115,7 @@ const DotCardFooter = ({
|
|
|
5109
5115
|
className,
|
|
5110
5116
|
'data-testid': dataTestId
|
|
5111
5117
|
}) => {
|
|
5112
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5118
|
+
const rootClasses = useStylesWithRootClass(rootClassName$B, className);
|
|
5113
5119
|
return jsx(StyledDiv, Object.assign({
|
|
5114
5120
|
"aria-label": ariaLabel,
|
|
5115
5121
|
className: rootClasses,
|
|
@@ -5154,19 +5160,19 @@ const DotCardHeader = ({
|
|
|
5154
5160
|
}, void 0);
|
|
5155
5161
|
};
|
|
5156
5162
|
|
|
5157
|
-
const rootClassName$
|
|
5163
|
+
const rootClassName$A = 'dot-form-control-label';
|
|
5158
5164
|
const StyledFormControlLabel = styled(FormControlLabel).withConfig({
|
|
5159
5165
|
displayName: "FormControlLabelstyles__StyledFormControlLabel",
|
|
5160
5166
|
componentId: "sc-1vt0om4-0"
|
|
5161
|
-
})(["&.", "{.MuiFormControlLabel-label{margin-bottom:0;padding:0 0 0 4px;}&.MuiFormControlLabel-labelPlacementBottom{.MuiFormControlLabel-label{padding:4px 0 0 0;}}&.MuiFormControlLabel-labelPlacementTop{.MuiFormControlLabel-label{padding:0 0 4px 0;}}&.MuiFormControlLabel-labelPlacementStart{.MuiFormControlLabel-label{padding:0 4px 0;}}}"], rootClassName$
|
|
5167
|
+
})(["&.", "{.MuiFormControlLabel-label{margin-bottom:0;padding:0 0 0 4px;}&.MuiFormControlLabel-labelPlacementBottom{.MuiFormControlLabel-label{padding:4px 0 0 0;}}&.MuiFormControlLabel-labelPlacementTop{.MuiFormControlLabel-label{padding:0 0 4px 0;}}&.MuiFormControlLabel-labelPlacementStart{.MuiFormControlLabel-label{padding:0 4px 0;}}}"], rootClassName$A);
|
|
5162
5168
|
|
|
5163
|
-
const rootClassName$
|
|
5169
|
+
const rootClassName$z = 'dot-checkbox';
|
|
5164
5170
|
const StyledCheckbox = styled(Checkbox).withConfig({
|
|
5165
5171
|
displayName: "Checkboxstyles__StyledCheckbox",
|
|
5166
5172
|
componentId: "sc-1ubsn6i-0"
|
|
5167
5173
|
})(["", ""], ({
|
|
5168
5174
|
theme
|
|
5169
|
-
}) => css(["&.", "{padding:", ";&.MuiCheckbox-indeterminate{color:rgba(0,0,0,0.6);}}"], rootClassName$
|
|
5175
|
+
}) => css(["&.", "{padding:", ";&.MuiCheckbox-indeterminate{color:rgba(0,0,0,0.6);}}"], rootClassName$z, theme.spacing(1)));
|
|
5170
5176
|
|
|
5171
5177
|
function DotCheckbox({
|
|
5172
5178
|
ariaLabel,
|
|
@@ -5187,14 +5193,14 @@ function DotCheckbox({
|
|
|
5187
5193
|
size = 'medium',
|
|
5188
5194
|
value
|
|
5189
5195
|
}) {
|
|
5190
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5196
|
+
const rootClasses = useStylesWithRootClass(rootClassName$A, className);
|
|
5191
5197
|
const handleChange = event => {
|
|
5192
5198
|
onChange && onChange(event, event.target.value);
|
|
5193
5199
|
};
|
|
5194
5200
|
const checkboxControl = jsx(StyledCheckbox, {
|
|
5195
5201
|
checked: checked,
|
|
5196
5202
|
classes: {
|
|
5197
|
-
root: rootClassName$
|
|
5203
|
+
root: rootClassName$z
|
|
5198
5204
|
},
|
|
5199
5205
|
color: "primary",
|
|
5200
5206
|
"data-testid": dataTestId,
|
|
@@ -5221,7 +5227,7 @@ function DotCheckbox({
|
|
|
5221
5227
|
}, void 0);
|
|
5222
5228
|
}
|
|
5223
5229
|
|
|
5224
|
-
const rootClassName$
|
|
5230
|
+
const rootClassName$y = 'dot-form-group';
|
|
5225
5231
|
const groupLabelClassName = 'dot-form-group-label';
|
|
5226
5232
|
const startAdornmentClassName = 'dot-start-adornment';
|
|
5227
5233
|
const endAdornmentClassName = 'dot-end-adornment';
|
|
@@ -5229,9 +5235,9 @@ const placementClassName = 'dot-';
|
|
|
5229
5235
|
const StyledFormControl = styled(FormControl).withConfig({
|
|
5230
5236
|
displayName: "FormControlstyles__StyledFormControl",
|
|
5231
5237
|
componentId: "sc-532kip-0"
|
|
5232
|
-
})(["&.", "{.MuiFormLabel-root{width:100%;line-height:24px;margin-bottom:4px;display:flex;align-items:center;.", "{padding-left:4px;}.", "{padding-right:4px;}}&.", "{.MuiFormHelperText-root,.MuiFormLabel-root{display:flex;flex-direction:row-reverse;}}&.", "{.MuiFormHelperText-root,.MuiFormLabel-root{display:flex;justify-content:center;}}}"], rootClassName$
|
|
5238
|
+
})(["&.", "{.MuiFormLabel-root{width:100%;line-height:24px;margin-bottom:4px;display:flex;align-items:center;.", "{padding-left:4px;}.", "{padding-right:4px;}}&.", "{.MuiFormHelperText-root,.MuiFormLabel-root{display:flex;flex-direction:row-reverse;}}&.", "{.MuiFormHelperText-root,.MuiFormLabel-root{display:flex;justify-content:center;}}}"], rootClassName$y, endAdornmentClassName, startAdornmentClassName, `${placementClassName}start`, `${placementClassName}bottom`);
|
|
5233
5239
|
|
|
5234
|
-
const rootClassName$
|
|
5240
|
+
const rootClassName$x = 'dot-checkbox-group';
|
|
5235
5241
|
const wrapperClassName$1 = 'dot-checkbox-group-wrapper';
|
|
5236
5242
|
const checkboxListClassName = 'dot-checkbox-list';
|
|
5237
5243
|
const checkboxListItemClassName = 'dot-checkbox-list-item';
|
|
@@ -5240,16 +5246,16 @@ const StyledCheckboxGroup = styled.div.withConfig({
|
|
|
5240
5246
|
componentId: "bhb21v-0"
|
|
5241
5247
|
})(["", ""], ({
|
|
5242
5248
|
theme
|
|
5243
|
-
}) => css(["{&.", "{.", "{width:100%;}.MuiFormLabel-root{display:inline;width:100%;}.MuiFormHelperText-root{font-family:", ";font-size:", "px;font-weight:", ";&:not(.Mui-error){color:", ";}}.", "{list-style:none;margin-top:0;padding-left:", ";.", "{margin:0;}}}"], wrapperClassName$1, rootClassName$
|
|
5249
|
+
}) => css(["{&.", "{.", "{width:100%;}.MuiFormLabel-root{display:inline;width:100%;}.MuiFormHelperText-root{font-family:", ";font-size:", "px;font-weight:", ";&:not(.Mui-error){color:", ";}}.", "{list-style:none;margin-top:0;padding-left:", ";.", "{margin:0;}}}"], wrapperClassName$1, rootClassName$x, theme.typography.body2.fontFamily, theme.typography.body2.fontSize, theme.typography.body2.fontWeight, theme.palette.grey[400], checkboxListClassName, theme.spacing(2.5), rootClassName$A));
|
|
5244
5250
|
|
|
5245
|
-
const rootClassName$
|
|
5251
|
+
const rootClassName$w = 'dot-form-group';
|
|
5246
5252
|
const StyledFormGroup = styled(FormGroup).withConfig({
|
|
5247
5253
|
displayName: "FormGroupstyles__StyledFormGroup",
|
|
5248
5254
|
componentId: "sc-1dlipcr-0"
|
|
5249
5255
|
})(["", ""], ({
|
|
5250
5256
|
theme,
|
|
5251
5257
|
row
|
|
5252
|
-
}) => css(["&.", "{& > *{margin:", ";}}"], rootClassName$
|
|
5258
|
+
}) => css(["&.", "{& > *{margin:", ";}}"], rootClassName$w, row ? `${theme.spacing(0.5)}` : 0));
|
|
5253
5259
|
|
|
5254
5260
|
function DotFormGroup({
|
|
5255
5261
|
ariaLabel,
|
|
@@ -5258,7 +5264,7 @@ function DotFormGroup({
|
|
|
5258
5264
|
'data-testid': dataTestId,
|
|
5259
5265
|
row
|
|
5260
5266
|
}) {
|
|
5261
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5267
|
+
const rootClasses = useStylesWithRootClass(rootClassName$y, className);
|
|
5262
5268
|
return jsx(StyledFormGroup, Object.assign({
|
|
5263
5269
|
"aria-label": ariaLabel,
|
|
5264
5270
|
classes: {
|
|
@@ -5298,7 +5304,7 @@ function DotCheckboxGroup({
|
|
|
5298
5304
|
size = 'medium'
|
|
5299
5305
|
}) {
|
|
5300
5306
|
const placement = `${placementClassName}${labelPlacement}`;
|
|
5301
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5307
|
+
const rootClasses = useStylesWithRootClass(rootClassName$y, rootClassName$x, className, placement);
|
|
5302
5308
|
const [selectedOptions, setSelectedOptions] = useState(defaultValues);
|
|
5303
5309
|
const [allChecked, setAllChecked] = useState(false);
|
|
5304
5310
|
/* This will ensure that state can be updated from the outside */
|
|
@@ -5390,13 +5396,13 @@ function DotCheckboxGroup({
|
|
|
5390
5396
|
}), void 0);
|
|
5391
5397
|
}
|
|
5392
5398
|
|
|
5393
|
-
const rootClassName$
|
|
5399
|
+
const rootClassName$v = 'dot-dialog';
|
|
5394
5400
|
const StyledDialog = styled(Dialog).withConfig({
|
|
5395
5401
|
displayName: "Dialogstyles__StyledDialog",
|
|
5396
5402
|
componentId: "sc-1tkr4ex-0"
|
|
5397
5403
|
})(["", ""], ({
|
|
5398
5404
|
theme
|
|
5399
|
-
}) => css(["&.", "{.MuiDialog-paper{min-width:280px;max-height:80vh;max-width:80vw;}.MuiDialogTitle-root,.dot-dialog-title{align-items:center;display:flex;flex-wrap:nowrap;padding:", ";h2{flex-grow:1;}.dot-icon-button{margin-left:", ";}}.dot-dialog-content{padding:", ";overflow-y:auto;}.dot-dialog-actions{padding:", ";.cancel-button{color:inherit;}}}"], rootClassName$
|
|
5405
|
+
}) => css(["&.", "{.MuiDialog-paper{min-width:280px;max-height:80vh;max-width:80vw;}.MuiDialogTitle-root,.dot-dialog-title{align-items:center;display:flex;flex-wrap:nowrap;padding:", ";h2{flex-grow:1;}.dot-icon-button{margin-left:", ";}}.dot-dialog-content{padding:", ";overflow-y:auto;}.dot-dialog-actions{padding:", ";.cancel-button{color:inherit;}}}"], rootClassName$v, theme.spacing(1, 2), theme.spacing(1), theme.spacing(1, 2), theme.spacing(1)));
|
|
5400
5406
|
|
|
5401
5407
|
const DotDialog = ({
|
|
5402
5408
|
ariaLabel,
|
|
@@ -5414,7 +5420,7 @@ const DotDialog = ({
|
|
|
5414
5420
|
submitButtonProps,
|
|
5415
5421
|
title
|
|
5416
5422
|
}) => {
|
|
5417
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5423
|
+
const rootClasses = useStylesWithRootClass(rootClassName$v, className);
|
|
5418
5424
|
const cancelClasses = useStylesWithRootClass(cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.className, 'cancel-button');
|
|
5419
5425
|
const [isOpen, setIsOpen] = useState(open);
|
|
5420
5426
|
useEffect(() => {
|
|
@@ -5531,7 +5537,7 @@ const DotConfirmationDialog = ({
|
|
|
5531
5537
|
}), void 0);
|
|
5532
5538
|
};
|
|
5533
5539
|
|
|
5534
|
-
const rootClassName$
|
|
5540
|
+
const rootClassName$u = 'dot-grid';
|
|
5535
5541
|
const frGetter = value => typeof value === 'number' ? `repeat(${value}, 1fr)` : value;
|
|
5536
5542
|
const breakpointsGetter$1 = (theme, columnsBreakpoints, columnGap, rowGap) => `${theme.breakpoints.up('xs')} {
|
|
5537
5543
|
column-gap: ${`${columnGap.xs}px`};
|
|
@@ -5576,7 +5582,7 @@ const Grid = ({
|
|
|
5576
5582
|
className,
|
|
5577
5583
|
children
|
|
5578
5584
|
}) => {
|
|
5579
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5585
|
+
const rootClasses = useStylesWithRootClass(rootClassName$u, className);
|
|
5580
5586
|
return jsx("div", Object.assign({
|
|
5581
5587
|
className: rootClasses
|
|
5582
5588
|
}, {
|
|
@@ -5597,7 +5603,7 @@ const StyledGrid = styled(Grid).withConfig({
|
|
|
5597
5603
|
rows,
|
|
5598
5604
|
theme,
|
|
5599
5605
|
width
|
|
5600
|
-
}) => css(["&.", "{display:grid;grid-template-rows:", ";", " ", " ", " ", " ", ""], rootClassName$
|
|
5606
|
+
}) => css(["&.", "{display:grid;grid-template-rows:", ";", " ", " ", " ", " ", ""], rootClassName$u, frGetter(rows), columns ? `${columns && `grid-template-columns: ${frGetter(columns)}`};` : breakpointsGetter$1(theme, _columnsBreakpoints, _columnGap, _rowGap), gridTemplateAreas && `grid-template-areas: ${gridTemplateAreas};`, gap && `grid-gap: ${gap};`, width && `width: ${width};`, height && `height: ${height};`));
|
|
5601
5607
|
const CssGrid = props => {
|
|
5602
5608
|
return jsx(StyledGrid, Object.assign({}, props), void 0);
|
|
5603
5609
|
};
|
|
@@ -5753,7 +5759,7 @@ const CssGridDebug = ({
|
|
|
5753
5759
|
}), void 0);
|
|
5754
5760
|
};
|
|
5755
5761
|
|
|
5756
|
-
const rootClassName$
|
|
5762
|
+
const rootClassName$t = 'dot-empty-state';
|
|
5757
5763
|
const StyledEmptyState = styled.div.withConfig({
|
|
5758
5764
|
displayName: "EmptyStatestyles__StyledEmptyState",
|
|
5759
5765
|
componentId: "sc-1sftmht-0"
|
|
@@ -5771,7 +5777,7 @@ const DotEmptyState = ({
|
|
|
5771
5777
|
subtitle,
|
|
5772
5778
|
title
|
|
5773
5779
|
}) => {
|
|
5774
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5780
|
+
const rootClasses = useStylesWithRootClass(rootClassName$t, className);
|
|
5775
5781
|
return jsxs(StyledEmptyState, Object.assign({
|
|
5776
5782
|
"aria-label": ariaLabel,
|
|
5777
5783
|
className: rootClasses,
|
|
@@ -5807,15 +5813,15 @@ const StyledRadioGroup = styled(RadioGroup).withConfig({
|
|
|
5807
5813
|
componentId: "sc-84g3mq-1"
|
|
5808
5814
|
})(["", ""], ({
|
|
5809
5815
|
theme
|
|
5810
|
-
}) => css(["{&.", "{padding-left:", ";.", "{margin:0;}}"], groupClassName, theme.spacing(2.5), rootClassName$
|
|
5816
|
+
}) => css(["{&.", "{padding-left:", ";.", "{margin:0;}}"], groupClassName, theme.spacing(2.5), rootClassName$A));
|
|
5811
5817
|
|
|
5812
|
-
const rootClassName$
|
|
5818
|
+
const rootClassName$s = 'dot-form';
|
|
5813
5819
|
const StyledFormContainer = styled.div.withConfig({
|
|
5814
5820
|
displayName: "Formstyles__StyledFormContainer",
|
|
5815
5821
|
componentId: "bbovqo-0"
|
|
5816
5822
|
})(["", ""], ({
|
|
5817
5823
|
theme
|
|
5818
|
-
}) => css(["&.", "{margin:", ";.", ",.", ",.", ",.", "{margin:", ";}.", ",.", "{.", "{margin:0;}}}"], rootClassName$
|
|
5824
|
+
}) => css(["&.", "{margin:", ";.", ",.", ",.", ",.", "{margin:", ";}.", ",.", "{.", "{margin:0;}}}"], rootClassName$s, theme.spacing(3, 0), rootClassName$y, rootClassName$A, rootClassName$11, rootSelectClassName, theme.spacing(1, 0), rootClassName$x, groupClassName, rootClassName$A));
|
|
5819
5825
|
|
|
5820
5826
|
const DotForm = ({
|
|
5821
5827
|
ariaLabel,
|
|
@@ -5824,7 +5830,7 @@ const DotForm = ({
|
|
|
5824
5830
|
'data-testid': dataTestId,
|
|
5825
5831
|
onSubmit
|
|
5826
5832
|
}) => {
|
|
5827
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5833
|
+
const rootClasses = useStylesWithRootClass(rootClassName$s, className);
|
|
5828
5834
|
return jsx("form", Object.assign({
|
|
5829
5835
|
"aria-label": ariaLabel,
|
|
5830
5836
|
"data-testid": dataTestId,
|
|
@@ -5839,11 +5845,11 @@ const DotForm = ({
|
|
|
5839
5845
|
}), void 0);
|
|
5840
5846
|
};
|
|
5841
5847
|
|
|
5842
|
-
const rootClassName$
|
|
5848
|
+
const rootClassName$r = 'dot-dynamic-form';
|
|
5843
5849
|
const StyledDynamicForm = styled(DotForm).withConfig({
|
|
5844
5850
|
displayName: "DynamicFormstyles__StyledDynamicForm",
|
|
5845
5851
|
componentId: "sc-1lnljcn-0"
|
|
5846
|
-
})(["", ""], () => css(["&.", "{}"], rootClassName$
|
|
5852
|
+
})(["", ""], () => css(["&.", "{}"], rootClassName$r));
|
|
5847
5853
|
|
|
5848
5854
|
const DATA_CONTROLS = ['dot-autocomplete', 'dot-checkbox', 'dot-checkbox-group', 'dot-input-select', 'dot-input-text', 'dot-radio-group', 'dot-switch'];
|
|
5849
5855
|
/* Array of control types for which we don't have error state so validation doesn't make any sense */
|
|
@@ -6130,13 +6136,13 @@ const DotInputSelect = ({
|
|
|
6130
6136
|
}), void 0);
|
|
6131
6137
|
};
|
|
6132
6138
|
|
|
6133
|
-
const rootClassName$
|
|
6139
|
+
const rootClassName$q = 'dot-progress-button';
|
|
6134
6140
|
const StyledProgressButton = styled(DotButton).withConfig({
|
|
6135
6141
|
displayName: "ProgressButtonstyles__StyledProgressButton",
|
|
6136
6142
|
componentId: "sc-1fvgky0-0"
|
|
6137
6143
|
})(["", ""], ({
|
|
6138
6144
|
theme
|
|
6139
|
-
}) => css(["&.", "{.hidden{visibility:hidden;}.progress-circle{color:", ";position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;}}"], rootClassName$
|
|
6145
|
+
}) => css(["&.", "{.hidden{visibility:hidden;}.progress-circle{color:", ";position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;}}"], rootClassName$q, theme.palette.layer.n300));
|
|
6140
6146
|
|
|
6141
6147
|
const SPINNER_DEFAULT_SIZE = 20;
|
|
6142
6148
|
const SPINNER_LARGE_SIZE = 24;
|
|
@@ -6155,7 +6161,7 @@ const DotProgressButton = ({
|
|
|
6155
6161
|
tooltip,
|
|
6156
6162
|
type: _type = 'primary'
|
|
6157
6163
|
}) => {
|
|
6158
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6164
|
+
const rootClasses = useStylesWithRootClass(rootClassName$q, className);
|
|
6159
6165
|
const isButtonDisabled = _disabled || _isLoading;
|
|
6160
6166
|
const titleClasses = useStylesWithRootClass(_isLoading ? 'hidden' : '');
|
|
6161
6167
|
const progressCircleSize = _size === 'large' ? SPINNER_LARGE_SIZE : SPINNER_DEFAULT_SIZE;
|
|
@@ -6183,11 +6189,11 @@ const DotProgressButton = ({
|
|
|
6183
6189
|
}), void 0);
|
|
6184
6190
|
};
|
|
6185
6191
|
|
|
6186
|
-
const rootClassName$
|
|
6192
|
+
const rootClassName$p = 'dot-radio';
|
|
6187
6193
|
const StyledRadioButton = styled(Radio).withConfig({
|
|
6188
6194
|
displayName: "RadioButtonstyles__StyledRadioButton",
|
|
6189
6195
|
componentId: "brp0sc-0"
|
|
6190
|
-
})(["", ""], () => css(["{&.", "{padding:8px;}"], rootClassName$
|
|
6196
|
+
})(["", ""], () => css(["{&.", "{padding:8px;}"], rootClassName$p));
|
|
6191
6197
|
|
|
6192
6198
|
function DotRadioButton({
|
|
6193
6199
|
ariaLabel,
|
|
@@ -6205,7 +6211,7 @@ function DotRadioButton({
|
|
|
6205
6211
|
size = 'medium',
|
|
6206
6212
|
value
|
|
6207
6213
|
}) {
|
|
6208
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6214
|
+
const rootClasses = useStylesWithRootClass(rootClassName$A, className);
|
|
6209
6215
|
const handleChange = event => {
|
|
6210
6216
|
onChange && onChange(event, event.target.value);
|
|
6211
6217
|
};
|
|
@@ -6213,7 +6219,7 @@ function DotRadioButton({
|
|
|
6213
6219
|
"aria-label": ariaLabel,
|
|
6214
6220
|
checked: checked,
|
|
6215
6221
|
classes: {
|
|
6216
|
-
root: rootClassName$
|
|
6222
|
+
root: rootClassName$p
|
|
6217
6223
|
},
|
|
6218
6224
|
color: "primary",
|
|
6219
6225
|
"data-testid": dataTestId,
|
|
@@ -6255,7 +6261,7 @@ const DotRadioGroup = ({
|
|
|
6255
6261
|
size: _size = 'medium'
|
|
6256
6262
|
}) => {
|
|
6257
6263
|
const placement = `${placementClassName}${_labelPlacement}`;
|
|
6258
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6264
|
+
const rootClasses = useStylesWithRootClass(rootClassName$y, className, placement);
|
|
6259
6265
|
const radioValue = value || defaultValue;
|
|
6260
6266
|
const [selectedValue, setSelectedValue] = useState(radioValue);
|
|
6261
6267
|
/* This will ensure that value can be updated from the outside */
|
|
@@ -6325,7 +6331,7 @@ const DotRadioGroup = ({
|
|
|
6325
6331
|
}), void 0);
|
|
6326
6332
|
};
|
|
6327
6333
|
|
|
6328
|
-
const rootClassName$
|
|
6334
|
+
const rootClassName$o = 'dot-switch';
|
|
6329
6335
|
const StyledSwitch = styled(Switch).withConfig({
|
|
6330
6336
|
displayName: "Switchstyles__StyledSwitch",
|
|
6331
6337
|
componentId: "eign2a-0"
|
|
@@ -6347,7 +6353,7 @@ const DotSwitch = ({
|
|
|
6347
6353
|
onChange,
|
|
6348
6354
|
size: _size = 'medium'
|
|
6349
6355
|
}) => {
|
|
6350
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6356
|
+
const rootClasses = useStylesWithRootClass(rootClassName$o, className);
|
|
6351
6357
|
const handleChange = event => {
|
|
6352
6358
|
onChange && onChange(event);
|
|
6353
6359
|
};
|
|
@@ -6368,7 +6374,7 @@ const DotSwitch = ({
|
|
|
6368
6374
|
size: _size
|
|
6369
6375
|
}, void 0);
|
|
6370
6376
|
return jsx(StyledFormControlLabel, {
|
|
6371
|
-
className: rootClassName$
|
|
6377
|
+
className: rootClassName$A,
|
|
6372
6378
|
control: switchControl,
|
|
6373
6379
|
label: label,
|
|
6374
6380
|
labelPlacement: _labelPlacement
|
|
@@ -6677,7 +6683,7 @@ const DotDynamicForm = ({
|
|
|
6677
6683
|
onChange,
|
|
6678
6684
|
onSubmit
|
|
6679
6685
|
}) => {
|
|
6680
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6686
|
+
const rootClasses = useStylesWithRootClass(rootClassName$r, className);
|
|
6681
6687
|
// Memoize this operation so that is doesn't get executed each time this
|
|
6682
6688
|
// component re-renders
|
|
6683
6689
|
const initialFormState = useMemo(() => getInitialFormState(config, _liveValidation), [config, _liveValidation, getInitialFormState]);
|
|
@@ -6929,7 +6935,7 @@ const DotDynamicForm = ({
|
|
|
6929
6935
|
}), void 0);
|
|
6930
6936
|
};
|
|
6931
6937
|
|
|
6932
|
-
const rootClassName$
|
|
6938
|
+
const rootClassName$n = 'dot-inline-edit';
|
|
6933
6939
|
const editModeClassName = 'dot-edit-mode';
|
|
6934
6940
|
const viewModeClassName = 'dot-view-mode';
|
|
6935
6941
|
const readOnlyClassName = 'dot-read-only';
|
|
@@ -6941,7 +6947,7 @@ const StyledInlineEdit = styled.div.withConfig({
|
|
|
6941
6947
|
})(["", ""], ({
|
|
6942
6948
|
theme,
|
|
6943
6949
|
fullWidth
|
|
6944
|
-
}) => css(["&.", "{display:", ";align-items:center;color:", ";min-width:", ";&:not(.", "):focus-visible{border-radius:", ";background-color:", ";cursor:pointer;outline:0;.dot-edit-icon{display:block;}}.", "{display:flex;width:100%;position:relative;.dot-edit-icon{height:100%;position:absolute;right:0;width:40px;background-color:", ";border-radius:", ";display:none;.dot-i{margin:0;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}}&:not(.", "):hover{border-radius:", ";background-color:", ";cursor:pointer;.dot-edit-icon{display:block;}}.dot-view-mode-typography{padding:", ";margin-bottom:0;}}.dot-empty-value fieldset{border-color:", ";}.dot-adornment-error{color:", ";}.MuiInputBase-input{height:auto;}.MuiInputBase-root{margin-bottom:", ";}", " .", " .dot-input{padding-left:", ";}.MuiOutlinedInput-input:focus{cursor:auto;}.dot-counter-adornment{.dot-counter-max-length{color:", ";}.dot-counter-length,.dot-counter-max-length{&.dot-counter-limit{color:", ";}&:hover{background:", ";}.editing-actions{display:flex;justify-content:flex-end;margin-top:", ";}.dot-icon-btn{background:", ";border:1px solid ", ";color:", ";margin-left:", ";padding:", ";}}}.dot-read-only-adornment{display:none;}.", "{display:flex;align-items:center;margin:", ";.dot-button{padding:", ";margin-top:", ";margin-bottom:", ";}}}"], rootClassName$
|
|
6950
|
+
}) => css(["&.", "{display:", ";align-items:center;color:", ";min-width:", ";&:not(.", "):focus-visible{border-radius:", ";background-color:", ";cursor:pointer;outline:0;.dot-edit-icon{display:block;}}.", "{display:flex;width:100%;position:relative;.dot-edit-icon{height:100%;position:absolute;right:0;width:40px;background-color:", ";border-radius:", ";display:none;.dot-i{margin:0;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}}&:not(.", "):hover{border-radius:", ";background-color:", ";cursor:pointer;.dot-edit-icon{display:block;}}.dot-view-mode-typography{padding:", ";margin-bottom:0;}}.dot-empty-value fieldset{border-color:", ";}.dot-adornment-error{color:", ";}.MuiInputBase-input{height:auto;}.MuiInputBase-root{margin-bottom:", ";}", " .", " .dot-input{padding-left:", ";}.MuiOutlinedInput-input:focus{cursor:auto;}.dot-counter-adornment{.dot-counter-max-length{color:", ";}.dot-counter-length,.dot-counter-max-length{&.dot-counter-limit{color:", ";}&:hover{background:", ";}.editing-actions{display:flex;justify-content:flex-end;margin-top:", ";}.dot-icon-btn{background:", ";border:1px solid ", ";color:", ";margin-left:", ";padding:", ";}}}.dot-read-only-adornment{display:none;}.", "{display:flex;align-items:center;margin:", ";.dot-button{padding:", ";margin-top:", ";margin-bottom:", ";}}}"], rootClassName$n, fullWidth ? 'flex' : 'inline-flex', theme.palette.grey[700], theme.spacing(32), readOnlyClassName, theme.spacing(0.5), theme.palette.layer.n50, viewModeClassName, theme.palette.layer.n50, theme.spacing(0, 0.5, 0.5, 0), readOnlyClassName, theme.spacing(0.5), theme.palette.layer.n50, theme.spacing(1.3125, 1), theme.palette.error[500], theme.palette.error[500], theme.spacing(0), ({
|
|
6945
6951
|
typography
|
|
6946
6952
|
}) => typography && `
|
|
6947
6953
|
.MuiInputBase-root {
|
|
@@ -7052,8 +7058,13 @@ const DotInlineEdit = ({
|
|
|
7052
7058
|
const [inputValue, setInputValue] = useState(_value);
|
|
7053
7059
|
const inputRef = useRef();
|
|
7054
7060
|
const inlineEditRef = useRef();
|
|
7061
|
+
useEffect(() => {
|
|
7062
|
+
if (_value !== inputValue) {
|
|
7063
|
+
setInputValue(_value);
|
|
7064
|
+
}
|
|
7065
|
+
}, [_value]);
|
|
7055
7066
|
const isSaveDisabled = checkIfEmptyValue(inputValue);
|
|
7056
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7067
|
+
const rootClasses = useStylesWithRootClass(rootClassName$n, className, editing ? editModeClassName : '');
|
|
7057
7068
|
const handleShowTooltip = visible => {
|
|
7058
7069
|
if (!editing) {
|
|
7059
7070
|
setShowTooltip(visible);
|
|
@@ -7227,14 +7238,14 @@ const DotInlineEdit = ({
|
|
|
7227
7238
|
}), void 0);
|
|
7228
7239
|
};
|
|
7229
7240
|
|
|
7230
|
-
const rootClassName$
|
|
7241
|
+
const rootClassName$m = 'dot-navigation-rail';
|
|
7231
7242
|
const StyledNavigationRail = styled.div.withConfig({
|
|
7232
7243
|
displayName: "NavigationRailstyles__StyledNavigationRail",
|
|
7233
7244
|
componentId: "sc-160kivd-0"
|
|
7234
7245
|
})(["", ""], ({
|
|
7235
7246
|
theme,
|
|
7236
7247
|
railItemPosition
|
|
7237
|
-
}) => css(["&.", "{background-color:", ";border-left:1px solid ", ";display:flex;flex-direction:column;justify-content:", ";padding:", ";width:72px;.rail-item-button{border-radius:0;display:flex;flex-basis:72px;flex-direction:column;margin:0;padding:0;width:100%;white-space:normal;.dot-icon{color:", ";}&.selected{background-color:", ";}&:focus-visible{background-color:", ";}.rail-item-text{word-break:break-word;padding:", ";}}}"], rootClassName$
|
|
7248
|
+
}) => css(["&.", "{background-color:", ";border-left:1px solid ", ";display:flex;flex-direction:column;justify-content:", ";padding:", ";width:72px;.rail-item-button{border-radius:0;display:flex;flex-basis:72px;flex-direction:column;margin:0;padding:0;width:100%;white-space:normal;.dot-icon{color:", ";}&.selected{background-color:", ";}&:focus-visible{background-color:", ";}.rail-item-text{word-break:break-word;padding:", ";}}}"], rootClassName$m, theme.palette.layer.n50, theme.palette.layer.n100, railItemPosition, theme.spacing(1, 0, 0), theme.palette.grey[700], theme.palette.layer.n0, theme.palette.layer.n100, theme.spacing(0, 0.5)));
|
|
7238
7249
|
|
|
7239
7250
|
const MAX_ALLOWED_ITEMS = 7;
|
|
7240
7251
|
const DotNavigationRail = ({
|
|
@@ -7246,7 +7257,7 @@ const DotNavigationRail = ({
|
|
|
7246
7257
|
railItems,
|
|
7247
7258
|
selectedIndex: _selectedIndex = 0
|
|
7248
7259
|
}) => {
|
|
7249
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7260
|
+
const rootClasses = useStylesWithRootClass(rootClassName$m, className);
|
|
7250
7261
|
const [selectedItemIndex, setSelectedItemIndex] = useState(_selectedIndex);
|
|
7251
7262
|
/* Used to change selected index programmatically from the consumer component */
|
|
7252
7263
|
useEffect(() => {
|
|
@@ -7300,13 +7311,13 @@ const DotNavigationRail = ({
|
|
|
7300
7311
|
}), void 0);
|
|
7301
7312
|
};
|
|
7302
7313
|
|
|
7303
|
-
const rootClassName$
|
|
7314
|
+
const rootClassName$l = 'dot-pill';
|
|
7304
7315
|
const StyledPill = styled(Chip).withConfig({
|
|
7305
7316
|
displayName: "Pillstyles__StyledPill",
|
|
7306
7317
|
componentId: "l7oxi2-0"
|
|
7307
7318
|
})(["", ""], ({
|
|
7308
7319
|
theme
|
|
7309
|
-
}) => css(["&.", "{background-color:", ";color:", ";border-color:", ";&.error{background-color:", ";color:", ";}&.success{background-color:", ";color:", ";}&.warning{background-color:", ";color:", ";}&.in-progress{background-color:", ";color:", ";}"], rootClassName$
|
|
7320
|
+
}) => css(["&.", "{background-color:", ";color:", ";border-color:", ";&.error{background-color:", ";color:", ";}&.success{background-color:", ";color:", ";}&.warning{background-color:", ";color:", ";}&.in-progress{background-color:", ";color:", ";}"], rootClassName$l, ({
|
|
7310
7321
|
backgroundcolor
|
|
7311
7322
|
}) => {
|
|
7312
7323
|
return backgroundcolor || theme.palette.grey[200];
|
|
@@ -7333,7 +7344,7 @@ const DotPill = ({
|
|
|
7333
7344
|
status: _status = 'default',
|
|
7334
7345
|
variant: _variant = 'filled'
|
|
7335
7346
|
}) => {
|
|
7336
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7347
|
+
const rootClasses = useStylesWithRootClass(rootClassName$l, className, _status);
|
|
7337
7348
|
return jsx(StyledPill, {
|
|
7338
7349
|
"aria-label": ariaLabel,
|
|
7339
7350
|
bordercolor: bordercolor,
|
|
@@ -7351,13 +7362,13 @@ const DotPill = ({
|
|
|
7351
7362
|
}, void 0);
|
|
7352
7363
|
};
|
|
7353
7364
|
|
|
7354
|
-
const rootClassName$
|
|
7365
|
+
const rootClassName$k = 'dot-skeleton';
|
|
7355
7366
|
const StyledSkeleton = styled(Skeleton).withConfig({
|
|
7356
7367
|
displayName: "Skeletonstyles__StyledSkeleton",
|
|
7357
7368
|
componentId: "sc-17ayzv5-0"
|
|
7358
7369
|
})(["", ""], ({
|
|
7359
7370
|
theme
|
|
7360
|
-
}) => css(["&.", "{background-color:", ";}"], rootClassName$
|
|
7371
|
+
}) => css(["&.", "{background-color:", ";}"], rootClassName$k, theme.palette.grey[100]));
|
|
7361
7372
|
|
|
7362
7373
|
const DotSkeleton = ({
|
|
7363
7374
|
ariaLabel,
|
|
@@ -7368,7 +7379,7 @@ const DotSkeleton = ({
|
|
|
7368
7379
|
width,
|
|
7369
7380
|
variant
|
|
7370
7381
|
}) => {
|
|
7371
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7382
|
+
const rootClasses = useStylesWithRootClass(rootClassName$k, className);
|
|
7372
7383
|
return jsx(StyledSkeleton, Object.assign({
|
|
7373
7384
|
animation: "wave",
|
|
7374
7385
|
"aria-label": ariaLabel,
|
|
@@ -7384,13 +7395,13 @@ const DotSkeleton = ({
|
|
|
7384
7395
|
}), void 0);
|
|
7385
7396
|
};
|
|
7386
7397
|
|
|
7387
|
-
const rootClassName$
|
|
7398
|
+
const rootClassName$j = 'dot-snackbar';
|
|
7388
7399
|
const StyledSnackbar = styled(Snackbar).withConfig({
|
|
7389
7400
|
displayName: "Snackbarstyles__StyledSnackbar",
|
|
7390
7401
|
componentId: "sc-1huxoy3-0"
|
|
7391
7402
|
})(["", ""], ({
|
|
7392
7403
|
theme
|
|
7393
|
-
}) => css(["&.", "{.MuiSvgIcon-root{color:", ";}.MuiAlert-icon{padding:11px 0px;}.MuiAlert-message{padding:13px 0px;}&.MuiSnackbar-anchorOriginTopRight{top:0px;z-index:", ";}.MuiAlert-root{&.MuiAlert-standardInfo{background-color:", ";}&.MuiAlert-standardWarning{color:", ";.MuiSvgIcon-root{color:", ";}}max-width:500px;min-width:344px;color:", ";z-index:", ";position:relative;margin-top:108px;background-color:", ";@media (min-width:720px){.MuiAlert-root{top:112px;position:relative;}}}"], rootClassName$
|
|
7404
|
+
}) => css(["&.", "{.MuiSvgIcon-root{color:", ";}.MuiAlert-icon{padding:11px 0px;}.MuiAlert-message{padding:13px 0px;}&.MuiSnackbar-anchorOriginTopRight{top:0px;z-index:", ";}.MuiAlert-root{&.MuiAlert-standardInfo{background-color:", ";}&.MuiAlert-standardWarning{color:", ";.MuiSvgIcon-root{color:", ";}}max-width:500px;min-width:344px;color:", ";z-index:", ";position:relative;margin-top:108px;background-color:", ";@media (min-width:720px){.MuiAlert-root{top:112px;position:relative;}}}"], rootClassName$j, theme.palette.layer.n0, levelFourth, theme.palette.primary[500], theme.palette.grey[900], theme.palette.grey[900], theme.palette.layer.n0, levelFourth, props => theme.palette[props.severity].main));
|
|
7394
7405
|
|
|
7395
7406
|
function addAutoHideDuration(severity) {
|
|
7396
7407
|
return severity === 'error' ? null : 10000;
|
|
@@ -7425,7 +7436,7 @@ const DotSnackbar = ({
|
|
|
7425
7436
|
onClose,
|
|
7426
7437
|
action
|
|
7427
7438
|
});
|
|
7428
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7439
|
+
const rootClasses = useStylesWithRootClass(rootClassName$j, className);
|
|
7429
7440
|
return jsx(StyledSnackbar, Object.assign({
|
|
7430
7441
|
anchorOrigin: _anchorOrigin,
|
|
7431
7442
|
"aria-label": ariaLabel,
|
|
@@ -7455,11 +7466,11 @@ const DotSnackbar = ({
|
|
|
7455
7466
|
}), void 0);
|
|
7456
7467
|
};
|
|
7457
7468
|
|
|
7458
|
-
const rootClassName$
|
|
7469
|
+
const rootClassName$i = 'dot-snackbar-container';
|
|
7459
7470
|
const StyledSnackbarContainer = styled.div.withConfig({
|
|
7460
7471
|
displayName: "SnackbarContainerstyles__StyledSnackbarContainer",
|
|
7461
7472
|
componentId: "sc-1ogwjuc-0"
|
|
7462
|
-
})(["", ""], () => css(["&.", "{position:absolute;top:0;width:250px;height:auto;right:0;& > div{position:relative;}}"], rootClassName$
|
|
7473
|
+
})(["", ""], () => css(["&.", "{position:absolute;top:0;width:250px;height:auto;right:0;& > div{position:relative;}}"], rootClassName$i));
|
|
7463
7474
|
|
|
7464
7475
|
const DotSnackbarContext = /*#__PURE__*/createContext({
|
|
7465
7476
|
alerts: [],
|
|
@@ -7477,11 +7488,11 @@ const DotSnackbarContainer = () => {
|
|
|
7477
7488
|
};
|
|
7478
7489
|
}
|
|
7479
7490
|
return jsx(StyledSnackbarContainer, Object.assign({
|
|
7480
|
-
className: rootClassName$
|
|
7491
|
+
className: rootClassName$i
|
|
7481
7492
|
}, {
|
|
7482
7493
|
children: jsx("div", Object.assign({
|
|
7483
|
-
className: rootClassName$
|
|
7484
|
-
"data-testid": rootClassName$
|
|
7494
|
+
className: rootClassName$i,
|
|
7495
|
+
"data-testid": rootClassName$i
|
|
7485
7496
|
}, {
|
|
7486
7497
|
children: alerts.slice().reverse().map(alert => {
|
|
7487
7498
|
return jsx(DotSnackbar, Object.assign({
|
|
@@ -7536,13 +7547,13 @@ const useDotSnackbarContext = () => {
|
|
|
7536
7547
|
return useContext(DotSnackbarContext);
|
|
7537
7548
|
};
|
|
7538
7549
|
|
|
7539
|
-
const rootClassName$
|
|
7550
|
+
const rootClassName$h = 'dot-split-button-group';
|
|
7540
7551
|
const StyledSplitButtonGroup = styled(ButtonGroup).withConfig({
|
|
7541
7552
|
displayName: "SplitButtonstyles__StyledSplitButtonGroup",
|
|
7542
7553
|
componentId: "ild520-0"
|
|
7543
7554
|
})(["", ""], ({
|
|
7544
7555
|
theme
|
|
7545
|
-
}) => css(["&.", "{box-shadow:0px 3px 1px -2px rgb(0 0 0 / 20%),0px 2px 2px 0px rgb(0 0 0 / 14%),0px 1px 5px 0px rgb(0 0 0 / 12%);&.disabled{box-shadow:none;.dot-button{background:", ";border:1px solid ", ";}}&.outlined,&.text{box-shadow:none;.expand-button{border-left:none;}}&.outlined .dot-button{border-color:", ";}&.destructive .expand-button{border-left-color:", ";}.dot-button{box-shadow:none;margin:0;padding:", ";}.label-button{border-top-right-radius:0;border-bottom-right-radius:0;}.expand-button{border-left:1px solid ", ";border-top-left-radius:0;border-bottom-left-radius:0;&.Mui-disabled{border-left:0;}.MuiButton-label,.dot-icon{width:14px;height:14px;}}}"], rootClassName$
|
|
7556
|
+
}) => css(["&.", "{box-shadow:0px 3px 1px -2px rgb(0 0 0 / 20%),0px 2px 2px 0px rgb(0 0 0 / 14%),0px 1px 5px 0px rgb(0 0 0 / 12%);&.disabled{box-shadow:none;.dot-button{background:", ";border:1px solid ", ";}}&.outlined,&.text{box-shadow:none;.expand-button{border-left:none;}}&.outlined .dot-button{border-color:", ";}&.destructive .expand-button{border-left-color:", ";}.dot-button{box-shadow:none;margin:0;padding:", ";}.label-button{border-top-right-radius:0;border-bottom-right-radius:0;}.expand-button{border-left:1px solid ", ";border-top-left-radius:0;border-bottom-left-radius:0;&.Mui-disabled{border-left:0;}.MuiButton-label,.dot-icon{width:14px;height:14px;}}}"], rootClassName$h, theme.palette.grey['50'], theme.palette.grey['200'], theme.palette.grey['300'], theme.palette.error['800'], theme.spacing(0.75, 1.5), theme.palette.primary['800']));
|
|
7546
7557
|
const StyledMenu$2 = styled(DotMenu).withConfig({
|
|
7547
7558
|
displayName: "SplitButtonstyles__StyledMenu",
|
|
7548
7559
|
componentId: "ild520-1"
|
|
@@ -7571,7 +7582,7 @@ const DotSplitButton = ({
|
|
|
7571
7582
|
tooltip,
|
|
7572
7583
|
type: _type = 'primary'
|
|
7573
7584
|
}) => {
|
|
7574
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7585
|
+
const rootClasses = useStylesWithRootClass(rootClassName$h, className, _type, _disabled ? 'disabled' : '');
|
|
7575
7586
|
const [open, setOpen] = useState(false);
|
|
7576
7587
|
const anchorRef = useRef(null);
|
|
7577
7588
|
const hasEmptyOptions = _options.length === 0;
|
|
@@ -7637,7 +7648,7 @@ const DotSplitButton = ({
|
|
|
7637
7648
|
}, void 0);
|
|
7638
7649
|
};
|
|
7639
7650
|
|
|
7640
|
-
const rootClassName$
|
|
7651
|
+
const rootClassName$g = 'dot-table-pagination';
|
|
7641
7652
|
// TO-DO: Determine how to apply styles to standard popper element
|
|
7642
7653
|
const paginationItemClassName = 'dot-pagination-menu-item';
|
|
7643
7654
|
const StyledTablePagination = styled.div.withConfig({
|
|
@@ -7646,7 +7657,7 @@ const StyledTablePagination = styled.div.withConfig({
|
|
|
7646
7657
|
})(["", ""], ({
|
|
7647
7658
|
theme,
|
|
7648
7659
|
typography
|
|
7649
|
-
}) => css([".", "{border-top:1px solid ", ";.dot-caption,.MuiInputBase-root{font-family:", ";font-size:", "px;letter-spacing:", ";line-height:", ";}.dot-caption{margin:0;}.dot-menu,.MuiInputBase-root{margin-bottom:0;}}"], rootClassName$
|
|
7660
|
+
}) => css([".", "{border-top:1px solid ", ";.dot-caption,.MuiInputBase-root{font-family:", ";font-size:", "px;letter-spacing:", ";line-height:", ";}.dot-caption{margin:0;}.dot-menu,.MuiInputBase-root{margin-bottom:0;}}"], rootClassName$g, theme.palette.grey[200], theme.typography[typography].fontFamily, theme.typography[typography].fontSize, theme.typography[typography].letterSpacing, theme.typography[typography].lineHeight));
|
|
7650
7661
|
|
|
7651
7662
|
const ROWS_PER_PAGE_OPTIONS = [10, 25, 50, 100, 150, 200];
|
|
7652
7663
|
/** This component wraps the TablePagination component from @material-ui. */
|
|
@@ -7661,7 +7672,7 @@ const DotTablePagination = ({
|
|
|
7661
7672
|
rowsPerPage: _rowsPerPage = 10,
|
|
7662
7673
|
typography: _typography = 'subtitle2'
|
|
7663
7674
|
}) => {
|
|
7664
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7675
|
+
const rootClasses = useStylesWithRootClass(rootClassName$g, className);
|
|
7665
7676
|
const handlePageChange = (event, newPage) => {
|
|
7666
7677
|
onPageChange && onPageChange(newPage);
|
|
7667
7678
|
};
|
|
@@ -7670,7 +7681,7 @@ const DotTablePagination = ({
|
|
|
7670
7681
|
};
|
|
7671
7682
|
return (/* Container is used to pass 'typography' prop to a styled component */
|
|
7672
7683
|
jsx(StyledTablePagination, Object.assign({
|
|
7673
|
-
className: rootClassName$
|
|
7684
|
+
className: rootClassName$g,
|
|
7674
7685
|
typography: _typography
|
|
7675
7686
|
}, {
|
|
7676
7687
|
children: jsx(TablePagination, {
|
|
@@ -7696,13 +7707,13 @@ const DotTablePagination = ({
|
|
|
7696
7707
|
);
|
|
7697
7708
|
};
|
|
7698
7709
|
|
|
7699
|
-
const rootClassName$
|
|
7710
|
+
const rootClassName$f = 'dot-table';
|
|
7700
7711
|
const StyledPaper = styled(Paper).withConfig({
|
|
7701
7712
|
displayName: "Tablestyles__StyledPaper",
|
|
7702
7713
|
componentId: "s95z6y-0"
|
|
7703
7714
|
})(["", ""], ({
|
|
7704
7715
|
theme
|
|
7705
|
-
}) => css(["&.", "{overflow:hidden;border:1px solid ", ";&.loading{opacity:0.4;pointer-events:none;.dot-table-pagination{display:none;}}}"], rootClassName$
|
|
7716
|
+
}) => css(["&.", "{overflow:hidden;border:1px solid ", ";&.loading{opacity:0.4;pointer-events:none;.dot-table-pagination{display:none;}}}"], rootClassName$f, theme.palette.layer.n100));
|
|
7706
7717
|
const StyledTableContainer = styled(TableContainer).withConfig({
|
|
7707
7718
|
displayName: "Tablestyles__StyledTableContainer",
|
|
7708
7719
|
componentId: "s95z6y-1"
|
|
@@ -7769,11 +7780,11 @@ const getBulkSelectedRowIds = (isChecked, selectedIds, pageData) => {
|
|
|
7769
7780
|
return newIds;
|
|
7770
7781
|
};
|
|
7771
7782
|
|
|
7772
|
-
const rootClassName$
|
|
7783
|
+
const rootClassName$e = 'dot-td';
|
|
7773
7784
|
const StyledTableCell = styled(TableCell).withConfig({
|
|
7774
7785
|
displayName: "TableCellstyles__StyledTableCell",
|
|
7775
7786
|
componentId: "e84k25-0"
|
|
7776
|
-
})(["", ""], () => css(["&.", "{padding-top:0;padding-bottom:0;&.actionItems,&.noWrap p{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}&.actionItems{max-width:0;text-align:right;text-overflow:clip;}&.noWrap p{max-width:calc(100% - 1px);}.action-cell-wrapper{width:100%;}}"], rootClassName$
|
|
7787
|
+
})(["", ""], () => css(["&.", "{padding-top:0;padding-bottom:0;&.actionItems,&.noWrap p{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}&.actionItems{max-width:0;text-align:right;text-overflow:clip;}&.noWrap p{max-width:calc(100% - 1px);}.action-cell-wrapper{width:100%;}}"], rootClassName$e));
|
|
7777
7788
|
|
|
7778
7789
|
/**
|
|
7779
7790
|
* A wrapper component around the TableCell component from @material-ui.
|
|
@@ -7817,7 +7828,7 @@ const DotBodyCell = ({
|
|
|
7817
7828
|
const isOverflowing = actionTableCellWidth > (wrapperRef === null || wrapperRef === void 0 ? void 0 : wrapperRef.current.clientWidth);
|
|
7818
7829
|
setShowMenu(isOverflowing);
|
|
7819
7830
|
};
|
|
7820
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7831
|
+
const rootClasses = useStylesWithRootClass(rootClassName$e, className, noWrap && 'noWrap', Array.isArray(value) && 'actionItems');
|
|
7821
7832
|
const getTableCellValue = () => {
|
|
7822
7833
|
if (Array.isArray(value)) {
|
|
7823
7834
|
return jsx("div", Object.assign({
|
|
@@ -7857,13 +7868,13 @@ const DotBodyCell = ({
|
|
|
7857
7868
|
}), void 0);
|
|
7858
7869
|
};
|
|
7859
7870
|
|
|
7860
|
-
const rootClassName$
|
|
7871
|
+
const rootClassName$d = 'dot-td-checkbox';
|
|
7861
7872
|
const StyledTableBodyCheckboxCell = styled(TableCell).withConfig({
|
|
7862
7873
|
displayName: "TableBodyCheckboxCellstyles__StyledTableBodyCheckboxCell",
|
|
7863
7874
|
componentId: "ebk3sz-0"
|
|
7864
7875
|
})(["", ""], ({
|
|
7865
7876
|
theme
|
|
7866
|
-
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$
|
|
7877
|
+
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$d, theme.spacing(5), theme.spacing(0, 1)));
|
|
7867
7878
|
|
|
7868
7879
|
const DotBodyCheckboxCell = ({
|
|
7869
7880
|
ariaLabel,
|
|
@@ -7873,7 +7884,7 @@ const DotBodyCheckboxCell = ({
|
|
|
7873
7884
|
onChange,
|
|
7874
7885
|
rowId
|
|
7875
7886
|
}) => {
|
|
7876
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7887
|
+
const rootClasses = useStylesWithRootClass(rootClassName$d, className);
|
|
7877
7888
|
const [isCheckboxChecked, setIsCheckboxChecked] = useState(isChecked);
|
|
7878
7889
|
/** This effect is used when 'checked' status is changed from the outside */
|
|
7879
7890
|
useEffect(() => {
|
|
@@ -7899,13 +7910,13 @@ const DotBodyCheckboxCell = ({
|
|
|
7899
7910
|
}), void 0);
|
|
7900
7911
|
};
|
|
7901
7912
|
|
|
7902
|
-
const rootClassName$
|
|
7913
|
+
const rootClassName$c = 'dot-tr';
|
|
7903
7914
|
const StyledTableRowStyles = styled(TableRow).withConfig({
|
|
7904
7915
|
displayName: "TableRowstyles__StyledTableRowStyles",
|
|
7905
7916
|
componentId: "a4fx2l-0"
|
|
7906
7917
|
})(["", ""], ({
|
|
7907
7918
|
theme
|
|
7908
|
-
}) => css(["&.", "{&.selected{background-color:", ";}}"], rootClassName$
|
|
7919
|
+
}) => css(["&.", "{&.selected{background-color:", ";}}"], rootClassName$c, theme.palette.primary[50]));
|
|
7909
7920
|
|
|
7910
7921
|
/**
|
|
7911
7922
|
* A wrapper component around the TableRow component from @material-ui. This component can be used
|
|
@@ -7932,7 +7943,7 @@ const DotTableRow = ({
|
|
|
7932
7943
|
selectedTableRowIds
|
|
7933
7944
|
} = multiSelectBody || {};
|
|
7934
7945
|
const isCheckboxChecked = selectedTableRowIds && selectedTableRowIds.includes(id) || false;
|
|
7935
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7946
|
+
const rootClasses = useStylesWithRootClass(rootClassName$c, isCheckboxChecked ? 'selected' : undefined, className);
|
|
7936
7947
|
const renderCheckboxCell = () => {
|
|
7937
7948
|
return jsx(DotBodyCheckboxCell, {
|
|
7938
7949
|
ariaLabel: "Click to select this row",
|
|
@@ -7977,13 +7988,13 @@ const EmptyDotRow = ({
|
|
|
7977
7988
|
}), CreateUUID());
|
|
7978
7989
|
};
|
|
7979
7990
|
|
|
7980
|
-
const rootClassName$
|
|
7991
|
+
const rootClassName$b = 'dot-tbody';
|
|
7981
7992
|
const StyledTableBody = styled(TableBody).withConfig({
|
|
7982
7993
|
displayName: "TableBodystyles__StyledTableBody",
|
|
7983
7994
|
componentId: "wszqgk-0"
|
|
7984
7995
|
})(["", ""], ({
|
|
7985
7996
|
theme
|
|
7986
|
-
}) => css(["&.", "{tr:hover{background-color:", ";}tr:last-child td{border-bottom:none;}.empty-row td{text-align:center;}}"], rootClassName$
|
|
7997
|
+
}) => css(["&.", "{tr:hover{background-color:", ";}tr:last-child td{border-bottom:none;}.empty-row td{text-align:center;}}"], rootClassName$b, theme.palette.grey[50]));
|
|
7987
7998
|
|
|
7988
7999
|
/**
|
|
7989
8000
|
* A wrapper component around the TableBody component from @material-ui. This component can be used
|
|
@@ -8032,7 +8043,7 @@ const DotTableBody = ({
|
|
|
8032
8043
|
return jsxs(Fragment$1, {
|
|
8033
8044
|
children: [jsx(StyledTableBody, Object.assign({
|
|
8034
8045
|
classes: {
|
|
8035
|
-
root: rootClassName$
|
|
8046
|
+
root: rootClassName$b
|
|
8036
8047
|
}
|
|
8037
8048
|
}, {
|
|
8038
8049
|
children: getTableBodyRows()
|
|
@@ -8048,13 +8059,13 @@ const DotTableBody = ({
|
|
|
8048
8059
|
}, void 0);
|
|
8049
8060
|
};
|
|
8050
8061
|
|
|
8051
|
-
const rootClassName$
|
|
8062
|
+
const rootClassName$a = 'dot-th';
|
|
8052
8063
|
const StyledTableHeaderCell = styled(TableCell).withConfig({
|
|
8053
8064
|
displayName: "TableHeaderCellstyles__StyledTableHeaderCell",
|
|
8054
8065
|
componentId: "nko9j-0"
|
|
8055
8066
|
})(["", ""], ({
|
|
8056
8067
|
theme
|
|
8057
|
-
}) => css(["&.", "{&.MuiTableCell-alignCenter > span.MuiTableSortLabel-root{padding-left:26px;}.dot-cell-typography{font-family:", ";}}"], rootClassName$
|
|
8068
|
+
}) => css(["&.", "{&.MuiTableCell-alignCenter > span.MuiTableSortLabel-root{padding-left:26px;}.dot-cell-typography{font-family:", ";}}"], rootClassName$a, theme.typography.h4.fontFamily));
|
|
8058
8069
|
|
|
8059
8070
|
/**
|
|
8060
8071
|
* A wrapper component around the TableCell component from @material-ui. This component should only
|
|
@@ -8095,7 +8106,7 @@ const DotHeaderCell = ({
|
|
|
8095
8106
|
return jsx(StyledTableHeaderCell, Object.assign({
|
|
8096
8107
|
align: align,
|
|
8097
8108
|
classes: {
|
|
8098
|
-
root: rootClassName$
|
|
8109
|
+
root: rootClassName$a
|
|
8099
8110
|
},
|
|
8100
8111
|
sortDirection: _sortable ? sortDirection : undefined,
|
|
8101
8112
|
style: headerCellStyle,
|
|
@@ -8105,13 +8116,13 @@ const DotHeaderCell = ({
|
|
|
8105
8116
|
}), uid);
|
|
8106
8117
|
};
|
|
8107
8118
|
|
|
8108
|
-
const rootClassName$
|
|
8119
|
+
const rootClassName$9 = 'dot-th-checkbox';
|
|
8109
8120
|
const StyledTableHeaderCheckboxCell = styled(TableCell).withConfig({
|
|
8110
8121
|
displayName: "TableHeaderCheckboxCellstyles__StyledTableHeaderCheckboxCell",
|
|
8111
8122
|
componentId: "ymqg8x-0"
|
|
8112
8123
|
})(["", ""], ({
|
|
8113
8124
|
theme
|
|
8114
|
-
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$
|
|
8125
|
+
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$9, theme.spacing(5), theme.spacing(0, 1)));
|
|
8115
8126
|
|
|
8116
8127
|
const DotHeaderCheckboxCell = ({
|
|
8117
8128
|
ariaLabel,
|
|
@@ -8120,7 +8131,7 @@ const DotHeaderCheckboxCell = ({
|
|
|
8120
8131
|
multiSelectState,
|
|
8121
8132
|
onCheckAllChange
|
|
8122
8133
|
}) => {
|
|
8123
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8134
|
+
const rootClasses = useStylesWithRootClass(rootClassName$9, className);
|
|
8124
8135
|
const [checkboxState, setCheckboxState] = useState('unchecked');
|
|
8125
8136
|
useEffect(() => {
|
|
8126
8137
|
setCheckboxState(multiSelectState);
|
|
@@ -8227,13 +8238,13 @@ const DotHeaderRow = ({
|
|
|
8227
8238
|
}), void 0);
|
|
8228
8239
|
};
|
|
8229
8240
|
|
|
8230
|
-
const rootClassName$
|
|
8241
|
+
const rootClassName$8 = 'dot-table-selection-toolbar';
|
|
8231
8242
|
const StyledTableSelectionToolbar = styled(DotActionToolbar).withConfig({
|
|
8232
8243
|
displayName: "TableSelectionToolbarstyles__StyledTableSelectionToolbar",
|
|
8233
8244
|
componentId: "qpx3y9-0"
|
|
8234
8245
|
})(["", ""], ({
|
|
8235
8246
|
theme
|
|
8236
|
-
}) => css(["&.", "{display:flex;align-items:center;justify-content:space-between;background-color:", ";.dot-selected-rows-container{display:flex;align-items:center;.dot-button{padding:", ";}}.dot-selected-rows-heading{font-weight:bold;}.dot-selected-rows-divider{padding:", ";}}"], rootClassName$
|
|
8247
|
+
}) => css(["&.", "{display:flex;align-items:center;justify-content:space-between;background-color:", ";.dot-selected-rows-container{display:flex;align-items:center;.dot-button{padding:", ";}}.dot-selected-rows-heading{font-weight:bold;}.dot-selected-rows-divider{padding:", ";}}"], rootClassName$8, theme.palette.primary[50], theme.spacing(0.25, 0.25, 0, 0.5), theme.spacing(0.25, 0, 0, 1)));
|
|
8237
8248
|
|
|
8238
8249
|
const DotTableSelectionToolbar = ({
|
|
8239
8250
|
ariaLabel,
|
|
@@ -8243,7 +8254,7 @@ const DotTableSelectionToolbar = ({
|
|
|
8243
8254
|
onClearAll,
|
|
8244
8255
|
selectedRowsNumber
|
|
8245
8256
|
}) => {
|
|
8246
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8257
|
+
const rootClasses = useStylesWithRootClass(rootClassName$8, className);
|
|
8247
8258
|
return jsxs(StyledTableSelectionToolbar, Object.assign({
|
|
8248
8259
|
ariaLabel: ariaLabel,
|
|
8249
8260
|
className: rootClasses,
|
|
@@ -8339,7 +8350,7 @@ const DotTable = ({
|
|
|
8339
8350
|
return onUpdateData ? data : stableSort(data, getComparator(_order, orderBy));
|
|
8340
8351
|
};
|
|
8341
8352
|
const [pageData, setPageData] = useState(getSortedData().slice(0, rowsPerPage ? rowsPerPage : data.length));
|
|
8342
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8353
|
+
const rootClasses = useStylesWithRootClass(rootClassName$f, className, _loading ? 'loading' : '');
|
|
8343
8354
|
const updateData = (newOrder, newOrderBy, newPage, newRowsPerPage) => {
|
|
8344
8355
|
const newData = stableSort(data, getComparator(newOrder, newOrderBy));
|
|
8345
8356
|
setPageData(newRowsPerPage ? newData.slice(newPage * newRowsPerPage, newPage * newRowsPerPage + newRowsPerPage) : newData);
|
|
@@ -8523,7 +8534,7 @@ const DotTableAction = ({
|
|
|
8523
8534
|
}, void 0);
|
|
8524
8535
|
};
|
|
8525
8536
|
|
|
8526
|
-
const rootClassName$
|
|
8537
|
+
const rootClassName$7 = 'dot-table-actions';
|
|
8527
8538
|
const TableActionsContainer = styled.div.withConfig({
|
|
8528
8539
|
displayName: "TableActionsstyles__TableActionsContainer",
|
|
8529
8540
|
componentId: "sc-8lo813-0"
|
|
@@ -8592,7 +8603,7 @@ const DotTableActions = ({
|
|
|
8592
8603
|
};
|
|
8593
8604
|
return jsxs(Fragment$1, {
|
|
8594
8605
|
children: [jsxs(TableActionsContainer, Object.assign({
|
|
8595
|
-
className: rootClassName$
|
|
8606
|
+
className: rootClassName$7,
|
|
8596
8607
|
ref: wrapperRef
|
|
8597
8608
|
}, {
|
|
8598
8609
|
children: [!showMenu && renderTableActions(), (showMenu || actions.length > 2) && jsx(DotIconButton, {
|
|
@@ -8615,13 +8626,13 @@ const DotTableActions = ({
|
|
|
8615
8626
|
}, void 0);
|
|
8616
8627
|
};
|
|
8617
8628
|
|
|
8618
|
-
const rootClassName$
|
|
8629
|
+
const rootClassName$6 = 'dot-tabs';
|
|
8619
8630
|
const StyledTabs = styled(Tabs).withConfig({
|
|
8620
8631
|
displayName: "Tabsstyles__StyledTabs",
|
|
8621
8632
|
componentId: "sc-1pmrz8k-0"
|
|
8622
8633
|
})(["", ""], ({
|
|
8623
8634
|
theme
|
|
8624
|
-
}) => css(["&.", "{&.MuiTabs-root{width:100%;}.dot-tab-label-container{display:flex;.dot-tab-label{padding-top:", ";}}.MuiTab-root{box-shadow:inset 0px -1px 0px ", ";max-width:360px;min-width:0;}.MuiIcon-root{display:inline;padding-right:", ";}}"], rootClassName$
|
|
8635
|
+
}) => css(["&.", "{&.MuiTabs-root{width:100%;}.dot-tab-label-container{display:flex;.dot-tab-label{padding-top:", ";}}.MuiTab-root{box-shadow:inset 0px -1px 0px ", ";max-width:360px;min-width:0;}.MuiIcon-root{display:inline;padding-right:", ";}}"], rootClassName$6, theme.spacing(0.5), theme.palette.layer.n100, theme.spacing(0.5)));
|
|
8625
8636
|
|
|
8626
8637
|
const DotTabs = ({
|
|
8627
8638
|
centered: _centered = false,
|
|
@@ -8635,7 +8646,7 @@ const DotTabs = ({
|
|
|
8635
8646
|
variant: _variant = 'standard'
|
|
8636
8647
|
}) => {
|
|
8637
8648
|
const [value, setValue] = useState(_initialValue);
|
|
8638
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8649
|
+
const rootClasses = useStylesWithRootClass(rootClassName$6, className);
|
|
8639
8650
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
8640
8651
|
const handleChange = (_event, val) => {
|
|
8641
8652
|
setValue(val);
|
|
@@ -8685,29 +8696,29 @@ const DotTabs = ({
|
|
|
8685
8696
|
}), void 0);
|
|
8686
8697
|
};
|
|
8687
8698
|
|
|
8688
|
-
const rootClassName$
|
|
8689
|
-
const containerClassName = `${rootClassName$
|
|
8690
|
-
const dropZoneClassName = `${rootClassName$
|
|
8699
|
+
const rootClassName$5 = 'dot-file-upload';
|
|
8700
|
+
const containerClassName$1 = `${rootClassName$5}-container`;
|
|
8701
|
+
const dropZoneClassName = `${rootClassName$5}-drop-zone`;
|
|
8691
8702
|
const StyledFileUploadContainer = styled.div.withConfig({
|
|
8692
8703
|
displayName: "FileUploadstyles__StyledFileUploadContainer",
|
|
8693
8704
|
componentId: "sc-1q8bcxy-0"
|
|
8694
8705
|
})(["", ""], ({
|
|
8695
8706
|
theme
|
|
8696
|
-
}) => css(["&.", "{.dot-max-files-message.dot-max-files-reached{color:", ";}}"], containerClassName, theme.palette.error[500]));
|
|
8707
|
+
}) => css(["&.", "{.dot-max-files-message.dot-max-files-reached{color:", ";}}"], containerClassName$1, theme.palette.error[500]));
|
|
8697
8708
|
const StyledFileUpload = styled.div.withConfig({
|
|
8698
8709
|
displayName: "FileUploadstyles__StyledFileUpload",
|
|
8699
8710
|
componentId: "sc-1q8bcxy-1"
|
|
8700
8711
|
})(["", ""], ({
|
|
8701
8712
|
theme
|
|
8702
|
-
}) => css(["&.", ".", "{align-items:center;background:", ";border:2px dashed ", ";border-radius:4px;color:", ";display:flex;flex-direction:column;flex-wrap:wrap;height:240px;justify-content:center;padding:", ";margin-bottom:", ";text-align:center;&.disabled .dot-typography{color:", ";}.dot-icon{color:", ";font-size:100px;i.dot-i{height:100px;}}}"], rootClassName$
|
|
8713
|
+
}) => css(["&.", ".", "{align-items:center;background:", ";border:2px dashed ", ";border-radius:4px;color:", ";display:flex;flex-direction:column;flex-wrap:wrap;height:240px;justify-content:center;padding:", ";margin-bottom:", ";text-align:center;&.disabled .dot-typography{color:", ";}.dot-icon{color:", ";font-size:100px;i.dot-i{height:100px;}}}"], rootClassName$5, dropZoneClassName, theme.palette.layer.n50, theme.palette.layer.n300, theme.palette.layer.n500, theme.spacing(3, 0), theme.spacing(1), theme.palette.layer.n300, theme.palette.layer.n100));
|
|
8703
8714
|
|
|
8704
|
-
const rootClassName$
|
|
8715
|
+
const rootClassName$4 = 'dot-file-list-item';
|
|
8705
8716
|
const StyledFileListItem = styled(StyledListItem).withConfig({
|
|
8706
8717
|
displayName: "FileListItemstyles__StyledFileListItem",
|
|
8707
8718
|
componentId: "sc-6mp1tz-0"
|
|
8708
8719
|
})(["", ""], ({
|
|
8709
8720
|
theme
|
|
8710
|
-
}) => css(["&.", "{border-bottom:1px solid ", ";&:hover{cursor:pointer;background:", ";}&:focus-visible{background-color:", ";outline:none;}&.file-success:not(:hover,:focus-visible) .", "-end-icon{i:before{color:", ";}&:focus-visible i:before{color:unset;}}&.file-error:not(:hover,:focus-visible) .", "-end-icon{i:before,.MuiListItemText-secondary{color:", ";}&:focus-visible i:before{color:unset;}}.dot-typography,.file-item-text{flex-grow:2;padding-left:", ";}.file-item-text{display:flex;flex-direction:column;.MuiTypography-body2{color:", ";}}}"], rootClassName$
|
|
8721
|
+
}) => css(["&.", "{border-bottom:1px solid ", ";&:hover{cursor:pointer;background:", ";}&:focus-visible{background-color:", ";outline:none;}&.file-success:not(:hover,:focus-visible) .", "-end-icon{i:before{color:", ";}&:focus-visible i:before{color:unset;}}&.file-error:not(:hover,:focus-visible) .", "-end-icon{i:before,.MuiListItemText-secondary{color:", ";}&:focus-visible i:before{color:unset;}}.dot-typography,.file-item-text{flex-grow:2;padding-left:", ";}.file-item-text{display:flex;flex-direction:column;.MuiTypography-body2{color:", ";}}}"], rootClassName$4, theme.palette.layer.n100, theme.palette.layer.n50, theme.palette.layer.n100, rootClassName$4, theme.palette.secondary.main, rootClassName$4, theme.palette.error.main, theme.spacing(1), theme.palette.error.main));
|
|
8711
8722
|
|
|
8712
8723
|
const DotFileListItem = ({
|
|
8713
8724
|
ariaLabel,
|
|
@@ -8722,7 +8733,7 @@ const DotFileListItem = ({
|
|
|
8722
8733
|
onKeyPress,
|
|
8723
8734
|
tabIndex: _tabIndex = 0
|
|
8724
8735
|
}) => {
|
|
8725
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8736
|
+
const rootClasses = useStylesWithRootClass(rootClassName$4, className, _error ? 'file-error' : 'file-success');
|
|
8726
8737
|
const defaultIcon = _error ? 'error-solid' : 'check-solid';
|
|
8727
8738
|
const [endIcon, setEndIcon] = useState(defaultIcon);
|
|
8728
8739
|
const handleItemClick = clickedFile => _event => onClick === null || onClick === void 0 ? void 0 : onClick(clickedFile);
|
|
@@ -8758,7 +8769,7 @@ const DotFileListItem = ({
|
|
|
8758
8769
|
children: errorText
|
|
8759
8770
|
}), void 0)]
|
|
8760
8771
|
}), void 0), jsx(DotIconButton, {
|
|
8761
|
-
className: `${rootClassName$
|
|
8772
|
+
className: `${rootClassName$4}-end-icon`,
|
|
8762
8773
|
"data-testid": dataTestId && `${dataTestId}-end-icon`,
|
|
8763
8774
|
disabled: disableDelete,
|
|
8764
8775
|
iconId: endIcon,
|
|
@@ -8887,7 +8898,7 @@ const DotFileUpload = ({
|
|
|
8887
8898
|
const [uploadedFiles, setUploadedFiles] = useState([]);
|
|
8888
8899
|
const [hasMaxFilesError, setHasMaxFilesError] = useState(false);
|
|
8889
8900
|
const isUploadDisabled = disabled || maxFiles && uploadedFiles.length >= maxFiles;
|
|
8890
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8901
|
+
const rootClasses = useStylesWithRootClass(rootClassName$5, className, !_buttonOnly ? dropZoneClassName : '', isUploadDisabled ? 'disabled' : '');
|
|
8891
8902
|
const maxFilesClasses = useStylesWithRootClass('dot-max-files-message', hasMaxFilesError ? 'dot-max-files-reached' : '');
|
|
8892
8903
|
const allowMultiple = maxFiles === undefined || maxFiles > 1;
|
|
8893
8904
|
const setNewlyUploadedFiles = (acceptedFiles, fileRejections) => {
|
|
@@ -8936,7 +8947,7 @@ const DotFileUpload = ({
|
|
|
8936
8947
|
uploadedFiles
|
|
8937
8948
|
});
|
|
8938
8949
|
return jsxs(StyledFileUploadContainer, Object.assign({
|
|
8939
|
-
className: containerClassName
|
|
8950
|
+
className: containerClassName$1
|
|
8940
8951
|
}, {
|
|
8941
8952
|
children: [jsxs(StyledFileUpload, Object.assign({}, getRootProps(), {
|
|
8942
8953
|
"aria-label": ariaLabel,
|
|
@@ -8957,11 +8968,11 @@ const DotFileUpload = ({
|
|
|
8957
8968
|
}), void 0);
|
|
8958
8969
|
};
|
|
8959
8970
|
|
|
8960
|
-
const rootClassName$
|
|
8971
|
+
const rootClassName$3 = 'dot-divider';
|
|
8961
8972
|
const StyledDivider = styled(Divider).withConfig({
|
|
8962
8973
|
displayName: "Dividerstyles__StyledDivider",
|
|
8963
8974
|
componentId: "yu3sip-0"
|
|
8964
|
-
})(["", ""], () => css(["&.", "{}"], rootClassName$
|
|
8975
|
+
})(["", ""], () => css(["&.", "{}"], rootClassName$3));
|
|
8965
8976
|
|
|
8966
8977
|
const DotDivider = ({
|
|
8967
8978
|
absolute,
|
|
@@ -8973,7 +8984,7 @@ const DotDivider = ({
|
|
|
8973
8984
|
orientation,
|
|
8974
8985
|
variant
|
|
8975
8986
|
}) => {
|
|
8976
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8987
|
+
const rootClasses = useStylesWithRootClass(rootClassName$3, className);
|
|
8977
8988
|
return jsx(StyledDivider, {
|
|
8978
8989
|
absolute: absolute,
|
|
8979
8990
|
"aria-label": ariaLabel,
|
|
@@ -8999,7 +9010,7 @@ const DotPopper = ({
|
|
|
8999
9010
|
open,
|
|
9000
9011
|
placement
|
|
9001
9012
|
}) => {
|
|
9002
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
9013
|
+
const rootClasses = useStylesWithRootClass(rootClassName$V, className);
|
|
9003
9014
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
9004
9015
|
const handleClickAway = event => {
|
|
9005
9016
|
if (onClickAway && (!anchorEl || !anchorEl.contains(event.currentTarget))) {
|
|
@@ -9038,7 +9049,7 @@ const DotPopper = ({
|
|
|
9038
9049
|
}), void 0);
|
|
9039
9050
|
};
|
|
9040
9051
|
|
|
9041
|
-
const rootClassName$
|
|
9052
|
+
const rootClassName$2 = 'dot-draggable-list';
|
|
9042
9053
|
const listItemClassName = 'dot-draggable-list-item';
|
|
9043
9054
|
const StyledDraggableList = styled.div.withConfig({
|
|
9044
9055
|
displayName: "DraggableListstyles__StyledDraggableList",
|
|
@@ -9047,7 +9058,7 @@ const StyledDraggableList = styled.div.withConfig({
|
|
|
9047
9058
|
theme,
|
|
9048
9059
|
width,
|
|
9049
9060
|
draggableHandle
|
|
9050
|
-
}) => css(["&.", " .", "{width:", " !important;.dot-icon{color:", ";}&.react-draggable-dragging{background-color:", ";}&.with-default-cursor{cursor:default;}&.with-handle-grab-cursor ", "{cursor:grab;}}"], rootClassName$
|
|
9061
|
+
}) => css(["&.", " .", "{width:", " !important;.dot-icon{color:", ";}&.react-draggable-dragging{background-color:", ";}&.with-default-cursor{cursor:default;}&.with-handle-grab-cursor ", "{cursor:grab;}}"], rootClassName$2, listItemClassName, width, theme.palette.layer.n700, theme.palette.grey[50], draggableHandle));
|
|
9051
9062
|
|
|
9052
9063
|
const getOrderedListItems = (layout, listItems) => {
|
|
9053
9064
|
if (!listItems || !layout) return [];
|
|
@@ -9081,7 +9092,7 @@ const DotDraggableList = ({
|
|
|
9081
9092
|
rowHeight: _rowHeight = DEFAULT_LIST_ITEM_HEIGHT,
|
|
9082
9093
|
width: _width = DEFAULT_LIST_WIDTH
|
|
9083
9094
|
}) => {
|
|
9084
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
9095
|
+
const rootClasses = useStylesWithRootClass(rootClassName$2, className, draggableHandle ? 'with-draggable-handle' : '');
|
|
9085
9096
|
const listItemClasses = useStylesWithRootClass(listItemClassName, draggableHandle && !disableDrag ? 'with-handle-grab-cursor' : '', draggableHandle || disableDrag ? 'with-default-cursor' : '');
|
|
9086
9097
|
const listWidth = isNumber(_width) ? `${_width}px` : _width;
|
|
9087
9098
|
const [orderedItems, setOrderedItems] = useState([]);
|
|
@@ -9135,11 +9146,11 @@ const DotDraggableList = ({
|
|
|
9135
9146
|
}), void 0);
|
|
9136
9147
|
};
|
|
9137
9148
|
|
|
9138
|
-
const rootClassName = 'dot-linear-progress';
|
|
9149
|
+
const rootClassName$1 = 'dot-linear-progress';
|
|
9139
9150
|
const StyledLinearProgress = styled(LinearProgress).withConfig({
|
|
9140
9151
|
displayName: "LinearProgressstyles__StyledLinearProgress",
|
|
9141
9152
|
componentId: "sc-1qhzxb3-0"
|
|
9142
|
-
})(["&.", "{}"], rootClassName);
|
|
9153
|
+
})(["&.", "{}"], rootClassName$1);
|
|
9143
9154
|
|
|
9144
9155
|
const DotLinearProgress = ({
|
|
9145
9156
|
ariaLabel,
|
|
@@ -9150,7 +9161,7 @@ const DotLinearProgress = ({
|
|
|
9150
9161
|
valueBuffer,
|
|
9151
9162
|
variant: _variant = 'indeterminate'
|
|
9152
9163
|
}) => {
|
|
9153
|
-
const rootClasses = useStylesWithRootClass(rootClassName, className);
|
|
9164
|
+
const rootClasses = useStylesWithRootClass(rootClassName$1, className);
|
|
9154
9165
|
return jsx(StyledLinearProgress, {
|
|
9155
9166
|
"aria-label": ariaLabel,
|
|
9156
9167
|
classes: {
|
|
@@ -9164,4 +9175,161 @@ const DotLinearProgress = ({
|
|
|
9164
9175
|
}, void 0);
|
|
9165
9176
|
};
|
|
9166
9177
|
|
|
9167
|
-
|
|
9178
|
+
const rootClassName = 'dot-date-picker';
|
|
9179
|
+
const containerClassName = 'dot-date-picker-container';
|
|
9180
|
+
const rectanglePickersDayClassName = 'dot-rectangle-pickers-day';
|
|
9181
|
+
const StyledDatePickerContainer = styled.div.withConfig({
|
|
9182
|
+
displayName: "DatePickerstyles__StyledDatePickerContainer",
|
|
9183
|
+
componentId: "sc-1to4suu-0"
|
|
9184
|
+
})(["&.", " .full-width{width:100%;}"], rootClassName);
|
|
9185
|
+
const StyledDatePicker = styled(DatePicker).withConfig({
|
|
9186
|
+
displayName: "DatePickerstyles__StyledDatePicker",
|
|
9187
|
+
componentId: "sc-1to4suu-1"
|
|
9188
|
+
})(["", ""], ({
|
|
9189
|
+
theme
|
|
9190
|
+
}) => css(["&.", "{label:not(.MuiInputLabel-shrink){top:-5px;}.MuiInputBase-root{margin-bottom:0;.dot-error-icon{margin-right:", ";color:", ";}.dot-icon{", ";}}.MuiInputBase-input{height:", ";padding:", ";}.MuiFormHelperText-root{", ";}}"], rootClassName, theme.spacing(0.5), theme.palette.error.main, adornmentIconStyles(), theme.spacing(2), theme.spacing(1.5, 0, 1.5, 2), formHelperTextRootStyles(theme)));
|
|
9191
|
+
const StyledPickersDay = styled(PickersDay).withConfig({
|
|
9192
|
+
displayName: "DatePickerstyles__StyledPickersDay",
|
|
9193
|
+
componentId: "sc-1to4suu-2"
|
|
9194
|
+
})(["", ""], ({
|
|
9195
|
+
theme
|
|
9196
|
+
}) => css(["&.", "{border-radius:", ";&.MuiPickersDay-today{border:1px solid ", ";}}"], rectanglePickersDayClassName, theme.spacing(0.5), theme.palette.primary.main));
|
|
9197
|
+
|
|
9198
|
+
const RectanglePickersDay = pickersDayProps => {
|
|
9199
|
+
return jsx(StyledPickersDay, Object.assign({}, pickersDayProps, {
|
|
9200
|
+
className: rectanglePickersDayClassName,
|
|
9201
|
+
disableRipple: true
|
|
9202
|
+
}), void 0);
|
|
9203
|
+
};
|
|
9204
|
+
const DotDatePicker = ({
|
|
9205
|
+
ariaLabel,
|
|
9206
|
+
autoFocus: _autoFocus = false,
|
|
9207
|
+
className,
|
|
9208
|
+
closeOnSelect: _closeOnSelect = true,
|
|
9209
|
+
'data-testid': dataTestId,
|
|
9210
|
+
disableOpenPicker,
|
|
9211
|
+
disablePast,
|
|
9212
|
+
disabled,
|
|
9213
|
+
displayWeekNumber,
|
|
9214
|
+
displayClearButton: _displayClearButton = true,
|
|
9215
|
+
error,
|
|
9216
|
+
fixedWeekNumber,
|
|
9217
|
+
format,
|
|
9218
|
+
fullWidth: _fullWidth = false,
|
|
9219
|
+
helperText,
|
|
9220
|
+
inputId,
|
|
9221
|
+
inputName,
|
|
9222
|
+
label,
|
|
9223
|
+
locale,
|
|
9224
|
+
onAccept,
|
|
9225
|
+
onChange,
|
|
9226
|
+
onClose,
|
|
9227
|
+
onError,
|
|
9228
|
+
onOpen,
|
|
9229
|
+
open,
|
|
9230
|
+
persistentLabel,
|
|
9231
|
+
readOnly: _readOnly = false,
|
|
9232
|
+
required: _required = false,
|
|
9233
|
+
showDaysOutsideCurrentMonth,
|
|
9234
|
+
value
|
|
9235
|
+
}) => {
|
|
9236
|
+
const rootClasses = useStylesWithRootClass(rootClassName, className, _readOnly ? 'read-only' : '');
|
|
9237
|
+
const containerClasses = useStylesWithRootClass(containerClassName, _fullWidth ? 'full-width' : '', className);
|
|
9238
|
+
useEffect(() => {
|
|
9239
|
+
if (!locale) return;
|
|
9240
|
+
const userLocaleName = dayjs.locale();
|
|
9241
|
+
const userLocaleProps = dayjs.Ls[dayjs.locale()];
|
|
9242
|
+
dayjs.extend(updateLocale);
|
|
9243
|
+
dayjs.updateLocale(userLocaleName, Object.assign(Object.assign({}, userLocaleProps), locale));
|
|
9244
|
+
}, [locale]);
|
|
9245
|
+
const dateFormat = format || 'YYYY-MM-DD';
|
|
9246
|
+
const handleChange = (changedValue, context) => {
|
|
9247
|
+
if (!onChange || changedValue && !changedValue.isValid()) return;
|
|
9248
|
+
onChange(changedValue ? changedValue.format(dateFormat) : null, context);
|
|
9249
|
+
};
|
|
9250
|
+
const handleAccept = changedValue => {
|
|
9251
|
+
if (!onAccept) return;
|
|
9252
|
+
onAccept(changedValue ? changedValue.format(dateFormat) : null);
|
|
9253
|
+
};
|
|
9254
|
+
const createActionBar = () => {
|
|
9255
|
+
const actionBar = {
|
|
9256
|
+
actions: []
|
|
9257
|
+
};
|
|
9258
|
+
if (_displayClearButton) {
|
|
9259
|
+
actionBar.actions.push('clear');
|
|
9260
|
+
}
|
|
9261
|
+
return actionBar;
|
|
9262
|
+
};
|
|
9263
|
+
return jsx(StyledDatePickerContainer, Object.assign({
|
|
9264
|
+
className: containerClasses,
|
|
9265
|
+
"data-testid": dataTestId
|
|
9266
|
+
}, {
|
|
9267
|
+
children: jsxs(LocalizationProvider, Object.assign({
|
|
9268
|
+
dateAdapter: AdapterDayjs
|
|
9269
|
+
}, {
|
|
9270
|
+
children: [persistentLabel && jsx(DotInputLabel, Object.assign({}, {
|
|
9271
|
+
'data-testid': 'date-picker-persistent-label',
|
|
9272
|
+
disabled,
|
|
9273
|
+
error,
|
|
9274
|
+
id: inputId,
|
|
9275
|
+
label,
|
|
9276
|
+
required: _required
|
|
9277
|
+
}), void 0), jsx(StyledDatePicker, {
|
|
9278
|
+
"aria-label": ariaLabel,
|
|
9279
|
+
autoFocus: _autoFocus,
|
|
9280
|
+
closeOnSelect: _closeOnSelect,
|
|
9281
|
+
className: rootClasses,
|
|
9282
|
+
disableOpenPicker: disableOpenPicker || _readOnly || disabled,
|
|
9283
|
+
disablePast: disablePast,
|
|
9284
|
+
disabled: disabled,
|
|
9285
|
+
displayWeekNumber: displayWeekNumber,
|
|
9286
|
+
fixedWeekNumber: fixedWeekNumber,
|
|
9287
|
+
format: format,
|
|
9288
|
+
label: persistentLabel ? null : label,
|
|
9289
|
+
onAccept: handleAccept,
|
|
9290
|
+
onChange: handleChange,
|
|
9291
|
+
onClose: onClose,
|
|
9292
|
+
onError: onError,
|
|
9293
|
+
onOpen: onOpen,
|
|
9294
|
+
open: open,
|
|
9295
|
+
showDaysOutsideCurrentMonth: showDaysOutsideCurrentMonth,
|
|
9296
|
+
slots: {
|
|
9297
|
+
openPickerButton: pickerButtonProps => jsxs(Fragment$1, {
|
|
9298
|
+
children: [error && jsx(DotIcon, {
|
|
9299
|
+
className: "dot-error-icon",
|
|
9300
|
+
"data-testid": "dot-error-icon",
|
|
9301
|
+
iconId: "error-solid"
|
|
9302
|
+
}, void 0), jsx(DotIconButton, {
|
|
9303
|
+
"data-testid": "date-picker-open-btn",
|
|
9304
|
+
iconId: "calendar",
|
|
9305
|
+
onClick: pickerButtonProps.onClick,
|
|
9306
|
+
size: "small"
|
|
9307
|
+
}, void 0)]
|
|
9308
|
+
}, void 0),
|
|
9309
|
+
day: dayProps => jsx(RectanglePickersDay, Object.assign({}, dayProps), void 0)
|
|
9310
|
+
},
|
|
9311
|
+
slotProps: {
|
|
9312
|
+
actionBar: createActionBar(),
|
|
9313
|
+
textField: {
|
|
9314
|
+
required: _required,
|
|
9315
|
+
helperText,
|
|
9316
|
+
error,
|
|
9317
|
+
focused: _readOnly ? false : undefined,
|
|
9318
|
+
inputProps: {
|
|
9319
|
+
className: 'dot-input',
|
|
9320
|
+
'data-testid': 'dot-date-picker-input'
|
|
9321
|
+
},
|
|
9322
|
+
fullWidth: _fullWidth,
|
|
9323
|
+
name: inputName
|
|
9324
|
+
},
|
|
9325
|
+
field: {
|
|
9326
|
+
readOnly: _readOnly
|
|
9327
|
+
}
|
|
9328
|
+
},
|
|
9329
|
+
value: value && dayjs(value)
|
|
9330
|
+
}, void 0)]
|
|
9331
|
+
}), void 0)
|
|
9332
|
+
}), void 0);
|
|
9333
|
+
};
|
|
9334
|
+
|
|
9335
|
+
export { Cell, CreateUUID, CssCell, CssGrid, CssGridDebug, DotAccordion, DotActionToolbar, DotAlertBanner, DotAppLogo, DotAppSwitcher, DotAppToolbar, DotAutoComplete, DotAvatar, DotAvatarGroup, DotBadge, DotBreadcrumbs, DotButton, DotButtonToggle, DotCard, DotCardContent, DotCardFooter, DotCardHeader, DotCheckbox, DotCheckboxGroup, DotChip, DotConfirmationDialog, DotCopyButton, DotCoreApiProvider, DotDatePicker, DotDialog, DotDivider, DotDraggableList, DotDrawer, DotDynamicForm, DotEmptyState, DotFileListItem, DotFileUpload, DotForm, DotFormGroup, DotHeaderRow, DotIcon, DotIconButton, DotInlineEdit, DotInputSelect, DotInputText, DotLinearProgress, DotLink, DotList, DotMenu, DotNavigationRail, DotPill, DotPopper, DotProgress, DotProgressButton, DotRadioButton, DotRadioGroup, DotSidebar, DotSkeleton, DotSnackbar, DotSnackbarContainer, DotSnackbarProvider, DotSplitButton, DotSwitch, DotTable, DotTableAction, DotTableActions, DotTablePagination, DotTabs, DotThemeProvider, DotTooltip, DotTruncateWithTooltip, DotTypography, avatarColors, lightThemeColors as lightColors, parseAutoCompleteValue, variables as themeVariables, typographyOptions, useDotCoreApiContext, useDotSnackbarContext };
|