@digital-ai/dot-components 2.18.7 → 2.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/index.esm.js +835 -562
  2. package/index.umd.js +1079 -769
  3. package/lib/components/carousel/Carousel.d.ts +31 -0
  4. package/lib/components/carousel/Carousel.styles.d.ts +6 -0
  5. package/lib/components/index.d.ts +6 -2
  6. package/lib/components/table/Table.d.ts +2 -68
  7. package/lib/components/table/TableBody.d.ts +4 -4
  8. package/lib/components/table/TableHeader.d.ts +1 -23
  9. package/lib/components/table/TableHeaderCell.d.ts +1 -1
  10. package/lib/components/table/TableRow.d.ts +4 -10
  11. package/lib/components/table/TableRowEmpty.d.ts +7 -0
  12. package/lib/components/table/collapsible-table/CollapsibleTable.d.ts +2 -0
  13. package/lib/components/table/{TableBodyCollapsibleTable.styles.d.ts → collapsible-table/CollapsibleTable.styles.d.ts} +1 -1
  14. package/lib/components/table/collapsible-table/CollapsibleTableBody.d.ts +2 -0
  15. package/lib/components/table/collapsible-table/ExpandCollapseCell.d.ts +3 -0
  16. package/lib/components/table/{TableBodyExpandCollapseCell.styles.d.ts → collapsible-table/ExpandCollapseCell.styles.d.ts} +1 -1
  17. package/lib/components/table/collapsible-table/index.d.ts +4 -0
  18. package/lib/components/table/collapsible-table/interfaces.d.ts +43 -0
  19. package/lib/components/table/index.d.ts +2 -3
  20. package/lib/components/table/utils/helpers.d.ts +2 -1
  21. package/lib/components/table/utils/interfaces.d.ts +87 -0
  22. package/lib/components/table/utils/models.d.ts +5 -21
  23. package/package.json +1 -1
  24. package/lib/components/table/TableBodyCollapsibleTable.d.ts +0 -8
  25. package/lib/components/table/TableBodyExpandCollapseCell.d.ts +0 -8
package/index.esm.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
  import { useEffect, useState, useRef, useMemo, useContext, createContext, forwardRef, useCallback, createElement, Fragment as Fragment$1, useLayoutEffect } from 'react';
4
- import { Tooltip, Icon, Typography, Accordion, AccordionSummary, AccordionDetails, AccordionActions, InputAdornment, InputLabel, TextField, Toolbar, Alert, Fade, StyledEngineProvider, Avatar, Button, Link, List, ListSubheader, Divider, CircularProgress, Popper, MenuList, MenuItem, Paper, ClickAwayListener, Drawer, IconButton, ListItem, ListItemButton, Collapse, ListItemIcon, 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, Stepper, Step, StepLabel, StepContent, TablePagination, TableContainer, TableCell, TableRow, TableBody, TableSortLabel, TableHead, Table, Tabs, Tab, LinearProgress } from '@mui/material';
4
+ import { Tooltip, Icon, Typography, Accordion, AccordionSummary, AccordionDetails, AccordionActions, InputAdornment, InputLabel, TextField, Toolbar, Alert, Fade, StyledEngineProvider, Avatar, Button, Link, List, ListSubheader, Divider, CircularProgress, Popper, MenuList, MenuItem, Paper, ClickAwayListener, Drawer, IconButton, ListItem, ListItemButton, Collapse, ListItemIcon, 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, Stepper, Step, StepLabel, StepContent, TablePagination, TableContainer, TableBody, TableCell, TableRow, TableSortLabel, TableHead, Table, Tabs, Tab, LinearProgress, Slide } 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';
@@ -54,11 +54,11 @@ const DotTooltip = ({
54
54
  }), void 0) : children;
55
55
  };
56
56
 
57
- const rootClassName$17 = 'dot-icon';
57
+ const rootClassName$16 = 'dot-icon';
58
58
  const StyledIcon = styled(Icon).withConfig({
59
59
  displayName: "Iconstyles__StyledIcon",
60
60
  componentId: "st0ybo-0"
61
- })(["", ""], () => 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$17));
61
+ })(["", ""], () => 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$16));
62
62
 
