@digital-ai/dot-components 2.5.2 → 2.5.4
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 +35 -6
- package/index.esm.js +417 -249
- package/index.umd.js +579 -392
- package/lib/components/app-switcher/utils/helpers.d.ts +2 -2
- 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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment as Fragment$1 } from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { useState, useEffect, useRef, useMemo, useContext, createContext, forwardRef, Fragment, useCallback, createElement } from 'react';
|
|
4
|
-
import { Tooltip, Icon, Typography, Accordion, AccordionSummary, AccordionDetails, AccordionActions, InputAdornment, InputLabel, TextField, Toolbar, Alert, Fade, Avatar, Button, darken, List, ListItem, CircularProgress, Popper, MenuList, MenuItem, Paper, ClickAwayListener, Drawer, IconButton, ListItemIcon, Collapse, ListSubheader, Divider, ListItemText,
|
|
4
|
+
import { Tooltip, Icon, Typography, Accordion, AccordionSummary, AccordionDetails, AccordionActions, InputAdornment, InputLabel, TextField, Toolbar, Alert, Fade, Avatar, Button, darken, Link, List, ListItem, CircularProgress, Popper, MenuList, MenuItem, Paper, ClickAwayListener, Drawer, IconButton, ListItemIcon, Collapse, ListSubheader, Divider, ListItemText, Badge, useMediaQuery, Autocomplete, Chip, AvatarGroup, Breadcrumbs, ToggleButtonGroup, ToggleButton, Card, CardContent, CardHeader, FormControlLabel, Checkbox, FormControl, FormGroup, FormLabel, FormHelperText, Dialog, DialogContent, DialogActions, useTheme as useTheme$1, RadioGroup, Radio, Switch, Skeleton, Snackbar, ButtonGroup, TablePagination, TableContainer, TableCell, TableRow, TableBody, TableSortLabel, TableHead, Table, Tabs, Tab, LinearProgress } from '@mui/material';
|
|
5
5
|
import '@digital-ai/dot-icons';
|
|
6
6
|
import styled, { css, createGlobalStyle, ThemeProvider as ThemeProvider$1, keyframes } from 'styled-components';
|
|
7
7
|
import { createTheme, ThemeProvider, alpha, useTheme } from '@mui/material/styles';
|
|
@@ -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,6 +1779,60 @@ const DotButton = /*#__PURE__*/forwardRef(({
|
|
|
1772
1779
|
}), void 0);
|
|
1773
1780
|
});
|
|
1774
1781
|
|
|
1782
|
+
const rootClassName$Y = 'dot-link';
|
|
1783
|
+
const StyledLink = styled(Link).withConfig({
|
|
1784
|
+
displayName: "Linkstyles__StyledLink",
|
|
1785
|
+
componentId: "sc-1lpmaww-0"
|
|
1786
|
+
})(["", ""], () => css(["&.", "{cursor:pointer;&:hover:not(.MuiLink-underlineHover){text-decoration:none;}}"], rootClassName$Y));
|
|
1787
|
+
|
|
1788
|
+
const DotLink = ({
|
|
1789
|
+
ariaLabel,
|
|
1790
|
+
children,
|
|
1791
|
+
className,
|
|
1792
|
+
color: _color = 'primary',
|
|
1793
|
+
'data-testid': dataTestId,
|
|
1794
|
+
href,
|
|
1795
|
+
onClick,
|
|
1796
|
+
onMouseEnter,
|
|
1797
|
+
onPointerDown,
|
|
1798
|
+
rel: _rel = 'noreferrer',
|
|
1799
|
+
tabIndex: _tabIndex = 0,
|
|
1800
|
+
target,
|
|
1801
|
+
tooltip,
|
|
1802
|
+
underline
|
|
1803
|
+
}) => {
|
|
1804
|
+
const rootClasses = useStylesWithRootClass(rootClassName$Y, className);
|
|
1805
|
+
const handleKeyPress = event => {
|
|
1806
|
+
if (onClick && event.key === 'Enter') {
|
|
1807
|
+
event.preventDefault();
|
|
1808
|
+
onClick(event);
|
|
1809
|
+
}
|
|
1810
|
+
};
|
|
1811
|
+
return jsx(DotTooltip, Object.assign({
|
|
1812
|
+
title: tooltip
|
|
1813
|
+
}, {
|
|
1814
|
+
children: jsx(StyledLink, Object.assign({
|
|
1815
|
+
"aria-label": ariaLabel,
|
|
1816
|
+
classes: {
|
|
1817
|
+
root: rootClasses
|
|
1818
|
+
},
|
|
1819
|
+
color: _color,
|
|
1820
|
+
"data-testid": dataTestId,
|
|
1821
|
+
href: href,
|
|
1822
|
+
onClick: onClick,
|
|
1823
|
+
onKeyPress: handleKeyPress,
|
|
1824
|
+
onMouseEnter: onMouseEnter,
|
|
1825
|
+
onPointerDown: onPointerDown,
|
|
1826
|
+
rel: _rel,
|
|
1827
|
+
tabIndex: _tabIndex,
|
|
1828
|
+
target: target,
|
|
1829
|
+
underline: underline
|
|
1830
|
+
}, {
|
|
1831
|
+
children: children
|
|
1832
|
+
}), void 0)
|
|
1833
|
+
}), void 0);
|
|
1834
|
+
};
|
|
1835
|
+
|
|
1775
1836
|
const rootClassName$X = 'dot-list';
|
|
1776
1837
|
const listItemRootClass = 'dot-list-item';
|
|
1777
1838
|
const nestedListClassName = 'dot-nested-list';
|
|
@@ -2800,7 +2861,7 @@ const DotInputText = ({
|
|
|
2800
2861
|
const hasEndAdornmentIcon = endIcon || _error || hasWarning || hasSuccess;
|
|
2801
2862
|
// This state is used only with debounce feature enabled
|
|
2802
2863
|
const [inputTextState, setInputTextState] = useState(hasDebounce && getInitialState(value));
|
|
2803
|
-
const rootStyles = useStylesWithRootClass(rootClassName$
|
|
2864
|
+
const rootStyles = useStylesWithRootClass(rootClassName$11, hasError, hasWarning, hasSuccess, _readOnly ? 'read-only' : '');
|
|
2804
2865
|
// Used to control text value from the consumer component
|
|
2805
2866
|
// when debounce feature is enabled
|
|
2806
2867
|
useEffect(() => {
|
|
@@ -3031,60 +3092,6 @@ const DotCopyButton = ({
|
|
|
3031
3092
|
}), void 0);
|
|
3032
3093
|
};
|
|
3033
3094
|
|
|
3034
|
-
const rootClassName$L = 'dot-link';
|
|
3035
|
-
const StyledLink = styled(Link).withConfig({
|
|
3036
|
-
displayName: "Linkstyles__StyledLink",
|
|
3037
|
-
componentId: "sc-1lpmaww-0"
|
|
3038
|
-
})(["", ""], () => css(["&.", "{cursor:pointer;&:hover:not(.MuiLink-underlineHover){text-decoration:none;}}"], rootClassName$L));
|
|
3039
|
-
|
|
3040
|
-
const DotLink = ({
|
|
3041
|
-
ariaLabel,
|
|
3042
|
-
children,
|
|
3043
|
-
className,
|
|
3044
|
-
color: _color = 'primary',
|
|
3045
|
-
'data-testid': dataTestId,
|
|
3046
|
-
href,
|
|
3047
|
-
onClick,
|
|
3048
|
-
onMouseEnter,
|
|
3049
|
-
onPointerDown,
|
|
3050
|
-
rel: _rel = 'noreferrer',
|
|
3051
|
-
tabIndex: _tabIndex = 0,
|
|
3052
|
-
target,
|
|
3053
|
-
tooltip,
|
|
3054
|
-
underline
|
|
3055
|
-
}) => {
|
|
3056
|
-
const rootClasses = useStylesWithRootClass(rootClassName$L, className);
|
|
3057
|
-
const handleKeyPress = event => {
|
|
3058
|
-
if (onClick && event.key === 'Enter') {
|
|
3059
|
-
event.preventDefault();
|
|
3060
|
-
onClick(event);
|
|
3061
|
-
}
|
|
3062
|
-
};
|
|
3063
|
-
return jsx(DotTooltip, Object.assign({
|
|
3064
|
-
title: tooltip
|
|
3065
|
-
}, {
|
|
3066
|
-
children: jsx(StyledLink, Object.assign({
|
|
3067
|
-
"aria-label": ariaLabel,
|
|
3068
|
-
classes: {
|
|
3069
|
-
root: rootClasses
|
|
3070
|
-
},
|
|
3071
|
-
color: _color,
|
|
3072
|
-
"data-testid": dataTestId,
|
|
3073
|
-
href: href,
|
|
3074
|
-
onClick: onClick,
|
|
3075
|
-
onKeyPress: handleKeyPress,
|
|
3076
|
-
onMouseEnter: onMouseEnter,
|
|
3077
|
-
onPointerDown: onPointerDown,
|
|
3078
|
-
rel: _rel,
|
|
3079
|
-
tabIndex: _tabIndex,
|
|
3080
|
-
target: target,
|
|
3081
|
-
underline: underline
|
|
3082
|
-
}, {
|
|
3083
|
-
children: children
|
|
3084
|
-
}), void 0)
|
|
3085
|
-
}), void 0);
|
|
3086
|
-
};
|
|
3087
|
-
|
|
3088
3095
|
var img$6 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z' fill='%23279FEA'/%3e%3cpath d='M12.4332 16.3533V14.8333H11.5665V16.3533L10.7432 15.8933L9.85651 16.4033L11.9998 17.6366L14.1932 16.3733L13.3332 15.8766L12.4332 16.3533Z' fill='white'/%3e%3cpath d='M7.99328 10.1866L9.24661 10.9132L9.67995 10.1399L8.36995 9.4299L9.09328 9.01657V8.03323L7.11328 9.18323L7.11661 11.5532L7.99328 11.0566V10.1866Z' fill='white'/%3e%3cpath d='M14.6934 10.9133L15.9934 10.1733L15.99 11.0566L16.8867 11.5599V9.1766L14.81 7.98993L14.7767 8.9566L15.6167 9.45326L14.29 10.0799L14.6934 10.9133Z' fill='white'/%3e%3cpath d='M16.8801 12.5435L16.0001 12.0402V12.0935V13.7068L12.4167 11.6868V7.61015L13.9667 8.49015V7.51682L12.0001 6.35349L9.95006 7.52348V8.52348L11.4967 7.63015V11.6868L8.00006 13.8168V12.0202L7.12006 12.5235V14.8202L8.96672 15.8502L9.86672 15.3335L8.40006 14.5268L12.0001 12.4368L15.5567 14.5035L14.1301 15.3268L15.0567 15.8701L16.8701 14.8268L16.8801 12.5435Z' fill='white'/%3e%3c/svg%3e";
|
|
3089
3096
|
|
|
3090
3097
|
var img$5 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z' fill='%23279FEA'/%3e%3cpath d='M14.1867 11.2667L12.1634 10.0833L10.1367 11.2667V13.62L12.1634 14.7867L14.1867 13.62V11.2667Z' fill='white'/%3e%3cpath d='M8.43666 12.0001L7.47333 11.1501V15.1667L10.41 16.8367V15.7034L8.43666 14.5401V12.0001Z' fill='white'/%3e%3cpath d='M15.8965 12V14.5833L13.9632 15.7033V16.9367L16.8532 15.1533V11.0967L15.8965 12Z' fill='white'/%3e%3cpath d='M12.1565 8.13333L14.7165 9.61333L15.4165 8.89L12.1565 7L8.87988 8.90667L9.57988 9.63333L12.1565 8.13333Z' fill='white'/%3e%3c/svg%3e";
|
|
@@ -3134,17 +3141,17 @@ const getLogoForAppType = appType => {
|
|
|
3134
3141
|
}
|
|
3135
3142
|
};
|
|
3136
3143
|
const daiAppsHeaderMenuItem = (count = 0) => {
|
|
3137
|
-
return sectionHeaderMenuItem('DIGITAL.AI APPLICATIONS', count, true);
|
|
3144
|
+
return sectionHeaderMenuItem('DIGITAL.AI APPLICATIONS', count, true, false);
|
|
3138
3145
|
};
|
|
3139
|
-
const sectionHeaderMenuItem = (title, count, showEmpty = false) => {
|
|
3146
|
+
const sectionHeaderMenuItem = (title, count, showEmpty = false, showCount = true) => {
|
|
3140
3147
|
const children = showEmpty || count > 0 ? jsxs(DotTypography, Object.assign({
|
|
3141
|
-
className: "
|
|
3148
|
+
className: "section-title"
|
|
3142
3149
|
}, {
|
|
3143
|
-
children: [title, count > 0 ? ` (${count})` : '']
|
|
3150
|
+
children: [title, showCount && count > 0 ? ` (${count})` : '']
|
|
3144
3151
|
}), `menu-item-section-title-${title}`) : null;
|
|
3145
3152
|
return {
|
|
3146
3153
|
children,
|
|
3147
|
-
key: `
|
|
3154
|
+
key: `section-header-${title}`
|
|
3148
3155
|
};
|
|
3149
3156
|
};
|
|
3150
3157
|
const createMenuItem = (url, title, subtitle, onClick) => jsxs("div", Object.assign({
|
|
@@ -3160,9 +3167,13 @@ const createMenuItem = (url, title, subtitle, onClick) => jsxs("div", Object.ass
|
|
|
3160
3167
|
children: jsxs("div", Object.assign({
|
|
3161
3168
|
className: "logo-title"
|
|
3162
3169
|
}, {
|
|
3163
|
-
children: [jsx(
|
|
3164
|
-
|
|
3165
|
-
},
|
|
3170
|
+
children: [jsx("div", Object.assign({
|
|
3171
|
+
className: "start-icon"
|
|
3172
|
+
}, {
|
|
3173
|
+
children: jsx(DotIcon, {
|
|
3174
|
+
iconId: "open-new-tab"
|
|
3175
|
+
}, void 0)
|
|
3176
|
+
}), void 0), jsxs("div", Object.assign({
|
|
3166
3177
|
className: "dot-app-switcher-app-title"
|
|
3167
3178
|
}, {
|
|
3168
3179
|
children: [jsx(DotTypography, Object.assign({
|
|
@@ -3242,9 +3253,9 @@ const createAppTypeLabel = (appTypeName, logo, appProps) => {
|
|
|
3242
3253
|
};
|
|
3243
3254
|
const getInstanceStateText = application => {
|
|
3244
3255
|
if (application.instance_state === 1) {
|
|
3245
|
-
return 'Production
|
|
3256
|
+
return 'Production';
|
|
3246
3257
|
}
|
|
3247
|
-
return 'Non-production
|
|
3258
|
+
return 'Non-production';
|
|
3248
3259
|
};
|
|
3249
3260
|
const sortRecentAppInstancesFn = (a, b) => {
|
|
3250
3261
|
const appA = a.application;
|
|
@@ -3302,13 +3313,13 @@ const recentAppInstancesSetter = (latestInstance, maxRecentItems
|
|
|
3302
3313
|
};
|
|
3303
3314
|
};
|
|
3304
3315
|
|
|
3305
|
-
const rootClassName$
|
|
3316
|
+
const rootClassName$L = 'dot-app-switcher';
|
|
3306
3317
|
const StyledAppSwitcher = styled(DotDrawer).withConfig({
|
|
3307
3318
|
displayName: "AppSwitcherstyles__StyledAppSwitcher",
|
|
3308
3319
|
componentId: "hhxfqg-0"
|
|
3309
3320
|
})(["", ""], ({
|
|
3310
3321
|
theme
|
|
3311
|
-
}) => css(["&.", "{.dot-drawer-paper{padding:0;}.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;text-decoration:none;cursor:pointer;}.logo-title{display:flex;align-items:center;gap:
|
|
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)));
|
|
3312
3323
|
|
|
3313
3324
|
const DotAppSwitcherView = ({
|
|
3314
3325
|
activeApp,
|
|
@@ -3321,7 +3332,7 @@ const DotAppSwitcherView = ({
|
|
|
3321
3332
|
open,
|
|
3322
3333
|
searchInstancesThreshold: _searchInstancesThreshold = 5,
|
|
3323
3334
|
selectedAppType,
|
|
3324
|
-
yOffset: _yOffset =
|
|
3335
|
+
yOffset: _yOffset = 56,
|
|
3325
3336
|
zIndex: _zIndex = 990
|
|
3326
3337
|
}) => {
|
|
3327
3338
|
const dotCoreApiContext = useDotCoreApiContext();
|
|
@@ -3329,7 +3340,7 @@ const DotAppSwitcherView = ({
|
|
|
3329
3340
|
if (dotCoreApiContext !== null) {
|
|
3330
3341
|
setSelectedAppType = dotCoreApiContext.setSelectedAppSwitcherAppType;
|
|
3331
3342
|
}
|
|
3332
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3343
|
+
const rootClasses = useStylesWithRootClass(rootClassName$L, className);
|
|
3333
3344
|
const [appTypeMap, setAppTypeMap] = useState();
|
|
3334
3345
|
const [appTypeLabels, setAppTypeLabels] = useState();
|
|
3335
3346
|
const [appTypeMenuItems, setAppTypeMenuItems] = useState();
|
|
@@ -3353,7 +3364,7 @@ const DotAppSwitcherView = ({
|
|
|
3353
3364
|
// we'll put Other at the end
|
|
3354
3365
|
const otherApps = [];
|
|
3355
3366
|
apps === null || apps === void 0 ? void 0 : apps.forEach(app => {
|
|
3356
|
-
const instanceStateText = getInstanceStateText(app)
|
|
3367
|
+
const instanceStateText = `${getInstanceStateText(app)} instance`;
|
|
3357
3368
|
const children = createMenuItem(app.url, app.name, instanceStateText, e => {
|
|
3358
3369
|
handleRecentInstance(e, app);
|
|
3359
3370
|
});
|
|
@@ -3413,10 +3424,9 @@ const DotAppSwitcherView = ({
|
|
|
3413
3424
|
singleTypeApps
|
|
3414
3425
|
});
|
|
3415
3426
|
menuItems.push({
|
|
3416
|
-
children: jsxs(
|
|
3427
|
+
children: jsxs(DotLink, Object.assign({
|
|
3417
3428
|
className: "product-menu-item",
|
|
3418
|
-
onClick: () => showApps(appTypeName)
|
|
3419
|
-
tabIndex: 0
|
|
3429
|
+
onClick: () => showApps(appTypeName)
|
|
3420
3430
|
}, {
|
|
3421
3431
|
children: [createAppTypeLabel(appTypeName, logo, singleTypeApps), jsx(DotIcon, {
|
|
3422
3432
|
iconId: "chevron-right"
|
|
@@ -3476,7 +3486,7 @@ const DotAppSwitcherView = ({
|
|
|
3476
3486
|
}, {
|
|
3477
3487
|
children: recentAppInstances.map(item => {
|
|
3478
3488
|
const app = item.application;
|
|
3479
|
-
return createMenuItem(app.url, app.name, getInstanceStateText(app)
|
|
3489
|
+
return createMenuItem(app.url, app.name, `${app.logo_product_name} - ${getInstanceStateText(app)}`, e => {
|
|
3480
3490
|
handleRecentInstance(e, app);
|
|
3481
3491
|
});
|
|
3482
3492
|
})
|
|
@@ -3506,14 +3516,16 @@ const DotAppSwitcherView = ({
|
|
|
3506
3516
|
className: "product-heading"
|
|
3507
3517
|
}, {
|
|
3508
3518
|
children: createAppTypeLabel(selectedAppType, labelConfig.logo, labelConfig.singleTypeApps)
|
|
3509
|
-
}), void 0), ((_a = appTypeMap === null || appTypeMap === void 0 ? void 0 : appTypeMap.get(selectedAppType)) === null || _a === void 0 ? void 0 : _a.length) >= _searchInstancesThreshold && jsx("div", {
|
|
3519
|
+
}), void 0), ((_a = appTypeMap === null || appTypeMap === void 0 ? void 0 : appTypeMap.get(selectedAppType)) === null || _a === void 0 ? void 0 : _a.length) >= _searchInstancesThreshold && jsx("div", Object.assign({
|
|
3520
|
+
className: "app-instance-search"
|
|
3521
|
+
}, {
|
|
3510
3522
|
children: jsx(SearchInput, {
|
|
3511
3523
|
"data-testid": "app-instance-search-input",
|
|
3512
3524
|
onChange: onAppInstanceSearchTextChange,
|
|
3513
3525
|
onClear: clearAppInstanceSearchText,
|
|
3514
3526
|
value: searchText
|
|
3515
3527
|
}, void 0)
|
|
3516
|
-
}, void 0), jsx("div", Object.assign({
|
|
3528
|
+
}), void 0), jsx("div", Object.assign({
|
|
3517
3529
|
className: "product-applications"
|
|
3518
3530
|
}, {
|
|
3519
3531
|
children: filteredAppInstances()
|
|
@@ -3558,8 +3570,7 @@ const DotAppSwitcherView = ({
|
|
|
3558
3570
|
ModalProps: {
|
|
3559
3571
|
style: {
|
|
3560
3572
|
zIndex: _zIndex
|
|
3561
|
-
}
|
|
3562
|
-
hideBackdrop: true
|
|
3573
|
+
}
|
|
3563
3574
|
},
|
|
3564
3575
|
drawerHeaderProps: header,
|
|
3565
3576
|
variant: "temporary",
|
|
@@ -3710,19 +3721,19 @@ function SvgLogoDigitalAiWhite(_ref, svgRef) {
|
|
|
3710
3721
|
}
|
|
3711
3722
|
var ForwardRef = /*#__PURE__*/React.forwardRef(SvgLogoDigitalAiWhite);
|
|
3712
3723
|
|
|
3713
|
-
const rootClassName$
|
|
3724
|
+
const rootClassName$K = 'dot-sidebar';
|
|
3714
3725
|
const StyledSidebar = styled.aside.withConfig({
|
|
3715
3726
|
displayName: "Sidebarstyles__StyledSidebar",
|
|
3716
3727
|
componentId: "l3atb4-0"
|
|
3717
3728
|
})(["", ""], ({
|
|
3718
3729
|
theme
|
|
3719
|
-
}) => 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)));
|
|
3720
3731
|
|
|
3721
|
-
const rootClassName$
|
|
3732
|
+
const rootClassName$J = 'dot-truncate-with-tooltip';
|
|
3722
3733
|
const StyledTruncateWithTooltip = styled(Tooltip).withConfig({
|
|
3723
3734
|
displayName: "TruncateWithTooltipstyles__StyledTruncateWithTooltip",
|
|
3724
3735
|
componentId: "sc-1o80lur-0"
|
|
3725
|
-
})(["", ""], () => 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));
|
|
3726
3737
|
|
|
3727
3738
|
const getTruncatedLabel = (label, charactersLimit) => {
|
|
3728
3739
|
if (!charactersLimit || charactersLimit <= 0 || label.length < charactersLimit) return label;
|
|
@@ -3741,7 +3752,7 @@ const DotTruncateWithTooltip = ({
|
|
|
3741
3752
|
label,
|
|
3742
3753
|
width
|
|
3743
3754
|
}) => {
|
|
3744
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3755
|
+
const rootClasses = useStylesWithRootClass(rootClassName$J, className, charactersLimit ? 'dot-characters-limit' : '');
|
|
3745
3756
|
return jsx(StyledTruncateWithTooltip, Object.assign({
|
|
3746
3757
|
"aria-label": ariaLabel,
|
|
3747
3758
|
className: rootClasses,
|
|
@@ -3857,7 +3868,7 @@ const DotSidebar = ({
|
|
|
3857
3868
|
setIsOpen(!isOpen);
|
|
3858
3869
|
};
|
|
3859
3870
|
const sidebarClasses = useStylesWithRootClass('side-nav', openClass);
|
|
3860
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3871
|
+
const rootClasses = useStylesWithRootClass(rootClassName$K, openClass, className);
|
|
3861
3872
|
return jsxs(StyledSidebar, Object.assign({
|
|
3862
3873
|
"aria-label": ariaLabel,
|
|
3863
3874
|
className: rootClasses,
|
|
@@ -3928,13 +3939,13 @@ const DotSidebar = ({
|
|
|
3928
3939
|
}), void 0);
|
|
3929
3940
|
};
|
|
3930
3941
|
|
|
3931
|
-
const rootClassName$
|
|
3942
|
+
const rootClassName$I = 'dot-badge';
|
|
3932
3943
|
const StyledBadge = styled(Badge).withConfig({
|
|
3933
3944
|
displayName: "Badgestyles__StyledBadge",
|
|
3934
3945
|
componentId: "sc-1brv3h5-0"
|
|
3935
3946
|
})(["", ""], ({
|
|
3936
3947
|
theme
|
|
3937
|
-
}) => 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, ({
|
|
3938
3949
|
$badgeColor
|
|
3939
3950
|
}) => {
|
|
3940
3951
|
return $badgeColor;
|
|
@@ -3952,7 +3963,7 @@ const DotBadge = ({
|
|
|
3952
3963
|
overlap,
|
|
3953
3964
|
variant: _variant = 'dot'
|
|
3954
3965
|
}) => {
|
|
3955
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
3966
|
+
const rootClasses = useStylesWithRootClass(rootClassName$I, className);
|
|
3956
3967
|
return jsx(StyledBadge, Object.assign({
|
|
3957
3968
|
"$badgeColor": badgeColor,
|
|
3958
3969
|
anchorOrigin: {
|
|
@@ -3975,7 +3986,7 @@ const DotBadge = ({
|
|
|
3975
3986
|
}), void 0);
|
|
3976
3987
|
};
|
|
3977
3988
|
|
|
3978
|
-
const rootClassName$
|
|
3989
|
+
const rootClassName$H = 'dot-app-toolbar';
|
|
3979
3990
|
const denseClassName = 'dense';
|
|
3980
3991
|
const StyledMainMenu = styled(DotDrawer).withConfig({
|
|
3981
3992
|
displayName: "AppToolbarstyles__StyledMainMenu",
|
|
@@ -3988,7 +3999,7 @@ const StyledAppToolbar = styled.header.withConfig({
|
|
|
3988
3999
|
componentId: "sc-3kokby-1"
|
|
3989
4000
|
})(["", ""], ({
|
|
3990
4001
|
theme
|
|
3991
|
-
}) => 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));
|
|
3992
4003
|
|
|
3993
4004
|
const DotAppToolbar = ({
|
|
3994
4005
|
ariaLabel,
|
|
@@ -4016,7 +4027,7 @@ const DotAppToolbar = ({
|
|
|
4016
4027
|
const displayAppLogo = appLogo || appLogoSmall;
|
|
4017
4028
|
const mainMenuRef = useRef(null);
|
|
4018
4029
|
const denseClass = _dense ? denseClassName : '';
|
|
4019
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4030
|
+
const rootClasses = useStylesWithRootClass(rootClassName$H, className, denseClass, showMainMenu ? '' : 'without-menu-icon');
|
|
4020
4031
|
const mainMenuClasses = useStylesWithRootClass('dot-main-menu', denseClass, menuOpen ? 'open' : '');
|
|
4021
4032
|
const targetBreakpoint = useMediaQuery(theme => theme.breakpoints.up('md'));
|
|
4022
4033
|
useEffect(() => {
|
|
@@ -4157,7 +4168,7 @@ const DotAppToolbar = ({
|
|
|
4157
4168
|
}), void 0) : appToolbar;
|
|
4158
4169
|
};
|
|
4159
4170
|
|
|
4160
|
-
const rootClassName$
|
|
4171
|
+
const rootClassName$G = 'dot-autocomplete';
|
|
4161
4172
|
const inputRootClassName = 'dot-input-root';
|
|
4162
4173
|
const inputMediumClassName = 'dot-input-medium';
|
|
4163
4174
|
const StyledAutocomplete = styled(Autocomplete).withConfig({
|
|
@@ -4165,15 +4176,15 @@ const StyledAutocomplete = styled(Autocomplete).withConfig({
|
|
|
4165
4176
|
componentId: "j2sgjy-0"
|
|
4166
4177
|
})(["", ""], ({
|
|
4167
4178
|
theme
|
|
4168
|
-
}) => 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));
|
|
4169
4180
|
|
|
4170
|
-
const rootClassName$
|
|
4181
|
+
const rootClassName$F = 'dot-chip';
|
|
4171
4182
|
const StyledChip = styled(Chip).withConfig({
|
|
4172
4183
|
displayName: "Chipstyles__StyledChip",
|
|
4173
4184
|
componentId: "f1tsra-0"
|
|
4174
4185
|
})(["", ""], ({
|
|
4175
4186
|
theme
|
|
4176
|
-
}) => 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]));
|
|
4177
4188
|
|
|
4178
4189
|
const DEFAULT_CHARACTERS_LIMIT = 32;
|
|
4179
4190
|
const DotChip = ({
|
|
@@ -4193,7 +4204,7 @@ const DotChip = ({
|
|
|
4193
4204
|
startIcon
|
|
4194
4205
|
}) => {
|
|
4195
4206
|
const errorClass = _error ? 'Mui-error' : '';
|
|
4196
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4207
|
+
const rootClasses = useStylesWithRootClass(rootClassName$F, className, errorClass);
|
|
4197
4208
|
const getChipLabel = () => {
|
|
4198
4209
|
if (_charactersLimit <= 0 || children.length < _charactersLimit) return children;
|
|
4199
4210
|
const label = `${children.substring(0, _charactersLimit)}...`;
|
|
@@ -4325,8 +4336,8 @@ const DotAutoComplete = ({
|
|
|
4325
4336
|
const [isOpened, setIsOpened] = useState(false);
|
|
4326
4337
|
const [inputText, setInputText] = useState('');
|
|
4327
4338
|
const textFieldWarningClassName = !_error && _warning && warningClassName;
|
|
4328
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4329
|
-
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);
|
|
4330
4341
|
const inputRootClasses = useStylesWithRootClass(inputRootClassName, !_dense && inputMediumClassName);
|
|
4331
4342
|
let textFieldInput;
|
|
4332
4343
|
// Used for focus management while popper is opened
|
|
@@ -4598,11 +4609,11 @@ const DotAutoComplete = ({
|
|
|
4598
4609
|
}, void 0);
|
|
4599
4610
|
};
|
|
4600
4611
|
|
|
4601
|
-
const rootClassName$
|
|
4612
|
+
const rootClassName$E = 'dot-avatar-group';
|
|
4602
4613
|
const StyledAvatarGroup = styled(AvatarGroup).withConfig({
|
|
4603
4614
|
displayName: "AvatarGroupstyles__StyledAvatarGroup",
|
|
4604
4615
|
componentId: "sc-25by6z-0"
|
|
4605
|
-
})(["", ""], () => css(["&.", "{justify-content:flex-end;.MuiAvatar-root{border:none;}}}"], rootClassName$
|
|
4616
|
+
})(["", ""], () => css(["&.", "{justify-content:flex-end;.MuiAvatar-root{border:none;}}}"], rootClassName$E));
|
|
4606
4617
|
|
|
4607
4618
|
const DotAvatarGroup = ({
|
|
4608
4619
|
ariaLabel,
|
|
@@ -4612,7 +4623,7 @@ const DotAvatarGroup = ({
|
|
|
4612
4623
|
max: _max = 3,
|
|
4613
4624
|
spacing: _spacing = 'medium'
|
|
4614
4625
|
}) => {
|
|
4615
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4626
|
+
const rootClasses = useStylesWithRootClass(rootClassName$E, className);
|
|
4616
4627
|
return jsx(StyledAvatarGroup, Object.assign({
|
|
4617
4628
|
"aria-label": ariaLabel,
|
|
4618
4629
|
classes: {
|
|
@@ -4628,20 +4639,20 @@ const DotAvatarGroup = ({
|
|
|
4628
4639
|
}), void 0);
|
|
4629
4640
|
};
|
|
4630
4641
|
|
|
4631
|
-
const rootClassName$
|
|
4642
|
+
const rootClassName$D = 'dot-breadcrumbs';
|
|
4632
4643
|
const breadcrumbsWrapperClass = 'dot-breadcrumbs-wrapper';
|
|
4633
4644
|
const StyledBreadcrumbsWrapper = styled.div.withConfig({
|
|
4634
4645
|
displayName: "Breadcrumbsstyles__StyledBreadcrumbsWrapper",
|
|
4635
4646
|
componentId: "sc-7cg374-0"
|
|
4636
4647
|
})(["", ""], ({
|
|
4637
4648
|
theme
|
|
4638
|
-
}) => 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)));
|
|
4639
4650
|
const StyledBreadcrumbs = styled(Breadcrumbs).withConfig({
|
|
4640
4651
|
displayName: "Breadcrumbsstyles__StyledBreadcrumbs",
|
|
4641
4652
|
componentId: "sc-7cg374-1"
|
|
4642
4653
|
})(["", ""], ({
|
|
4643
4654
|
theme
|
|
4644
|
-
}) => 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]));
|
|
4645
4656
|
|
|
4646
4657
|
const compareWidth = (parentEl, childEl) => {
|
|
4647
4658
|
return parentEl.getBoundingClientRect().width < childEl.getBoundingClientRect().width;
|
|
@@ -4932,7 +4943,7 @@ const DotBreadcrumbs = ({
|
|
|
4932
4943
|
children: [jsx(StyledBreadcrumbs, Object.assign({
|
|
4933
4944
|
"aria-label": "breadcrumb",
|
|
4934
4945
|
classes: {
|
|
4935
|
-
root: rootClassName$
|
|
4946
|
+
root: rootClassName$D,
|
|
4936
4947
|
ol: 'dot-ol',
|
|
4937
4948
|
li: 'dot-li'
|
|
4938
4949
|
},
|
|
@@ -4962,13 +4973,13 @@ const DotBreadcrumbs = ({
|
|
|
4962
4973
|
}), void 0);
|
|
4963
4974
|
};
|
|
4964
4975
|
|
|
4965
|
-
const rootClassName$
|
|
4976
|
+
const rootClassName$C = 'dot-button-toggle';
|
|
4966
4977
|
const StyledToggleButtonGroup = styled(ToggleButtonGroup).withConfig({
|
|
4967
4978
|
displayName: "ButtonTogglestyles__StyledToggleButtonGroup",
|
|
4968
4979
|
componentId: "sc-1oh4ljv-0"
|
|
4969
4980
|
})(["", ""], ({
|
|
4970
4981
|
theme
|
|
4971
|
-
}) => 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:", ";+ 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));
|
|
4972
4983
|
|
|
4973
4984
|
const DotButtonToggle = ({
|
|
4974
4985
|
ariaLabel,
|
|
@@ -4984,7 +4995,7 @@ const DotButtonToggle = ({
|
|
|
4984
4995
|
size: _size = 'medium',
|
|
4985
4996
|
value
|
|
4986
4997
|
}) => {
|
|
4987
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
4998
|
+
const rootClasses = useStylesWithRootClass(rootClassName$C, className);
|
|
4988
4999
|
const renderToggleButton = ({
|
|
4989
5000
|
ariaLabel: optionAriaLabel,
|
|
4990
5001
|
className: optionClassName,
|
|
@@ -5090,13 +5101,13 @@ const DotCardContent = ({
|
|
|
5090
5101
|
}), void 0);
|
|
5091
5102
|
};
|
|
5092
5103
|
|
|
5093
|
-
const rootClassName$
|
|
5104
|
+
const rootClassName$B = 'dot-card-footer';
|
|
5094
5105
|
const StyledDiv = styled.div.withConfig({
|
|
5095
5106
|
displayName: "CardFooterstyles__StyledDiv",
|
|
5096
5107
|
componentId: "koblh6-0"
|
|
5097
5108
|
})(["", ""], ({
|
|
5098
5109
|
theme
|
|
5099
|
-
}) => css(["&.", "{padding:", ";}"], rootClassName$
|
|
5110
|
+
}) => css(["&.", "{padding:", ";}"], rootClassName$B, theme.spacing(2)));
|
|
5100
5111
|
|
|
5101
5112
|
const DotCardFooter = ({
|
|
5102
5113
|
ariaLabel,
|
|
@@ -5104,7 +5115,7 @@ const DotCardFooter = ({
|
|
|
5104
5115
|
className,
|
|
5105
5116
|
'data-testid': dataTestId
|
|
5106
5117
|
}) => {
|
|
5107
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5118
|
+
const rootClasses = useStylesWithRootClass(rootClassName$B, className);
|
|
5108
5119
|
return jsx(StyledDiv, Object.assign({
|
|
5109
5120
|
"aria-label": ariaLabel,
|
|
5110
5121
|
className: rootClasses,
|
|
@@ -5149,19 +5160,19 @@ const DotCardHeader = ({
|
|
|
5149
5160
|
}, void 0);
|
|
5150
5161
|
};
|
|
5151
5162
|
|
|
5152
|
-
const rootClassName$
|
|
5163
|
+
const rootClassName$A = 'dot-form-control-label';
|
|
5153
5164
|
const StyledFormControlLabel = styled(FormControlLabel).withConfig({
|
|
5154
5165
|
displayName: "FormControlLabelstyles__StyledFormControlLabel",
|
|
5155
5166
|
componentId: "sc-1vt0om4-0"
|
|
5156
|
-
})(["&.", "{.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);
|
|
5157
5168
|
|
|
5158
|
-
const rootClassName$
|
|
5169
|
+
const rootClassName$z = 'dot-checkbox';
|
|
5159
5170
|
const StyledCheckbox = styled(Checkbox).withConfig({
|
|
5160
5171
|
displayName: "Checkboxstyles__StyledCheckbox",
|
|
5161
5172
|
componentId: "sc-1ubsn6i-0"
|
|
5162
5173
|
})(["", ""], ({
|
|
5163
5174
|
theme
|
|
5164
|
-
}) => 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)));
|
|
5165
5176
|
|
|
5166
5177
|
function DotCheckbox({
|
|
5167
5178
|
ariaLabel,
|
|
@@ -5182,14 +5193,14 @@ function DotCheckbox({
|
|
|
5182
5193
|
size = 'medium',
|
|
5183
5194
|
value
|
|
5184
5195
|
}) {
|
|
5185
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5196
|
+
const rootClasses = useStylesWithRootClass(rootClassName$A, className);
|
|
5186
5197
|
const handleChange = event => {
|
|
5187
5198
|
onChange && onChange(event, event.target.value);
|
|
5188
5199
|
};
|
|
5189
5200
|
const checkboxControl = jsx(StyledCheckbox, {
|
|
5190
5201
|
checked: checked,
|
|
5191
5202
|
classes: {
|
|
5192
|
-
root: rootClassName$
|
|
5203
|
+
root: rootClassName$z
|
|
5193
5204
|
},
|
|
5194
5205
|
color: "primary",
|
|
5195
5206
|
"data-testid": dataTestId,
|
|
@@ -5216,7 +5227,7 @@ function DotCheckbox({
|
|
|
5216
5227
|
}, void 0);
|
|
5217
5228
|
}
|
|
5218
5229
|
|
|
5219
|
-
const rootClassName$
|
|
5230
|
+
const rootClassName$y = 'dot-form-group';
|
|
5220
5231
|
const groupLabelClassName = 'dot-form-group-label';
|
|
5221
5232
|
const startAdornmentClassName = 'dot-start-adornment';
|
|
5222
5233
|
const endAdornmentClassName = 'dot-end-adornment';
|
|
@@ -5224,9 +5235,9 @@ const placementClassName = 'dot-';
|
|
|
5224
5235
|
const StyledFormControl = styled(FormControl).withConfig({
|
|
5225
5236
|
displayName: "FormControlstyles__StyledFormControl",
|
|
5226
5237
|
componentId: "sc-532kip-0"
|
|
5227
|
-
})(["&.", "{.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`);
|
|
5228
5239
|
|
|
5229
|
-
const rootClassName$
|
|
5240
|
+
const rootClassName$x = 'dot-checkbox-group';
|
|
5230
5241
|
const wrapperClassName$1 = 'dot-checkbox-group-wrapper';
|
|
5231
5242
|
const checkboxListClassName = 'dot-checkbox-list';
|
|
5232
5243
|
const checkboxListItemClassName = 'dot-checkbox-list-item';
|
|
@@ -5235,16 +5246,16 @@ const StyledCheckboxGroup = styled.div.withConfig({
|
|
|
5235
5246
|
componentId: "bhb21v-0"
|
|
5236
5247
|
})(["", ""], ({
|
|
5237
5248
|
theme
|
|
5238
|
-
}) => 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));
|
|
5239
5250
|
|
|
5240
|
-
const rootClassName$
|
|
5251
|
+
const rootClassName$w = 'dot-form-group';
|
|
5241
5252
|
const StyledFormGroup = styled(FormGroup).withConfig({
|
|
5242
5253
|
displayName: "FormGroupstyles__StyledFormGroup",
|
|
5243
5254
|
componentId: "sc-1dlipcr-0"
|
|
5244
5255
|
})(["", ""], ({
|
|
5245
5256
|
theme,
|
|
5246
5257
|
row
|
|
5247
|
-
}) => css(["&.", "{& > *{margin:", ";}}"], rootClassName$
|
|
5258
|
+
}) => css(["&.", "{& > *{margin:", ";}}"], rootClassName$w, row ? `${theme.spacing(0.5)}` : 0));
|
|
5248
5259
|
|
|
5249
5260
|
function DotFormGroup({
|
|
5250
5261
|
ariaLabel,
|
|
@@ -5253,7 +5264,7 @@ function DotFormGroup({
|
|
|
5253
5264
|
'data-testid': dataTestId,
|
|
5254
5265
|
row
|
|
5255
5266
|
}) {
|
|
5256
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5267
|
+
const rootClasses = useStylesWithRootClass(rootClassName$y, className);
|
|
5257
5268
|
return jsx(StyledFormGroup, Object.assign({
|
|
5258
5269
|
"aria-label": ariaLabel,
|
|
5259
5270
|
classes: {
|
|
@@ -5293,7 +5304,7 @@ function DotCheckboxGroup({
|
|
|
5293
5304
|
size = 'medium'
|
|
5294
5305
|
}) {
|
|
5295
5306
|
const placement = `${placementClassName}${labelPlacement}`;
|
|
5296
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5307
|
+
const rootClasses = useStylesWithRootClass(rootClassName$y, rootClassName$x, className, placement);
|
|
5297
5308
|
const [selectedOptions, setSelectedOptions] = useState(defaultValues);
|
|
5298
5309
|
const [allChecked, setAllChecked] = useState(false);
|
|
5299
5310
|
/* This will ensure that state can be updated from the outside */
|
|
@@ -5385,13 +5396,13 @@ function DotCheckboxGroup({
|
|
|
5385
5396
|
}), void 0);
|
|
5386
5397
|
}
|
|
5387
5398
|
|
|
5388
|
-
const rootClassName$
|
|
5399
|
+
const rootClassName$v = 'dot-dialog';
|
|
5389
5400
|
const StyledDialog = styled(Dialog).withConfig({
|
|
5390
5401
|
displayName: "Dialogstyles__StyledDialog",
|
|
5391
5402
|
componentId: "sc-1tkr4ex-0"
|
|
5392
5403
|
})(["", ""], ({
|
|
5393
5404
|
theme
|
|
5394
|
-
}) => 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)));
|
|
5395
5406
|
|
|
5396
5407
|
const DotDialog = ({
|
|
5397
5408
|
ariaLabel,
|
|
@@ -5409,7 +5420,7 @@ const DotDialog = ({
|
|
|
5409
5420
|
submitButtonProps,
|
|
5410
5421
|
title
|
|
5411
5422
|
}) => {
|
|
5412
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5423
|
+
const rootClasses = useStylesWithRootClass(rootClassName$v, className);
|
|
5413
5424
|
const cancelClasses = useStylesWithRootClass(cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.className, 'cancel-button');
|
|
5414
5425
|
const [isOpen, setIsOpen] = useState(open);
|
|
5415
5426
|
useEffect(() => {
|
|
@@ -5526,7 +5537,7 @@ const DotConfirmationDialog = ({
|
|
|
5526
5537
|
}), void 0);
|
|
5527
5538
|
};
|
|
5528
5539
|
|
|
5529
|
-
const rootClassName$
|
|
5540
|
+
const rootClassName$u = 'dot-grid';
|
|
5530
5541
|
const frGetter = value => typeof value === 'number' ? `repeat(${value}, 1fr)` : value;
|
|
5531
5542
|
const breakpointsGetter$1 = (theme, columnsBreakpoints, columnGap, rowGap) => `${theme.breakpoints.up('xs')} {
|
|
5532
5543
|
column-gap: ${`${columnGap.xs}px`};
|
|
@@ -5571,7 +5582,7 @@ const Grid = ({
|
|
|
5571
5582
|
className,
|
|
5572
5583
|
children
|
|
5573
5584
|
}) => {
|
|
5574
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5585
|
+
const rootClasses = useStylesWithRootClass(rootClassName$u, className);
|
|
5575
5586
|
return jsx("div", Object.assign({
|
|
5576
5587
|
className: rootClasses
|
|
5577
5588
|
}, {
|
|
@@ -5592,7 +5603,7 @@ const StyledGrid = styled(Grid).withConfig({
|
|
|
5592
5603
|
rows,
|
|
5593
5604
|
theme,
|
|
5594
5605
|
width
|
|
5595
|
-
}) => 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};`));
|
|
5596
5607
|
const CssGrid = props => {
|
|
5597
5608
|
return jsx(StyledGrid, Object.assign({}, props), void 0);
|
|
5598
5609
|
};
|
|
@@ -5748,7 +5759,7 @@ const CssGridDebug = ({
|
|
|
5748
5759
|
}), void 0);
|
|
5749
5760
|
};
|
|
5750
5761
|
|
|
5751
|
-
const rootClassName$
|
|
5762
|
+
const rootClassName$t = 'dot-empty-state';
|
|
5752
5763
|
const StyledEmptyState = styled.div.withConfig({
|
|
5753
5764
|
displayName: "EmptyStatestyles__StyledEmptyState",
|
|
5754
5765
|
componentId: "sc-1sftmht-0"
|
|
@@ -5766,7 +5777,7 @@ const DotEmptyState = ({
|
|
|
5766
5777
|
subtitle,
|
|
5767
5778
|
title
|
|
5768
5779
|
}) => {
|
|
5769
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5780
|
+
const rootClasses = useStylesWithRootClass(rootClassName$t, className);
|
|
5770
5781
|
return jsxs(StyledEmptyState, Object.assign({
|
|
5771
5782
|
"aria-label": ariaLabel,
|
|
5772
5783
|
className: rootClasses,
|
|
@@ -5802,15 +5813,15 @@ const StyledRadioGroup = styled(RadioGroup).withConfig({
|
|
|
5802
5813
|
componentId: "sc-84g3mq-1"
|
|
5803
5814
|
})(["", ""], ({
|
|
5804
5815
|
theme
|
|
5805
|
-
}) => css(["{&.", "{padding-left:", ";.", "{margin:0;}}"], groupClassName, theme.spacing(2.5), rootClassName$
|
|
5816
|
+
}) => css(["{&.", "{padding-left:", ";.", "{margin:0;}}"], groupClassName, theme.spacing(2.5), rootClassName$A));
|
|
5806
5817
|
|
|
5807
|
-
const rootClassName$
|
|
5818
|
+
const rootClassName$s = 'dot-form';
|
|
5808
5819
|
const StyledFormContainer = styled.div.withConfig({
|
|
5809
5820
|
displayName: "Formstyles__StyledFormContainer",
|
|
5810
5821
|
componentId: "bbovqo-0"
|
|
5811
5822
|
})(["", ""], ({
|
|
5812
5823
|
theme
|
|
5813
|
-
}) => 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));
|
|
5814
5825
|
|
|
5815
5826
|
const DotForm = ({
|
|
5816
5827
|
ariaLabel,
|
|
@@ -5819,7 +5830,7 @@ const DotForm = ({
|
|
|
5819
5830
|
'data-testid': dataTestId,
|
|
5820
5831
|
onSubmit
|
|
5821
5832
|
}) => {
|
|
5822
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
5833
|
+
const rootClasses = useStylesWithRootClass(rootClassName$s, className);
|
|
5823
5834
|
return jsx("form", Object.assign({
|
|
5824
5835
|
"aria-label": ariaLabel,
|
|
5825
5836
|
"data-testid": dataTestId,
|
|
@@ -5834,11 +5845,11 @@ const DotForm = ({
|
|
|
5834
5845
|
}), void 0);
|
|
5835
5846
|
};
|
|
5836
5847
|
|
|
5837
|
-
const rootClassName$
|
|
5848
|
+
const rootClassName$r = 'dot-dynamic-form';
|
|
5838
5849
|
const StyledDynamicForm = styled(DotForm).withConfig({
|
|
5839
5850
|
displayName: "DynamicFormstyles__StyledDynamicForm",
|
|
5840
5851
|
componentId: "sc-1lnljcn-0"
|
|
5841
|
-
})(["", ""], () => css(["&.", "{}"], rootClassName$
|
|
5852
|
+
})(["", ""], () => css(["&.", "{}"], rootClassName$r));
|
|
5842
5853
|
|
|
5843
5854
|
const DATA_CONTROLS = ['dot-autocomplete', 'dot-checkbox', 'dot-checkbox-group', 'dot-input-select', 'dot-input-text', 'dot-radio-group', 'dot-switch'];
|
|
5844
5855
|
/* Array of control types for which we don't have error state so validation doesn't make any sense */
|
|
@@ -6125,13 +6136,13 @@ const DotInputSelect = ({
|
|
|
6125
6136
|
}), void 0);
|
|
6126
6137
|
};
|
|
6127
6138
|
|
|
6128
|
-
const rootClassName$
|
|
6139
|
+
const rootClassName$q = 'dot-progress-button';
|
|
6129
6140
|
const StyledProgressButton = styled(DotButton).withConfig({
|
|
6130
6141
|
displayName: "ProgressButtonstyles__StyledProgressButton",
|
|
6131
6142
|
componentId: "sc-1fvgky0-0"
|
|
6132
6143
|
})(["", ""], ({
|
|
6133
6144
|
theme
|
|
6134
|
-
}) => 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));
|
|
6135
6146
|
|
|
6136
6147
|
const SPINNER_DEFAULT_SIZE = 20;
|
|
6137
6148
|
const SPINNER_LARGE_SIZE = 24;
|
|
@@ -6150,7 +6161,7 @@ const DotProgressButton = ({
|
|
|
6150
6161
|
tooltip,
|
|
6151
6162
|
type: _type = 'primary'
|
|
6152
6163
|
}) => {
|
|
6153
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6164
|
+
const rootClasses = useStylesWithRootClass(rootClassName$q, className);
|
|
6154
6165
|
const isButtonDisabled = _disabled || _isLoading;
|
|
6155
6166
|
const titleClasses = useStylesWithRootClass(_isLoading ? 'hidden' : '');
|
|
6156
6167
|
const progressCircleSize = _size === 'large' ? SPINNER_LARGE_SIZE : SPINNER_DEFAULT_SIZE;
|
|
@@ -6178,11 +6189,11 @@ const DotProgressButton = ({
|
|
|
6178
6189
|
}), void 0);
|
|
6179
6190
|
};
|
|
6180
6191
|
|
|
6181
|
-
const rootClassName$
|
|
6192
|
+
const rootClassName$p = 'dot-radio';
|
|
6182
6193
|
const StyledRadioButton = styled(Radio).withConfig({
|
|
6183
6194
|
displayName: "RadioButtonstyles__StyledRadioButton",
|
|
6184
6195
|
componentId: "brp0sc-0"
|
|
6185
|
-
})(["", ""], () => css(["{&.", "{padding:8px;}"], rootClassName$
|
|
6196
|
+
})(["", ""], () => css(["{&.", "{padding:8px;}"], rootClassName$p));
|
|
6186
6197
|
|
|
6187
6198
|
function DotRadioButton({
|
|
6188
6199
|
ariaLabel,
|
|
@@ -6200,7 +6211,7 @@ function DotRadioButton({
|
|
|
6200
6211
|
size = 'medium',
|
|
6201
6212
|
value
|
|
6202
6213
|
}) {
|
|
6203
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6214
|
+
const rootClasses = useStylesWithRootClass(rootClassName$A, className);
|
|
6204
6215
|
const handleChange = event => {
|
|
6205
6216
|
onChange && onChange(event, event.target.value);
|
|
6206
6217
|
};
|
|
@@ -6208,7 +6219,7 @@ function DotRadioButton({
|
|
|
6208
6219
|
"aria-label": ariaLabel,
|
|
6209
6220
|
checked: checked,
|
|
6210
6221
|
classes: {
|
|
6211
|
-
root: rootClassName$
|
|
6222
|
+
root: rootClassName$p
|
|
6212
6223
|
},
|
|
6213
6224
|
color: "primary",
|
|
6214
6225
|
"data-testid": dataTestId,
|
|
@@ -6250,7 +6261,7 @@ const DotRadioGroup = ({
|
|
|
6250
6261
|
size: _size = 'medium'
|
|
6251
6262
|
}) => {
|
|
6252
6263
|
const placement = `${placementClassName}${_labelPlacement}`;
|
|
6253
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6264
|
+
const rootClasses = useStylesWithRootClass(rootClassName$y, className, placement);
|
|
6254
6265
|
const radioValue = value || defaultValue;
|
|
6255
6266
|
const [selectedValue, setSelectedValue] = useState(radioValue);
|
|
6256
6267
|
/* This will ensure that value can be updated from the outside */
|
|
@@ -6320,7 +6331,7 @@ const DotRadioGroup = ({
|
|
|
6320
6331
|
}), void 0);
|
|
6321
6332
|
};
|
|
6322
6333
|
|
|
6323
|
-
const rootClassName$
|
|
6334
|
+
const rootClassName$o = 'dot-switch';
|
|
6324
6335
|
const StyledSwitch = styled(Switch).withConfig({
|
|
6325
6336
|
displayName: "Switchstyles__StyledSwitch",
|
|
6326
6337
|
componentId: "eign2a-0"
|
|
@@ -6342,7 +6353,7 @@ const DotSwitch = ({
|
|
|
6342
6353
|
onChange,
|
|
6343
6354
|
size: _size = 'medium'
|
|
6344
6355
|
}) => {
|
|
6345
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6356
|
+
const rootClasses = useStylesWithRootClass(rootClassName$o, className);
|
|
6346
6357
|
const handleChange = event => {
|
|
6347
6358
|
onChange && onChange(event);
|
|
6348
6359
|
};
|
|
@@ -6363,7 +6374,7 @@ const DotSwitch = ({
|
|
|
6363
6374
|
size: _size
|
|
6364
6375
|
}, void 0);
|
|
6365
6376
|
return jsx(StyledFormControlLabel, {
|
|
6366
|
-
className: rootClassName$
|
|
6377
|
+
className: rootClassName$A,
|
|
6367
6378
|
control: switchControl,
|
|
6368
6379
|
label: label,
|
|
6369
6380
|
labelPlacement: _labelPlacement
|
|
@@ -6672,7 +6683,7 @@ const DotDynamicForm = ({
|
|
|
6672
6683
|
onChange,
|
|
6673
6684
|
onSubmit
|
|
6674
6685
|
}) => {
|
|
6675
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
6686
|
+
const rootClasses = useStylesWithRootClass(rootClassName$r, className);
|
|
6676
6687
|
// Memoize this operation so that is doesn't get executed each time this
|
|
6677
6688
|
// component re-renders
|
|
6678
6689
|
const initialFormState = useMemo(() => getInitialFormState(config, _liveValidation), [config, _liveValidation, getInitialFormState]);
|
|
@@ -6924,7 +6935,7 @@ const DotDynamicForm = ({
|
|
|
6924
6935
|
}), void 0);
|
|
6925
6936
|
};
|
|
6926
6937
|
|
|
6927
|
-
const rootClassName$
|
|
6938
|
+
const rootClassName$n = 'dot-inline-edit';
|
|
6928
6939
|
const editModeClassName = 'dot-edit-mode';
|
|
6929
6940
|
const viewModeClassName = 'dot-view-mode';
|
|
6930
6941
|
const readOnlyClassName = 'dot-read-only';
|
|
@@ -6936,7 +6947,7 @@ const StyledInlineEdit = styled.div.withConfig({
|
|
|
6936
6947
|
})(["", ""], ({
|
|
6937
6948
|
theme,
|
|
6938
6949
|
fullWidth
|
|
6939
|
-
}) => 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), ({
|
|
6940
6951
|
typography
|
|
6941
6952
|
}) => typography && `
|
|
6942
6953
|
.MuiInputBase-root {
|
|
@@ -7048,7 +7059,7 @@ const DotInlineEdit = ({
|
|
|
7048
7059
|
const inputRef = useRef();
|
|
7049
7060
|
const inlineEditRef = useRef();
|
|
7050
7061
|
const isSaveDisabled = checkIfEmptyValue(inputValue);
|
|
7051
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7062
|
+
const rootClasses = useStylesWithRootClass(rootClassName$n, className, editing ? editModeClassName : '');
|
|
7052
7063
|
const handleShowTooltip = visible => {
|
|
7053
7064
|
if (!editing) {
|
|
7054
7065
|
setShowTooltip(visible);
|
|
@@ -7222,14 +7233,14 @@ const DotInlineEdit = ({
|
|
|
7222
7233
|
}), void 0);
|
|
7223
7234
|
};
|
|
7224
7235
|
|
|
7225
|
-
const rootClassName$
|
|
7236
|
+
const rootClassName$m = 'dot-navigation-rail';
|
|
7226
7237
|
const StyledNavigationRail = styled.div.withConfig({
|
|
7227
7238
|
displayName: "NavigationRailstyles__StyledNavigationRail",
|
|
7228
7239
|
componentId: "sc-160kivd-0"
|
|
7229
7240
|
})(["", ""], ({
|
|
7230
7241
|
theme,
|
|
7231
7242
|
railItemPosition
|
|
7232
|
-
}) => 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$
|
|
7243
|
+
}) => 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)));
|
|
7233
7244
|
|
|
7234
7245
|
const MAX_ALLOWED_ITEMS = 7;
|
|
7235
7246
|
const DotNavigationRail = ({
|
|
@@ -7241,7 +7252,7 @@ const DotNavigationRail = ({
|
|
|
7241
7252
|
railItems,
|
|
7242
7253
|
selectedIndex: _selectedIndex = 0
|
|
7243
7254
|
}) => {
|
|
7244
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7255
|
+
const rootClasses = useStylesWithRootClass(rootClassName$m, className);
|
|
7245
7256
|
const [selectedItemIndex, setSelectedItemIndex] = useState(_selectedIndex);
|
|
7246
7257
|
/* Used to change selected index programmatically from the consumer component */
|
|
7247
7258
|
useEffect(() => {
|
|
@@ -7295,13 +7306,13 @@ const DotNavigationRail = ({
|
|
|
7295
7306
|
}), void 0);
|
|
7296
7307
|
};
|
|
7297
7308
|
|
|
7298
|
-
const rootClassName$
|
|
7309
|
+
const rootClassName$l = 'dot-pill';
|
|
7299
7310
|
const StyledPill = styled(Chip).withConfig({
|
|
7300
7311
|
displayName: "Pillstyles__StyledPill",
|
|
7301
7312
|
componentId: "l7oxi2-0"
|
|
7302
7313
|
})(["", ""], ({
|
|
7303
7314
|
theme
|
|
7304
|
-
}) => css(["&.", "{background-color:", ";color:", ";border-color:", ";&.error{background-color:", ";color:", ";}&.success{background-color:", ";color:", ";}&.warning{background-color:", ";color:", ";}&.in-progress{background-color:", ";color:", ";}"], rootClassName$
|
|
7315
|
+
}) => 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, ({
|
|
7305
7316
|
backgroundcolor
|
|
7306
7317
|
}) => {
|
|
7307
7318
|
return backgroundcolor || theme.palette.grey[200];
|
|
@@ -7328,7 +7339,7 @@ const DotPill = ({
|
|
|
7328
7339
|
status: _status = 'default',
|
|
7329
7340
|
variant: _variant = 'filled'
|
|
7330
7341
|
}) => {
|
|
7331
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7342
|
+
const rootClasses = useStylesWithRootClass(rootClassName$l, className, _status);
|
|
7332
7343
|
return jsx(StyledPill, {
|
|
7333
7344
|
"aria-label": ariaLabel,
|
|
7334
7345
|
bordercolor: bordercolor,
|
|
@@ -7346,13 +7357,13 @@ const DotPill = ({
|
|
|
7346
7357
|
}, void 0);
|
|
7347
7358
|
};
|
|
7348
7359
|
|
|
7349
|
-
const rootClassName$
|
|
7360
|
+
const rootClassName$k = 'dot-skeleton';
|
|
7350
7361
|
const StyledSkeleton = styled(Skeleton).withConfig({
|
|
7351
7362
|
displayName: "Skeletonstyles__StyledSkeleton",
|
|
7352
7363
|
componentId: "sc-17ayzv5-0"
|
|
7353
7364
|
})(["", ""], ({
|
|
7354
7365
|
theme
|
|
7355
|
-
}) => css(["&.", "{background-color:", ";}"], rootClassName$
|
|
7366
|
+
}) => css(["&.", "{background-color:", ";}"], rootClassName$k, theme.palette.grey[100]));
|
|
7356
7367
|
|
|
7357
7368
|
const DotSkeleton = ({
|
|
7358
7369
|
ariaLabel,
|
|
@@ -7363,7 +7374,7 @@ const DotSkeleton = ({
|
|
|
7363
7374
|
width,
|
|
7364
7375
|
variant
|
|
7365
7376
|
}) => {
|
|
7366
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7377
|
+
const rootClasses = useStylesWithRootClass(rootClassName$k, className);
|
|
7367
7378
|
return jsx(StyledSkeleton, Object.assign({
|
|
7368
7379
|
animation: "wave",
|
|
7369
7380
|
"aria-label": ariaLabel,
|
|
@@ -7379,13 +7390,13 @@ const DotSkeleton = ({
|
|
|
7379
7390
|
}), void 0);
|
|
7380
7391
|
};
|
|
7381
7392
|
|
|
7382
|
-
const rootClassName$
|
|
7393
|
+
const rootClassName$j = 'dot-snackbar';
|
|
7383
7394
|
const StyledSnackbar = styled(Snackbar).withConfig({
|
|
7384
7395
|
displayName: "Snackbarstyles__StyledSnackbar",
|
|
7385
7396
|
componentId: "sc-1huxoy3-0"
|
|
7386
7397
|
})(["", ""], ({
|
|
7387
7398
|
theme
|
|
7388
|
-
}) => 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$
|
|
7399
|
+
}) => 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));
|
|
7389
7400
|
|
|
7390
7401
|
function addAutoHideDuration(severity) {
|
|
7391
7402
|
return severity === 'error' ? null : 10000;
|
|
@@ -7420,7 +7431,7 @@ const DotSnackbar = ({
|
|
|
7420
7431
|
onClose,
|
|
7421
7432
|
action
|
|
7422
7433
|
});
|
|
7423
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7434
|
+
const rootClasses = useStylesWithRootClass(rootClassName$j, className);
|
|
7424
7435
|
return jsx(StyledSnackbar, Object.assign({
|
|
7425
7436
|
anchorOrigin: _anchorOrigin,
|
|
7426
7437
|
"aria-label": ariaLabel,
|
|
@@ -7450,11 +7461,11 @@ const DotSnackbar = ({
|
|
|
7450
7461
|
}), void 0);
|
|
7451
7462
|
};
|
|
7452
7463
|
|
|
7453
|
-
const rootClassName$
|
|
7464
|
+
const rootClassName$i = 'dot-snackbar-container';
|
|
7454
7465
|
const StyledSnackbarContainer = styled.div.withConfig({
|
|
7455
7466
|
displayName: "SnackbarContainerstyles__StyledSnackbarContainer",
|
|
7456
7467
|
componentId: "sc-1ogwjuc-0"
|
|
7457
|
-
})(["", ""], () => css(["&.", "{position:absolute;top:0;width:250px;height:auto;right:0;& > div{position:relative;}}"], rootClassName$
|
|
7468
|
+
})(["", ""], () => css(["&.", "{position:absolute;top:0;width:250px;height:auto;right:0;& > div{position:relative;}}"], rootClassName$i));
|
|
7458
7469
|
|
|
7459
7470
|
const DotSnackbarContext = /*#__PURE__*/createContext({
|
|
7460
7471
|
alerts: [],
|
|
@@ -7472,11 +7483,11 @@ const DotSnackbarContainer = () => {
|
|
|
7472
7483
|
};
|
|
7473
7484
|
}
|
|
7474
7485
|
return jsx(StyledSnackbarContainer, Object.assign({
|
|
7475
|
-
className: rootClassName$
|
|
7486
|
+
className: rootClassName$i
|
|
7476
7487
|
}, {
|
|
7477
7488
|
children: jsx("div", Object.assign({
|
|
7478
|
-
className: rootClassName$
|
|
7479
|
-
"data-testid": rootClassName$
|
|
7489
|
+
className: rootClassName$i,
|
|
7490
|
+
"data-testid": rootClassName$i
|
|
7480
7491
|
}, {
|
|
7481
7492
|
children: alerts.slice().reverse().map(alert => {
|
|
7482
7493
|
return jsx(DotSnackbar, Object.assign({
|
|
@@ -7531,13 +7542,13 @@ const useDotSnackbarContext = () => {
|
|
|
7531
7542
|
return useContext(DotSnackbarContext);
|
|
7532
7543
|
};
|
|
7533
7544
|
|
|
7534
|
-
const rootClassName$
|
|
7545
|
+
const rootClassName$h = 'dot-split-button-group';
|
|
7535
7546
|
const StyledSplitButtonGroup = styled(ButtonGroup).withConfig({
|
|
7536
7547
|
displayName: "SplitButtonstyles__StyledSplitButtonGroup",
|
|
7537
7548
|
componentId: "ild520-0"
|
|
7538
7549
|
})(["", ""], ({
|
|
7539
7550
|
theme
|
|
7540
|
-
}) => 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$
|
|
7551
|
+
}) => 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']));
|
|
7541
7552
|
const StyledMenu$2 = styled(DotMenu).withConfig({
|
|
7542
7553
|
displayName: "SplitButtonstyles__StyledMenu",
|
|
7543
7554
|
componentId: "ild520-1"
|
|
@@ -7566,7 +7577,7 @@ const DotSplitButton = ({
|
|
|
7566
7577
|
tooltip,
|
|
7567
7578
|
type: _type = 'primary'
|
|
7568
7579
|
}) => {
|
|
7569
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7580
|
+
const rootClasses = useStylesWithRootClass(rootClassName$h, className, _type, _disabled ? 'disabled' : '');
|
|
7570
7581
|
const [open, setOpen] = useState(false);
|
|
7571
7582
|
const anchorRef = useRef(null);
|
|
7572
7583
|
const hasEmptyOptions = _options.length === 0;
|
|
@@ -7632,7 +7643,7 @@ const DotSplitButton = ({
|
|
|
7632
7643
|
}, void 0);
|
|
7633
7644
|
};
|
|
7634
7645
|
|
|
7635
|
-
const rootClassName$
|
|
7646
|
+
const rootClassName$g = 'dot-table-pagination';
|
|
7636
7647
|
// TO-DO: Determine how to apply styles to standard popper element
|
|
7637
7648
|
const paginationItemClassName = 'dot-pagination-menu-item';
|
|
7638
7649
|
const StyledTablePagination = styled.div.withConfig({
|
|
@@ -7641,7 +7652,7 @@ const StyledTablePagination = styled.div.withConfig({
|
|
|
7641
7652
|
})(["", ""], ({
|
|
7642
7653
|
theme,
|
|
7643
7654
|
typography
|
|
7644
|
-
}) => 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$
|
|
7655
|
+
}) => 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));
|
|
7645
7656
|
|
|
7646
7657
|
const ROWS_PER_PAGE_OPTIONS = [10, 25, 50, 100, 150, 200];
|
|
7647
7658
|
/** This component wraps the TablePagination component from @material-ui. */
|
|
@@ -7656,7 +7667,7 @@ const DotTablePagination = ({
|
|
|
7656
7667
|
rowsPerPage: _rowsPerPage = 10,
|
|
7657
7668
|
typography: _typography = 'subtitle2'
|
|
7658
7669
|
}) => {
|
|
7659
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7670
|
+
const rootClasses = useStylesWithRootClass(rootClassName$g, className);
|
|
7660
7671
|
const handlePageChange = (event, newPage) => {
|
|
7661
7672
|
onPageChange && onPageChange(newPage);
|
|
7662
7673
|
};
|
|
@@ -7665,7 +7676,7 @@ const DotTablePagination = ({
|
|
|
7665
7676
|
};
|
|
7666
7677
|
return (/* Container is used to pass 'typography' prop to a styled component */
|
|
7667
7678
|
jsx(StyledTablePagination, Object.assign({
|
|
7668
|
-
className: rootClassName$
|
|
7679
|
+
className: rootClassName$g,
|
|
7669
7680
|
typography: _typography
|
|
7670
7681
|
}, {
|
|
7671
7682
|
children: jsx(TablePagination, {
|
|
@@ -7691,13 +7702,13 @@ const DotTablePagination = ({
|
|
|
7691
7702
|
);
|
|
7692
7703
|
};
|
|
7693
7704
|
|
|
7694
|
-
const rootClassName$
|
|
7705
|
+
const rootClassName$f = 'dot-table';
|
|
7695
7706
|
const StyledPaper = styled(Paper).withConfig({
|
|
7696
7707
|
displayName: "Tablestyles__StyledPaper",
|
|
7697
7708
|
componentId: "s95z6y-0"
|
|
7698
7709
|
})(["", ""], ({
|
|
7699
7710
|
theme
|
|
7700
|
-
}) => css(["&.", "{overflow:hidden;border:1px solid ", ";&.loading{opacity:0.4;pointer-events:none;.dot-table-pagination{display:none;}}}"], rootClassName$
|
|
7711
|
+
}) => css(["&.", "{overflow:hidden;border:1px solid ", ";&.loading{opacity:0.4;pointer-events:none;.dot-table-pagination{display:none;}}}"], rootClassName$f, theme.palette.layer.n100));
|
|
7701
7712
|
const StyledTableContainer = styled(TableContainer).withConfig({
|
|
7702
7713
|
displayName: "Tablestyles__StyledTableContainer",
|
|
7703
7714
|
componentId: "s95z6y-1"
|
|
@@ -7764,11 +7775,11 @@ const getBulkSelectedRowIds = (isChecked, selectedIds, pageData) => {
|
|
|
7764
7775
|
return newIds;
|
|
7765
7776
|
};
|
|
7766
7777
|
|
|
7767
|
-
const rootClassName$
|
|
7778
|
+
const rootClassName$e = 'dot-td';
|
|
7768
7779
|
const StyledTableCell = styled(TableCell).withConfig({
|
|
7769
7780
|
displayName: "TableCellstyles__StyledTableCell",
|
|
7770
7781
|
componentId: "e84k25-0"
|
|
7771
|
-
})(["", ""], () => 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$
|
|
7782
|
+
})(["", ""], () => 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));
|
|
7772
7783
|
|
|
7773
7784
|
/**
|
|
7774
7785
|
* A wrapper component around the TableCell component from @material-ui.
|
|
@@ -7812,7 +7823,7 @@ const DotBodyCell = ({
|
|
|
7812
7823
|
const isOverflowing = actionTableCellWidth > (wrapperRef === null || wrapperRef === void 0 ? void 0 : wrapperRef.current.clientWidth);
|
|
7813
7824
|
setShowMenu(isOverflowing);
|
|
7814
7825
|
};
|
|
7815
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7826
|
+
const rootClasses = useStylesWithRootClass(rootClassName$e, className, noWrap && 'noWrap', Array.isArray(value) && 'actionItems');
|
|
7816
7827
|
const getTableCellValue = () => {
|
|
7817
7828
|
if (Array.isArray(value)) {
|
|
7818
7829
|
return jsx("div", Object.assign({
|
|
@@ -7852,13 +7863,13 @@ const DotBodyCell = ({
|
|
|
7852
7863
|
}), void 0);
|
|
7853
7864
|
};
|
|
7854
7865
|
|
|
7855
|
-
const rootClassName$
|
|
7866
|
+
const rootClassName$d = 'dot-td-checkbox';
|
|
7856
7867
|
const StyledTableBodyCheckboxCell = styled(TableCell).withConfig({
|
|
7857
7868
|
displayName: "TableBodyCheckboxCellstyles__StyledTableBodyCheckboxCell",
|
|
7858
7869
|
componentId: "ebk3sz-0"
|
|
7859
7870
|
})(["", ""], ({
|
|
7860
7871
|
theme
|
|
7861
|
-
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$
|
|
7872
|
+
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$d, theme.spacing(5), theme.spacing(0, 1)));
|
|
7862
7873
|
|
|
7863
7874
|
const DotBodyCheckboxCell = ({
|
|
7864
7875
|
ariaLabel,
|
|
@@ -7868,7 +7879,7 @@ const DotBodyCheckboxCell = ({
|
|
|
7868
7879
|
onChange,
|
|
7869
7880
|
rowId
|
|
7870
7881
|
}) => {
|
|
7871
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7882
|
+
const rootClasses = useStylesWithRootClass(rootClassName$d, className);
|
|
7872
7883
|
const [isCheckboxChecked, setIsCheckboxChecked] = useState(isChecked);
|
|
7873
7884
|
/** This effect is used when 'checked' status is changed from the outside */
|
|
7874
7885
|
useEffect(() => {
|
|
@@ -7894,13 +7905,13 @@ const DotBodyCheckboxCell = ({
|
|
|
7894
7905
|
}), void 0);
|
|
7895
7906
|
};
|
|
7896
7907
|
|
|
7897
|
-
const rootClassName$
|
|
7908
|
+
const rootClassName$c = 'dot-tr';
|
|
7898
7909
|
const StyledTableRowStyles = styled(TableRow).withConfig({
|
|
7899
7910
|
displayName: "TableRowstyles__StyledTableRowStyles",
|
|
7900
7911
|
componentId: "a4fx2l-0"
|
|
7901
7912
|
})(["", ""], ({
|
|
7902
7913
|
theme
|
|
7903
|
-
}) => css(["&.", "{&.selected{background-color:", ";}}"], rootClassName$
|
|
7914
|
+
}) => css(["&.", "{&.selected{background-color:", ";}}"], rootClassName$c, theme.palette.primary[50]));
|
|
7904
7915
|
|
|
7905
7916
|
/**
|
|
7906
7917
|
* A wrapper component around the TableRow component from @material-ui. This component can be used
|
|
@@ -7927,7 +7938,7 @@ const DotTableRow = ({
|
|
|
7927
7938
|
selectedTableRowIds
|
|
7928
7939
|
} = multiSelectBody || {};
|
|
7929
7940
|
const isCheckboxChecked = selectedTableRowIds && selectedTableRowIds.includes(id) || false;
|
|
7930
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
7941
|
+
const rootClasses = useStylesWithRootClass(rootClassName$c, isCheckboxChecked ? 'selected' : undefined, className);
|
|
7931
7942
|
const renderCheckboxCell = () => {
|
|
7932
7943
|
return jsx(DotBodyCheckboxCell, {
|
|
7933
7944
|
ariaLabel: "Click to select this row",
|
|
@@ -7972,13 +7983,13 @@ const EmptyDotRow = ({
|
|
|
7972
7983
|
}), CreateUUID());
|
|
7973
7984
|
};
|
|
7974
7985
|
|
|
7975
|
-
const rootClassName$
|
|
7986
|
+
const rootClassName$b = 'dot-tbody';
|
|
7976
7987
|
const StyledTableBody = styled(TableBody).withConfig({
|
|
7977
7988
|
displayName: "TableBodystyles__StyledTableBody",
|
|
7978
7989
|
componentId: "wszqgk-0"
|
|
7979
7990
|
})(["", ""], ({
|
|
7980
7991
|
theme
|
|
7981
|
-
}) => css(["&.", "{tr:hover{background-color:", ";}tr:last-child td{border-bottom:none;}.empty-row td{text-align:center;}}"], rootClassName$
|
|
7992
|
+
}) => css(["&.", "{tr:hover{background-color:", ";}tr:last-child td{border-bottom:none;}.empty-row td{text-align:center;}}"], rootClassName$b, theme.palette.grey[50]));
|
|
7982
7993
|
|
|
7983
7994
|
/**
|
|
7984
7995
|
* A wrapper component around the TableBody component from @material-ui. This component can be used
|
|
@@ -8027,7 +8038,7 @@ const DotTableBody = ({
|
|
|
8027
8038
|
return jsxs(Fragment$1, {
|
|
8028
8039
|
children: [jsx(StyledTableBody, Object.assign({
|
|
8029
8040
|
classes: {
|
|
8030
|
-
root: rootClassName$
|
|
8041
|
+
root: rootClassName$b
|
|
8031
8042
|
}
|
|
8032
8043
|
}, {
|
|
8033
8044
|
children: getTableBodyRows()
|
|
@@ -8043,13 +8054,13 @@ const DotTableBody = ({
|
|
|
8043
8054
|
}, void 0);
|
|
8044
8055
|
};
|
|
8045
8056
|
|
|
8046
|
-
const rootClassName$
|
|
8057
|
+
const rootClassName$a = 'dot-th';
|
|
8047
8058
|
const StyledTableHeaderCell = styled(TableCell).withConfig({
|
|
8048
8059
|
displayName: "TableHeaderCellstyles__StyledTableHeaderCell",
|
|
8049
8060
|
componentId: "nko9j-0"
|
|
8050
8061
|
})(["", ""], ({
|
|
8051
8062
|
theme
|
|
8052
|
-
}) => css(["&.", "{&.MuiTableCell-alignCenter > span.MuiTableSortLabel-root{padding-left:26px;}.dot-cell-typography{font-family:", ";}}"], rootClassName$
|
|
8063
|
+
}) => css(["&.", "{&.MuiTableCell-alignCenter > span.MuiTableSortLabel-root{padding-left:26px;}.dot-cell-typography{font-family:", ";}}"], rootClassName$a, theme.typography.h4.fontFamily));
|
|
8053
8064
|
|
|
8054
8065
|
/**
|
|
8055
8066
|
* A wrapper component around the TableCell component from @material-ui. This component should only
|
|
@@ -8090,7 +8101,7 @@ const DotHeaderCell = ({
|
|
|
8090
8101
|
return jsx(StyledTableHeaderCell, Object.assign({
|
|
8091
8102
|
align: align,
|
|
8092
8103
|
classes: {
|
|
8093
|
-
root: rootClassName$
|
|
8104
|
+
root: rootClassName$a
|
|
8094
8105
|
},
|
|
8095
8106
|
sortDirection: _sortable ? sortDirection : undefined,
|
|
8096
8107
|
style: headerCellStyle,
|
|
@@ -8100,13 +8111,13 @@ const DotHeaderCell = ({
|
|
|
8100
8111
|
}), uid);
|
|
8101
8112
|
};
|
|
8102
8113
|
|
|
8103
|
-
const rootClassName$
|
|
8114
|
+
const rootClassName$9 = 'dot-th-checkbox';
|
|
8104
8115
|
const StyledTableHeaderCheckboxCell = styled(TableCell).withConfig({
|
|
8105
8116
|
displayName: "TableHeaderCheckboxCellstyles__StyledTableHeaderCheckboxCell",
|
|
8106
8117
|
componentId: "ymqg8x-0"
|
|
8107
8118
|
})(["", ""], ({
|
|
8108
8119
|
theme
|
|
8109
|
-
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$
|
|
8120
|
+
}) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$9, theme.spacing(5), theme.spacing(0, 1)));
|
|
8110
8121
|
|
|
8111
8122
|
const DotHeaderCheckboxCell = ({
|
|
8112
8123
|
ariaLabel,
|
|
@@ -8115,7 +8126,7 @@ const DotHeaderCheckboxCell = ({
|
|
|
8115
8126
|
multiSelectState,
|
|
8116
8127
|
onCheckAllChange
|
|
8117
8128
|
}) => {
|
|
8118
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8129
|
+
const rootClasses = useStylesWithRootClass(rootClassName$9, className);
|
|
8119
8130
|
const [checkboxState, setCheckboxState] = useState('unchecked');
|
|
8120
8131
|
useEffect(() => {
|
|
8121
8132
|
setCheckboxState(multiSelectState);
|
|
@@ -8222,13 +8233,13 @@ const DotHeaderRow = ({
|
|
|
8222
8233
|
}), void 0);
|
|
8223
8234
|
};
|
|
8224
8235
|
|
|
8225
|
-
const rootClassName$
|
|
8236
|
+
const rootClassName$8 = 'dot-table-selection-toolbar';
|
|
8226
8237
|
const StyledTableSelectionToolbar = styled(DotActionToolbar).withConfig({
|
|
8227
8238
|
displayName: "TableSelectionToolbarstyles__StyledTableSelectionToolbar",
|
|
8228
8239
|
componentId: "qpx3y9-0"
|
|
8229
8240
|
})(["", ""], ({
|
|
8230
8241
|
theme
|
|
8231
|
-
}) => 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$
|
|
8242
|
+
}) => 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)));
|
|
8232
8243
|
|
|
8233
8244
|
const DotTableSelectionToolbar = ({
|
|
8234
8245
|
ariaLabel,
|
|
@@ -8238,7 +8249,7 @@ const DotTableSelectionToolbar = ({
|
|
|
8238
8249
|
onClearAll,
|
|
8239
8250
|
selectedRowsNumber
|
|
8240
8251
|
}) => {
|
|
8241
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8252
|
+
const rootClasses = useStylesWithRootClass(rootClassName$8, className);
|
|
8242
8253
|
return jsxs(StyledTableSelectionToolbar, Object.assign({
|
|
8243
8254
|
ariaLabel: ariaLabel,
|
|
8244
8255
|
className: rootClasses,
|
|
@@ -8334,7 +8345,7 @@ const DotTable = ({
|
|
|
8334
8345
|
return onUpdateData ? data : stableSort(data, getComparator(_order, orderBy));
|
|
8335
8346
|
};
|
|
8336
8347
|
const [pageData, setPageData] = useState(getSortedData().slice(0, rowsPerPage ? rowsPerPage : data.length));
|
|
8337
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8348
|
+
const rootClasses = useStylesWithRootClass(rootClassName$f, className, _loading ? 'loading' : '');
|
|
8338
8349
|
const updateData = (newOrder, newOrderBy, newPage, newRowsPerPage) => {
|
|
8339
8350
|
const newData = stableSort(data, getComparator(newOrder, newOrderBy));
|
|
8340
8351
|
setPageData(newRowsPerPage ? newData.slice(newPage * newRowsPerPage, newPage * newRowsPerPage + newRowsPerPage) : newData);
|
|
@@ -8518,7 +8529,7 @@ const DotTableAction = ({
|
|
|
8518
8529
|
}, void 0);
|
|
8519
8530
|
};
|
|
8520
8531
|
|
|
8521
|
-
const rootClassName$
|
|
8532
|
+
const rootClassName$7 = 'dot-table-actions';
|
|
8522
8533
|
const TableActionsContainer = styled.div.withConfig({
|
|
8523
8534
|
displayName: "TableActionsstyles__TableActionsContainer",
|
|
8524
8535
|
componentId: "sc-8lo813-0"
|
|
@@ -8587,7 +8598,7 @@ const DotTableActions = ({
|
|
|
8587
8598
|
};
|
|
8588
8599
|
return jsxs(Fragment$1, {
|
|
8589
8600
|
children: [jsxs(TableActionsContainer, Object.assign({
|
|
8590
|
-
className: rootClassName$
|
|
8601
|
+
className: rootClassName$7,
|
|
8591
8602
|
ref: wrapperRef
|
|
8592
8603
|
}, {
|
|
8593
8604
|
children: [!showMenu && renderTableActions(), (showMenu || actions.length > 2) && jsx(DotIconButton, {
|
|
@@ -8610,13 +8621,13 @@ const DotTableActions = ({
|
|
|
8610
8621
|
}, void 0);
|
|
8611
8622
|
};
|
|
8612
8623
|
|
|
8613
|
-
const rootClassName$
|
|
8624
|
+
const rootClassName$6 = 'dot-tabs';
|
|
8614
8625
|
const StyledTabs = styled(Tabs).withConfig({
|
|
8615
8626
|
displayName: "Tabsstyles__StyledTabs",
|
|
8616
8627
|
componentId: "sc-1pmrz8k-0"
|
|
8617
8628
|
})(["", ""], ({
|
|
8618
8629
|
theme
|
|
8619
|
-
}) => 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$
|
|
8630
|
+
}) => 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)));
|
|
8620
8631
|
|
|
8621
8632
|
const DotTabs = ({
|
|
8622
8633
|
centered: _centered = false,
|
|
@@ -8630,7 +8641,7 @@ const DotTabs = ({
|
|
|
8630
8641
|
variant: _variant = 'standard'
|
|
8631
8642
|
}) => {
|
|
8632
8643
|
const [value, setValue] = useState(_initialValue);
|
|
8633
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8644
|
+
const rootClasses = useStylesWithRootClass(rootClassName$6, className);
|
|
8634
8645
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
8635
8646
|
const handleChange = (_event, val) => {
|
|
8636
8647
|
setValue(val);
|
|
@@ -8680,29 +8691,29 @@ const DotTabs = ({
|
|
|
8680
8691
|
}), void 0);
|
|
8681
8692
|
};
|
|
8682
8693
|
|
|
8683
|
-
const rootClassName$
|
|
8684
|
-
const containerClassName = `${rootClassName$
|
|
8685
|
-
const dropZoneClassName = `${rootClassName$
|
|
8694
|
+
const rootClassName$5 = 'dot-file-upload';
|
|
8695
|
+
const containerClassName$1 = `${rootClassName$5}-container`;
|
|
8696
|
+
const dropZoneClassName = `${rootClassName$5}-drop-zone`;
|
|
8686
8697
|
const StyledFileUploadContainer = styled.div.withConfig({
|
|
8687
8698
|
displayName: "FileUploadstyles__StyledFileUploadContainer",
|
|
8688
8699
|
componentId: "sc-1q8bcxy-0"
|
|
8689
8700
|
})(["", ""], ({
|
|
8690
8701
|
theme
|
|
8691
|
-
}) => css(["&.", "{.dot-max-files-message.dot-max-files-reached{color:", ";}}"], containerClassName, theme.palette.error[500]));
|
|
8702
|
+
}) => css(["&.", "{.dot-max-files-message.dot-max-files-reached{color:", ";}}"], containerClassName$1, theme.palette.error[500]));
|
|
8692
8703
|
const StyledFileUpload = styled.div.withConfig({
|
|
8693
8704
|
displayName: "FileUploadstyles__StyledFileUpload",
|
|
8694
8705
|
componentId: "sc-1q8bcxy-1"
|
|
8695
8706
|
})(["", ""], ({
|
|
8696
8707
|
theme
|
|
8697
|
-
}) => 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$
|
|
8708
|
+
}) => 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));
|
|
8698
8709
|
|
|
8699
|
-
const rootClassName$
|
|
8710
|
+
const rootClassName$4 = 'dot-file-list-item';
|
|
8700
8711
|
const StyledFileListItem = styled(StyledListItem).withConfig({
|
|
8701
8712
|
displayName: "FileListItemstyles__StyledFileListItem",
|
|
8702
8713
|
componentId: "sc-6mp1tz-0"
|
|
8703
8714
|
})(["", ""], ({
|
|
8704
8715
|
theme
|
|
8705
|
-
}) => 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$
|
|
8716
|
+
}) => 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));
|
|
8706
8717
|
|
|
8707
8718
|
const DotFileListItem = ({
|
|
8708
8719
|
ariaLabel,
|
|
@@ -8717,7 +8728,7 @@ const DotFileListItem = ({
|
|
|
8717
8728
|
onKeyPress,
|
|
8718
8729
|
tabIndex: _tabIndex = 0
|
|
8719
8730
|
}) => {
|
|
8720
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8731
|
+
const rootClasses = useStylesWithRootClass(rootClassName$4, className, _error ? 'file-error' : 'file-success');
|
|
8721
8732
|
const defaultIcon = _error ? 'error-solid' : 'check-solid';
|
|
8722
8733
|
const [endIcon, setEndIcon] = useState(defaultIcon);
|
|
8723
8734
|
const handleItemClick = clickedFile => _event => onClick === null || onClick === void 0 ? void 0 : onClick(clickedFile);
|
|
@@ -8753,7 +8764,7 @@ const DotFileListItem = ({
|
|
|
8753
8764
|
children: errorText
|
|
8754
8765
|
}), void 0)]
|
|
8755
8766
|
}), void 0), jsx(DotIconButton, {
|
|
8756
|
-
className: `${rootClassName$
|
|
8767
|
+
className: `${rootClassName$4}-end-icon`,
|
|
8757
8768
|
"data-testid": dataTestId && `${dataTestId}-end-icon`,
|
|
8758
8769
|
disabled: disableDelete,
|
|
8759
8770
|
iconId: endIcon,
|
|
@@ -8882,7 +8893,7 @@ const DotFileUpload = ({
|
|
|
8882
8893
|
const [uploadedFiles, setUploadedFiles] = useState([]);
|
|
8883
8894
|
const [hasMaxFilesError, setHasMaxFilesError] = useState(false);
|
|
8884
8895
|
const isUploadDisabled = disabled || maxFiles && uploadedFiles.length >= maxFiles;
|
|
8885
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8896
|
+
const rootClasses = useStylesWithRootClass(rootClassName$5, className, !_buttonOnly ? dropZoneClassName : '', isUploadDisabled ? 'disabled' : '');
|
|
8886
8897
|
const maxFilesClasses = useStylesWithRootClass('dot-max-files-message', hasMaxFilesError ? 'dot-max-files-reached' : '');
|
|
8887
8898
|
const allowMultiple = maxFiles === undefined || maxFiles > 1;
|
|
8888
8899
|
const setNewlyUploadedFiles = (acceptedFiles, fileRejections) => {
|
|
@@ -8931,7 +8942,7 @@ const DotFileUpload = ({
|
|
|
8931
8942
|
uploadedFiles
|
|
8932
8943
|
});
|
|
8933
8944
|
return jsxs(StyledFileUploadContainer, Object.assign({
|
|
8934
|
-
className: containerClassName
|
|
8945
|
+
className: containerClassName$1
|
|
8935
8946
|
}, {
|
|
8936
8947
|
children: [jsxs(StyledFileUpload, Object.assign({}, getRootProps(), {
|
|
8937
8948
|
"aria-label": ariaLabel,
|
|
@@ -8952,11 +8963,11 @@ const DotFileUpload = ({
|
|
|
8952
8963
|
}), void 0);
|
|
8953
8964
|
};
|
|
8954
8965
|
|
|
8955
|
-
const rootClassName$
|
|
8966
|
+
const rootClassName$3 = 'dot-divider';
|
|
8956
8967
|
const StyledDivider = styled(Divider).withConfig({
|
|
8957
8968
|
displayName: "Dividerstyles__StyledDivider",
|
|
8958
8969
|
componentId: "yu3sip-0"
|
|
8959
|
-
})(["", ""], () => css(["&.", "{}"], rootClassName$
|
|
8970
|
+
})(["", ""], () => css(["&.", "{}"], rootClassName$3));
|
|
8960
8971
|
|
|
8961
8972
|
const DotDivider = ({
|
|
8962
8973
|
absolute,
|
|
@@ -8968,7 +8979,7 @@ const DotDivider = ({
|
|
|
8968
8979
|
orientation,
|
|
8969
8980
|
variant
|
|
8970
8981
|
}) => {
|
|
8971
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
8982
|
+
const rootClasses = useStylesWithRootClass(rootClassName$3, className);
|
|
8972
8983
|
return jsx(StyledDivider, {
|
|
8973
8984
|
absolute: absolute,
|
|
8974
8985
|
"aria-label": ariaLabel,
|
|
@@ -9033,7 +9044,7 @@ const DotPopper = ({
|
|
|
9033
9044
|
}), void 0);
|
|
9034
9045
|
};
|
|
9035
9046
|
|
|
9036
|
-
const rootClassName$
|
|
9047
|
+
const rootClassName$2 = 'dot-draggable-list';
|
|
9037
9048
|
const listItemClassName = 'dot-draggable-list-item';
|
|
9038
9049
|
const StyledDraggableList = styled.div.withConfig({
|
|
9039
9050
|
displayName: "DraggableListstyles__StyledDraggableList",
|
|
@@ -9042,7 +9053,7 @@ const StyledDraggableList = styled.div.withConfig({
|
|
|
9042
9053
|
theme,
|
|
9043
9054
|
width,
|
|
9044
9055
|
draggableHandle
|
|
9045
|
-
}) => css(["&.", " .", "{width:", " !important;.dot-icon{color:", ";}&.react-draggable-dragging{background-color:", ";}&.with-default-cursor{cursor:default;}&.with-handle-grab-cursor ", "{cursor:grab;}}"], rootClassName$
|
|
9056
|
+
}) => 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));
|
|
9046
9057
|
|
|
9047
9058
|
const getOrderedListItems = (layout, listItems) => {
|
|
9048
9059
|
if (!listItems || !layout) return [];
|
|
@@ -9076,7 +9087,7 @@ const DotDraggableList = ({
|
|
|
9076
9087
|
rowHeight: _rowHeight = DEFAULT_LIST_ITEM_HEIGHT,
|
|
9077
9088
|
width: _width = DEFAULT_LIST_WIDTH
|
|
9078
9089
|
}) => {
|
|
9079
|
-
const rootClasses = useStylesWithRootClass(rootClassName$
|
|
9090
|
+
const rootClasses = useStylesWithRootClass(rootClassName$2, className, draggableHandle ? 'with-draggable-handle' : '');
|
|
9080
9091
|
const listItemClasses = useStylesWithRootClass(listItemClassName, draggableHandle && !disableDrag ? 'with-handle-grab-cursor' : '', draggableHandle || disableDrag ? 'with-default-cursor' : '');
|
|
9081
9092
|
const listWidth = isNumber(_width) ? `${_width}px` : _width;
|
|
9082
9093
|
const [orderedItems, setOrderedItems] = useState([]);
|
|
@@ -9130,11 +9141,11 @@ const DotDraggableList = ({
|
|
|
9130
9141
|
}), void 0);
|
|
9131
9142
|
};
|
|
9132
9143
|
|
|
9133
|
-
const rootClassName = 'dot-linear-progress';
|
|
9144
|
+
const rootClassName$1 = 'dot-linear-progress';
|
|
9134
9145
|
const StyledLinearProgress = styled(LinearProgress).withConfig({
|
|
9135
9146
|
displayName: "LinearProgressstyles__StyledLinearProgress",
|
|
9136
9147
|
componentId: "sc-1qhzxb3-0"
|
|
9137
|
-
})(["&.", "{}"], rootClassName);
|
|
9148
|
+
})(["&.", "{}"], rootClassName$1);
|
|
9138
9149
|
|
|
9139
9150
|
const DotLinearProgress = ({
|
|
9140
9151
|
ariaLabel,
|
|
@@ -9145,7 +9156,7 @@ const DotLinearProgress = ({
|
|
|
9145
9156
|
valueBuffer,
|
|
9146
9157
|
variant: _variant = 'indeterminate'
|
|
9147
9158
|
}) => {
|
|
9148
|
-
const rootClasses = useStylesWithRootClass(rootClassName, className);
|
|
9159
|
+
const rootClasses = useStylesWithRootClass(rootClassName$1, className);
|
|
9149
9160
|
return jsx(StyledLinearProgress, {
|
|
9150
9161
|
"aria-label": ariaLabel,
|
|
9151
9162
|
classes: {
|
|
@@ -9159,4 +9170,161 @@ const DotLinearProgress = ({
|
|
|
9159
9170
|
}, void 0);
|
|
9160
9171
|
};
|
|
9161
9172
|
|
|
9162
|
-
|
|
9173
|
+
const rootClassName = 'dot-date-picker';
|
|
9174
|
+
const containerClassName = 'dot-date-picker-container';
|
|
9175
|
+
const rectanglePickersDayClassName = 'dot-rectangle-pickers-day';
|
|
9176
|
+
const StyledDatePickerContainer = styled.div.withConfig({
|
|
9177
|
+
displayName: "DatePickerstyles__StyledDatePickerContainer",
|
|
9178
|
+
componentId: "sc-1to4suu-0"
|
|
9179
|
+
})(["&.", " .full-width{width:100%;}"], rootClassName);
|
|
9180
|
+
const StyledDatePicker = styled(DatePicker).withConfig({
|
|
9181
|
+
displayName: "DatePickerstyles__StyledDatePicker",
|
|
9182
|
+
componentId: "sc-1to4suu-1"
|
|
9183
|
+
})(["", ""], ({
|
|
9184
|
+
theme
|
|
9185
|
+
}) => 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)));
|
|
9186
|
+
const StyledPickersDay = styled(PickersDay).withConfig({
|
|
9187
|
+
displayName: "DatePickerstyles__StyledPickersDay",
|
|
9188
|
+
componentId: "sc-1to4suu-2"
|
|
9189
|
+
})(["", ""], ({
|
|
9190
|
+
theme
|
|
9191
|
+
}) => css(["&.", "{border-radius:", ";&.MuiPickersDay-today{border:1px solid ", ";}}"], rectanglePickersDayClassName, theme.spacing(0.5), theme.palette.primary.main));
|
|
9192
|
+
|
|
9193
|
+
const RectanglePickersDay = pickersDayProps => {
|
|
9194
|
+
return jsx(StyledPickersDay, Object.assign({}, pickersDayProps, {
|
|
9195
|
+
className: rectanglePickersDayClassName,
|
|
9196
|
+
disableRipple: true
|
|
9197
|
+
}), void 0);
|
|
9198
|
+
};
|
|
9199
|
+
const DotDatePicker = ({
|
|
9200
|
+
ariaLabel,
|
|
9201
|
+
autoFocus: _autoFocus = false,
|
|
9202
|
+
className,
|
|
9203
|
+
closeOnSelect: _closeOnSelect = true,
|
|
9204
|
+
'data-testid': dataTestId,
|
|
9205
|
+
disableOpenPicker,
|
|
9206
|
+
disablePast,
|
|
9207
|
+
disabled,
|
|
9208
|
+
displayWeekNumber,
|
|
9209
|
+
displayClearButton: _displayClearButton = true,
|
|
9210
|
+
error,
|
|
9211
|
+
fixedWeekNumber,
|
|
9212
|
+
format,
|
|
9213
|
+
fullWidth: _fullWidth = false,
|
|
9214
|
+
helperText,
|
|
9215
|
+
inputId,
|
|
9216
|
+
inputName,
|
|
9217
|
+
label,
|
|
9218
|
+
locale,
|
|
9219
|
+
onAccept,
|
|
9220
|
+
onChange,
|
|
9221
|
+
onClose,
|
|
9222
|
+
onError,
|
|
9223
|
+
onOpen,
|
|
9224
|
+
open,
|
|
9225
|
+
persistentLabel,
|
|
9226
|
+
readOnly: _readOnly = false,
|
|
9227
|
+
required: _required = false,
|
|
9228
|
+
showDaysOutsideCurrentMonth,
|
|
9229
|
+
value
|
|
9230
|
+
}) => {
|
|
9231
|
+
const rootClasses = useStylesWithRootClass(rootClassName, className, _readOnly ? 'read-only' : '');
|
|
9232
|
+
const containerClasses = useStylesWithRootClass(containerClassName, _fullWidth ? 'full-width' : '', className);
|
|
9233
|
+
useEffect(() => {
|
|
9234
|
+
if (!locale) return;
|
|
9235
|
+
const userLocaleName = dayjs.locale();
|
|
9236
|
+
const userLocaleProps = dayjs.Ls[dayjs.locale()];
|
|
9237
|
+
dayjs.extend(updateLocale);
|
|
9238
|
+
dayjs.updateLocale(userLocaleName, Object.assign(Object.assign({}, userLocaleProps), locale));
|
|
9239
|
+
}, [locale]);
|
|
9240
|
+
const dateFormat = format || 'YYYY-MM-DD';
|
|
9241
|
+
const handleChange = (changedValue, context) => {
|
|
9242
|
+
if (!onChange || changedValue && !changedValue.isValid()) return;
|
|
9243
|
+
onChange(changedValue ? changedValue.format(dateFormat) : null, context);
|
|
9244
|
+
};
|
|
9245
|
+
const handleAccept = changedValue => {
|
|
9246
|
+
if (!onAccept) return;
|
|
9247
|
+
onAccept(changedValue ? changedValue.format(dateFormat) : null);
|
|
9248
|
+
};
|
|
9249
|
+
const createActionBar = () => {
|
|
9250
|
+
const actionBar = {
|
|
9251
|
+
actions: []
|
|
9252
|
+
};
|
|
9253
|
+
if (_displayClearButton) {
|
|
9254
|
+
actionBar.actions.push('clear');
|
|
9255
|
+
}
|
|
9256
|
+
return actionBar;
|
|
9257
|
+
};
|
|
9258
|
+
return jsx(StyledDatePickerContainer, Object.assign({
|
|
9259
|
+
className: containerClasses,
|
|
9260
|
+
"data-testid": dataTestId
|
|
9261
|
+
}, {
|
|
9262
|
+
children: jsxs(LocalizationProvider, Object.assign({
|
|
9263
|
+
dateAdapter: AdapterDayjs
|
|
9264
|
+
}, {
|
|
9265
|
+
children: [persistentLabel && jsx(DotInputLabel, Object.assign({}, {
|
|
9266
|
+
'data-testid': 'date-picker-persistent-label',
|
|
9267
|
+
disabled,
|
|
9268
|
+
error,
|
|
9269
|
+
id: inputId,
|
|
9270
|
+
label,
|
|
9271
|
+
required: _required
|
|
9272
|
+
}), void 0), jsx(StyledDatePicker, {
|
|
9273
|
+
"aria-label": ariaLabel,
|
|
9274
|
+
autoFocus: _autoFocus,
|
|
9275
|
+
closeOnSelect: _closeOnSelect,
|
|
9276
|
+
className: rootClasses,
|
|
9277
|
+
disableOpenPicker: disableOpenPicker || _readOnly || disabled,
|
|
9278
|
+
disablePast: disablePast,
|
|
9279
|
+
disabled: disabled,
|
|
9280
|
+
displayWeekNumber: displayWeekNumber,
|
|
9281
|
+
fixedWeekNumber: fixedWeekNumber,
|
|
9282
|
+
format: format,
|
|
9283
|
+
label: persistentLabel ? null : label,
|
|
9284
|
+
onAccept: handleAccept,
|
|
9285
|
+
onChange: handleChange,
|
|
9286
|
+
onClose: onClose,
|
|
9287
|
+
onError: onError,
|
|
9288
|
+
onOpen: onOpen,
|
|
9289
|
+
open: open,
|
|
9290
|
+
showDaysOutsideCurrentMonth: showDaysOutsideCurrentMonth,
|
|
9291
|
+
slots: {
|
|
9292
|
+
openPickerButton: pickerButtonProps => jsxs(Fragment$1, {
|
|
9293
|
+
children: [error && jsx(DotIcon, {
|
|
9294
|
+
className: "dot-error-icon",
|
|
9295
|
+
"data-testid": "dot-error-icon",
|
|
9296
|
+
iconId: "error-solid"
|
|
9297
|
+
}, void 0), jsx(DotIconButton, {
|
|
9298
|
+
"data-testid": "date-picker-open-btn",
|
|
9299
|
+
iconId: "calendar",
|
|
9300
|
+
onClick: pickerButtonProps.onClick,
|
|
9301
|
+
size: "small"
|
|
9302
|
+
}, void 0)]
|
|
9303
|
+
}, void 0),
|
|
9304
|
+
day: dayProps => jsx(RectanglePickersDay, Object.assign({}, dayProps), void 0)
|
|
9305
|
+
},
|
|
9306
|
+
slotProps: {
|
|
9307
|
+
actionBar: createActionBar(),
|
|
9308
|
+
textField: {
|
|
9309
|
+
required: _required,
|
|
9310
|
+
helperText,
|
|
9311
|
+
error,
|
|
9312
|
+
focused: _readOnly ? false : undefined,
|
|
9313
|
+
inputProps: {
|
|
9314
|
+
className: 'dot-input',
|
|
9315
|
+
'data-testid': 'dot-date-picker-input'
|
|
9316
|
+
},
|
|
9317
|
+
fullWidth: _fullWidth,
|
|
9318
|
+
name: inputName
|
|
9319
|
+
},
|
|
9320
|
+
field: {
|
|
9321
|
+
readOnly: _readOnly
|
|
9322
|
+
}
|
|
9323
|
+
},
|
|
9324
|
+
value: value && dayjs(value)
|
|
9325
|
+
}, void 0)]
|
|
9326
|
+
}), void 0)
|
|
9327
|
+
}), void 0);
|
|
9328
|
+
};
|
|
9329
|
+
|
|
9330
|
+
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 };
|