63
63
  const DotIcon = ({
64
64
  ariaLabel,
@@ -69,7 +69,7 @@ const DotIcon = ({
69
69
  iconId,
70
70
  tooltip
71
71
  }) => {
72
- const rootClasses = useStylesWithRootClass(rootClassName$17, className);
72
+ const rootClasses = useStylesWithRootClass(rootClassName$16, className);
73
73
  return jsx(DotTooltip, Object.assign({
74
74
  title: tooltip
75
75
  }, {
@@ -133,7 +133,7 @@ const DotTypography = ({
133
133
  }), void 0);
134
134
  };
135
135
 
136
- const rootClassName$16 = 'dot-accordion';
136
+ const rootClassName$15 = 'dot-accordion';
137
137
  const summaryClassName = 'dot-accordion-summary';
138
138
  const detailClassName = 'dot-accordion-details';
139
139
  const StyledAccordion = styled(Accordion).withConfig({
@@ -141,7 +141,7 @@ const StyledAccordion = styled(Accordion).withConfig({
141
141
  componentId: "sc-1amx4r3-0"
142
142
  })(["", ""], ({
143
143
  theme
144
- }) => 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$16, summaryClassName, theme.spacing(1), theme.spacing(5), theme.spacing(1.5), theme.spacing(-1.5)));
144
+ }) => 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$15, summaryClassName, theme.spacing(1), theme.spacing(5), theme.spacing(1.5), theme.spacing(-1.5)));
145
145
 
146
146
  const DotAccordion = ({
147
147
  actions,
@@ -158,7 +158,7 @@ const DotAccordion = ({
158
158
  summary,
159
159
  noWrap: _noWrap = true
160
160
  }) => {
161
- const rootClasses = useStylesWithRootClass(rootClassName$16, className);
161
+ const rootClasses = useStylesWithRootClass(rootClassName$15, className);
162
162
  const [elevation, setElevation] = useState();
163
163
  useEffect(() => {
164
164
  if (onChange && expanded === undefined) {
@@ -218,7 +218,7 @@ const adornmentIconStyles = () => css(["font-size:24px;height:24px;padding:0;wid
218
218
  const pickerInputStyles = theme => 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{", ";}"], theme.spacing(0.5), theme.palette.error.main, adornmentIconStyles(), theme.spacing(2), theme.spacing(1.5, 0, 1.5, 2), formHelperTextRootStyles(theme));
219
219
  const readOnlyStyles = theme => css(["background:", ";color:", ";border-color:", ";-webkit-text-fill-color:", ";input.Mui-disabled{-webkit-text-fill-color:", ";}.dot-chip{background:", ";opacity:1;}"], theme.palette.grey[50], theme.palette.grey[500], theme.palette.grey[300], theme.palette.grey[500], theme.palette.grey[500], theme.palette.layer.n0);
220
220
 
221
- const rootClassName$15 = 'dot-text-field';
221
+ const rootClassName$14 = 'dot-text-field';
222
222
  const rootSelectClassName = 'dot-select-field';
223
223
  const labelClassName = 'dot-input-label';
224
224
  const errorClassName = 'dot-error';
@@ -247,15 +247,15 @@ const StyledTextField = styled(TextField).withConfig({
247
247
  })(["", ""], ({
248
248
  theme,
249
249
  InputProps
250
- }) => 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;}.MuiInputLabel-root.Mui-disabled{color:", ";}&.", " .MuiInputBase-root,.MuiInputBase-root.Mui-disabled{", ";}}.dot-select,.dot-input{&.", ",&.Mui-disabled{", ";}}&.", " .", "{margin-right:", ";}&.", ",&.", "{.", "{color:", ";p{font-size:", "px;margin:0;}.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:not(.", "){background-color:transparent;}.MuiSelect-icon{right:", ";}&.", "{.MuiInputLabel-animated{color:", ";}.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiFormLabel-root.Mui-focused{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiInputLabel-animated,.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiInputLabel-animated,.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}.MuiOutlinedInput-adornedStart{padding-left:12px;&.", " .", "{border-color:", ";}}.MuiInputLabel-outlined.MuiInputLabel-shrink:not(.MuiInputLabel-animated){color:", ";}.MuiInputBase-inputAdornedStart{padding-left:12px;}.MuiInputBase-inputAdornedEnd{padding-right:12px;}.MuiFormHelperText-root{", ";}}"], rootClassName$15, InputProps.startAdornment ? `18px 12px 18px 0px` : `18px 12px`, theme.palette.layer.n500, readOnlyClassName$1, readOnlyStyles(theme), readOnlyClassName$1, readOnlyStyles(theme), rootSelectClassName, adornmentIconClassName, theme.spacing(2), rootSelectClassName, rootClassName$15, adornmentIconClassName, theme.palette.layer.n700, theme.typography.body2.fontSize, theme.spacing(1.5), readOnlyClassName$1, InputProps.endAdornment ? `44px` : `12px`, successClassName, theme.palette.secondary.main, 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.warning.main, adornmentIconClassName, theme.palette.warning.main, warningClassName, fieldsetClassName, theme.palette.warning[500], theme.palette.grey[700], formHelperTextRootStyles(theme)));
250
+ }) => 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;}.MuiInputLabel-root.Mui-disabled{color:", ";}&.", " .MuiInputBase-root,.MuiInputBase-root.Mui-disabled{", ";}}.dot-select,.dot-input{&.", ",&.Mui-disabled{", ";}}&.", " .", "{margin-right:", ";}&.", ",&.", "{.", "{color:", ";p{font-size:", "px;margin:0;}.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:not(.", "){background-color:transparent;}.MuiSelect-icon{right:", ";}&.", "{.MuiInputLabel-animated{color:", ";}.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiFormLabel-root.Mui-focused{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiInputLabel-animated,.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}&.", "{.MuiOutlinedInput-notchedOutline{border-color:", ";}.MuiInputLabel-animated,.MuiInputLabel-outlined.MuiInputLabel-shrink{color:", ";}.", " .dot-icon{color:", ";}}.MuiOutlinedInput-adornedStart{padding-left:12px;&.", " .", "{border-color:", ";}}.MuiInputLabel-outlined.MuiInputLabel-shrink:not(.MuiInputLabel-animated){color:", ";}.MuiInputBase-inputAdornedStart{padding-left:12px;}.MuiInputBase-inputAdornedEnd{padding-right:12px;}.MuiFormHelperText-root{", ";}}"], rootClassName$14, InputProps.startAdornment ? `18px 12px 18px 0px` : `18px 12px`, theme.palette.layer.n500, readOnlyClassName$1, readOnlyStyles(theme), readOnlyClassName$1, readOnlyStyles(theme), rootSelectClassName, adornmentIconClassName, theme.spacing(2), rootSelectClassName, rootClassName$14, adornmentIconClassName, theme.palette.layer.n700, theme.typography.body2.fontSize, theme.spacing(1.5), readOnlyClassName$1, InputProps.endAdornment ? `44px` : `12px`, successClassName, theme.palette.secondary.main, 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.warning.main, adornmentIconClassName, theme.palette.warning.main, warningClassName, fieldsetClassName, theme.palette.warning[500], theme.palette.grey[700], formHelperTextRootStyles(theme)));
251
251
 
252
- const rootClassName$14 = 'dot-action-toolbar';
252
+ const rootClassName$13 = 'dot-action-toolbar';
253
253
  const StyledToolbar = styled(Toolbar).withConfig({
254
254
  displayName: "ActionToolbarstyles__StyledToolbar",
255
255
  componentId: "sc-5llm03-0"
256
256
  })(["", ""], ({
257
257
  theme
258
- }) => css(["&.", "{border-bottom:1px solid ", ";.", " .MuiInputBase-root{margin-bottom:0;}}"], rootClassName$14, theme.palette.grey[100], rootClassName$15));
258
+ }) => css(["&.", "{border-bottom:1px solid ", ";.", " .MuiInputBase-root{margin-bottom:0;}}"], rootClassName$13, theme.palette.grey[100], rootClassName$14));
259
259
 
260
260
  const DotActionToolbar = ({
261
261
  ariaLabel,
@@ -264,7 +264,7 @@ const DotActionToolbar = ({
264
264
  'data-testid': dataTestId,
265
265
  variant: _variant = 'dense'
266
266
  }) => {
267
- const rootClasses = useStylesWithRootClass(rootClassName$14, className);
267
+ const rootClasses = useStylesWithRootClass(rootClassName$13, className);
268
268
  return jsx(StyledToolbar, Object.assign({
269
269
  "aria-label": ariaLabel,
270
270
  className: rootClasses,
@@ -275,13 +275,13 @@ const DotActionToolbar = ({
275
275
  }), void 0);
276
276
  };
277
277
 
278
- const rootClassName$13 = 'dot-alert-banner';
278
+ const rootClassName$12 = 'dot-alert-banner';
279
279
  const StyledAlertBanner = styled(Alert).withConfig({
280
280
  displayName: "AlertBannerstyles__StyledAlertBanner",
281
281
  componentId: "sc-1u3aqgz-0"
282
282
  })(["", ""], ({
283
283
  theme
284
- }) => 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$13, 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]));
284
+ }) => 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$12, 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]));
285
285
 
286
286
  var LatoRegular = "data:font/woff;base64,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";
287
287
 
@@ -966,7 +966,7 @@ const DotAlertBanner = ({
966
966
  success: AlertBannerIcon('check-solid'),
967
967
  warning: AlertBannerIcon('warning-solid')
968
968
  };
969
- const rootClasses = useStylesWithRootClass(rootClassName$13, severity, className);
969
+ const rootClasses = useStylesWithRootClass(rootClassName$12, severity, className);
970
970
  /* For simple string use default component, for everything else use 'div' */
971
971
  const typographyComponent = isString$1(children) ? undefined : 'div';
972
972
  return jsx(StyledAlertBanner, Object.assign({
@@ -1623,7 +1623,7 @@ const useDotCoreApiContext = () => {
1623
1623
  return useContext(DotCoreApiContext);
1624
1624
  };
1625
1625
 
1626
- const rootClassName$12 = 'dot-avatar';
1626
+ const rootClassName$11 = 'dot-avatar';
1627
1627
  const avatarSpacing = {
1628
1628
  small: 3,
1629
1629
  medium: 5,
@@ -1634,7 +1634,7 @@ const StyledAvatar = styled(Avatar).withConfig({
1634
1634
  componentId: "sc-13bzj2s-0"
1635
1635
  })(["", ""], ({
1636
1636
  theme
1637
- }) => 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$12, ({
1637
+ }) => 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$11, ({
1638
1638
  color
1639
1639
  }) => {
1640
1640
  return color && theme.palette.avatarColors[color] ? theme.palette.avatarColors[color].backgroundColor : theme.palette.avatarColors['default'].backgroundColor;
@@ -1710,7 +1710,7 @@ const DotAvatar = ({
1710
1710
  variant: _variant = 'circular',
1711
1711
  style
1712
1712
  }) => {
1713
- const rootClasses = useStylesWithRootClass(rootClassName$12, className);
1713
+ const rootClasses = useStylesWithRootClass(rootClassName$11, className);
1714
1714
  const getAvatarColor = () => {
1715
1715
  if ((style === null || style === void 0 ? void 0 : style.color) !== undefined) return 'inherit';
1716
1716
  if (color) return color;
@@ -1751,13 +1751,13 @@ const DotAvatar = ({
1751
1751
  }), void 0);
1752
1752
  };
1753
1753
 
1754
- const rootClassName$11 = 'dot-button';
1754
+ const rootClassName$10 = 'dot-button';
1755
1755
  const StyledButton = styled(Button).withConfig({
1756
1756
  displayName: "Buttonstyles__StyledButton",
1757
1757
  componentId: "sx99hh-0"
1758
1758
  })(["", ""], ({
1759
1759
  theme
1760
- }) => css(["&.", "{margin:", ";padding:", ";min-width:auto;white-space:nowrap;&:hover{background-color:", ";}&:active{background-color:", ";}&.MuiButton-containedSecondary{background-color:", ";&:hover{background-color:", ";}&:active{background-color:", ";}}&.MuiButton-outlined,&.MuiButton-text{&:hover{background-color:", ";}&:active{background-color:", ";}}&.MuiButton-outlined{border-color:", ";color:", ";}&.MuiButton-text{background-color:transparent;color:", ";}&.Mui-disabled{background-color:", ";color:", ";&.MuiButton-outlined{border-color:", ";}&.MuiButton-text,&.MuiButton-containedSecondary{background-color:transparent;}}&:not(.MuiButton-sizeLarge):not(.MuiButton-sizeSmall){height:", ";}.dot-icon{display:flex;padding:0;}}"], rootClassName$11, theme.spacing(0.5), theme.spacing(0.75, 2), theme.palette.primary[800], theme.palette.primary[400], theme.palette.error[500], theme.palette.error[600], theme.palette.error[400], theme.palette.grey[50], theme.palette.grey[100], theme.palette.grey[300], theme.palette.grey[700], theme.palette.grey[700], theme.palette.grey[50], theme.palette.grey[400], theme.palette.grey[200], theme.spacing(5)));
1760
+ }) => css(["&.", "{margin:", ";padding:", ";min-width:auto;white-space:nowrap;&:hover{background-color:", ";}&:active{background-color:", ";}&.MuiButton-containedSecondary{background-color:", ";&:hover{background-color:", ";}&:active{background-color:", ";}}&.MuiButton-outlined,&.MuiButton-text{&:hover{background-color:", ";}&:active{background-color:", ";}}&.MuiButton-outlined{border-color:", ";color:", ";}&.MuiButton-text{background-color:transparent;color:", ";}&.Mui-disabled{background-color:", ";color:", ";&.MuiButton-outlined{border-color:", ";}&.MuiButton-text,&.MuiButton-containedSecondary{background-color:transparent;}}&:not(.MuiButton-sizeLarge):not(.MuiButton-sizeSmall){height:", ";}.dot-icon{display:flex;padding:0;}}"], rootClassName$10, theme.spacing(0.5), theme.spacing(0.75, 2), theme.palette.primary[800], theme.palette.primary[400], theme.palette.error[500], theme.palette.error[600], theme.palette.error[400], theme.palette.grey[50], theme.palette.grey[100], theme.palette.grey[300], theme.palette.grey[700], theme.palette.grey[700], theme.palette.grey[50], theme.palette.grey[400], theme.palette.grey[200], theme.spacing(5)));
1761
1761
 
1762
1762
  /** This component wraps the Button component from @material-ui. */
1763
1763
  const DotButton = /*#__PURE__*/forwardRef(({
@@ -1780,7 +1780,7 @@ const DotButton = /*#__PURE__*/forwardRef(({
1780
1780
  tooltip,
1781
1781
  type: _type = 'primary'
1782
1782
  }, ref) => {
1783
- const rootClasses = useStylesWithRootClass(rootClassName$11, className);
1783
+ const rootClasses = useStylesWithRootClass(rootClassName$10, className);
1784
1784
  let color;
1785
1785
  let variant;
1786
1786
  switch (_type) {
@@ -1831,11 +1831,11 @@ const DotButton = /*#__PURE__*/forwardRef(({
1831
1831
  }), void 0);
1832
1832
  });
1833
1833
 
1834
- const rootClassName$10 = 'dot-link';
1834
+ const rootClassName$$ = 'dot-link';
1835
1835
  const StyledLink = styled(Link).withConfig({
1836
1836
  displayName: "Linkstyles__StyledLink",
1837
1837
  componentId: "sc-1lpmaww-0"
1838
- })(["", ""], () => css(["&.", "{cursor:pointer;&:hover.MuiLink-underlineHover{text-decoration:none;}}"], rootClassName$10));
1838
+ })(["", ""], () => css(["&.", "{cursor:pointer;&:hover.MuiLink-underlineHover{text-decoration:none;}}"], rootClassName$$));
1839
1839
 
1840
1840
  const DotLink = ({
1841
1841
  ariaLabel,
@@ -1854,7 +1854,7 @@ const DotLink = ({
1854
1854
  tooltip,
1855
1855
  underline: _underline = 'always'
1856
1856
  }) => {
1857
- const rootClasses = useStylesWithRootClass(rootClassName$10, className);
1857
+ const rootClasses = useStylesWithRootClass(rootClassName$$, className);
1858
1858
  useEffect(() => {
1859
1859
  // Include a console warning if the link is not a string and no ariaLabel is provided
1860
1860
  if (!isString$1(children) && !ariaLabel) {
@@ -1901,7 +1901,7 @@ const CreateUUID = () => {
1901
1901
  });
1902
1902
  };
1903
1903
 
1904
- const rootClassName$$ = 'dot-list';
1904
+ const rootClassName$_ = 'dot-list';
1905
1905
  const listItemRootClass = 'dot-list-item';
1906
1906
  const nestedListClassName = 'dot-nested-list';
1907
1907
  const nestedDrawerClassName = 'dot-nested-drawer';
@@ -1910,7 +1910,7 @@ const StyledList = styled(List).withConfig({
1910
1910
  componentId: "wxwqwr-0"
1911
1911
  })(["", ""], ({
1912
1912
  theme
1913
- }) => css(["&.", "{background:", ";.dot-icon{color:", ";}&.", " .", "{padding-left:", ";}.MuiCollapse-root{padding-top:", ";margin-bottom:", ";.MuiCollapse-wrapper{margin:", ";overflow:hidden;width:calc(100% - ", ");}.MuiListSubheader-root .MuiTypography-root{padding:", ";}}.MuiListSubheader-root{padding:0;.MuiTypography-root{padding:", ";}}}"], rootClassName$$, theme.palette.layer.n0, theme.palette.layer.n700, nestedListClassName, listItemRootClass, theme.spacing(4), theme.spacing(1), theme.spacing(-1), theme.spacing(0, 2), theme.spacing(4), theme.spacing(1, 0), theme.spacing(1)));
1913
+ }) => css(["&.", "{background:", ";.dot-icon{color:", ";}&.", " .", "{padding-left:", ";}.MuiCollapse-root{padding-top:", ";margin-bottom:", ";.MuiCollapse-wrapper{margin:", ";overflow:hidden;width:calc(100% - ", ");}.MuiListSubheader-root .MuiTypography-root{padding:", ";}}.MuiListSubheader-root{padding:0;.MuiTypography-root{padding:", ";}}}"], rootClassName$_, theme.palette.layer.n0, theme.palette.layer.n700, nestedListClassName, listItemRootClass, theme.spacing(4), theme.spacing(1), theme.spacing(-1), theme.spacing(0, 2), theme.spacing(4), theme.spacing(1, 0), theme.spacing(1)));
1914
1914
 
1915
1915
  const getChevronIcon = (nestedListType, isOpened) => {
1916
1916
  if (nestedListType !== 'expandable') {
@@ -1956,11 +1956,11 @@ const DotListDivider = ({
1956
1956
  }, void 0);
1957
1957
  };
1958
1958
 
1959
- const rootClassName$_ = 'dot-progress';
1959
+ const rootClassName$Z = 'dot-progress';
1960
1960
  const StyledCircularProgress = styled(CircularProgress).withConfig({
1961
1961
  displayName: "Progressstyles__StyledCircularProgress",
1962
1962
  componentId: "sc-1gs77rb-0"
1963
- })(["&.", "{&.MuiCircularProgress-colorSecondary{color:#649a3d;}}"], rootClassName$_);
1963
+ })(["&.", "{&.MuiCircularProgress-colorSecondary{color:#649a3d;}}"], rootClassName$Z);
1964
1964
 
1965
1965
  const DotProgress = ({
1966
1966
  ariaLabel,
@@ -1973,7 +1973,7 @@ const DotProgress = ({
1973
1973
  value,
1974
1974
  variant: _variant = 'indeterminate'
1975
1975
  }) => {
1976
- const rootClasses = useStylesWithRootClass(rootClassName$_, className);
1976
+ const rootClasses = useStylesWithRootClass(rootClassName$Z, className);
1977
1977
  useEffect(() => {
1978
1978
  if (!ariaLabel) {
1979
1979
  console.warn('a11y: DotProgress must have an ariaLabel to describe the progress component');
@@ -2015,23 +2015,23 @@ var variables = /*#__PURE__*/Object.freeze({
2015
2015
  levelTop: levelTop
2016
2016
  });
2017
2017
 
2018
- const rootClassName$Z = 'dot-popper';
2018
+ const rootClassName$Y = 'dot-popper';
2019
2019
  const StyledPopper$1 = styled(Popper).withConfig({
2020
2020
  displayName: "Popperstyles__StyledPopper",
2021
2021
  componentId: "sd1h8p-0"
2022
2022
  })(["", ""], ({
2023
2023
  theme
2024
- }) => css(["&.", "{font-family:", ";font-size:", "px;}"], rootClassName$Z, theme.typography.fontFamily, theme.typography.body1.fontSize));
2024
+ }) => css(["&.", "{font-family:", ";font-size:", "px;}"], rootClassName$Y, theme.typography.fontFamily, theme.typography.body1.fontSize));
2025
2025
 
2026
2026
  const flyoutMenuClassName = 'dot-flyout-menu';
2027
- const rootClassName$Y = 'dot-menu';
2027
+ const rootClassName$X = 'dot-menu';
2028
2028
  const getListMaxHeight = maxHeight => isString$1(maxHeight) ? maxHeight : `${maxHeight}px`;
2029
2029
  const StyledPopper = styled(Popper).withConfig({
2030
2030
  displayName: "Menustyles__StyledPopper",
2031
2031
  componentId: "sc-134fmqu-0"
2032
2032
  })(["", ""], ({
2033
2033
  theme
2034
- }) => css(["&.", "{font-family:", ";font-size:", "px;z-index:", ";}&.", ",&.", "{&.loading .MuiPaper-root{align-items:center;display:flex;justify-content:center;min-height:200px;min-width:200px;}ul,.dot-action-item{.dot-action-item-text{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis;}}ul{box-sizing:content-box;min-width:112px;overflow:auto;", " .dot-li{min-height:auto;}}.dot-action-item{height:", ";border-top:1px solid ", ";line-height:inherit;button.dot-button{border-radius:", ";justify-content:flex-start;height:100%;margin:0;&:focus-visible{background-color:", ";}.MuiButton-label{gap:", ";.MuiButton-startIcon{margin-left:0;.dot-icon{flex-shrink:0;}}}}}}"], rootClassName$Z, theme.typography.fontFamily, theme.typography.body1.fontSize, levelSecond, rootClassName$Y, rootClassName$Z, ({
2034
+ }) => css(["&.", "{font-family:", ";font-size:", "px;z-index:", ";}&.", ",&.", "{&.loading .MuiPaper-root{align-items:center;display:flex;justify-content:center;min-height:200px;min-width:200px;}ul,.dot-action-item{.dot-action-item-text{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis;}}ul{box-sizing:content-box;min-width:112px;overflow:auto;", " .dot-li{min-height:auto;}}.dot-action-item{height:", ";border-top:1px solid ", ";line-height:inherit;button.dot-button{border-radius:", ";justify-content:flex-start;height:100%;margin:0;&:focus-visible{background-color:", ";}.MuiButton-label{gap:", ";.MuiButton-startIcon{margin-left:0;.dot-icon{flex-shrink:0;}}}}}}"], rootClassName$Y, theme.typography.fontFamily, theme.typography.body1.fontSize, levelSecond, rootClassName$X, rootClassName$Y, ({
2035
2035
  $maxHeight
2036
2036
  }) => $maxHeight !== undefined && `
2037
2037
  max-height: ${getListMaxHeight($maxHeight)};
@@ -2041,7 +2041,7 @@ const MENU_ITEM_HEIGHT_NORMAL = 48;
2041
2041
  const MENU_ITEM_HEIGHT_DENSE = 36;
2042
2042
  const DEFAULT_MAX_VISIBLE_ITEMS = 7;
2043
2043
 
2044
- const rootClassName$X = 'dot-ul';
2044
+ const rootClassName$W = 'dot-ul';
2045
2045
  const listItemClassName$1 = 'dot-li';
2046
2046
  const listItemWithSubmenuClassName = 'dot-li-with-submenu';
2047
2047
  const StyledMenuList = styled(MenuList).withConfig({
@@ -2049,7 +2049,7 @@ const StyledMenuList = styled(MenuList).withConfig({
2049
2049
  componentId: "yqdwwg-0"
2050
2050
  })(["", ""], ({
2051
2051
  theme
2052
- }) => css(["&.", "{.dot-li{font-size:", "px;justify-content:space-between;gap:", ";&:hover{background:", ";}&.Mui-selected,&.Mui-selected:hover{background:", ";}&.", "{padding-right:", ";}}}"], rootClassName$X, theme.typography.body1.fontSize, theme.spacing(3), hoverGray, lightSelectedGray, listItemWithSubmenuClassName, theme.spacing(0.5)));
2052
+ }) => css(["&.", "{.dot-li{font-size:", "px;justify-content:space-between;gap:", ";&:hover{background:", ";}&.Mui-selected,&.Mui-selected:hover{background:", ";}&.", "{padding-right:", ";}}}"], rootClassName$W, theme.typography.body1.fontSize, theme.spacing(3), hoverGray, lightSelectedGray, listItemWithSubmenuClassName, theme.spacing(0.5)));
2053
2053
 
2054
2054
  const getDefaultItemHeight = isDense => isDense ? MENU_ITEM_HEIGHT_DENSE : MENU_ITEM_HEIGHT_NORMAL;
2055
2055
  const calculateItemHeight = (isDense, customItemHeight, menuItemHeight) => {
@@ -2121,7 +2121,7 @@ const DotMenuList = /*#__PURE__*/forwardRef(({
2121
2121
  onSubMenuCreate,
2122
2122
  selectedKey
2123
2123
  }, ref) => {
2124
- const rootClasses = useStylesWithRootClass(rootClassName$X, className);
2124
+ const rootClasses = useStylesWithRootClass(rootClassName$W, className);
2125
2125
  const [activeSubmenu, setActiveSubmenu] = useState(null);
2126
2126
  const [subItemAnchorEl, setSubItemAnchorEl] = useState(null);
2127
2127
  const openSubmenu = (target, itemKey) => {
@@ -2232,7 +2232,7 @@ const DotMenu = ({
2232
2232
  open: _open = false,
2233
2233
  selectedKey
2234
2234
  }) => {
2235
- const rootClasses = useStylesWithRootClass(rootClassName$Y, className, _loading ? 'loading' : '');
2235
+ const rootClasses = useStylesWithRootClass(rootClassName$X, className, _loading ? 'loading' : '');
2236
2236
  const isSubmenu = checkIfSubmenu(anchorEl);
2237
2237
  const hasSubItems = checkForSubItems(_menuItems);
2238
2238
  // Timeout object is customizable when Menu component is either submenu
@@ -2323,13 +2323,13 @@ const DotMenu = ({
2323
2323
  }), void 0);
2324
2324
  };
2325
2325
 
2326
- const rootClassName$W = 'dot-drawer';
2326
+ const rootClassName$V = 'dot-drawer';
2327
2327
  const StyledDrawer = styled(Drawer).withConfig({
2328
2328
  displayName: "Drawerstyles__StyledDrawer",
2329
2329
  componentId: "sc-1uiowy0-0"
2330
2330
  })(["", ""], ({
2331
2331
  theme
2332
- }) => css(["&.", " .MuiBackdrop-root{background-color:", ";}.dot-drawer-paper{height:", ";padding:", ";width:", ";}"], rootClassName$W, alpha(theme.palette.grey[900], 0.7), ({
2332
+ }) => css(["&.", " .MuiBackdrop-root{background-color:", ";}.dot-drawer-paper{height:", ";padding:", ";width:", ";}"], rootClassName$V, alpha(theme.palette.grey[900], 0.7), ({
2333
2333
  height,
2334
2334
  anchor
2335
2335
  }) => anchor === 'left' || anchor === 'right' ? '100%' : height, theme.spacing(2), ({
@@ -2337,21 +2337,21 @@ const StyledDrawer = styled(Drawer).withConfig({
2337
2337
  anchor
2338
2338
  }) => anchor === 'bottom' || anchor === 'top' ? 'auto' : width));
2339
2339
 
2340
- const rootClassName$V = 'dot-drawer-header';
2340
+ const rootClassName$U = 'dot-drawer-header';
2341
2341
  const StyleDrawerHeader = styled.div.withConfig({
2342
2342
  displayName: "DrawerHeaderstyles__StyleDrawerHeader",
2343
2343
  componentId: "sc-2d2xd3-0"
2344
2344
  })(["", ""], ({
2345
2345
  theme
2346
- }) => css(["&.", "{padding:", ";display:flex;align-items:center;.close-button{margin-left:auto;}}"], rootClassName$V, theme.spacing(0, 0, 2)));
2346
+ }) => css(["&.", "{padding:", ";display:flex;align-items:center;.close-button{margin-left:auto;}}"], rootClassName$U, theme.spacing(0, 0, 2)));
2347
2347
 
2348
- const rootClassName$U = 'dot-icon-btn';
2348
+ const rootClassName$T = 'dot-icon-btn';
2349
2349
  const StyledIconButton = styled(IconButton).withConfig({
2350
2350
  displayName: "IconButtonstyles__StyledIconButton",
2351
2351
  componentId: "eko0kb-0"
2352
2352
  })(["", ""], ({
2353
2353
  theme
2354
- }) => css(["&.", "{font-size:inherit;padding:10px;&.shape-square{border-radius:4px;border:1px solid ", ";padding:", ";}.dot-icon.MuiIcon-fontSizeSmall{padding:1px;}&.MuiIconButton-sizeSmall{padding:3px;}&.ripple-disabled{&:hover,&:active,&:focus{background:", ";}}"], rootClassName$U, theme.palette.grey[300], theme.spacing(1), hoverGray));
2354
+ }) => css(["&.", "{font-size:inherit;padding:10px;&.shape-square{border-radius:4px;border:1px solid ", ";padding:", ";}.dot-icon.MuiIcon-fontSizeSmall{padding:1px;}&.MuiIconButton-sizeSmall{padding:3px;}&.ripple-disabled{&:hover,&:active,&:focus{background:", ";}}"], rootClassName$T, theme.palette.grey[300], theme.spacing(1), hoverGray));
2355
2355
 
2356
2356
  const DotIconButton = ({
2357
2357
  ariaLabel,
@@ -2369,7 +2369,7 @@ const DotIconButton = ({
2369
2369
  size: _size = 'medium'
2370
2370
  }) => {
2371
2371
  const rippleClassName = _disableRipple ? 'ripple-disabled' : '';
2372
- const rootClasses = useStylesWithRootClass(rootClassName$U, rippleClassName, `shape-${_shape}`, className);
2372
+ const rootClasses = useStylesWithRootClass(rootClassName$T, rippleClassName, `shape-${_shape}`, className);
2373
2373
  return jsx(DotTooltip, Object.assign({
2374
2374
  "data-testid": "icon-button-tooltip",
2375
2375
  title: tooltip
@@ -2404,7 +2404,7 @@ const DotDrawerHeader = ({
2404
2404
  onClose,
2405
2405
  variant
2406
2406
  }) => {
2407
- const rootClasses = useStylesWithRootClass(rootClassName$V, className);
2407
+ const rootClasses = useStylesWithRootClass(rootClassName$U, className);
2408
2408
  return jsxs(StyleDrawerHeader, Object.assign({
2409
2409
  "aria-label": ariaLabel,
2410
2410
  "aria-level": 2,
@@ -2422,11 +2422,11 @@ const DotDrawerHeader = ({
2422
2422
  }), void 0);
2423
2423
  };
2424
2424
 
2425
- const rootClassName$T = 'dot-drawer-body';
2425
+ const rootClassName$S = 'dot-drawer-body';
2426
2426
  const StyleDrawerBody = styled.div.withConfig({
2427
2427
  displayName: "DrawerBodystyles__StyleDrawerBody",
2428
2428
  componentId: "sc-1mpmjdk-0"
2429
- })(["", ""], () => css(["&.", "{display:flex;.dot-drawer-close-button{align-self:self-start;padding:0;margin-left:auto;}}"], rootClassName$T));
2429
+ })(["", ""], () => css(["&.", "{display:flex;.dot-drawer-close-button{align-self:self-start;padding:0;margin-left:auto;}}"], rootClassName$S));
2430
2430
 
2431
2431
  const DotDrawerBody = ({
2432
2432
  ariaLabel,
@@ -2438,7 +2438,7 @@ const DotDrawerBody = ({
2438
2438
  onClose,
2439
2439
  variant
2440
2440
  }) => {
2441
- const rootClasses = useStylesWithRootClass(rootClassName$T, className);
2441
+ const rootClasses = useStylesWithRootClass(rootClassName$S, className);
2442
2442
  return jsxs(StyleDrawerBody, Object.assign({
2443
2443
  "aria-label": ariaLabel,
2444
2444
  className: rootClasses,
@@ -2454,13 +2454,13 @@ const DotDrawerBody = ({
2454
2454
  }), void 0);
2455
2455
  };
2456
2456
 
2457
- const rootClassName$S = 'dot-drawer-footer';
2457
+ const rootClassName$R = 'dot-drawer-footer';
2458
2458
  const StyleDrawerFooter = styled.div.withConfig({
2459
2459
  displayName: "DrawerFooterstyles__StyleDrawerFooter",
2460
2460
  componentId: "sc-1ki05ze-0"
2461
2461
  })(["", ""], ({
2462
2462
  theme
2463
- }) => css(["&.", "{padding:", ";}"], rootClassName$S, theme.spacing(2, 0, 0)));
2463
+ }) => css(["&.", "{padding:", ";}"], rootClassName$R, theme.spacing(2, 0, 0)));
2464
2464
 
2465
2465
  const DotDrawerFooter = ({
2466
2466
  ariaLabel,
@@ -2469,7 +2469,7 @@ const DotDrawerFooter = ({
2469
2469
  className,
2470
2470
  'data-testid': dataTestId
2471
2471
  }) => {
2472
- const rootClasses = useStylesWithRootClass(rootClassName$S, className);
2472
+ const rootClasses = useStylesWithRootClass(rootClassName$R, className);
2473
2473
  return jsx(StyleDrawerFooter, Object.assign({
2474
2474
  "aria-label": ariaLabel,
2475
2475
  className: rootClasses,
@@ -2508,7 +2508,7 @@ const DotDrawer = ({
2508
2508
  onClose(event);
2509
2509
  }
2510
2510
  };
2511
- const rootClasses = useStylesWithRootClass(rootClassName$W, className);
2511
+ const rootClasses = useStylesWithRootClass(rootClassName$V, className);
2512
2512
  const backdropEnabled = _variant === 'temporary' && !(ModalProps === null || ModalProps === void 0 ? void 0 : ModalProps.hideBackdrop);
2513
2513
  const headerExists = !!drawerHeaderProps;
2514
2514
  const bodyTestId = drawerBodyProps ? drawerBodyProps[`data-testid`] : 'drawer-body';
@@ -2829,7 +2829,7 @@ const DotList = ({
2829
2829
  nestedListType: _nestedListType = 'expandable',
2830
2830
  width: _width = 240
2831
2831
  }) => {
2832
- const rootClasses = useStylesWithRootClass(rootClassName$$, className);
2832
+ const rootClasses = useStylesWithRootClass(rootClassName$_, className);
2833
2833
  const listWidth = typeof _width === 'number' ? `${_width}px` : _width;
2834
2834
  const listRef = useRef();
2835
2835
  const [listItemIndex, setListItemIndex] = useState(null);
@@ -3028,7 +3028,7 @@ const DotInputText = ({
3028
3028
  const hasEndAdornmentIcon = endIcon || _error || hasWarning || hasSuccess;
3029
3029
  // This state is used only with debounce feature enabled
3030
3030
  const [inputTextState, setInputTextState] = useState(hasDebounce && getInitialState(value));
3031
- const rootStyles = useStylesWithRootClass(rootClassName$15, hasError, hasWarning, hasSuccess, _readOnly && readOnlyClassName$1);
3031
+ const rootStyles = useStylesWithRootClass(rootClassName$14, hasError, hasWarning, hasSuccess, _readOnly && readOnlyClassName$1);
3032
3032
  // Used to control text value from the consumer component
3033
3033
  // when debounce feature is enabled
3034
3034
  useEffect(() => {
@@ -3141,11 +3141,11 @@ const DotInputText = ({
3141
3141
  }), void 0);
3142
3142
  };
3143
3143
 
3144
- const rootClassName$R = 'dot-search-input';
3144
+ const rootClassName$Q = 'dot-search-input';
3145
3145
  const StyledSearchInput = styled.span.withConfig({
3146
3146
  displayName: "SearchInputstyles__StyledSearchInput",
3147
3147
  componentId: "qlwzku-0"
3148
- })(["", ""], () => css(["&.", "{}"], rootClassName$R));
3148
+ })(["", ""], () => css(["&.", "{}"], rootClassName$Q));
3149
3149
 
3150
3150
  function SearchInput({
3151
3151
  'data-testid': dataTestId,
@@ -3159,7 +3159,7 @@ function SearchInput({
3159
3159
  tooltip = null,
3160
3160
  value
3161
3161
  }) {
3162
- const rootClasses = useStylesWithRootClass(rootClassName$R, className);
3162
+ const rootClasses = useStylesWithRootClass(rootClassName$Q, className);
3163
3163
  const [searchText, setSearchText] = useState(value);
3164
3164
  let previousSearchText = '';
3165
3165
  const handleChange = useCallback(event => {
@@ -3212,13 +3212,13 @@ function SearchInput({
3212
3212
  }), void 0);
3213
3213
  }
3214
3214
 
3215
- const rootClassName$Q = 'dot-copy-button';
3215
+ const rootClassName$P = 'dot-copy-button';
3216
3216
  const StyledCopyButton = styled.span.withConfig({
3217
3217
  displayName: "CopyButtonstyles__StyledCopyButton",
3218
3218
  componentId: "sc-18ff0u-0"
3219
3219
  })(["", ""], ({
3220
3220
  theme
3221
- }) => css(["&.", "{.copied-to-clipboard{color:", ";}}"], rootClassName$Q, theme.palette.success[400]));
3221
+ }) => css(["&.", "{.copied-to-clipboard{color:", ";}}"], rootClassName$P, theme.palette.success[400]));
3222
3222
 
3223
3223
  const DotCopyButton = ({
3224
3224
  ariaLabel: _ariaLabel = 'Copy to clipboard',
@@ -3274,7 +3274,7 @@ const DotCopyButton = ({
3274
3274
  return false;
3275
3275
  }, [_showCopiedIcon, _disabled, _onClick]);
3276
3276
  return jsxs(StyledCopyButton, Object.assign({
3277
- className: rootClassName$Q,
3277
+ className: rootClassName$P,
3278
3278
  "data-testid": dataTestId
3279
3279
  }, {
3280
3280
  children: [!timedShowCopiedIcon && jsx(DotIconButton, {
@@ -3522,13 +3522,13 @@ const recentAppInstancesSetter = (latestInstance, maxRecentItems
3522
3522
  };
3523
3523
  };
3524
3524
 
3525
- const rootClassName$P = 'dot-app-switcher';
3525
+ const rootClassName$O = 'dot-app-switcher';
3526
3526
  const StyledAppSwitcher = styled(DotDrawer).withConfig({
3527
3527
  displayName: "AppSwitcherstyles__StyledAppSwitcher",
3528
3528
  componentId: "hhxfqg-0"
3529
3529
  })(["", ""], ({
3530
3530
  theme
3531
- }) => 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$P, 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)));
3531
+ }) => 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$O, 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)));
3532
3532
 
3533
3533
  const DotAppSwitcherView = ({
3534
3534
  activeApp,
@@ -3549,7 +3549,7 @@ const DotAppSwitcherView = ({
3549
3549
  if (dotCoreApiContext !== null) {
3550
3550
  setSelectedAppType = dotCoreApiContext.setSelectedAppSwitcherAppType;
3551
3551
  }
3552
- const rootClasses = useStylesWithRootClass(rootClassName$P, className);
3552
+ const rootClasses = useStylesWithRootClass(rootClassName$O, className);
3553
3553
  const [appTypeMap, setAppTypeMap] = useState();
3554
3554
  const [appTypeLabels, setAppTypeLabels] = useState();
3555
3555
  const [appTypeMenuItems, setAppTypeMenuItems] = useState();
@@ -3942,19 +3942,19 @@ function SvgLogoDigitalAiWhite(_ref, svgRef) {
3942
3942
  }
3943
3943
  var ForwardRef = /*#__PURE__*/React.forwardRef(SvgLogoDigitalAiWhite);
3944
3944
 
3945
- const rootClassName$O = 'dot-sidebar';
3945
+ const rootClassName$N = 'dot-sidebar';
3946
3946
  const StyledSidebar = styled.aside.withConfig({
3947
3947
  displayName: "Sidebarstyles__StyledSidebar",
3948
3948
  componentId: "l3atb4-0"
3949
3949
  })(["", ""], ({
3950
3950
  theme
3951
- }) => 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);background:", ";color:", ";}.MuiTypography-root.MuiTypography-subtitle2{line-height:40px;}.", "{margin:0;padding-left:", ";}}.dot-list-item{height:44px;padding:0;&:before{content:'';position:relative;left:0;top:0;bottom:0;border-radius:0 2px 2px 0;height:24px;width:4px;background-color:transparent;margin-right:-4px;}&:hover{background-color:", ";color:", ";}&.Mui-selected{background-color:", ";color:", ";&:before{background-color:", ";}.dot-typography,.MuiListItemIcon-root .dot-icon i:before{color:", ";}}&.Mui-focusVisible{background-color:", ";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%;display:flex;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$O, theme.palette.layer.n0, theme.palette.layer.n100, theme.palette.layer.n700, theme.palette.layer.n100, theme.spacing(1, 2), theme.spacing(1), theme.palette.layer.n100, theme.spacing(0.5, 1), theme.palette.layer.n0, theme.palette.primary['50'], 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, theme.palette.layer.n0, theme.palette.layer.n700, listItemRootClass, theme.spacing(2), theme.palette.primary['50'], theme.palette.primary['500'], theme.palette.primary['50'], theme.palette.primary['500'], theme.palette.primary['500'], theme.palette.primary['500'], theme.palette.primary['50'], theme.palette.layer.n0, theme.palette.primary['500'], theme.spacing(1), theme.spacing(0, 1), theme.palette.layer.n100, theme.spacing(1), theme.palette.layer.n100, theme.palette.layer.n400, theme.spacing(1), theme.spacing(1)));
3951
+ }) => 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);background:", ";color:", ";}.MuiTypography-root.MuiTypography-subtitle2{line-height:40px;}}.", "{height:44px;margin:0;padding:0;.dot-typography{margin-left:", ";}.MuiListItemIcon-root{min-width:40px;.dot-icon{margin:0;}}&:before{content:'';position:relative;left:0;top:0;bottom:0;border-radius:0 2px 2px 0;height:24px;width:4px;background-color:transparent;margin-right:", ";}&:hover{background-color:", ";color:", ";}&.Mui-selected{background-color:", ";color:", ";&:before{background-color:", ";}.dot-typography,.MuiListItemIcon-root .dot-icon i:before{color:", ";}}&.Mui-focusVisible{background-color:", ";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%;display:flex;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$N, theme.palette.layer.n0, theme.palette.layer.n100, theme.palette.layer.n700, theme.palette.layer.n100, theme.spacing(1, 2), theme.spacing(1), theme.palette.layer.n100, theme.spacing(0.5, 1), theme.palette.layer.n0, theme.palette.primary['50'], 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, theme.palette.layer.n0, theme.palette.layer.n700, listItemRootClass, theme.spacing(1), theme.spacing(1), theme.palette.primary['50'], theme.palette.primary['500'], theme.palette.primary['50'], theme.palette.primary['500'], theme.palette.primary['500'], theme.palette.primary['500'], theme.palette.primary['50'], theme.palette.layer.n0, theme.palette.primary['500'], theme.spacing(1), theme.spacing(0, 1), theme.palette.layer.n100, theme.spacing(1), theme.palette.layer.n100, theme.palette.layer.n400, theme.spacing(1), theme.spacing(1)));
3952
3952
 
3953
- const rootClassName$N = 'dot-truncate-with-tooltip';
3953
+ const rootClassName$M = 'dot-truncate-with-tooltip';
3954
3954
  const StyledTruncateWithTooltip = styled(Tooltip).withConfig({
3955
3955
  displayName: "TruncateWithTooltipstyles__StyledTruncateWithTooltip",
3956
3956
  componentId: "sc-1o80lur-0"
3957
- })(["", ""], () => css(["&.", "{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}&.dot-characters-limit{display:inline;}"], rootClassName$N));
3957
+ })(["", ""], () => css(["&.", "{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}&.dot-characters-limit{display:inline;}"], rootClassName$M));
3958
3958
 
3959
3959
  const getTruncatedLabel = (label, charactersLimit) => {
3960
3960
  if (!charactersLimit || charactersLimit <= 0 || label.length < charactersLimit) return label;
@@ -3974,7 +3974,7 @@ const DotTruncateWithTooltip = ({
3974
3974
  label,
3975
3975
  width
3976
3976
  }) => {
3977
- const rootClasses = useStylesWithRootClass(rootClassName$N, className, charactersLimit ? 'dot-characters-limit' : '');
3977
+ const rootClasses = useStylesWithRootClass(rootClassName$M, className, charactersLimit ? 'dot-characters-limit' : '');
3978
3978
  return jsx(StyledTruncateWithTooltip, Object.assign({
3979
3979
  "aria-label": ariaLabel,
3980
3980
  arrow: _arrow,
@@ -4091,7 +4091,7 @@ const DotSidebar = ({
4091
4091
  setIsOpen(!isOpen);
4092
4092
  };
4093
4093
  const sidebarClasses = useStylesWithRootClass('side-nav', openClass);
4094
- const rootClasses = useStylesWithRootClass(rootClassName$O, openClass, className);
4094
+ const rootClasses = useStylesWithRootClass(rootClassName$N, openClass, className);
4095
4095
  return jsxs(StyledSidebar, Object.assign({
4096
4096
  "aria-label": ariaLabel,
4097
4097
  className: rootClasses,
@@ -4164,13 +4164,13 @@ const DotSidebar = ({
4164
4164
  }), void 0);
4165
4165
  };
4166
4166
 
4167
- const rootClassName$M = 'dot-badge';
4167
+ const rootClassName$L = 'dot-badge';
4168
4168
  const StyledBadge = styled(Badge).withConfig({
4169
4169
  displayName: "Badgestyles__StyledBadge",
4170
4170
  componentId: "sc-1brv3h5-0"
4171
4171
  })(["", ""], ({
4172
4172
  theme
4173
- }) => css(["&.", "{color:", ";word-break:normal;.MuiBadge-badge{background-color:", ";&.MuiBadge-standard{font-size:10px;height:", ";min-width:", ";padding:", ";}}}"], rootClassName$M, theme.palette.text.primary, ({
4173
+ }) => css(["&.", "{color:", ";word-break:normal;.MuiBadge-badge{background-color:", ";&.MuiBadge-standard{font-size:10px;height:", ";min-width:", ";padding:", ";}}}"], rootClassName$L, theme.palette.text.primary, ({
4174
4174
  $badgeColor
4175
4175
  }) => {
4176
4176
  return $badgeColor;
@@ -4188,7 +4188,7 @@ const DotBadge = ({
4188
4188
  overlap,
4189
4189
  variant: _variant = 'dot'
4190
4190
  }) => {
4191
- const rootClasses = useStylesWithRootClass(rootClassName$M, className);
4191
+ const rootClasses = useStylesWithRootClass(rootClassName$L, className);
4192
4192
  return jsx(StyledBadge, Object.assign({
4193
4193
  "$badgeColor": badgeColor,
4194
4194
  anchorOrigin: {
@@ -4211,7 +4211,7 @@ const DotBadge = ({
4211
4211
  }), void 0);
4212
4212
  };
4213
4213
 
4214
- const rootClassName$L = 'dot-app-toolbar';
4214
+ const rootClassName$K = 'dot-app-toolbar';
4215
4215
  const denseClassName = 'dense';
4216
4216
  const StyledMainMenu = styled(DotDrawer).withConfig({
4217
4217
  displayName: "AppToolbarstyles__StyledMainMenu",
@@ -4224,7 +4224,7 @@ const StyledAppToolbar = styled.header.withConfig({
4224
4224
  componentId: "sc-3kokby-1"
4225
4225
  })(["", ""], ({
4226
4226
  theme
4227
- }) => 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$L, 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));
4227
+ }) => 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$K, 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));
4228
4228
 
4229
4229
  const DotAppToolbar = ({
4230
4230
  ariaLabel,
@@ -4252,7 +4252,7 @@ const DotAppToolbar = ({
4252
4252
  const displayAppLogo = appLogo || appLogoSmall;
4253
4253
  const mainMenuRef = useRef(null);
4254
4254
  const denseClass = _dense ? denseClassName : '';
4255
- const rootClasses = useStylesWithRootClass(rootClassName$L, className, denseClass, showMainMenu ? '' : 'without-menu-icon');
4255
+ const rootClasses = useStylesWithRootClass(rootClassName$K, className, denseClass, showMainMenu ? '' : 'without-menu-icon');
4256
4256
  const mainMenuClasses = useStylesWithRootClass('dot-main-menu', denseClass, menuOpen ? 'open' : '');
4257
4257
  const targetBreakpoint = useMediaQuery(theme => theme.breakpoints.up('md'));
4258
4258
  useEffect(() => {
@@ -4396,7 +4396,7 @@ const DotAppToolbar = ({
4396
4396
  }), void 0) : appToolbar;
4397
4397
  };
4398
4398
 
4399
- const rootClassName$K = 'dot-autocomplete';
4399
+ const rootClassName$J = 'dot-autocomplete';
4400
4400
  const inputRootClassName = 'dot-input-root';
4401
4401
  const inputMediumClassName = 'dot-input-medium';
4402
4402
  const StyledAutocomplete = styled(Autocomplete).withConfig({
@@ -4404,15 +4404,15 @@ const StyledAutocomplete = styled(Autocomplete).withConfig({
4404
4404
  componentId: "j2sgjy-0"
4405
4405
  })(["", ""], ({
4406
4406
  theme
4407
- }) => css(["&.", "{&.", " .dot-text-field .", "{height:56px;padding-left:", ";}.MuiInputBase-root.Mui-disabled,.", " .MuiInputBase-root{", ";}.", "{padding-top:", ";padding-bottom:", ";}.dot-chip:first-child{margin-left:", ";}.dot-text-field{.", "{min-height:", ";}.warning-icon{color:", ";}.error-icon{color:", ";}}}"], rootClassName$K, inputMediumClassName, inputRootClassName, theme.spacing(2), readOnlyClassName$1, readOnlyStyles(theme), inputRootClassName, theme.spacing(0), theme.spacing(0), theme.spacing(0), inputRootClassName, theme.spacing(5), theme.palette.warning.main, theme.palette.error.main));
4407
+ }) => css(["&.", "{&.", " .dot-text-field .", "{height:56px;padding-left:", ";}.MuiInputBase-root.Mui-disabled,.", " .MuiInputBase-root{", ";}.", "{padding-top:", ";padding-bottom:", ";}.dot-chip:first-child{margin-left:", ";}.dot-text-field{.", "{min-height:", ";}.warning-icon{color:", ";}.error-icon{color:", ";}}}"], rootClassName$J, inputMediumClassName, inputRootClassName, theme.spacing(2), readOnlyClassName$1, readOnlyStyles(theme), inputRootClassName, theme.spacing(0), theme.spacing(0), theme.spacing(0), inputRootClassName, theme.spacing(5), theme.palette.warning.main, theme.palette.error.main));
4408
4408
 
4409
- const rootClassName$J = 'dot-chip';
4409
+ const rootClassName$I = 'dot-chip';
4410
4410
  const StyledChip = styled(Chip).withConfig({
4411
4411
  displayName: "Chipstyles__StyledChip",
4412
4412
  componentId: "f1tsra-0"
4413
4413
  })(["", ""], ({
4414
4414
  theme
4415
- }) => 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$J, 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]));
4415
+ }) => 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$I, 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]));
4416
4416
 
4417
4417
  const DEFAULT_CHARACTERS_LIMIT = 32;
4418
4418
  const DotChip = ({
@@ -4432,7 +4432,7 @@ const DotChip = ({
4432
4432
  startIcon
4433
4433
  }) => {
4434
4434
  const errorClass = _error ? 'Mui-error' : '';
4435
- const rootClasses = useStylesWithRootClass(rootClassName$J, className, errorClass);
4435
+ const rootClasses = useStylesWithRootClass(rootClassName$I, className, errorClass);
4436
4436
  const getChipLabel = () => {
4437
4437
  if (_charactersLimit <= 0 || children.length < _charactersLimit) return children;
4438
4438
  const label = `${children.substring(0, _charactersLimit)}...`;
@@ -4579,8 +4579,8 @@ const DotAutoComplete = ({
4579
4579
  const popperOpen = !_readOnly && (open || isOpened);
4580
4580
  const preventDuplicateInsertion = actionItem === null || actionItem === void 0 ? void 0 : actionItem.preventDuplicateInsertion;
4581
4581
  const textFieldWarningClassName = !_error && _warning && warningClassName;
4582
- const rootClasses = useStylesWithRootClass(rootClassName$K, _size === 'medium' && inputMediumClassName, className);
4583
- const textFieldRootClasses = useStylesWithRootClass(rootClassName$15, _readOnly && readOnlyClassName$1, textFieldWarningClassName);
4582
+ const rootClasses = useStylesWithRootClass(rootClassName$J, _size === 'medium' && inputMediumClassName, className);
4583
+ const textFieldRootClasses = useStylesWithRootClass(rootClassName$14, _readOnly && readOnlyClassName$1, textFieldWarningClassName);
4584
4584
  const inputRootClasses = useStylesWithRootClass(inputRootClassName, !_dense && inputMediumClassName);
4585
4585
  let highlightedOption = null;
4586
4586
  let textFieldInput;
@@ -4625,7 +4625,7 @@ const DotAutoComplete = ({
4625
4625
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
4626
4626
  const DotPopper = props => {
4627
4627
  if (!isActionItemDefined) return jsx(StyledPopper, Object.assign({}, props, {
4628
- className: rootClassName$Z,
4628
+ className: rootClassName$Y,
4629
4629
  disablePortal: _disablePortal,
4630
4630
  "$maxHeight": maxHeight
4631
4631
  }), void 0);
@@ -4648,7 +4648,7 @@ const DotAutoComplete = ({
4648
4648
  const paperProps = props.children.props;
4649
4649
  const paperChildren = paperProps.children;
4650
4650
  return jsx(StyledPopper, Object.assign({}, props, {
4651
- className: rootClassName$Z,
4651
+ className: rootClassName$Y,
4652
4652
  disablePortal: _disablePortal,
4653
4653
  "$maxHeight": maxHeight
4654
4654
  }, {
@@ -4860,11 +4860,11 @@ const DotAutoComplete = ({
4860
4860
  }, void 0);
4861
4861
  };
4862
4862
 
4863
- const rootClassName$I = 'dot-avatar-group';
4863
+ const rootClassName$H = 'dot-avatar-group';
4864
4864
  const StyledAvatarGroup = styled(AvatarGroup).withConfig({
4865
4865
  displayName: "AvatarGroupstyles__StyledAvatarGroup",
4866
4866
  componentId: "sc-25by6z-0"
4867
- })(["", ""], () => css(["&.", "{justify-content:flex-end;.MuiAvatar-root{border:none;}}}"], rootClassName$I));
4867
+ })(["", ""], () => css(["&.", "{justify-content:flex-end;.MuiAvatar-root{border:none;}}}"], rootClassName$H));
4868
4868
 
4869
4869
  const DotAvatarGroup = ({
4870
4870
  ariaLabel,
@@ -4874,7 +4874,7 @@ const DotAvatarGroup = ({
4874
4874
  max: _max = 3,
4875
4875
  spacing: _spacing = 'medium'
4876
4876
  }) => {
4877
- const rootClasses = useStylesWithRootClass(rootClassName$I, className);
4877
+ const rootClasses = useStylesWithRootClass(rootClassName$H, className);
4878
4878
  return jsx(StyledAvatarGroup, Object.assign({
4879
4879
  "aria-label": ariaLabel,
4880
4880
  classes: {
@@ -4890,20 +4890,20 @@ const DotAvatarGroup = ({
4890
4890
  }), void 0);
4891
4891
  };
4892
4892
 
4893
- const rootClassName$H = 'dot-breadcrumbs';
4893
+ const rootClassName$G = 'dot-breadcrumbs';
4894
4894
  const breadcrumbsWrapperClass = 'dot-breadcrumbs-wrapper';
4895
4895
  const StyledBreadcrumbsWrapper = styled.div.withConfig({
4896
4896
  displayName: "Breadcrumbsstyles__StyledBreadcrumbsWrapper",
4897
4897
  componentId: "sc-7cg374-0"
4898
4898
  })(["", ""], ({
4899
4899
  theme
4900
- }) => css(["&.", "{overflow:hidden;.dot-breadcrumbs-menu{.MuiMenuItem-root{padding:0;}a.breadcrumb{width:100%;padding:", ";}}}"], rootClassName$H, theme.spacing(0.5, 2)));
4900
+ }) => css(["&.", "{overflow:hidden;.dot-breadcrumbs-menu{.MuiMenuItem-root{padding:0;}a.breadcrumb{width:100%;padding:", ";}}}"], rootClassName$G, theme.spacing(0.5, 2)));
4901
4901
  const StyledBreadcrumbs = styled(Breadcrumbs).withConfig({
4902
4902
  displayName: "Breadcrumbsstyles__StyledBreadcrumbs",
4903
4903
  componentId: "sc-7cg374-1"
4904
4904
  })(["", ""], ({
4905
4905
  theme
4906
- }) => 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;i{line-height:20px;}}.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$H, theme.palette.grey[700], theme.spacing(0.5, 2), theme.palette.grey[700]));
4906
+ }) => 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;i{line-height:20px;}}.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$G, theme.palette.grey[700], theme.spacing(0.5, 2), theme.palette.grey[700]));
4907
4907
 
4908
4908
  const compareWidth = (parentEl, childEl) => {
4909
4909
  return parentEl.getBoundingClientRect().width < childEl.getBoundingClientRect().width;
@@ -5194,7 +5194,7 @@ const DotBreadcrumbs = ({
5194
5194
  children: [jsx(StyledBreadcrumbs, Object.assign({
5195
5195
  "aria-label": "breadcrumb",
5196
5196
  classes: {
5197
- root: rootClassName$H,
5197
+ root: rootClassName$G,
5198
5198
  ol: 'dot-ol',
5199
5199
  li: 'dot-li'
5200
5200
  },
@@ -5226,13 +5226,13 @@ const DotBreadcrumbs = ({
5226
5226
  }), void 0);
5227
5227
  };
5228
5228
 
5229
- const rootClassName$G = 'dot-button-toggle';
5229
+ const rootClassName$F = 'dot-button-toggle';
5230
5230
  const StyledToggleButtonGroup = styled(ToggleButtonGroup).withConfig({
5231
5231
  displayName: "ButtonTogglestyles__StyledToggleButtonGroup",
5232
5232
  componentId: "sc-1oh4ljv-0"
5233
5233
  })(["", ""], ({
5234
5234
  theme
5235
- }) => css(["&.", "{button:not(.MuiToggleButton-sizeLarge):not(.MuiToggleButton-sizeSmall){height:", ";.dot-icon{width:", ";}}.dot-icon{color:", ";display:flex;+ p{margin-left:", ";}i{height:auto;}}.dot-typography{margin-bottom:0;}.MuiToggleButton-label{color:", ";p{margin-bottom:0;}}.MuiToggleButtonGroup-groupedHorizontal{border:1px solid ", ";border-radius:0;}.dot-tooltip{&:first-child .MuiToggleButtonGroup-groupedHorizontal{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}&:last-child .MuiToggleButtonGroup-groupedHorizontal{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}&:not(:first-child) .MuiToggleButtonGroup-groupedHorizontal{margin-left:-1px;}}& > .MuiToggleButtonGroup-groupedHorizontal{:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}}}.MuiButtonBase-root{&.Mui-disabled p,&.Mui-disabled .dot-icon{color:", ";}&.Mui-selected{&.MuiToggleButton-standard{background:", ";}.dot-typography{color:inherit;}}}"], rootClassName$G, 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));
5235
+ }) => css(["&.", "{button:not(.MuiToggleButton-sizeLarge):not(.MuiToggleButton-sizeSmall){height:", ";.dot-icon{width:", ";}}.dot-icon{color:", ";display:flex;+ p{margin-left:", ";}i{height:auto;}}.dot-typography{margin-bottom:0;}.MuiToggleButton-label{color:", ";p{margin-bottom:0;}}.MuiToggleButtonGroup-groupedHorizontal{border:1px solid ", ";border-radius:0;}.dot-tooltip{&:first-child .MuiToggleButtonGroup-groupedHorizontal{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}&:last-child .MuiToggleButtonGroup-groupedHorizontal{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}&:not(:first-child) .MuiToggleButtonGroup-groupedHorizontal{margin-left:-1px;}}& > .MuiToggleButtonGroup-groupedHorizontal{:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;margin-left:0;}:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;margin-right:0;}}}.MuiButtonBase-root{&.Mui-disabled p,&.Mui-disabled .dot-icon{color:", ";}&.Mui-selected{&.MuiToggleButton-standard{background:", ";}.dot-typography{color:inherit;}}}"], rootClassName$F, 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));
5236
5236
 
5237
5237
  const DotButtonToggle = ({
5238
5238
  ariaLabel,
@@ -5248,7 +5248,7 @@ const DotButtonToggle = ({
5248
5248
  size: _size = 'medium',
5249
5249
  value
5250
5250
  }) => {
5251
- const rootClasses = useStylesWithRootClass(rootClassName$G, className);
5251
+ const rootClasses = useStylesWithRootClass(rootClassName$F, className);
5252
5252
  const renderToggleButton = ({
5253
5253
  ariaLabel: optionAriaLabel,
5254
5254
  className: optionClassName,
@@ -5358,13 +5358,13 @@ const DotCardContent = ({
5358
5358
  }), void 0);
5359
5359
  };
5360
5360
 
5361
- const rootClassName$F = 'dot-card-footer';
5361
+ const rootClassName$E = 'dot-card-footer';
5362
5362
  const StyledDiv = styled.div.withConfig({
5363
5363
  displayName: "CardFooterstyles__StyledDiv",
5364
5364
  componentId: "koblh6-0"
5365
5365
  })(["", ""], ({
5366
5366
  theme
5367
- }) => css(["&.", "{padding:", ";}"], rootClassName$F, theme.spacing(2)));
5367
+ }) => css(["&.", "{padding:", ";}"], rootClassName$E, theme.spacing(2)));
5368
5368
 
5369
5369
  const DotCardFooter = ({
5370
5370
  ariaLabel,
@@ -5372,7 +5372,7 @@ const DotCardFooter = ({
5372
5372
  className,
5373
5373
  'data-testid': dataTestId
5374
5374
  }) => {
5375
- const rootClasses = useStylesWithRootClass(rootClassName$F, className);
5375
+ const rootClasses = useStylesWithRootClass(rootClassName$E, className);
5376
5376
  return jsx(StyledDiv, Object.assign({
5377
5377
  "aria-label": ariaLabel,
5378
5378
  className: rootClasses,
@@ -5417,19 +5417,19 @@ const DotCardHeader = ({
5417
5417
  }, void 0);
5418
5418
  };
5419
5419
 
5420
- const rootClassName$E = 'dot-form-control-label';
5420
+ const rootClassName$D = 'dot-form-control-label';
5421
5421
  const StyledFormControlLabel = styled(FormControlLabel).withConfig({
5422
5422
  displayName: "FormControlLabelstyles__StyledFormControlLabel",
5423
5423
  componentId: "sc-1vt0om4-0"
5424
- })(["&.", "{.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$E);
5424
+ })(["&.", "{.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$D);
5425
5425
 
5426
- const rootClassName$D = 'dot-checkbox';
5426
+ const rootClassName$C = 'dot-checkbox';
5427
5427
  const StyledCheckbox = styled(Checkbox).withConfig({
5428
5428
  displayName: "Checkboxstyles__StyledCheckbox",
5429
5429
  componentId: "sc-1ubsn6i-0"
5430
5430
  })(["", ""], ({
5431
5431
  theme
5432
- }) => css(["&.", "{padding:", ";&.MuiCheckbox-indeterminate{color:rgba(0,0,0,0.6);}}"], rootClassName$D, theme.spacing(1)));
5432
+ }) => css(["&.", "{padding:", ";&.MuiCheckbox-indeterminate{color:rgba(0,0,0,0.6);}}"], rootClassName$C, theme.spacing(1)));
5433
5433
 
5434
5434
  function DotCheckbox({
5435
5435
  ariaLabel,
@@ -5450,14 +5450,14 @@ function DotCheckbox({
5450
5450
  size = 'medium',
5451
5451
  value
5452
5452
  }) {
5453
- const rootClasses = useStylesWithRootClass(rootClassName$E, className);
5453
+ const rootClasses = useStylesWithRootClass(rootClassName$D, className);
5454
5454
  const handleChange = event => {
5455
5455
  onChange && onChange(event, event.target.value);
5456
5456
  };
5457
5457
  const checkboxControl = jsx(StyledCheckbox, {
5458
5458
  checked: checked,
5459
5459
  classes: {
5460
- root: rootClassName$D
5460
+ root: rootClassName$C
5461
5461
  },
5462
5462
  color: "primary",
5463
5463
  "data-testid": dataTestId,
@@ -5485,7 +5485,7 @@ function DotCheckbox({
5485
5485
  }, void 0);
5486
5486
  }
5487
5487
 
5488
- const rootClassName$C = 'dot-form-group';
5488
+ const rootClassName$B = 'dot-form-group';
5489
5489
  const groupLabelClassName = 'dot-form-group-label';
5490
5490
  const startAdornmentClassName = 'dot-start-adornment';
5491
5491
  const endAdornmentClassName = 'dot-end-adornment';
@@ -5493,9 +5493,9 @@ const placementClassName = 'dot-';
5493
5493
  const StyledFormControl = styled(FormControl).withConfig({
5494
5494
  displayName: "FormControlstyles__StyledFormControl",
5495
5495
  componentId: "sc-532kip-0"
5496
- })(["&.", "{.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$C, endAdornmentClassName, startAdornmentClassName, `${placementClassName}start`, `${placementClassName}bottom`);
5496
+ })(["&.", "{.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$B, endAdornmentClassName, startAdornmentClassName, `${placementClassName}start`, `${placementClassName}bottom`);
5497
5497
 
5498
- const rootClassName$B = 'dot-checkbox-group';
5498
+ const rootClassName$A = 'dot-checkbox-group';
5499
5499
  const wrapperClassName$1 = 'dot-checkbox-group-wrapper';
5500
5500
  const checkboxListClassName = 'dot-checkbox-list';
5501
5501
  const checkboxListItemClassName = 'dot-checkbox-list-item';
@@ -5504,16 +5504,16 @@ const StyledCheckboxGroup = styled.div.withConfig({
5504
5504
  componentId: "bhb21v-0"
5505
5505
  })(["", ""], ({
5506
5506
  theme
5507
- }) => 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$B, theme.typography.body2.fontFamily, theme.typography.body2.fontSize, theme.typography.body2.fontWeight, theme.palette.grey[400], checkboxListClassName, theme.spacing(2.5), rootClassName$E));
5507
+ }) => 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$A, theme.typography.body2.fontFamily, theme.typography.body2.fontSize, theme.typography.body2.fontWeight, theme.palette.grey[400], checkboxListClassName, theme.spacing(2.5), rootClassName$D));
5508
5508
 
5509
- const rootClassName$A = 'dot-form-group';
5509
+ const rootClassName$z = 'dot-form-group';
5510
5510
  const StyledFormGroup = styled(FormGroup).withConfig({
5511
5511
  displayName: "FormGroupstyles__StyledFormGroup",
5512
5512
  componentId: "sc-1dlipcr-0"
5513
5513
  })(["", ""], ({
5514
5514
  theme,
5515
5515
  row
5516
- }) => css(["&.", "{& > *{margin:", ";}}"], rootClassName$A, row ? `${theme.spacing(0.5)}` : 0));
5516
+ }) => css(["&.", "{& > *{margin:", ";}}"], rootClassName$z, row ? `${theme.spacing(0.5)}` : 0));
5517
5517
 
5518
5518
  function DotFormGroup({
5519
5519
  ariaLabel,
@@ -5522,7 +5522,7 @@ function DotFormGroup({
5522
5522
  'data-testid': dataTestId,
5523
5523
  row
5524
5524
  }) {
5525
- const rootClasses = useStylesWithRootClass(rootClassName$C, className);
5525
+ const rootClasses = useStylesWithRootClass(rootClassName$B, className);
5526
5526
  return jsx(StyledFormGroup, Object.assign({
5527
5527
  "aria-label": ariaLabel,
5528
5528
  classes: {
@@ -5562,7 +5562,7 @@ function DotCheckboxGroup({
5562
5562
  size = 'medium'
5563
5563
  }) {
5564
5564
  const placement = `${placementClassName}${labelPlacement}`;
5565
- const rootClasses = useStylesWithRootClass(rootClassName$C, rootClassName$B, className, placement);
5565
+ const rootClasses = useStylesWithRootClass(rootClassName$B, rootClassName$A, className, placement);
5566
5566
  const [selectedOptions, setSelectedOptions] = useState(defaultValues);
5567
5567
  const [allChecked, setAllChecked] = useState(false);
5568
5568
  /* This will ensure that state can be updated from the outside */
@@ -5654,13 +5654,13 @@ function DotCheckboxGroup({
5654
5654
  }), void 0);
5655
5655
  }
5656
5656
 
5657
- const rootClassName$z = 'dot-dialog';
5657
+ const rootClassName$y = 'dot-dialog';
5658
5658
  const StyledDialog = styled(Dialog).withConfig({
5659
5659
  displayName: "Dialogstyles__StyledDialog",
5660
5660
  componentId: "sc-1tkr4ex-0"
5661
5661
  })(["", ""], ({
5662
5662
  theme
5663
- }) => 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$z, theme.spacing(2, 3), theme.spacing(1), theme.spacing(1, 3), theme.spacing(1, 3, 2, 3)));
5663
+ }) => 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$y, theme.spacing(2, 3), theme.spacing(1), theme.spacing(1, 3), theme.spacing(1, 3, 2, 3)));
5664
5664
 
5665
5665
  const DotDialog = ({
5666
5666
  ariaLabel,
@@ -5679,7 +5679,7 @@ const DotDialog = ({
5679
5679
  submitButtonProps,
5680
5680
  title
5681
5681
  }) => {
5682
- const rootClasses = useStylesWithRootClass(rootClassName$z, className);
5682
+ const rootClasses = useStylesWithRootClass(rootClassName$y, className);
5683
5683
  const cancelClasses = useStylesWithRootClass(cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.className, 'cancel-button');
5684
5684
  const [isOpen, setIsOpen] = useState(open);
5685
5685
  useEffect(() => {
@@ -5799,7 +5799,7 @@ const DotConfirmationDialog = ({
5799
5799
  }), void 0);
5800
5800
  };
5801
5801
 
5802
- const rootClassName$y = 'dot-grid';
5802
+ const rootClassName$x = 'dot-grid';
5803
5803
  const frGetter = value => typeof value === 'number' ? `repeat(${value}, 1fr)` : value;
5804
5804
  const breakpointsGetter$1 = (theme, columnsBreakpoints, columnGap, rowGap) => `${theme.breakpoints.up('xs')} {
5805
5805
  column-gap: ${`${columnGap.xs}px`};
@@ -5844,7 +5844,7 @@ const Grid = ({
5844
5844
  className,
5845
5845
  children
5846
5846
  }) => {
5847
- const rootClasses = useStylesWithRootClass(rootClassName$y, className);
5847
+ const rootClasses = useStylesWithRootClass(rootClassName$x, className);
5848
5848
  return jsx("div", Object.assign({
5849
5849
  className: rootClasses
5850
5850
  }, {
@@ -5865,7 +5865,7 @@ const StyledGrid = styled(Grid).withConfig({
5865
5865
  rows,
5866
5866
  theme,
5867
5867
  width
5868
- }) => css(["&.", "{display:grid;grid-template-rows:", ";", " ", " ", " ", " ", ""], rootClassName$y, 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};`));
5868
+ }) => css(["&.", "{display:grid;grid-template-rows:", ";", " ", " ", " ", " ", ""], rootClassName$x, 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};`));
5869
5869
  const CssGrid = props => {
5870
5870
  return jsx(StyledGrid, Object.assign({}, props), void 0);
5871
5871
  };
@@ -6021,7 +6021,7 @@ const CssGridDebug = ({
6021
6021
  }), void 0);
6022
6022
  };
6023
6023
 
6024
- const rootClassName$x = 'dot-empty-state';
6024
+ const rootClassName$w = 'dot-empty-state';
6025
6025
  const StyledEmptyState = styled.div.withConfig({
6026
6026
  displayName: "EmptyStatestyles__StyledEmptyState",
6027
6027
  componentId: "sc-1sftmht-0"
@@ -6039,7 +6039,7 @@ const DotEmptyState = ({
6039
6039
  subtitle,
6040
6040
  title
6041
6041
  }) => {
6042
- const rootClasses = useStylesWithRootClass(rootClassName$x, className);
6042
+ const rootClasses = useStylesWithRootClass(rootClassName$w, className);
6043
6043
  return jsxs(StyledEmptyState, Object.assign({
6044
6044
  "aria-label": ariaLabel,
6045
6045
  className: rootClasses,
@@ -6075,15 +6075,15 @@ const StyledRadioGroup = styled(RadioGroup).withConfig({
6075
6075
  componentId: "sc-84g3mq-1"
6076
6076
  })(["", ""], ({
6077
6077
  theme
6078
- }) => css(["{&.", "{padding-left:", ";.", "{margin:0;}}"], groupClassName, theme.spacing(2.5), rootClassName$E));
6078
+ }) => css(["{&.", "{padding-left:", ";.", "{margin:0;}}"], groupClassName, theme.spacing(2.5), rootClassName$D));
6079
6079
 
6080
- const rootClassName$w = 'dot-form';
6080
+ const rootClassName$v = 'dot-form';
6081
6081
  const StyledFormContainer = styled.div.withConfig({
6082
6082
  displayName: "Formstyles__StyledFormContainer",
6083
6083
  componentId: "bbovqo-0"
6084
6084
  })(["", ""], ({
6085
6085
  theme
6086
- }) => css(["&.", "{margin:", ";.", ",.", ",.", ",.", "{margin:", ";}.", ",.", "{.", "{margin:0;}}}"], rootClassName$w, theme.spacing(3, 0), rootClassName$C, rootClassName$E, rootClassName$15, rootSelectClassName, theme.spacing(1, 0), rootClassName$B, groupClassName, rootClassName$E));
6086
+ }) => css(["&.", "{margin:", ";.", ",.", ",.", ",.", "{margin:", ";}.", ",.", "{.", "{margin:0;}}}"], rootClassName$v, theme.spacing(3, 0), rootClassName$B, rootClassName$D, rootClassName$14, rootSelectClassName, theme.spacing(1, 0), rootClassName$A, groupClassName, rootClassName$D));
6087
6087
 
6088
6088
  const DotForm = ({
6089
6089
  ariaLabel,
@@ -6092,7 +6092,7 @@ const DotForm = ({
6092
6092
  'data-testid': dataTestId,
6093
6093
  onSubmit
6094
6094
  }) => {
6095
- const rootClasses = useStylesWithRootClass(rootClassName$w, className);
6095
+ const rootClasses = useStylesWithRootClass(rootClassName$v, className);
6096
6096
  return jsx("form", Object.assign({
6097
6097
  "aria-label": ariaLabel,
6098
6098
  "data-testid": dataTestId,
@@ -6107,11 +6107,11 @@ const DotForm = ({
6107
6107
  }), void 0);
6108
6108
  };
6109
6109
 
6110
- const rootClassName$v = 'dot-dynamic-form';
6110
+ const rootClassName$u = 'dot-dynamic-form';
6111
6111
  const StyledDynamicForm = styled(DotForm).withConfig({
6112
6112
  displayName: "DynamicFormstyles__StyledDynamicForm",
6113
6113
  componentId: "sc-1lnljcn-0"
6114
- })(["", ""], () => css(["&.", "{}"], rootClassName$v));
6114
+ })(["", ""], () => css(["&.", "{}"], rootClassName$u));
6115
6115
 
6116
6116
  const DATA_CONTROLS = ['dot-autocomplete', 'dot-checkbox', 'dot-checkbox-group', 'dot-input-select', 'dot-input-text', 'dot-radio-group', 'dot-switch'];
6117
6117
  /* Array of control types for which we don't have error state so validation doesn't make any sense */
@@ -6402,13 +6402,13 @@ const DotInputSelect = ({
6402
6402
  }), void 0);
6403
6403
  };
6404
6404
 
6405
- const rootClassName$u = 'dot-progress-button';
6405
+ const rootClassName$t = 'dot-progress-button';
6406
6406
  const StyledProgressButton = styled(DotButton).withConfig({
6407
6407
  displayName: "ProgressButtonstyles__StyledProgressButton",
6408
6408
  componentId: "sc-1fvgky0-0"
6409
6409
  })(["", ""], ({
6410
6410
  theme
6411
- }) => css(["&.", "{.hidden{visibility:hidden;}.progress-circle{color:", ";position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;}}"], rootClassName$u, theme.palette.layer.n300));
6411
+ }) => css(["&.", "{.hidden{visibility:hidden;}.progress-circle{color:", ";position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;}}"], rootClassName$t, theme.palette.layer.n300));
6412
6412
 
6413
6413
  const SPINNER_DEFAULT_SIZE = 20;
6414
6414
  const SPINNER_LARGE_SIZE = 24;
@@ -6428,7 +6428,7 @@ const DotProgressButton = ({
6428
6428
  tooltip,
6429
6429
  type: _type = 'primary'
6430
6430
  }) => {
6431
- const rootClasses = useStylesWithRootClass(rootClassName$u, className);
6431
+ const rootClasses = useStylesWithRootClass(rootClassName$t, className);
6432
6432
  const isButtonDisabled = _disabled || _isLoading;
6433
6433
  const titleClasses = useStylesWithRootClass(_isLoading ? 'hidden' : '');
6434
6434
  const progressCircleSize = _size === 'large' ? SPINNER_LARGE_SIZE : SPINNER_DEFAULT_SIZE;
@@ -6457,11 +6457,11 @@ const DotProgressButton = ({
6457
6457
  }), void 0);
6458
6458
  };
6459
6459
 
6460
- const rootClassName$t = 'dot-radio';
6460
+ const rootClassName$s = 'dot-radio';
6461
6461
  const StyledRadioButton = styled(Radio).withConfig({
6462
6462
  displayName: "RadioButtonstyles__StyledRadioButton",
6463
6463
  componentId: "brp0sc-0"
6464
- })(["", ""], () => css(["{&.", "{padding:8px;}"], rootClassName$t));
6464
+ })(["", ""], () => css(["{&.", "{padding:8px;}"], rootClassName$s));
6465
6465
 
6466
6466
  function DotRadioButton({
6467
6467
  ariaLabel,
@@ -6479,7 +6479,7 @@ function DotRadioButton({
6479
6479
  size = 'medium',
6480
6480
  value
6481
6481
  }) {
6482
- const rootClasses = useStylesWithRootClass(rootClassName$E, className);
6482
+ const rootClasses = useStylesWithRootClass(rootClassName$D, className);
6483
6483
  const handleChange = event => {
6484
6484
  onChange && onChange(event, event.target.value);
6485
6485
  };
@@ -6487,7 +6487,7 @@ function DotRadioButton({
6487
6487
  const radioControl = jsx(StyledRadioButton, {
6488
6488
  checked: checked,
6489
6489
  classes: {
6490
- root: rootClassName$t
6490
+ root: rootClassName$s
6491
6491
  },
6492
6492
  color: "primary",
6493
6493
  "data-testid": dataTestId,
@@ -6532,7 +6532,7 @@ const DotRadioGroup = ({
6532
6532
  size: _size = 'medium'
6533
6533
  }) => {
6534
6534
  const placement = `${placementClassName}${_labelPlacement}`;
6535
- const rootClasses = useStylesWithRootClass(rootClassName$C, className, placement);
6535
+ const rootClasses = useStylesWithRootClass(rootClassName$B, className, placement);
6536
6536
  const radioValue = value || defaultValue;
6537
6537
  const [selectedValue, setSelectedValue] = useState(radioValue);
6538
6538
  /* This will ensure that value can be updated from the outside */
@@ -6604,7 +6604,7 @@ const DotRadioGroup = ({
6604
6604
  }), void 0);
6605
6605
  };
6606
6606
 
6607
- const rootClassName$s = 'dot-switch';
6607
+ const rootClassName$r = 'dot-switch';
6608
6608
  const StyledSwitch = styled(Switch).withConfig({
6609
6609
  displayName: "Switchstyles__StyledSwitch",
6610
6610
  componentId: "eign2a-0"
@@ -6626,7 +6626,7 @@ const DotSwitch = ({
6626
6626
  onChange,
6627
6627
  size: _size = 'medium'
6628
6628
  }) => {
6629
- const rootClasses = useStylesWithRootClass(rootClassName$s, className);
6629
+ const rootClasses = useStylesWithRootClass(rootClassName$r, className);
6630
6630
  const handleChange = event => {
6631
6631
  onChange && onChange(event);
6632
6632
  };
@@ -6650,7 +6650,7 @@ const DotSwitch = ({
6650
6650
  tabIndex: 0
6651
6651
  }, void 0);
6652
6652
  return jsx(StyledFormControlLabel, {
6653
- className: rootClassName$E,
6653
+ className: rootClassName$D,
6654
6654
  control: switchControl,
6655
6655
  label: label,
6656
6656
  labelPlacement: _labelPlacement
@@ -6974,7 +6974,7 @@ const DotDynamicForm = ({
6974
6974
  onChange,
6975
6975
  onSubmit
6976
6976
  }) => {
6977
- const rootClasses = useStylesWithRootClass(rootClassName$v, className);
6977
+ const rootClasses = useStylesWithRootClass(rootClassName$u, className);
6978
6978
  // Memoize this operation so that is doesn't get executed each time this
6979
6979
  // component re-renders
6980
6980
  const initialFormState = useMemo(() => getInitialFormState(config, _liveValidation), [config, _liveValidation, getInitialFormState]);
@@ -7221,7 +7221,7 @@ const DotDynamicForm = ({
7221
7221
  }), void 0);
7222
7222
  };
7223
7223
 
7224
- const rootClassName$r = 'dot-inline-edit';
7224
+ const rootClassName$q = 'dot-inline-edit';
7225
7225
  const editModeClassName = 'dot-edit-mode';
7226
7226
  const viewModeClassName = 'dot-view-mode';
7227
7227
  const placeholderClassName = 'dot-placeholder';
@@ -7234,7 +7234,7 @@ const StyledInlineEdit = styled.div.withConfig({
7234
7234
  })(["", ""], ({
7235
7235
  theme,
7236
7236
  fullWidth
7237
- }) => 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;&.", "{color:", ";}}}.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$r, 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), placeholderClassName, theme.palette.grey[200], theme.palette.error[500], theme.palette.error[500], theme.spacing(0), ({
7237
+ }) => 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;&.", "{color:", ";}}}.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$q, 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), placeholderClassName, theme.palette.grey[200], theme.palette.error[500], theme.palette.error[500], theme.spacing(0), ({
7238
7238
  typography
7239
7239
  }) => typography && `
7240
7240
  .MuiInputBase-root {
@@ -7359,7 +7359,7 @@ const DotInlineEdit = ({
7359
7359
  }
7360
7360
  }, [_value]);
7361
7361
  const isSaveDisabled = checkIfEmptyValue(inputValue);
7362
- const rootClasses = useStylesWithRootClass(rootClassName$r, className, editing ? editModeClassName : '');
7362
+ const rootClasses = useStylesWithRootClass(rootClassName$q, className, editing ? editModeClassName : '');
7363
7363
  const handleShowTooltip = visible => {
7364
7364
  if (!editing) {
7365
7365
  setShowTooltip(visible);
@@ -7541,14 +7541,14 @@ const DotInlineEdit = ({
7541
7541
  }), void 0);
7542
7542
  };
7543
7543
 
7544
- const rootClassName$q = 'dot-navigation-rail';
7544
+ const rootClassName$p = 'dot-navigation-rail';
7545
7545
  const StyledNavigationRail = styled.div.withConfig({
7546
7546
  displayName: "NavigationRailstyles__StyledNavigationRail",
7547
7547
  componentId: "sc-160kivd-0"
7548
7548
  })(["", ""], ({
7549
7549
  theme,
7550
7550
  railItemPosition
7551
- }) => 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$q, 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)));
7551
+ }) => 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$p, 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)));
7552
7552
 
7553
7553
  const MAX_ALLOWED_ITEMS = 7;
7554
7554
  const DotNavigationRail = ({
@@ -7560,7 +7560,7 @@ const DotNavigationRail = ({
7560
7560
  railItems,
7561
7561
  selectedIndex: _selectedIndex = 0
7562
7562
  }) => {
7563
- const rootClasses = useStylesWithRootClass(rootClassName$q, className);
7563
+ const rootClasses = useStylesWithRootClass(rootClassName$p, className);
7564
7564
  const [selectedItemIndex, setSelectedItemIndex] = useState(_selectedIndex);
7565
7565
  /* Used to change selected index programmatically from the consumer component */
7566
7566
  useEffect(() => {
@@ -7614,13 +7614,13 @@ const DotNavigationRail = ({
7614
7614
  }), void 0);
7615
7615
  };
7616
7616
 
7617
- const rootClassName$p = 'dot-pill';
7617
+ const rootClassName$o = 'dot-pill';
7618
7618
  const StyledPill = styled(Chip).withConfig({
7619
7619
  displayName: "Pillstyles__StyledPill",
7620
7620
  componentId: "l7oxi2-0"
7621
7621
  })(["", ""], ({
7622
7622
  theme
7623
- }) => css(["&.", "{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}&.MuiChip-outlined{&.error{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.success{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.warning{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.in-progress{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}}&.MuiChip-filled{&.error{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.success{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.warning{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.in-progress{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}}}"], rootClassName$p, ({
7623
+ }) => css(["&.", "{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}&.MuiChip-outlined{&.error{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.success{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.warning{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.in-progress{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}}&.MuiChip-filled{&.error{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.success{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.warning{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}&.in-progress{background-color:", ";border-color:", ";color:", ";.dot-icon{color:", ";}}}}"], rootClassName$o, ({
7624
7624
  backgroundcolor
7625
7625
  }) => {
7626
7626
  return backgroundcolor || theme.palette.grey[200];
@@ -7651,7 +7651,7 @@ const DotPill = ({
7651
7651
  status: _status = 'default',
7652
7652
  variant: _variant = 'filled'
7653
7653
  }) => {
7654
- const rootClasses = useStylesWithRootClass(rootClassName$p, className, _status);
7654
+ const rootClasses = useStylesWithRootClass(rootClassName$o, className, _status);
7655
7655
  return jsx(StyledPill, {
7656
7656
  "aria-label": ariaLabel,
7657
7657
  bordercolor: bordercolor,
@@ -7669,13 +7669,13 @@ const DotPill = ({
7669
7669
  }, void 0);
7670
7670
  };
7671
7671
 
7672
- const rootClassName$o = 'dot-skeleton';
7672
+ const rootClassName$n = 'dot-skeleton';
7673
7673
  const StyledSkeleton = styled(Skeleton).withConfig({
7674
7674
  displayName: "Skeletonstyles__StyledSkeleton",
7675
7675
  componentId: "sc-17ayzv5-0"
7676
7676
  })(["", ""], ({
7677
7677
  theme
7678
- }) => css(["&.", "{background-color:", ";}"], rootClassName$o, theme.palette.grey[100]));
7678
+ }) => css(["&.", "{background-color:", ";}"], rootClassName$n, theme.palette.grey[100]));
7679
7679
 
7680
7680
  const DotSkeleton = ({
7681
7681
  ariaLabel,
@@ -7686,7 +7686,7 @@ const DotSkeleton = ({
7686
7686
  width,
7687
7687
  variant
7688
7688
  }) => {
7689
- const rootClasses = useStylesWithRootClass(rootClassName$o, className);
7689
+ const rootClasses = useStylesWithRootClass(rootClassName$n, className);
7690
7690
  return jsx(StyledSkeleton, Object.assign({
7691
7691
  animation: "wave",
7692
7692
  "aria-label": ariaLabel,
@@ -7702,13 +7702,13 @@ const DotSkeleton = ({
7702
7702
  }), void 0);
7703
7703
  };
7704
7704
 
7705
- const rootClassName$n = 'dot-snackbar';
7705
+ const rootClassName$m = 'dot-snackbar';
7706
7706
  const StyledSnackbar = styled(Snackbar).withConfig({
7707
7707
  displayName: "Snackbarstyles__StyledSnackbar",
7708
7708
  componentId: "sc-1huxoy3-0"
7709
7709
  })(["", ""], ({
7710
7710
  theme
7711
- }) => 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$n, 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));
7711
+ }) => 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$m, 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));
7712
7712
 
7713
7713
  function addAutoHideDuration(severity) {
7714
7714
  return severity === 'error' ? null : 10000;
@@ -7743,7 +7743,7 @@ const DotSnackbar = ({
7743
7743
  onClose,
7744
7744
  action
7745
7745
  });
7746
- const rootClasses = useStylesWithRootClass(rootClassName$n, className);
7746
+ const rootClasses = useStylesWithRootClass(rootClassName$m, className);
7747
7747
  return jsx(StyledSnackbar, Object.assign({
7748
7748
  anchorOrigin: _anchorOrigin,
7749
7749
  "aria-label": ariaLabel,
@@ -7773,11 +7773,11 @@ const DotSnackbar = ({
7773
7773
  }), void 0);
7774
7774
  };
7775
7775
 
7776
- const rootClassName$m = 'dot-snackbar-container';
7776
+ const rootClassName$l = 'dot-snackbar-container';
7777
7777
  const StyledSnackbarContainer = styled.div.withConfig({
7778
7778
  displayName: "SnackbarContainerstyles__StyledSnackbarContainer",
7779
7779
  componentId: "sc-1ogwjuc-0"
7780
- })(["", ""], () => css(["&.", "{position:absolute;top:0;width:250px;height:auto;right:0;& > div{position:relative;}}"], rootClassName$m));
7780
+ })(["", ""], () => css(["&.", "{position:absolute;top:0;width:250px;height:auto;right:0;& > div{position:relative;}}"], rootClassName$l));
7781
7781
 
7782
7782
  const DotSnackbarContext = /*#__PURE__*/createContext({
7783
7783
  alerts: [],
@@ -7795,11 +7795,11 @@ const DotSnackbarContainer = () => {
7795
7795
  };
7796
7796
  }
7797
7797
  return jsx(StyledSnackbarContainer, Object.assign({
7798
- className: rootClassName$m
7798
+ className: rootClassName$l
7799
7799
  }, {
7800
7800
  children: jsx("div", Object.assign({
7801
- className: rootClassName$m,
7802
- "data-testid": rootClassName$m
7801
+ className: rootClassName$l,
7802
+ "data-testid": rootClassName$l
7803
7803
  }, {
7804
7804
  children: alerts.slice().reverse().map(alert => {
7805
7805
  return jsx(DotSnackbar, Object.assign({
@@ -7854,13 +7854,13 @@ const useDotSnackbarContext = () => {
7854
7854
  return useContext(DotSnackbarContext);
7855
7855
  };
7856
7856
 
7857
- const rootClassName$l = 'dot-split-button-group';
7857
+ const rootClassName$k = 'dot-split-button-group';
7858
7858
  const StyledSplitButtonGroup = styled(ButtonGroup).withConfig({
7859
7859
  displayName: "SplitButtonstyles__StyledSplitButtonGroup",
7860
7860
  componentId: "ild520-0"
7861
7861
  })(["", ""], ({
7862
7862
  theme
7863
- }) => 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$l, 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']));
7863
+ }) => 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$k, 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']));
7864
7864
  const StyledMenu$2 = styled(DotMenu).withConfig({
7865
7865
  displayName: "SplitButtonstyles__StyledMenu",
7866
7866
  componentId: "ild520-1"
@@ -7889,7 +7889,7 @@ const DotSplitButton = ({
7889
7889
  tooltip,
7890
7890
  type: _type = 'primary'
7891
7891
  }) => {
7892
- const rootClasses = useStylesWithRootClass(rootClassName$l, className, _type, _disabled ? 'disabled' : '');
7892
+ const rootClasses = useStylesWithRootClass(rootClassName$k, className, _type, _disabled ? 'disabled' : '');
7893
7893
  const [open, setOpen] = useState(false);
7894
7894
  const anchorRef = useRef(null);
7895
7895
  const hasEmptyOptions = _options.length === 0;
@@ -7955,7 +7955,7 @@ const DotSplitButton = ({
7955
7955
  }, void 0);
7956
7956
  };
7957
7957
 
7958
- const rootClassName$k = 'dot-stepper';
7958
+ const rootClassName$j = 'dot-stepper';
7959
7959
  const stepListClassName = 'dot-stepper-list';
7960
7960
  const contentClassName = 'dot-stepper-content';
7961
7961
  const StyledStepper = styled.div.withConfig({
@@ -7963,7 +7963,7 @@ const StyledStepper = styled.div.withConfig({
7963
7963
  componentId: "sc-1qka0yq-0"
7964
7964
  })(["", ""], ({
7965
7965
  theme
7966
- }) => css(["&.", "{display:flex;align-items:flex-start;padding:0;width:100%;&.left{flex-direction:row;}&.right{flex-direction:row-reverse;}.", "{padding:", ";&.MuiStepper-horizontal{padding:0;display:flex;flex-direction:column;}.MuiStep-root{width:315px;.dot-icon{display:flex;background:", ";border-radius:50%;color:", ";height:28px;width:28px;}.dot-typography{color:", ";}.MuiStepContent-root{border-left-color:", ";}&.MuiStep-horizontal{padding:", ";.dot-avatar i:before{color:", ";}.dot-avatar,.dot-icon{background:", ";}.dot-typography{color:", ";}.horizontal-step-description{color:", ";}&:hover{cursor:pointer;}&.completed{.dot-avatar i:before{color:", ";}.dot-avatar,.dot-icon{background:", ";}}&.active{background:", ";}&.error{.dot-avatar i:before{color:", ";}.dot-avatar,.dot-icon{background:", ";}}&.in-progress{.dot-avatar i:before{color:", ";}}}&.MuiStep-vertical{&.completed{.dot-typography,.dot-icon{color:", ";}}&.active{.dot-icon{background:", ";color:", ";}.step-label.dot-typography{color:", ";}.dot-typography{color:", ";}}&.inactive .step-label.dot-typography{color:", ";}&.error{.dot-typography{color:", ";}.dot-icon{background:", ";border:1px solid ", ";color:", ";}}}&.disabled{.dot-icon{color:", ";}.dot-typography{color:", ";}}&:last-of-type .MuiStepContent-root{border-left-color:transparent;}}}.", "{width:100%;.step-content-container{padding:", ";}}}"], rootClassName$k, stepListClassName, theme.spacing(3), theme.palette.primary['50'], theme.palette.primary['50'], theme.palette.layer.n300, theme.palette.layer.n300, theme.spacing(1), theme.palette.layer.n300, theme.palette.layer.n100, theme.palette.layer.n500, theme.palette.layer.n400, theme.palette.secondary['500'], theme.palette.secondary['50'], theme.palette.layer['n50'], theme.palette.error['500'], theme.palette.error['50'], theme.palette.primary['400'], theme.palette.layer.n700, theme.palette.primary['400'], theme.palette.layer.n0, theme.palette.primary['500'], theme.palette.layer.n700, theme.palette.layer.n400, theme.palette.error.main, theme.palette.layer.n0, theme.palette.error.main, theme.palette.error.main, theme.palette.primary['50'], theme.palette.layer.n300, contentClassName, theme.spacing(3, 3, 2, 3)));
7966
+ }) => css(["&.", "{display:flex;align-items:flex-start;padding:0;width:100%;&.left{flex-direction:row;}&.right{flex-direction:row-reverse;}.", "{padding:", ";&.MuiStepper-horizontal{padding:0;display:flex;flex-direction:column;}.MuiStep-root{width:315px;.dot-icon{display:flex;background:", ";border-radius:50%;color:", ";height:28px;width:28px;}.dot-typography{color:", ";}.MuiStepContent-root{border-left-color:", ";}&.MuiStep-horizontal{padding:", ";.dot-avatar i:before{color:", ";}.dot-avatar,.dot-icon{background:", ";}.dot-typography{color:", ";}.horizontal-step-description{color:", ";}&:hover{cursor:pointer;}&.completed{.dot-avatar i:before{color:", ";}.dot-avatar,.dot-icon{background:", ";}}&.active{background:", ";}&.error{.dot-avatar i:before{color:", ";}.dot-avatar,.dot-icon{background:", ";}}&.in-progress{.dot-avatar i:before{color:", ";}}}&.MuiStep-vertical{&.completed{.dot-typography,.dot-icon{color:", ";}}&.active{.dot-icon{background:", ";color:", ";}.step-label.dot-typography{color:", ";}.dot-typography{color:", ";}}&.inactive .step-label.dot-typography{color:", ";}&.error{.dot-typography{color:", ";}.dot-icon{background:", ";border:1px solid ", ";color:", ";}}}&.disabled{.dot-icon{color:", ";}.dot-typography{color:", ";}}&:last-of-type .MuiStepContent-root{border-left-color:transparent;}}}.", "{width:100%;.step-content-container{padding:", ";}}}"], rootClassName$j, stepListClassName, theme.spacing(3), theme.palette.primary['50'], theme.palette.primary['50'], theme.palette.layer.n300, theme.palette.layer.n300, theme.spacing(1), theme.palette.layer.n300, theme.palette.layer.n100, theme.palette.layer.n500, theme.palette.layer.n400, theme.palette.secondary['500'], theme.palette.secondary['50'], theme.palette.layer['n50'], theme.palette.error['500'], theme.palette.error['50'], theme.palette.primary['400'], theme.palette.layer.n700, theme.palette.primary['400'], theme.palette.layer.n0, theme.palette.primary['500'], theme.palette.layer.n700, theme.palette.layer.n400, theme.palette.error.main, theme.palette.layer.n0, theme.palette.error.main, theme.palette.error.main, theme.palette.primary['50'], theme.palette.layer.n300, contentClassName, theme.spacing(3, 3, 2, 3)));
7967
7967
  const ScrollbarContainer = styled.div.withConfig({
7968
7968
  displayName: "Stepperstyles__ScrollbarContainer",
7969
7969
  componentId: "sc-1qka0yq-1"
@@ -8033,7 +8033,7 @@ const DotStepper = ({
8033
8033
  const displayFinalContent = finalContent && currentStep > steps.length;
8034
8034
  const displayCancelButton = !!(!displayInitialContent && !displayFinalContent && onCancel);
8035
8035
  const isLastStep = currentStep === steps.length && !finalContent || currentStep > steps.length && finalContent;
8036
- const rootClasses = useStylesWithRootClass(rootClassName$k, _stepsPosition, className);
8036
+ const rootClasses = useStylesWithRootClass(rootClassName$j, _stepsPosition, className);
8037
8037
  const stepContentClasses = displayInitialContent || displayFinalContent ? 'center-content' : '';
8038
8038
  const stickyBottomClasses = useStylesWithRootClass(isStickyBottom ? 'with-top-border' : '');
8039
8039
  const actionsClasses = useStylesWithRootClass('actions', displayInitialContent || displayFinalContent ? 'center-actions' : '');
@@ -8250,7 +8250,7 @@ const DotStepper = ({
8250
8250
  }), void 0);
8251
8251
  };
8252
8252
 
8253
- const rootClassName$j = 'dot-table-pagination';
8253
+ const rootClassName$i = 'dot-table-pagination';
8254
8254
  // TO-DO: Determine how to apply styles to standard popper element
8255
8255
  const paginationItemClassName = 'dot-pagination-menu-item';
8256
8256
  const StyledTablePagination = styled.div.withConfig({
@@ -8259,7 +8259,7 @@ const StyledTablePagination = styled.div.withConfig({
8259
8259
  })(["", ""], ({
8260
8260
  theme,
8261
8261
  typography
8262
- }) => 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$j, theme.palette.grey[200], theme.typography[typography].fontFamily, theme.typography[typography].fontSize, theme.typography[typography].letterSpacing, theme.typography[typography].lineHeight));
8262
+ }) => 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$i, theme.palette.grey[200], theme.typography[typography].fontFamily, theme.typography[typography].fontSize, theme.typography[typography].letterSpacing, theme.typography[typography].lineHeight));
8263
8263
 
8264
8264
  const ROWS_PER_PAGE_OPTIONS = [10, 25, 50, 100, 150, 200];
8265
8265
  /** This component wraps the TablePagination component from @material-ui. */
@@ -8276,7 +8276,7 @@ const DotTablePagination = ({
8276
8276
  rowsPerPageOptions: _rowsPerPageOptions = [...ROWS_PER_PAGE_OPTIONS],
8277
8277
  typography: _typography = 'subtitle2'
8278
8278
  }) => {
8279
- const rootClasses = useStylesWithRootClass(rootClassName$j, className);
8279
+ const rootClasses = useStylesWithRootClass(rootClassName$i, className);
8280
8280
  const handlePageChange = (event, newPage) => {
8281
8281
  onPageChange && onPageChange(newPage);
8282
8282
  };
@@ -8285,7 +8285,7 @@ const DotTablePagination = ({
8285
8285
  };
8286
8286
  return (/* Container is used to pass 'typography' prop to a styled component */
8287
8287
  jsx(StyledTablePagination, Object.assign({
8288
- className: rootClassName$j,
8288
+ className: rootClassName$i,
8289
8289
  typography: _typography
8290
8290
  }, {
8291
8291
  children: jsx(TablePagination, {
@@ -8312,13 +8312,13 @@ const DotTablePagination = ({
8312
8312
  );
8313
8313
  };
8314
8314
 
8315
- const rootClassName$i = 'dot-table';
8315
+ const rootClassName$h = 'dot-table';
8316
8316
  const StyledPaper = styled(Paper).withConfig({
8317
8317
  displayName: "Tablestyles__StyledPaper",
8318
8318
  componentId: "s95z6y-0"
8319
8319
  })(["", ""], ({
8320
8320
  theme
8321
- }) => css(["&.", "{overflow:hidden;border:1px solid ", ";&.loading{opacity:0.4;pointer-events:none;.dot-table-pagination{display:none;}}}"], rootClassName$i, theme.palette.layer.n100));
8321
+ }) => css(["&.", "{overflow:hidden;border:1px solid ", ";&.loading{opacity:0.4;pointer-events:none;.dot-table-pagination{display:none;}}}"], rootClassName$h, theme.palette.layer.n100));
8322
8322
  const StyledTableContainer = styled(TableContainer).withConfig({
8323
8323
  displayName: "Tablestyles__StyledTableContainer",
8324
8324
  componentId: "s95z6y-1"
@@ -8330,6 +8330,12 @@ const StyledMenu$1 = styled(DotMenu).withConfig({
8330
8330
  componentId: "s95z6y-2"
8331
8331
  })([".dot-ul > li{padding:0;> button{width:100%;margin:0;justify-content:flex-start;}}"]);
8332
8332
 
8333
+ const rootClassName$g = 'dot-tbody';
8334
+ const StyledTableBody = styled(TableBody).withConfig({
8335
+ displayName: "TableBodystyles__StyledTableBody",
8336
+ componentId: "wszqgk-0"
8337
+ })(["", ""], () => css(["&.", "{tr:last-child td{border-bottom:none;}.empty-row td{text-align:center;}}"], rootClassName$g));
8338
+
8333
8339
  const getFormattedTableCellValue = (
8334
8340
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
8335
8341
  value, typographyVariant) => {
@@ -8396,12 +8402,24 @@ const getExpandedRowIds = (expandedIds, id, isExpand) => {
8396
8402
  }
8397
8403
  return newIds;
8398
8404
  };
8405
+ const parseCellMaxWidth = width => {
8406
+ if (!width) {
8407
+ return;
8408
+ }
8409
+ // if contains % then convert to % of viewport
8410
+ if (width.includes('%')) {
8411
+ const percent = Number.parseFloat(width) / 100;
8412
+ return `calc(100vw * ${percent})`;
8413
+ }
8414
+ // if contains 'px' or 'vw' then pass as is
8415
+ return width;
8416
+ };
8399
8417
 
8400
- const rootClassName$h = 'dot-td';
8418
+ const rootClassName$f = 'dot-td';
8401
8419
  const StyledTableCell = styled(TableCell).withConfig({
8402
8420
  displayName: "TableCellstyles__StyledTableCell",
8403
8421
  componentId: "e84k25-0"
8404
- })(["", ""], () => 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$h));
8422
+ })(["", ""], () => 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$f));
8405
8423
 
8406
8424
  /**
8407
8425
  * A wrapper component around the TableCell component from @material-ui.
@@ -8446,7 +8464,7 @@ const DotBodyCell = ({
8446
8464
  const isOverflowing = actionTableCellWidth > (wrapperRef === null || wrapperRef === void 0 ? void 0 : wrapperRef.current.clientWidth);
8447
8465
  setShowMenu(isOverflowing);
8448
8466
  };
8449
- const rootClasses = useStylesWithRootClass(rootClassName$h, className, noWrap && 'noWrap', Array.isArray(value) && 'actionItems');
8467
+ const rootClasses = useStylesWithRootClass(rootClassName$f, className, noWrap && 'noWrap', Array.isArray(value) && 'actionItems');
8450
8468
  const getTableCellValue = () => {
8451
8469
  if (Array.isArray(value)) {
8452
8470
  return jsx("div", Object.assign({
@@ -8459,7 +8477,7 @@ const DotBodyCell = ({
8459
8477
  iconSize: "small",
8460
8478
  onClick: () => onActionMenuTrigger(wrapperRef.current, value),
8461
8479
  size: "small"
8462
- }, void 0) : value.map((item, index) => {
8480
+ }, void 0) : value.map(item => {
8463
8481
  if (item.onclick) {
8464
8482
  console.warn('The onclick property is deprecated, please use onClick instead');
8465
8483
  }
@@ -8472,7 +8490,7 @@ const DotBodyCell = ({
8472
8490
  onClick: item.onClick || item.onclick,
8473
8491
  size: "small",
8474
8492
  tooltip: item.tooltip
8475
- }, `${cellKey}-icon-${index}`);
8493
+ }, `${cellKey}-icon-${CreateUUID()}`);
8476
8494
  })
8477
8495
  }), void 0);
8478
8496
  }
@@ -8492,179 +8510,464 @@ const DotBodyCell = ({
8492
8510
  }), void 0);
8493
8511
  };
8494
8512
 
8495
- const rootClassName$g = 'dot-td-checkbox';
8496
- const StyledTableBodyCheckboxCell = styled(TableCell).withConfig({
8497
- displayName: "TableBodyCheckboxCellstyles__StyledTableBodyCheckboxCell",
8498
- componentId: "ebk3sz-0"
8499
- })(["", ""], ({
8500
- theme
8501
- }) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$g, theme.spacing(5), theme.spacing(0, 1)));
8502
-
8503
- const DotBodyCheckboxCell = ({
8504
- ariaLabel,
8505
- className,
8506
- 'data-testid': dataTestId,
8507
- isChecked,
8508
- onChange,
8509
- rowId
8513
+ const EmptyDotRow = ({
8514
+ cols,
8515
+ message: _message = 'No data found',
8516
+ typography
8510
8517
  }) => {
8511
- const rootClasses = useStylesWithRootClass(rootClassName$g, className);
8512
- const [isCheckboxChecked, setIsCheckboxChecked] = useState(isChecked);
8513
- /** This effect is used when 'checked' status is changed from the outside */
8514
- useEffect(() => {
8515
- setIsCheckboxChecked(isChecked);
8516
- }, [isChecked]);
8517
- const handleChange = e => {
8518
- const checked = e.target.checked;
8519
- setIsCheckboxChecked(checked);
8520
- onChange(checked, rowId);
8521
- };
8522
- return jsx(StyledTableBodyCheckboxCell, Object.assign({
8523
- align: "left",
8524
- className: rootClasses,
8525
- "data-testid": dataTestId
8518
+ return jsx(TableRow, Object.assign({
8519
+ className: "empty-row"
8526
8520
  }, {
8527
- children: jsx(DotCheckbox, {
8528
- ariaLabel: ariaLabel,
8529
- checked: isCheckboxChecked,
8530
- "data-testid": "table-body-checkbox",
8531
- onChange: handleChange,
8532
- size: "small"
8521
+ children: jsx(DotBodyCell, {
8522
+ typography: typography,
8523
+ colspan: cols,
8524
+ value: _message
8533
8525
  }, void 0)
8534
- }), void 0);
8526
+ }), CreateUUID());
8535
8527
  };
8536
8528
 
8537
- const rootClassName$f = 'dot-tr';
8529
+ const rootClassName$e = 'dot-tr';
8538
8530
  const StyledTableRowStyles = styled(TableRow).withConfig({
8539
8531
  displayName: "TableRowstyles__StyledTableRowStyles",
8540
8532
  componentId: "a4fx2l-0"
8541
8533
  })(["", ""], ({
8542
8534
  theme
8543
- }) => css(["&.", "{&.selected{background-color:", ";}&:hover{background-color:", ";}}"], rootClassName$f, theme.palette.primary[50], theme.palette.grey[50]));
8535
+ }) => css(["&.", "{&.selected{background-color:", ";}&:hover{background-color:", ";}}"], rootClassName$e, theme.palette.primary[50], theme.palette.grey[50]));
8544
8536
 
8545
- const rootClassName$e = 'dot-td-expand-collapse';
8546
- const StyledTableBodyExpandCollapseCell = styled(TableCell).withConfig({
8547
- displayName: "TableBodyExpandCollapseCellstyles__StyledTableBodyExpandCollapseCell",
8548
- componentId: "sc-1eomk5k-0"
8537
+ const TABLE_TYPOGRAPHY_VARIANT = 'body1';
8538
+ const TABLE_DEFAULT_SKELETON_ROWS = 4;
8539
+
8540
+ const rootClassName$d = 'dot-th-checkbox';
8541
+ const StyledTableHeaderCheckboxCell = styled(TableCell).withConfig({
8542
+ displayName: "TableHeaderCheckboxCellstyles__StyledTableHeaderCheckboxCell",
8543
+ componentId: "ymqg8x-0"
8549
8544
  })(["", ""], ({
8550
8545
  theme
8551
- }) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$e, theme.spacing(5), theme.spacing(0, 1)));
8546
+ }) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$d, theme.spacing(5), theme.spacing(0, 1)));
8552
8547
 
8553
- const DotBodyExpandCollapseCell = ({
8548
+ const DotHeaderCheckboxCell = ({
8554
8549
  ariaLabel,
8555
8550
  className,
8556
8551
  'data-testid': dataTestId,
8557
- isExpanded,
8558
- onRowExpandCollapse,
8559
- rowId
8552
+ multiSelectState,
8553
+ onCheckAllChange
8560
8554
  }) => {
8561
- const rootClasses = useStylesWithRootClass(rootClassName$e, className);
8562
- const [isCellExpanded, setIsCellExpanded] = useState(isExpanded);
8563
- /** This effect is used when 'expand' status is changed from the outside */
8555
+ const rootClasses = useStylesWithRootClass(rootClassName$d, className);
8556
+ const [checkboxState, setCheckboxState] = useState('unchecked');
8564
8557
  useEffect(() => {
8565
- setIsCellExpanded(isExpanded);
8566
- }, [isExpanded]);
8567
- const handleIconClick = (event, expand) => {
8568
- setIsCellExpanded(expand);
8569
- onRowExpandCollapse(expand, rowId);
8570
- event.stopPropagation();
8558
+ setCheckboxState(multiSelectState);
8559
+ }, [multiSelectState]);
8560
+ const getNextCheckboxState = currentCheckboxState => {
8561
+ if (currentCheckboxState === 'indeterminate' || currentCheckboxState === 'checked') return 'unchecked';
8562
+ return 'checked';
8571
8563
  };
8572
- return jsx(StyledTableBodyExpandCollapseCell, Object.assign({
8564
+ const isIndeterminate = checkboxState === 'indeterminate';
8565
+ const isCheckboxChecked = checkboxState === 'checked';
8566
+ const handleChange = () => {
8567
+ const nextState = getNextCheckboxState(checkboxState);
8568
+ setCheckboxState(nextState);
8569
+ onCheckAllChange(nextState === 'checked', []);
8570
+ };
8571
+ return jsx(StyledTableHeaderCheckboxCell, Object.assign({
8573
8572
  align: "left",
8574
8573
  className: rootClasses,
8575
8574
  "data-testid": dataTestId
8576
8575
  }, {
8577
- children: jsx(DotIconButton, {
8576
+ children: jsx(DotCheckbox, {
8578
8577
  ariaLabel: ariaLabel,
8579
- iconId: isCellExpanded ? 'chevron-up' : 'chevron-down',
8580
- onClick: event => handleIconClick(event, !isCellExpanded),
8578
+ checked: isCheckboxChecked,
8579
+ "data-testid": "multi-select-checkbox",
8580
+ indeterminate: isIndeterminate,
8581
+ onChange: handleChange,
8581
8582
  size: "small"
8582
8583
  }, void 0)
8583
8584
  }), void 0);
8584
8585
  };
8585
8586
 
8586
- const rootClassName$d = 'dot-collapsible-container';
8587
- const StyledCollapsibleTableWrapper = styled.div.withConfig({
8588
- displayName: "TableBodyCollapsibleTablestyles__StyledCollapsibleTableWrapper",
8589
- componentId: "sc-42frd0-0"
8587
+ const rootClassName$c = 'dot-th';
8588
+ const StyledTableHeaderCell = styled(TableCell).withConfig({
8589
+ displayName: "TableHeaderCellstyles__StyledTableHeaderCell",
8590
+ componentId: "nko9j-0"
8590
8591
  })(["", ""], ({
8591
8592
  theme
8592
- }) => css(["&.", "{.dot-tbody{tr:not(:last-child) td{border-bottom:1px solid ", ";}}.dot-collapsible-table-title{align-items:center;display:flex;flex-wrap:nowrap;padding:", ";}}"], rootClassName$d, theme.palette.layer.n100, theme.spacing(1, 2)));
8593
+ }) => css(["&.", "{&.MuiTableCell-alignCenter > span.MuiTableSortLabel-root{padding-left:26px;}> span.MuiTableSortLabel-root.Mui-focusVisible{.dot-cell-typography{color:", ";text-decoration:underline;}}.dot-cell-typography{font-family:", ";}}"], rootClassName$c, theme.palette.primary.main, theme.typography.h4.fontFamily));
8593
8594
 
8594
- const DotBodyCollapsibleTable = ({
8595
- collapsibleTableBody,
8596
- isExpanded,
8597
- loading,
8598
- rowData
8595
+ /**
8596
+ * A wrapper component around the TableCell component from @material-ui. This component should only
8597
+ * be used inside DotHeaderRow.
8598
+ */
8599
+ const DotHeaderCell = ({
8600
+ align,
8601
+ typography,
8602
+ createSortHandler,
8603
+ id,
8604
+ order,
8605
+ orderBy,
8606
+ sortable: _sortable = true,
8607
+ sortDirection,
8608
+ uid,
8609
+ value,
8610
+ width
8599
8611
  }) => {
8600
- const tableId = CreateUUID();
8601
- const nestedTableRowData = collapsibleTableBody ? rowData[collapsibleTableBody.nestedTableDataPropName] : null;
8602
- const nestedTableColumns = collapsibleTableBody ? collapsibleTableBody.nestedTableColumns : null;
8603
- const nestedRow = nestedTableRowData instanceof Array ? nestedTableRowData.map(nestedRowData => {
8604
- return {
8605
- rowData: nestedRowData
8606
- };
8607
- }) : [];
8608
- return jsx(StyledCollapsibleTableWrapper, Object.assign({
8609
- className: rootClassName$d
8610
- }, {
8611
- children: jsxs(Collapse, Object.assign({
8612
- in: isExpanded
8613
- }, {
8614
- children: [collapsibleTableBody.nestedTableTitle && jsx(DotTypography, Object.assign({
8615
- className: "dot-collapsible-table-title",
8616
- variant: "h3"
8612
+ const headerTitle = isString$1(value) ? value : null;
8613
+ const formattedValue = getFormattedTableCellValue(value, typography);
8614
+ const getCellValue = () => {
8615
+ if (_sortable) {
8616
+ const orderById = orderBy === id;
8617
+ return jsx(TableSortLabel, Object.assign({
8618
+ active: orderById,
8619
+ "data-testid": "table-sort-label",
8620
+ direction: orderById ? order : 'asc',
8621
+ onClick: createSortHandler && createSortHandler(id)
8617
8622
  }, {
8618
- children: collapsibleTableBody.nestedTableTitle
8619
- }), void 0), jsx(DotTable, {
8620
- columns: nestedTableColumns,
8621
- data: nestedRow,
8622
- emptyMessage: collapsibleTableBody.nestedTableEmptyMessage,
8623
- loading: loading,
8624
- stickyHeader: false,
8625
- sortable: false
8626
- }, tableId)]
8627
- }), void 0)
8628
- }), void 0);
8623
+ children: formattedValue
8624
+ }), void 0);
8625
+ }
8626
+ return formattedValue;
8627
+ };
8628
+ const headerCellStyle = width ? {
8629
+ width: width
8630
+ } : undefined;
8631
+ return jsx(StyledTableHeaderCell, Object.assign({
8632
+ align: align,
8633
+ classes: {
8634
+ root: rootClassName$c
8635
+ },
8636
+ sortDirection: _sortable ? sortDirection : undefined,
8637
+ style: headerCellStyle,
8638
+ title: headerTitle
8639
+ }, {
8640
+ children: getCellValue()
8641
+ }), uid);
8629
8642
  };
8630
8643
 
8631
8644
  /**
8632
- * A wrapper component around the TableRow component from @material-ui. This component can be used
8633
- * for manipulating data prior to displaying the data inside the table
8645
+ * A wrapper component around the TableHead component from @material-ui. This component can be used
8646
+ * to determine the functionality of the table header.
8634
8647
  */
8635
- const DotTableRow = ({
8636
- collapsibleTableBody,
8648
+ const DotHeaderRow = ({
8649
+ collapsibleTableOptions,
8637
8650
  columns,
8638
- className,
8639
- data,
8640
- multiSelectBody,
8641
- onActionMenuTrigger,
8642
- onClick,
8643
- rowKey,
8644
- selected,
8651
+ multiSelectHeader,
8652
+ onRequestSort,
8653
+ order,
8654
+ orderBy,
8655
+ sortable: _sortable = false,
8645
8656
  typography
8646
8657
  }) => {
8647
- const id = data.id;
8648
- const rowData = data.rowData;
8649
- const [collapsibleTableLoading, setCollapsibleTableLoading] = useState(false);
8650
- const handleOnClick = event => {
8651
- onClick && onClick(event, id.toString());
8658
+ const createSortHandler = property => _event => {
8659
+ onRequestSort(property);
8652
8660
  };
8661
+ const [multiSelectState, setMultiSelectState] = useState('unchecked');
8653
8662
  const {
8654
- onCheckIndividualChange,
8663
+ onCheckAllChange,
8664
+ pageData,
8655
8665
  selectedTableRowIds
8656
- } = multiSelectBody || {};
8657
- const isCheckboxChecked = selectedTableRowIds && selectedTableRowIds.includes(id) || false;
8658
- const rootClasses = useStylesWithRootClass(rootClassName$f, isCheckboxChecked ? 'selected' : undefined, className);
8659
- const renderCheckboxCell = () => {
8660
- return jsx(DotBodyCheckboxCell, {
8661
- ariaLabel: "Click to select this row",
8662
- isChecked: isCheckboxChecked,
8663
- onChange: onCheckIndividualChange,
8664
- rowId: id
8666
+ } = multiSelectHeader || {};
8667
+ useEffect(() => {
8668
+ if (!multiSelectHeader) return;
8669
+ if (selectedTableRowIds && selectedTableRowIds.length > 0 && pageData) {
8670
+ const itemsNumber = pageData.length;
8671
+ const checkedItemsNumber = pageData.filter(row => selectedTableRowIds.includes(row.id)).length;
8672
+ if (itemsNumber === checkedItemsNumber) {
8673
+ setMultiSelectState('checked');
8674
+ return;
8675
+ }
8676
+ if (checkedItemsNumber > 0) {
8677
+ setMultiSelectState('indeterminate');
8678
+ return;
8679
+ }
8680
+ }
8681
+ setMultiSelectState('unchecked');
8682
+ }, [multiSelectHeader]);
8683
+ const renderMultiSelectCell = () => {
8684
+ return jsx(DotHeaderCheckboxCell, {
8685
+ ariaLabel: "Click to select all table page rows",
8686
+ multiSelectState: multiSelectState,
8687
+ onCheckAllChange: onCheckAllChange
8665
8688
  }, void 0);
8666
8689
  };
8667
- const {
8690
+ return jsx(TableHead, Object.assign({
8691
+ classes: {
8692
+ root: 'dot-thead'
8693
+ }
8694
+ }, {
8695
+ children: jsxs(TableRow, Object.assign({
8696
+ classes: {
8697
+ root: 'dot-tr'
8698
+ }
8699
+ }, {
8700
+ children: [multiSelectHeader && renderMultiSelectCell(), collapsibleTableOptions && jsx(TableCell, {
8701
+ "aria-hidden": "true"
8702
+ }, void 0), columns.map(cell => {
8703
+ return jsx(DotHeaderCell, {
8704
+ align: cell.align,
8705
+ createSortHandler: createSortHandler,
8706
+ id: cell.id,
8707
+ order: order,
8708
+ orderBy: orderBy,
8709
+ sortDirection: orderBy === cell.id ? order : undefined,
8710
+ sortable: _sortable && cell.sortable,
8711
+ truncate: cell.truncate,
8712
+ typography: typography,
8713
+ uid: CreateUUID(),
8714
+ value: cell.label,
8715
+ width: cell.width
8716
+ }, CreateUUID());
8717
+ })]
8718
+ }), void 0)
8719
+ }), void 0);
8720
+ };
8721
+
8722
+ const CollapsibleTableBody = ({
8723
+ nestedTableBodyTypography: _nestedTableBodyTypography = TABLE_TYPOGRAPHY_VARIANT,
8724
+ nestedTableColumns,
8725
+ nestedTableEmptyMessage,
8726
+ nestedTableRowData,
8727
+ parentRowKey
8728
+ }) => {
8729
+ const getNestedTableBodyRows = () => {
8730
+ return !nestedTableRowData || nestedTableRowData.length === 0 ? jsx(EmptyDotRow, {
8731
+ cols: nestedTableColumns.length,
8732
+ message: nestedTableEmptyMessage,
8733
+ typography: _nestedTableBodyTypography
8734
+ }, void 0) : nestedTableRowData.map(row => {
8735
+ const uid = CreateUUID();
8736
+ return jsx(StyledTableRowStyles, Object.assign({
8737
+ className: "dot-tr"
8738
+ }, {
8739
+ children: nestedTableColumns.map(column => {
8740
+ const colId = column.id;
8741
+ return jsx(DotBodyCell, {
8742
+ align: column.align,
8743
+ cellKey: `${parentRowKey}-${uid}-${colId}`,
8744
+ typography: _nestedTableBodyTypography,
8745
+ noWrap: column.truncate,
8746
+ style: {
8747
+ maxWidth: parseCellMaxWidth(column.width)
8748
+ },
8749
+ value: row[colId]
8750
+ }, colId);
8751
+ })
8752
+ }), `${parentRowKey}-${uid}`);
8753
+ });
8754
+ };
8755
+ return jsx(StyledTableBody, Object.assign({
8756
+ className: "dot-tbody"
8757
+ }, {
8758
+ children: getNestedTableBodyRows()
8759
+ }), void 0);
8760
+ };
8761
+
8762
+ const CollapsibleTableClassName = 'dot-collapsible-table-container';
8763
+ const StyledCollapsibleTableWrapper = styled.div.withConfig({
8764
+ displayName: "CollapsibleTablestyles__StyledCollapsibleTableWrapper",
8765
+ componentId: "sc-7uzf9c-0"
8766
+ })(["", ""], ({
8767
+ theme
8768
+ }) => css(["&.", "{border:1px solid ", ";&.loading{opacity:0.4;pointer-events:none;}}"], CollapsibleTableClassName, theme.palette.layer.n100));
8769
+
8770
+ const DotCollapsibleTable = ({
8771
+ collapsibleTableBody,
8772
+ loading,
8773
+ parentRowKey,
8774
+ rowData
8775
+ }) => {
8776
+ const rootClasses = useStylesWithRootClass(CollapsibleTableClassName, loading ? 'loading' : '');
8777
+ const nestedTableColumns = collapsibleTableBody ? collapsibleTableBody.nestedTableColumns : null;
8778
+ const nestedTableRowData = collapsibleTableBody ? rowData[collapsibleTableBody.nestedTableDataPropName] : null;
8779
+ const {
8780
+ nestedTableHeaderTypography,
8781
+ nestedTableBodyTypography,
8782
+ nestedTableEmptyMessage,
8783
+ nestedTableTitle
8784
+ } = Object.assign({}, collapsibleTableBody);
8785
+ const getSkeletonData = () => {
8786
+ const skeletonData = [];
8787
+ const skeletonRow = {};
8788
+ nestedTableColumns.forEach(column => {
8789
+ skeletonRow[column.id] = jsx(DotSkeleton, Object.assign({
8790
+ width: "300"
8791
+ }, {
8792
+ children: jsx("span", {
8793
+ children: column.label
8794
+ }, void 0)
8795
+ }), void 0);
8796
+ });
8797
+ for (let i = 0; i < TABLE_DEFAULT_SKELETON_ROWS; i++) {
8798
+ skeletonData.push(skeletonRow);
8799
+ }
8800
+ return skeletonData;
8801
+ };
8802
+ const renderTitleAsRow = () => {
8803
+ return nestedTableTitle && jsx(TableHead, {
8804
+ children: jsx(TableRow, {
8805
+ children: jsx(TableCell, Object.assign({
8806
+ colSpan: nestedTableColumns.length
8807
+ }, {
8808
+ children: jsx(DotTypography, Object.assign({
8809
+ variant: "h4"
8810
+ }, {
8811
+ children: nestedTableTitle
8812
+ }), void 0)
8813
+ }), void 0)
8814
+ }, void 0)
8815
+ }, void 0);
8816
+ };
8817
+ const getData = () => {
8818
+ return loading ? getSkeletonData() : nestedTableRowData;
8819
+ };
8820
+ // TODO: Implement sorting for nested tables
8821
+ const onSortRequest = () => {
8822
+ return;
8823
+ };
8824
+ return jsx(StyledCollapsibleTableWrapper, Object.assign({
8825
+ className: rootClasses
8826
+ }, {
8827
+ children: jsx(StyledTableContainer, Object.assign({
8828
+ className: "dot-table-container"
8829
+ }, {
8830
+ children: jsxs(Table, Object.assign({
8831
+ padding: "normal",
8832
+ stickyHeader: false
8833
+ }, {
8834
+ children: [renderTitleAsRow(), jsx(DotHeaderRow, {
8835
+ columns: nestedTableColumns,
8836
+ onRequestSort: onSortRequest,
8837
+ sortable: false,
8838
+ typography: nestedTableHeaderTypography
8839
+ }, void 0), jsx(CollapsibleTableBody, {
8840
+ nestedTableBodyTypography: nestedTableBodyTypography,
8841
+ nestedTableColumns: nestedTableColumns,
8842
+ nestedTableEmptyMessage: nestedTableEmptyMessage,
8843
+ nestedTableRowData: getData(),
8844
+ parentRowKey: parentRowKey
8845
+ }, void 0)]
8846
+ }), void 0)
8847
+ }), void 0)
8848
+ }), void 0);
8849
+ };
8850
+
8851
+ const ExpandCollapseCellClassName = 'dot-td-expand-collapse';
8852
+ const StyledTableBodyExpandCollapseCell = styled(TableCell).withConfig({
8853
+ displayName: "ExpandCollapseCellstyles__StyledTableBodyExpandCollapseCell",
8854
+ componentId: "jtyppp-0"
8855
+ })(["", ""], ({
8856
+ theme
8857
+ }) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], ExpandCollapseCellClassName, theme.spacing(5), theme.spacing(0, 1)));
8858
+
8859
+ const ExpandCollapseCell = ({
8860
+ ariaLabel,
8861
+ className,
8862
+ 'data-testid': dataTestId,
8863
+ isExpanded,
8864
+ onRowExpandCollapse,
8865
+ rowId
8866
+ }) => {
8867
+ const rootClasses = useStylesWithRootClass(ExpandCollapseCellClassName, className);
8868
+ const [isCellExpanded, setIsCellExpanded] = useState(isExpanded);
8869
+ /** This effect is used when 'expand' status is changed from the outside */
8870
+ useEffect(() => {
8871
+ setIsCellExpanded(isExpanded);
8872
+ }, [isExpanded]);
8873
+ const handleIconClick = (event, expand) => {
8874
+ setIsCellExpanded(expand);
8875
+ onRowExpandCollapse(expand, rowId);
8876
+ event.stopPropagation();
8877
+ };
8878
+ return jsx(StyledTableBodyExpandCollapseCell, Object.assign({
8879
+ align: "left",
8880
+ className: rootClasses,
8881
+ "data-testid": dataTestId
8882
+ }, {
8883
+ children: jsx(DotIconButton, {
8884
+ ariaLabel: ariaLabel,
8885
+ iconId: isCellExpanded ? 'chevron-up' : 'chevron-down',
8886
+ onClick: event => handleIconClick(event, !isCellExpanded),
8887
+ size: "small"
8888
+ }, void 0)
8889
+ }), void 0);
8890
+ };
8891
+
8892
+ const rootClassName$b = 'dot-td-checkbox';
8893
+ const StyledTableBodyCheckboxCell = styled(TableCell).withConfig({
8894
+ displayName: "TableBodyCheckboxCellstyles__StyledTableBodyCheckboxCell",
8895
+ componentId: "ebk3sz-0"
8896
+ })(["", ""], ({
8897
+ theme
8898
+ }) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$b, theme.spacing(5), theme.spacing(0, 1)));
8899
+
8900
+ const DotBodyCheckboxCell = ({
8901
+ ariaLabel,
8902
+ className,
8903
+ 'data-testid': dataTestId,
8904
+ isChecked,
8905
+ onChange,
8906
+ rowId
8907
+ }) => {
8908
+ const rootClasses = useStylesWithRootClass(rootClassName$b, className);
8909
+ const [isCheckboxChecked, setIsCheckboxChecked] = useState(isChecked);
8910
+ /** This effect is used when 'checked' status is changed from the outside */
8911
+ useEffect(() => {
8912
+ setIsCheckboxChecked(isChecked);
8913
+ }, [isChecked]);
8914
+ const handleChange = e => {
8915
+ const checked = e.target.checked;
8916
+ setIsCheckboxChecked(checked);
8917
+ onChange(checked, rowId);
8918
+ };
8919
+ return jsx(StyledTableBodyCheckboxCell, Object.assign({
8920
+ align: "left",
8921
+ className: rootClasses,
8922
+ "data-testid": dataTestId
8923
+ }, {
8924
+ children: jsx(DotCheckbox, {
8925
+ ariaLabel: ariaLabel,
8926
+ checked: isCheckboxChecked,
8927
+ "data-testid": "table-body-checkbox",
8928
+ onChange: handleChange,
8929
+ size: "small"
8930
+ }, void 0)
8931
+ }), void 0);
8932
+ };
8933
+
8934
+ /**
8935
+ * A wrapper component around the TableRow component from @material-ui. This component can be used
8936
+ * for manipulating data prior to displaying the data inside the table
8937
+ */
8938
+ const DotTableRow = ({
8939
+ collapsibleTableBody,
8940
+ columns,
8941
+ className,
8942
+ data,
8943
+ multiSelectBody,
8944
+ onActionMenuTrigger,
8945
+ onClick,
8946
+ rowKey,
8947
+ selected,
8948
+ typography
8949
+ }) => {
8950
+ const id = data.id;
8951
+ const rowData = data.rowData;
8952
+ const [collapsibleTableLoading, setCollapsibleTableLoading] = useState(false);
8953
+ const handleOnClick = event => {
8954
+ onClick && onClick(event, id.toString());
8955
+ };
8956
+ const {
8957
+ onCheckIndividualChange,
8958
+ selectedTableRowIds
8959
+ } = multiSelectBody || {};
8960
+ const isCheckboxChecked = selectedTableRowIds && selectedTableRowIds.includes(id) || false;
8961
+ const rootClasses = useStylesWithRootClass(rootClassName$e, isCheckboxChecked ? 'selected' : undefined, className);
8962
+ const renderCheckboxCell = () => {
8963
+ return jsx(DotBodyCheckboxCell, {
8964
+ ariaLabel: "Click to select this row",
8965
+ isChecked: isCheckboxChecked,
8966
+ onChange: onCheckIndividualChange,
8967
+ rowId: id
8968
+ }, void 0);
8969
+ };
8970
+ const {
8668
8971
  onRowExpandCollapseTable,
8669
8972
  expandedTableRowIds
8670
8973
  } = collapsibleTableBody || {};
@@ -8676,7 +8979,7 @@ const DotTableRow = ({
8676
8979
  });
8677
8980
  };
8678
8981
  const renderExpandCollapseCell = () => {
8679
- return jsx(DotBodyExpandCollapseCell, {
8982
+ return jsx(ExpandCollapseCell, {
8680
8983
  ariaLabel: "Click to expand/collapse this row",
8681
8984
  "data-testid": "expand-collapse-cell",
8682
8985
  isExpanded: isCollapsibleTableExpanded,
@@ -8689,27 +8992,15 @@ const DotTableRow = ({
8689
8992
  children: jsx(StyledTableCell, Object.assign({
8690
8993
  colSpan: columns.length + 1
8691
8994
  }, {
8692
- children: jsx(DotBodyCollapsibleTable, {
8995
+ children: jsx(DotCollapsibleTable, {
8693
8996
  collapsibleTableBody: collapsibleTableBody,
8694
- isExpanded: isCollapsibleTableExpanded,
8695
8997
  loading: collapsibleTableLoading,
8998
+ parentRowKey: rowKey,
8696
8999
  rowData: rowData
8697
9000
  }, void 0)
8698
9001
  }), void 0)
8699
9002
  }, void 0);
8700
9003
  };
8701
- const parseMaxWidth = width => {
8702
- if (!width) {
8703
- return;
8704
- }
8705
- // if contains % then convert to % of viewport
8706
- if (width.includes('%')) {
8707
- const percent = Number.parseFloat(width) / 100;
8708
- return `calc(100vw * ${percent})`;
8709
- }
8710
- // if contains 'px' or 'vw' then pass as is
8711
- return `${width}`;
8712
- };
8713
9004
  return jsxs(Fragment, {
8714
9005
  children: [jsxs(StyledTableRowStyles, Object.assign({
8715
9006
  classes: {
@@ -8718,7 +9009,7 @@ const DotTableRow = ({
8718
9009
  onClick: handleOnClick,
8719
9010
  selected: selected
8720
9011
  }, {
8721
- children: [multiSelectBody && renderCheckboxCell(), collapsibleTableBody && renderExpandCollapseCell(), columns.map((column, index) => {
9012
+ children: [multiSelectBody && renderCheckboxCell(), collapsibleTableBody && renderExpandCollapseCell(), columns.map(column => {
8722
9013
  return jsx(DotBodyCell, {
8723
9014
  align: column.align,
8724
9015
  cellKey: rowKey,
@@ -8727,35 +9018,14 @@ const DotTableRow = ({
8727
9018
  noWrap: column.truncate,
8728
9019
  onActionMenuTrigger: (menuRef, menuItem) => onActionMenuTrigger(menuRef, menuItem),
8729
9020
  style: {
8730
- maxWidth: parseMaxWidth(column.width)
9021
+ maxWidth: parseCellMaxWidth(column.width)
8731
9022
  },
8732
9023
  value: rowData[column.id]
8733
- }, index);
9024
+ }, column.id);
8734
9025
  })]
8735
9026
  }), void 0), isCollapsibleTableExpandValid && renderNestedTable()]
8736
9027
  }, void 0);
8737
9028
  };
8738
- const EmptyDotRow = ({
8739
- cols,
8740
- message: _message = 'No data found',
8741
- typography
8742
- }) => {
8743
- return jsx(TableRow, Object.assign({
8744
- className: "empty-row"
8745
- }, {
8746
- children: jsx(DotBodyCell, {
8747
- typography: typography,
8748
- colspan: cols,
8749
- value: _message
8750
- }, void 0)
8751
- }), CreateUUID());
8752
- };
8753
-
8754
- const rootClassName$c = 'dot-tbody';
8755
- const StyledTableBody = styled(TableBody).withConfig({
8756
- displayName: "TableBodystyles__StyledTableBody",
8757
- componentId: "wszqgk-0"
8758
- })(["", ""], () => css(["&.", "{tr:last-child td{border-bottom:none;}.empty-row td{text-align:center;}}"], rootClassName$c));
8759
9029
 
8760
9030
  /**
8761
9031
  * A wrapper component around the TableBody component from @material-ui. This component can be used
@@ -8801,13 +9071,13 @@ const DotTableBody = ({
8801
9071
  rowKey: `${tableId}-row-${index}`,
8802
9072
  selected: row.selected,
8803
9073
  typography: typography
8804
- }, index);
9074
+ }, row.id);
8805
9075
  });
8806
9076
  };
8807
9077
  return jsxs(Fragment, {
8808
9078
  children: [jsx(StyledTableBody, Object.assign({
8809
9079
  classes: {
8810
- root: rootClassName$c
9080
+ root: rootClassName$g
8811
9081
  }
8812
9082
  }, {
8813
9083
  children: getTableBodyRows()
@@ -8823,195 +9093,13 @@ const DotTableBody = ({
8823
9093
  }, void 0);
8824
9094
  };
8825
9095
 
8826
- const rootClassName$b = 'dot-th';
8827
- const StyledTableHeaderCell = styled(TableCell).withConfig({
8828
- displayName: "TableHeaderCellstyles__StyledTableHeaderCell",
8829
- componentId: "nko9j-0"
8830
- })(["", ""], ({
8831
- theme
8832
- }) => css(["&.", "{&.MuiTableCell-alignCenter > span.MuiTableSortLabel-root{padding-left:26px;}> span.MuiTableSortLabel-root.Mui-focusVisible{.dot-cell-typography{color:", ";text-decoration:underline;}}.dot-cell-typography{font-family:", ";}}"], rootClassName$b, theme.palette.primary.main, theme.typography.h4.fontFamily));
8833
-
8834
- /**
8835
- * A wrapper component around the TableCell component from @material-ui. This component should only
8836
- * be used inside DotHeaderRow.
8837
- */
8838
- const DotHeaderCell = ({
8839
- align,
8840
- typography,
8841
- createSortHandler,
8842
- id,
8843
- order,
8844
- orderBy,
8845
- sortable: _sortable = true,
8846
- sortDirection,
8847
- uid,
8848
- value,
8849
- width
8850
- }) => {
8851
- const headerTitle = isString$1(value) ? value : null;
8852
- const formattedValue = getFormattedTableCellValue(value, typography);
8853
- const getCellValue = () => {
8854
- if (_sortable) {
8855
- const orderById = orderBy === id;
8856
- return jsx(TableSortLabel, Object.assign({
8857
- active: orderById,
8858
- "data-testid": "table-sort-label",
8859
- direction: orderById ? order : 'asc',
8860
- onClick: createSortHandler && createSortHandler(id)
8861
- }, {
8862
- children: formattedValue
8863
- }), void 0);
8864
- }
8865
- return formattedValue;
8866
- };
8867
- const headerCellStyle = width ? {
8868
- width: width
8869
- } : undefined;
8870
- return jsx(StyledTableHeaderCell, Object.assign({
8871
- align: align,
8872
- classes: {
8873
- root: rootClassName$b
8874
- },
8875
- sortDirection: _sortable ? sortDirection : undefined,
8876
- style: headerCellStyle,
8877
- title: headerTitle
8878
- }, {
8879
- children: getCellValue()
8880
- }), uid);
8881
- };
8882
-
8883
- const rootClassName$a = 'dot-th-checkbox';
8884
- const StyledTableHeaderCheckboxCell = styled(TableCell).withConfig({
8885
- displayName: "TableHeaderCheckboxCellstyles__StyledTableHeaderCheckboxCell",
8886
- componentId: "ymqg8x-0"
8887
- })(["", ""], ({
8888
- theme
8889
- }) => css(["&.", "{.dot-form-control-label{margin:0;}width:", ";padding:", ";}"], rootClassName$a, theme.spacing(5), theme.spacing(0, 1)));
8890
-
8891
- const DotHeaderCheckboxCell = ({
8892
- ariaLabel,
8893
- className,
8894
- 'data-testid': dataTestId,
8895
- multiSelectState,
8896
- onCheckAllChange
8897
- }) => {
8898
- const rootClasses = useStylesWithRootClass(rootClassName$a, className);
8899
- const [checkboxState, setCheckboxState] = useState('unchecked');
8900
- useEffect(() => {
8901
- setCheckboxState(multiSelectState);
8902
- }, [multiSelectState]);
8903
- const getNextCheckboxState = currentCheckboxState => {
8904
- if (currentCheckboxState === 'indeterminate' || currentCheckboxState === 'checked') return 'unchecked';
8905
- return 'checked';
8906
- };
8907
- const isIndeterminate = checkboxState === 'indeterminate';
8908
- const isCheckboxChecked = checkboxState === 'checked';
8909
- const handleChange = () => {
8910
- const nextState = getNextCheckboxState(checkboxState);
8911
- setCheckboxState(nextState);
8912
- onCheckAllChange(nextState === 'checked', []);
8913
- };
8914
- return jsx(StyledTableHeaderCheckboxCell, Object.assign({
8915
- align: "left",
8916
- className: rootClasses,
8917
- "data-testid": dataTestId
8918
- }, {
8919
- children: jsx(DotCheckbox, {
8920
- ariaLabel: ariaLabel,
8921
- checked: isCheckboxChecked,
8922
- "data-testid": "multi-select-checkbox",
8923
- indeterminate: isIndeterminate,
8924
- onChange: handleChange,
8925
- size: "small"
8926
- }, void 0)
8927
- }), void 0);
8928
- };
8929
-
8930
- /**
8931
- * A wrapper component around the TableHead component from @material-ui. This component can be used
8932
- * to determine the functionality of the table header.
8933
- */
8934
- const DotHeaderRow = ({
8935
- collapsibleTableOptions,
8936
- columns,
8937
- multiSelectHeader,
8938
- onRequestSort,
8939
- order,
8940
- orderBy,
8941
- sortable: _sortable = false,
8942
- typography
8943
- }) => {
8944
- const createSortHandler = property => _event => {
8945
- onRequestSort(property);
8946
- };
8947
- const [multiSelectState, setMultiSelectState] = useState('unchecked');
8948
- const {
8949
- onCheckAllChange,
8950
- pageData,
8951
- selectedTableRowIds
8952
- } = multiSelectHeader || {};
8953
- useEffect(() => {
8954
- if (!multiSelectHeader) return;
8955
- if (selectedTableRowIds && selectedTableRowIds.length > 0 && pageData) {
8956
- const itemsNumber = pageData.length;
8957
- const checkedItemsNumber = pageData.filter(row => selectedTableRowIds.includes(row.id)).length;
8958
- if (itemsNumber === checkedItemsNumber) {
8959
- setMultiSelectState('checked');
8960
- return;
8961
- }
8962
- if (checkedItemsNumber > 0) {
8963
- setMultiSelectState('indeterminate');
8964
- return;
8965
- }
8966
- }
8967
- setMultiSelectState('unchecked');
8968
- }, [multiSelectHeader]);
8969
- const renderMultiSelectCell = () => {
8970
- return jsx(DotHeaderCheckboxCell, {
8971
- ariaLabel: "Click to select all table page rows",
8972
- multiSelectState: multiSelectState,
8973
- onCheckAllChange: onCheckAllChange
8974
- }, void 0);
8975
- };
8976
- return jsx(TableHead, Object.assign({
8977
- classes: {
8978
- root: 'dot-thead'
8979
- }
8980
- }, {
8981
- children: jsxs(TableRow, Object.assign({
8982
- classes: {
8983
- root: 'dot-tr'
8984
- }
8985
- }, {
8986
- children: [multiSelectHeader && renderMultiSelectCell(), collapsibleTableOptions && jsx(TableCell, {
8987
- "aria-hidden": "true"
8988
- }, void 0), columns.map(cell => {
8989
- return jsx(DotHeaderCell, {
8990
- align: cell.align,
8991
- createSortHandler: createSortHandler,
8992
- id: cell.id,
8993
- order: order,
8994
- orderBy: orderBy,
8995
- sortDirection: orderBy === cell.id ? order : undefined,
8996
- sortable: _sortable && cell.sortable,
8997
- truncate: cell.truncate,
8998
- typography: typography,
8999
- uid: CreateUUID(),
9000
- value: cell.label,
9001
- width: cell.width
9002
- }, CreateUUID());
9003
- })]
9004
- }), void 0)
9005
- }), void 0);
9006
- };
9007
-
9008
- const rootClassName$9 = 'dot-table-selection-toolbar';
9096
+ const rootClassName$a = 'dot-table-selection-toolbar';
9009
9097
  const StyledTableSelectionToolbar = styled(DotActionToolbar).withConfig({
9010
9098
  displayName: "TableSelectionToolbarstyles__StyledTableSelectionToolbar",
9011
9099
  componentId: "qpx3y9-0"
9012
9100
  })(["", ""], ({
9013
9101
  theme
9014
- }) => 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$9, theme.palette.primary[50], theme.spacing(0.25, 0.25, 0, 0.5), theme.spacing(0.25, 0, 0, 1)));
9102
+ }) => 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$a, theme.palette.primary[50], theme.spacing(0.25, 0.25, 0, 0.5), theme.spacing(0.25, 0, 0, 1)));
9015
9103
 
9016
9104
  const DotTableSelectionToolbar = ({
9017
9105
  ariaLabel,
@@ -9021,7 +9109,7 @@ const DotTableSelectionToolbar = ({
9021
9109
  onClearAll,
9022
9110
  selectedRowsNumber
9023
9111
  }) => {
9024
- const rootClasses = useStylesWithRootClass(rootClassName$9, className);
9112
+ const rootClasses = useStylesWithRootClass(rootClassName$a, className);
9025
9113
  return jsxs(StyledTableSelectionToolbar, Object.assign({
9026
9114
  ariaLabel: ariaLabel,
9027
9115
  className: rootClasses,
@@ -9056,8 +9144,6 @@ const DotTableSelectionToolbar = ({
9056
9144
  }), void 0);
9057
9145
  };
9058
9146
 
9059
- const TABLE_TYPOGRAPHY_VARIANT = 'body1';
9060
- const skeletonRows = 4;
9061
9147
  const sortComparator = (a, b, orderBy) => {
9062
9148
  if (b.rowData[orderBy] < a.rowData[orderBy]) {
9063
9149
  return -1;
@@ -9122,11 +9208,13 @@ const DotTable = ({
9122
9208
  return onUpdateData ? data : stableSort(data, getComparator(_order, orderBy));
9123
9209
  };
9124
9210
  const [pageData, setPageData] = useState(getSortedData().slice(0, rowsPerPage ? rowsPerPage : data.length));
9125
- const rootClasses = useStylesWithRootClass(rootClassName$i, className, _loading ? 'loading' : '');
9211
+ const rootClasses = useStylesWithRootClass(rootClassName$h, className, _loading ? 'loading' : '');
9126
9212
  const updateData = (newOrder, newOrderBy, newPage, newRowsPerPage) => {
9127
9213
  const newData = stableSort(data, getComparator(newOrder, newOrderBy));
9128
9214
  setPageData(newRowsPerPage ? newData.slice(newPage * newRowsPerPage, newPage * newRowsPerPage + newRowsPerPage) : newData);
9129
9215
  };
9216
+ // Extract this to a helper function that can be used
9217
+ // with CollapsibleTable as well
9130
9218
  const onSortRequest = property => {
9131
9219
  const isAsc = tableOrderBy === property && tableOrder === 'asc';
9132
9220
  const dataOrder = isAsc ? 'desc' : 'asc';
@@ -9159,7 +9247,7 @@ const DotTable = ({
9159
9247
  }, void 0)
9160
9248
  }), void 0);
9161
9249
  });
9162
- for (let i = 0; i < (rowsPerPage ? rowsPerPage : skeletonRows); i++) {
9250
+ for (let i = 0; i < (rowsPerPage ? rowsPerPage : TABLE_DEFAULT_SKELETON_ROWS); i++) {
9163
9251
  skeletonData.push(skeletonRow);
9164
9252
  }
9165
9253
  return skeletonData;
@@ -9323,7 +9411,7 @@ const DotTableAction = ({
9323
9411
  }, void 0);
9324
9412
  };
9325
9413
 
9326
- const rootClassName$8 = 'dot-table-actions';
9414
+ const rootClassName$9 = 'dot-table-actions';
9327
9415
  const TableActionsContainer = styled.div.withConfig({
9328
9416
  displayName: "TableActionsstyles__TableActionsContainer",
9329
9417
  componentId: "sc-8lo813-0"
@@ -9396,7 +9484,7 @@ const DotTableActions = ({
9396
9484
  };
9397
9485
  return jsxs(Fragment, {
9398
9486
  children: [jsxs(TableActionsContainer, Object.assign({
9399
- className: rootClassName$8,
9487
+ className: rootClassName$9,
9400
9488
  ref: wrapperRef
9401
9489
  }, {
9402
9490
  children: [!showMenu && renderTableActions(), (showMenu || actions.length > 2) && jsx(DotIconButton, {
@@ -9421,13 +9509,13 @@ const DotTableActions = ({
9421
9509
  }, void 0);
9422
9510
  };
9423
9511
 
9424
- const rootClassName$7 = 'dot-tabs';
9512
+ const rootClassName$8 = 'dot-tabs';
9425
9513
  const StyledTabs = styled(Tabs).withConfig({
9426
9514
  displayName: "Tabsstyles__StyledTabs",
9427
9515
  componentId: "sc-1pmrz8k-0"
9428
9516
  })(["", ""], ({
9429
9517
  theme
9430
- }) => 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$7, theme.spacing(0.5), theme.palette.layer.n100, theme.spacing(0.5)));
9518
+ }) => 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$8, theme.spacing(0.5), theme.palette.layer.n100, theme.spacing(0.5)));
9431
9519
 
9432
9520
  const DotTabs = ({
9433
9521
  centered: _centered = false,
@@ -9441,7 +9529,7 @@ const DotTabs = ({
9441
9529
  variant: _variant = 'standard'
9442
9530
  }) => {
9443
9531
  const [value, setValue] = useState(_initialValue);
9444
- const rootClasses = useStylesWithRootClass(rootClassName$7, className);
9532
+ const rootClasses = useStylesWithRootClass(rootClassName$8, className);
9445
9533
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
9446
9534
  const handleChange = (_event, val) => {
9447
9535
  setValue(val);
@@ -9491,9 +9579,9 @@ const DotTabs = ({
9491
9579
  }), void 0);
9492
9580
  };
9493
9581
 
9494
- const rootClassName$6 = 'dot-file-upload';
9495
- const containerClassName$2 = `${rootClassName$6}-container`;
9496
- const dropZoneClassName = `${rootClassName$6}-drop-zone`;
9582
+ const rootClassName$7 = 'dot-file-upload';
9583
+ const containerClassName$2 = `${rootClassName$7}-container`;
9584
+ const dropZoneClassName = `${rootClassName$7}-drop-zone`;
9497
9585
  const StyledFileUploadContainer = styled.div.withConfig({
9498
9586
  displayName: "FileUploadstyles__StyledFileUploadContainer",
9499
9587
  componentId: "sc-1q8bcxy-0"
@@ -9505,15 +9593,15 @@ const StyledFileUpload = styled.div.withConfig({
9505
9593
  componentId: "sc-1q8bcxy-1"
9506
9594
  })(["", ""], ({
9507
9595
  theme
9508
- }) => 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$6, 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));
9596
+ }) => 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$7, 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));
9509
9597
 
9510
- const rootClassName$5 = 'dot-file-list-item';
9598
+ const rootClassName$6 = 'dot-file-list-item';
9511
9599
  const StyledFileListItem = styled(StyledListItem).withConfig({
9512
9600
  displayName: "FileListItemstyles__StyledFileListItem",
9513
9601
  componentId: "sc-6mp1tz-0"
9514
9602
  })(["", ""], ({
9515
9603
  theme
9516
- }) => 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$5, theme.palette.layer.n100, theme.palette.layer.n50, theme.palette.layer.n100, rootClassName$5, theme.palette.secondary.main, rootClassName$5, theme.palette.error.main, theme.spacing(1), theme.palette.error.main));
9604
+ }) => 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$6, theme.palette.layer.n100, theme.palette.layer.n50, theme.palette.layer.n100, rootClassName$6, theme.palette.secondary.main, rootClassName$6, theme.palette.error.main, theme.spacing(1), theme.palette.error.main));
9517
9605
 
9518
9606
  const DotFileListItem = ({
9519
9607
  ariaLabel,
@@ -9528,7 +9616,7 @@ const DotFileListItem = ({
9528
9616
  onKeyPress,
9529
9617
  tabIndex: _tabIndex = 0
9530
9618
  }) => {
9531
- const rootClasses = useStylesWithRootClass(rootClassName$5, className, _error ? 'file-error' : 'file-success');
9619
+ const rootClasses = useStylesWithRootClass(rootClassName$6, className, _error ? 'file-error' : 'file-success');
9532
9620
  const defaultIcon = _error ? 'error-solid' : 'check-solid';
9533
9621
  const [endIcon, setEndIcon] = useState(defaultIcon);
9534
9622
  const handleItemClick = clickedFile => _event => onClick === null || onClick === void 0 ? void 0 : onClick(clickedFile);
@@ -9565,7 +9653,7 @@ const DotFileListItem = ({
9565
9653
  }), void 0)]
9566
9654
  }), void 0), jsx(DotIconButton, {
9567
9655
  ariaLabel: "delete file",
9568
- className: `${rootClassName$5}-end-icon`,
9656
+ className: `${rootClassName$6}-end-icon`,
9569
9657
  "data-testid": dataTestId && `${dataTestId}-end-icon`,
9570
9658
  disabled: disableDelete,
9571
9659
  iconId: endIcon,
@@ -9699,7 +9787,7 @@ const DotFileUpload = ({
9699
9787
  const [uploadedFiles, setUploadedFiles] = useState([]);
9700
9788
  const [hasMaxFilesError, setHasMaxFilesError] = useState(false);
9701
9789
  const isUploadDisabled = disabled || maxFiles && uploadedFiles.length >= maxFiles;
9702
- const rootClasses = useStylesWithRootClass(rootClassName$6, className, !_buttonOnly ? dropZoneClassName : '', isUploadDisabled ? 'disabled' : '');
9790
+ const rootClasses = useStylesWithRootClass(rootClassName$7, className, !_buttonOnly ? dropZoneClassName : '', isUploadDisabled ? 'disabled' : '');
9703
9791
  const maxFilesClasses = useStylesWithRootClass('dot-max-files-message', hasMaxFilesError ? 'dot-max-files-reached' : '');
9704
9792
  const allowMultiple = maxFiles === undefined || maxFiles > 1;
9705
9793
  const setNewlyUploadedFiles = (acceptedFiles, fileRejections) => {
@@ -9771,11 +9859,11 @@ const DotFileUpload = ({
9771
9859
  }), void 0);
9772
9860
  };
9773
9861
 
9774
- const rootClassName$4 = 'dot-divider';
9862
+ const rootClassName$5 = 'dot-divider';
9775
9863
  const StyledDivider = styled(Divider).withConfig({
9776
9864
  displayName: "Dividerstyles__StyledDivider",
9777
9865
  componentId: "yu3sip-0"
9778
- })(["", ""], () => css(["&.", "{}"], rootClassName$4));
9866
+ })(["", ""], () => css(["&.", "{}"], rootClassName$5));
9779
9867
 
9780
9868
  const DotDivider = ({
9781
9869
  absolute,
@@ -9787,7 +9875,7 @@ const DotDivider = ({
9787
9875
  orientation,
9788
9876
  variant
9789
9877
  }) => {
9790
- const rootClasses = useStylesWithRootClass(rootClassName$4, className);
9878
+ const rootClasses = useStylesWithRootClass(rootClassName$5, className);
9791
9879
  return jsx(StyledDivider, {
9792
9880
  absolute: absolute,
9793
9881
  "aria-label": ariaLabel,
@@ -9814,7 +9902,7 @@ const DotPopper = ({
9814
9902
  open,
9815
9903
  placement
9816
9904
  }) => {
9817
- const rootClasses = useStylesWithRootClass(rootClassName$Z, className);
9905
+ const rootClasses = useStylesWithRootClass(rootClassName$Y, className);
9818
9906
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
9819
9907
  const handleClickAway = event => {
9820
9908
  if (onClickAway && (!anchorEl || !anchorEl.contains(event.currentTarget))) {
@@ -9854,7 +9942,7 @@ const DotPopper = ({
9854
9942
  }), void 0);
9855
9943
  };
9856
9944
 
9857
- const rootClassName$3 = 'dot-draggable-list';
9945
+ const rootClassName$4 = 'dot-draggable-list';
9858
9946
  const listItemClassName = 'dot-draggable-list-item';
9859
9947
  const StyledDraggableList = styled.div.withConfig({
9860
9948
  displayName: "DraggableListstyles__StyledDraggableList",
@@ -9862,7 +9950,7 @@ const StyledDraggableList = styled.div.withConfig({
9862
9950
  })(["", ""], ({
9863
9951
  theme,
9864
9952
  draggableHandle
9865
- }) => css(["&.", "{padding:", ";position:relative;.", "{.dot-icon{color:", ";}&.react-draggable-dragging{background-color:", ";}&.with-default-cursor{cursor:default;}&.with-handle-grab-cursor ", "{cursor:grab;}}}"], rootClassName$3, theme.spacing(1, 0), listItemClassName, theme.palette.layer.n700, theme.palette.grey[50], draggableHandle));
9953
+ }) => css(["&.", "{padding:", ";position:relative;.", "{.dot-icon{color:", ";}&.react-draggable-dragging{background-color:", ";}&.with-default-cursor{cursor:default;}&.with-handle-grab-cursor ", "{cursor:grab;}}}"], rootClassName$4, theme.spacing(1, 0), listItemClassName, theme.palette.layer.n700, theme.palette.grey[50], draggableHandle));
9866
9954
 
9867
9955
  const getOrderedListItems = (layout, listItems) => {
9868
9956
  if (!listItems || !layout) return [];
@@ -9896,7 +9984,7 @@ const DotDraggableList = ({
9896
9984
  rowHeight: _rowHeight = DEFAULT_LIST_ITEM_HEIGHT,
9897
9985
  width: _width = DEFAULT_LIST_WIDTH
9898
9986
  }) => {
9899
- const rootClasses = useStylesWithRootClass(rootClassName$3, className, draggableHandle ? 'with-draggable-handle' : '');
9987
+ const rootClasses = useStylesWithRootClass(rootClassName$4, className, draggableHandle ? 'with-draggable-handle' : '');
9900
9988
  const listItemClasses = useStylesWithRootClass(listItemClassName, draggableHandle && !disableDrag ? 'with-handle-grab-cursor' : '', draggableHandle || disableDrag ? 'with-default-cursor' : '');
9901
9989
  const listWidth = isNumber(_width) ? `${_width}px` : _width;
9902
9990
  const [orderedItems, setOrderedItems] = useState([]);
@@ -9949,11 +10037,11 @@ const DotDraggableList = ({
9949
10037
  }), void 0);
9950
10038
  };
9951
10039
 
9952
- const rootClassName$2 = 'dot-linear-progress';
10040
+ const rootClassName$3 = 'dot-linear-progress';
9953
10041
  const StyledLinearProgress = styled(LinearProgress).withConfig({
9954
10042
  displayName: "LinearProgressstyles__StyledLinearProgress",
9955
10043
  componentId: "sc-1qhzxb3-0"
9956
- })(["&.", "{}"], rootClassName$2);
10044
+ })(["&.", "{}"], rootClassName$3);
9957
10045
 
9958
10046
  const DotLinearProgress = ({
9959
10047
  ariaLabel,
@@ -9964,7 +10052,7 @@ const DotLinearProgress = ({
9964
10052
  valueBuffer,
9965
10053
  variant: _variant = 'indeterminate'
9966
10054
  }) => {
9967
- const rootClasses = useStylesWithRootClass(rootClassName$2, className);
10055
+ const rootClasses = useStylesWithRootClass(rootClassName$3, className);
9968
10056
  useEffect(() => {
9969
10057
  if (!ariaLabel) {
9970
10058
  console.warn('a11y: DotLinearProgress must have an ariaLabel to describe the progress bar');
@@ -10003,19 +10091,19 @@ const getContextEnumBasedOnTarget = (event, inputElement, contextEnum) => {
10003
10091
  return currentContextEnum;
10004
10092
  };
10005
10093
 
10006
- const rootClassName$1 = 'dot-date-picker';
10094
+ const rootClassName$2 = 'dot-date-picker';
10007
10095
  const containerClassName$1 = 'dot-date-picker-container';
10008
10096
  const rectanglePickersDayClassName = 'dot-rectangle-pickers-day';
10009
10097
  const StyledDatePickerContainer = styled.div.withConfig({
10010
10098
  displayName: "DatePickerstyles__StyledDatePickerContainer",
10011
10099
  componentId: "sc-1to4suu-0"
10012
- })(["&.", " .full-width{width:100%;}"], rootClassName$1);
10100
+ })(["&.", " .full-width{width:100%;}"], rootClassName$2);
10013
10101
  const StyledDatePicker = styled(DatePicker).withConfig({
10014
10102
  displayName: "DatePickerstyles__StyledDatePicker",
10015
10103
  componentId: "sc-1to4suu-1"
10016
10104
  })(["", ""], ({
10017
10105
  theme
10018
- }) => css(["&.", "{", ";.Mui-disabled.MuiInputBase-root,&.read-only .MuiInputBase-root{", ";}.MuiFormLabel-root{color:", ";}}"], rootClassName$1, pickerInputStyles(theme), readOnlyStyles(theme), theme.palette.layer.n500));
10106
+ }) => css(["&.", "{", ";.Mui-disabled.MuiInputBase-root,&.read-only .MuiInputBase-root{", ";}.MuiFormLabel-root{color:", ";}}"], rootClassName$2, pickerInputStyles(theme), readOnlyStyles(theme), theme.palette.layer.n500));
10019
10107
  const StyledPickersDay = styled(PickersDay).withConfig({
10020
10108
  displayName: "DatePickerstyles__StyledPickersDay",
10021
10109
  componentId: "sc-1to4suu-2"
@@ -10074,7 +10162,7 @@ const DotDatePicker = ({
10074
10162
  const hasBothValueAndDefaultValue = value !== undefined && defaultValue !== undefined;
10075
10163
  const isInputReadOnly = _readOnly || hasValueWithoutChangeHandler || hasBothValueAndDefaultValue;
10076
10164
  const inputRef = useRef(null);
10077
- const rootClasses = useStylesWithRootClass(rootClassName$1, className, isInputReadOnly ? 'read-only' : '');
10165
+ const rootClasses = useStylesWithRootClass(rootClassName$2, className, isInputReadOnly ? 'read-only' : '');
10078
10166
  const containerClasses = useStylesWithRootClass(containerClassName$1, _fullWidth ? 'full-width' : '', className);
10079
10167
  const focusInput = ref => {
10080
10168
  setTimeout(() => {
@@ -10281,7 +10369,7 @@ const getTimePickerButtonType = selectedDaytime => selectedDaytime && selectedDa
10281
10369
  const checkIfOpenPropDefined = open => open !== null && open !== undefined;
10282
10370
  const getDaytimeButtonType = daytimeSelected => daytimeSelected && daytimeSelected === Daytime.AM ? 'primary' : 'text';
10283
10371
 
10284
- const rootClassName = 'dot-time-picker';
10372
+ const rootClassName$1 = 'dot-time-picker';
10285
10373
  const containerClassName = 'dot-time-picker-container';
10286
10374
  const TIME_SELECTION_HEIGHT_SPACING = 34.5;
10287
10375
  const TIME_SELECTION_WIDTH_SPACING = 14.5;
@@ -10298,7 +10386,7 @@ const StyledTimePicker = styled(TimePicker).withConfig({
10298
10386
  componentId: "sc-17aptuh-1"
10299
10387
  })(["", ""], ({
10300
10388
  theme
10301
- }) => css(["&.", "{", ";.Mui-disabled.MuiInputBase-root,&.read-only .MuiInputBase-root{", ";}.MuiFormLabel-root{color:", ";}}"], rootClassName, pickerInputStyles(theme), readOnlyStyles(theme), theme.palette.layer.n500));
10389
+ }) => css(["&.", "{", ";.Mui-disabled.MuiInputBase-root,&.read-only .MuiInputBase-root{", ";}.MuiFormLabel-root{color:", ";}}"], rootClassName$1, pickerInputStyles(theme), readOnlyStyles(theme), theme.palette.layer.n500));
10302
10390
 
10303
10391
  dayjs.extend(utc);
10304
10392
  const DEFAULT_PICKER_TIME_FORMAT = 'HH:mm';
@@ -10340,7 +10428,7 @@ const DotTimePicker = ({
10340
10428
  const hasValueWithoutChangeHandler = value !== undefined && onChange === undefined;
10341
10429
  const hasBothValueAndDefaultValue = value !== undefined && defaultValue !== undefined;
10342
10430
  const isComponentReadOnly = _readOnly || hasValueWithoutChangeHandler || hasBothValueAndDefaultValue;
10343
- const rootClasses = useStylesWithRootClass(rootClassName, className, isComponentReadOnly ? 'read-only' : '');
10431
+ const rootClasses = useStylesWithRootClass(rootClassName$1, className, isComponentReadOnly ? 'read-only' : '');
10344
10432
  const containerClasses = useStylesWithRootClass(containerClassName, _fullWidth ? 'full-width' : '', className);
10345
10433
  const inputRef = useRef(null);
10346
10434
  const [isPickerOpened, setIsPickerOpened] = useState(false);
@@ -10639,4 +10727,189 @@ const DotTimePicker = ({
10639
10727
  }), void 0);
10640
10728
  };
10641
10729
 
10642
- export { Cell, CreateUUID, CssCell, CssGrid, CssGridDebug, DatePickerKeydownContext, Daytime, DotAccordion, DotActionToolbar, DotAlertBanner, DotAppLogo, DotAppSwitcher, DotAppToolbar, DotAutoComplete, DotAvatar, DotAvatarGroup, DotBadge, DotBreadcrumbs, DotButton, DotButtonToggle, DotCard, DotCardContent, DotCardFooter, DotCardHeader, DotCheckbox, DotCheckboxGroup, DotChip, DotClickAwayListener, 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, DotStepper, DotSwitch, DotTable, DotTableAction, DotTableActions, DotTablePagination, DotTabs, DotThemeProvider, DotTimePicker, DotTooltip, DotTruncateWithTooltip, DotTypography, avatarColors, checkIfValidDate, lightThemeColors as lightColors, mockScrollIntoView, parseAutoCompleteValue, variables as themeVariables, typographyOptions, useDotCoreApiContext, useDotSnackbarContext };
10730
+ const rootClassName = 'dot-carousel';
10731
+ const StyledCarousel = styled.div.withConfig({
10732
+ displayName: "Carouselstyles__StyledCarousel",
10733
+ componentId: "sc-1a1m8lq-0"
10734
+ })(["", ""], ({
10735
+ backgroundColor,
10736
+ theme
10737
+ }) => css(["&.", "{display:flex;flex-direction:column;justify-content:space-between;height:100%;overflow-x:hidden;&.with-background-color{background-color:", ";}.no-animation .MuiLinearProgress-bar{transition:0ms;}.MuiLinearProgress-bar{transition:1000ms;transition-timing-function:linear;}.carousel-top-container{flex-grow:1;padding:", ";.carousel-left-arrow{position:sticky;position:-webkit-sticky;float:left;top:calc(50% - ", ");}.carousel-right-arrow{position:sticky;position:-webkit-sticky;float:right;top:calc(50% - ", ");}.carousel-left-arrow,.carousel-right-arrow{&.top{top:", ";}&.bottom{z-index:1;top:calc(100% - ", ");}}.carousel-page{display:flex;flex-direction:row;justify-content:space-between;height:100%;margin:", ";.carousel-page-main-content-container{display:grid;width:100%;.carousel-page-main-content{grid-column:1;grid-row:1;}}}}.carousel-bottom-container{position:sticky;position:-webkit-sticky;bottom:0;width:100%;text-align:center;.carousel-page-button{margin-bottom:", ";}}}"], rootClassName, backgroundColor || 'transparent', theme.spacing(2, 0), theme.spacing(4), theme.spacing(4), theme.spacing(2), theme.spacing(4), theme.spacing(0, 3), theme.spacing(2)));
10738
+
10739
+ const DotCarousel = ({
10740
+ animation: _animation = 'fade',
10741
+ ariaLabel,
10742
+ autoPlay,
10743
+ backgroundColor,
10744
+ className,
10745
+ currentPage,
10746
+ 'data-testid': dataTestId,
10747
+ displayNavigationButtons: _displayNavigationButtons = 'center',
10748
+ duration: _duration = 3,
10749
+ initialPage: _initialPage = 0,
10750
+ onPageChange,
10751
+ pagesContent,
10752
+ pauseAutoPlayOnHover,
10753
+ progressIndicator,
10754
+ showPagesButtons: _showPagesButtons = true
10755
+ }) => {
10756
+ const rootClasses = useStylesWithRootClass(rootClassName, className, backgroundColor ? 'with-background-color' : '');
10757
+ const rightNavigationButtonClasses = useStylesWithRootClass('carousel-right-arrow', _displayNavigationButtons);
10758
+ const leftNavigationButtonClasses = useStylesWithRootClass('carousel-left-arrow', _displayNavigationButtons);
10759
+ const createUuids = () => {
10760
+ const uuids = [];
10761
+ for (const _page of pagesContent) {
10762
+ uuids.push(CreateUUID());
10763
+ }
10764
+ return uuids;
10765
+ };
10766
+ const containerRef = useRef(null);
10767
+ const [selectedPage, setSelectedPage] = useState(_initialPage);
10768
+ const [pagesUuids, _setPagesUuids] = useState(createUuids());
10769
+ const [navigationDirection, setNavigationDirection] = useState('right');
10770
+ const [progress, setProgress] = useState(0);
10771
+ const [pausedAutoPlay, setPausedAutoPlay] = useState(false);
10772
+ useEffect(() => {
10773
+ // for autoPlay carousel
10774
+ // each second the progress in incremented, unless paused
10775
+ // once progress reaches the duration, the next page is shown and progress is reset to 0
10776
+ const interval = autoPlay && !pausedAutoPlay && setInterval(() => {
10777
+ setProgress(prev => prev + 1);
10778
+ }, 1000);
10779
+ return () => interval && clearInterval(interval);
10780
+ }, [autoPlay, pausedAutoPlay]);
10781
+ useEffect(() => {
10782
+ progress >= _duration && handlePageChange(nextPage());
10783
+ }, [selectedPage, pagesContent, progress, _duration]);
10784
+ useEffect(() => {
10785
+ if (currentPage !== undefined && currentPage !== null && currentPage !== selectedPage) {
10786
+ changePage(currentPage);
10787
+ }
10788
+ }, [currentPage]);
10789
+ const changePage = newPage => {
10790
+ _animation === 'slide' && setNavigationDirection(calculateCarouselNavigationDirection(newPage));
10791
+ setSelectedPage(newPage);
10792
+ setProgress(0);
10793
+ };
10794
+ const handlePageChange = newPage => {
10795
+ changePage(newPage);
10796
+ onPageChange === null || onPageChange === void 0 ? void 0 : onPageChange(newPage);
10797
+ };
10798
+ const pauseAutoPlay = paused => {
10799
+ autoPlay && pauseAutoPlayOnHover && setPausedAutoPlay(paused);
10800
+ };
10801
+ const nextPage = () => {
10802
+ return selectedPage + 1 === pagesContent.length ? 0 : selectedPage + 1;
10803
+ };
10804
+ const previousPage = () => {
10805
+ return selectedPage - 1 === -1 ? pagesContent.length - 1 : selectedPage - 1;
10806
+ };
10807
+ const calculateCarouselNavigationDirection = newPage => {
10808
+ const isNavigatingFromFirstToLast = selectedPage === 0 && newPage === pagesContent.length - 1;
10809
+ const isNavigatingFromLastToFirst = selectedPage === pagesContent.length - 1 && newPage === 0;
10810
+ const isNavigatingToLaterPage = newPage > selectedPage;
10811
+ if (isNavigatingFromLastToFirst || isNavigatingToLaterPage && !isNavigatingFromFirstToLast) return 'right';else return 'left';
10812
+ };
10813
+ const getSlideDirectionForPage = index => {
10814
+ let slideDirection = navigationDirection;
10815
+ if (selectedPage === index) slideDirection = navigationDirection === 'right' ? 'left' : 'right';
10816
+ return slideDirection;
10817
+ };
10818
+ const renderPageContentWithAnimation = (uuid, index) => {
10819
+ const pageContent = jsx("div", Object.assign({
10820
+ className: "carousel-page-main-content"
10821
+ }, {
10822
+ children: pagesContent[index]
10823
+ }), void 0);
10824
+ if (_animation === 'fade') {
10825
+ return jsx(Fade, Object.assign({
10826
+ "data-testid": `carousel-fade-animation-${index}`,
10827
+ in: selectedPage === index,
10828
+ timeout: 600
10829
+ }, {
10830
+ children: pageContent
10831
+ }), `fade-animation-${uuid}`);
10832
+ }
10833
+ if (_animation === 'slide') {
10834
+ return jsx(Slide, Object.assign({
10835
+ easing: {
10836
+ enter: 'ease',
10837
+ exit: 'ease'
10838
+ },
10839
+ "data-testid": `carousel-slide-animation-${index}`,
10840
+ direction: getSlideDirectionForPage(index),
10841
+ in: selectedPage === index,
10842
+ timeout: 600,
10843
+ container: containerRef.current
10844
+ }, {
10845
+ children: pageContent
10846
+ }), `slide-animation-${uuid}`);
10847
+ }
10848
+ };
10849
+ const renderLeftNavigationButton = () => {
10850
+ return jsx(DotIconButton, {
10851
+ className: leftNavigationButtonClasses,
10852
+ color: "default",
10853
+ "data-testid": "carousel-left-arrow",
10854
+ iconId: "chevron-left",
10855
+ onClick: _event => handlePageChange(previousPage()),
10856
+ size: "small"
10857
+ }, void 0);
10858
+ };
10859
+ const renderRightNavigationButton = () => {
10860
+ return jsx(DotIconButton, {
10861
+ className: rightNavigationButtonClasses,
10862
+ color: "default",
10863
+ "data-testid": "carousel-right-arrow",
10864
+ iconId: "chevron-right",
10865
+ onClick: _event => handlePageChange(nextPage()),
10866
+ size: "small"
10867
+ }, void 0);
10868
+ };
10869
+ return jsxs(StyledCarousel, Object.assign({
10870
+ "aria-label": ariaLabel,
10871
+ backgroundColor: backgroundColor,
10872
+ className: rootClasses,
10873
+ "data-testid": dataTestId,
10874
+ onMouseOver: () => pauseAutoPlay(true),
10875
+ onMouseOut: () => pauseAutoPlay(false),
10876
+ onFocus: () => pauseAutoPlay(true),
10877
+ onBlur: () => pauseAutoPlay(false),
10878
+ ref: containerRef
10879
+ }, {
10880
+ children: [jsxs("div", Object.assign({
10881
+ className: "carousel-top-container"
10882
+ }, {
10883
+ children: [_displayNavigationButtons !== 'none' && renderLeftNavigationButton(), _displayNavigationButtons !== 'none' && renderRightNavigationButton(), jsx("div", Object.assign({
10884
+ className: "carousel-page"
10885
+ }, {
10886
+ children: jsx("div", Object.assign({
10887
+ className: "carousel-page-main-content-container"
10888
+ }, {
10889
+ children: pagesContent.map((_node, index) => renderPageContentWithAnimation(pagesUuids[index], index))
10890
+ }), void 0)
10891
+ }), void 0)]
10892
+ }), void 0), jsxs("div", Object.assign({
10893
+ className: "carousel-bottom-container"
10894
+ }, {
10895
+ children: [_showPagesButtons && pagesContent.map((_node, index) => {
10896
+ return jsx(DotIconButton, {
10897
+ className: "carousel-page-button",
10898
+ color: "primary",
10899
+ "data-testid": `carousel-page-button-${index}`,
10900
+ iconId: selectedPage === index ? 'circle' : 'circle-outline',
10901
+ onClick: _event => handlePageChange(index),
10902
+ size: "small"
10903
+ }, `page-button-${pagesUuids[index]}`);
10904
+ }), autoPlay && progressIndicator && jsx(DotLinearProgress, {
10905
+ className: progress === 0 ? 'no-animation' : '',
10906
+ ariaLabel: "loading the next carousel page",
10907
+ "data-testid": "carousel-linear-progress",
10908
+ variant: "determinate",
10909
+ value: _duration === 1 ? 100 : progress / (_duration - 1) * 100
10910
+ }, void 0)]
10911
+ }), void 0)]
10912
+ }), void 0);
10913
+ };
10914
+
10915
+ export { Cell, CreateUUID, CssCell, CssGrid, CssGridDebug, DatePickerKeydownContext, Daytime, DotAccordion, DotActionToolbar, DotAlertBanner, DotAppLogo, DotAppSwitcher, DotAppToolbar, DotAutoComplete, DotAvatar, DotAvatarGroup, DotBadge, DotBreadcrumbs, DotButton, DotButtonToggle, DotCard, DotCardContent, DotCardFooter, DotCardHeader, DotCarousel, DotCheckbox, DotCheckboxGroup, DotChip, DotClickAwayListener, 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, DotStepper, DotSwitch, DotTable, DotTableAction, DotTableActions, DotTablePagination, DotTabs, DotThemeProvider, DotTimePicker, DotTooltip, DotTruncateWithTooltip, DotTypography, avatarColors, checkIfValidDate, lightThemeColors as lightColors, mockScrollIntoView, parseAutoCompleteValue, variables as themeVariables, typographyOptions, useDotCoreApiContext, useDotSnackbarContext };