@superdispatch/ui 0.15.0 → 0.16.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.
@@ -11,16 +11,16 @@ var core = require('@material-ui/core');
11
11
  var icons = require('@material-ui/icons');
12
12
  var styles = require('@material-ui/styles');
13
13
  var hooks = require('@superdispatch/hooks');
14
- var react = require('react');
14
+ var React = require('react');
15
15
  var jsxRuntime = require('react/jsx-runtime');
16
- var clsx = _interopDefault(require('clsx'));
17
16
  var styled = require('styled-components');
18
17
  var styled__default = _interopDefault(styled);
18
+ var clsx = _interopDefault(require('clsx'));
19
19
  var flattenChildren = _interopDefault(require('react-keyed-flatten-children'));
20
20
  var createBreakpoints = _interopDefault(require('@material-ui/core/styles/createBreakpoints'));
21
21
 
22
22
  var _excluded = ["size", "children", "disabled", "isActive", "isLoading", "color"];
23
- var Button = /*#__PURE__*/react.forwardRef((_ref, ref) => {
23
+ var Button = /*#__PURE__*/React.forwardRef((_ref, ref) => {
24
24
  var {
25
25
  size,
26
26
  children,
@@ -49,11 +49,114 @@ var Button = /*#__PURE__*/react.forwardRef((_ref, ref) => {
49
49
  });
50
50
  if (process.env.NODE_ENV !== "production") Button.displayName = "Button";
51
51
 
52
- var _excluded$1 = ["items"];
52
+ var _excluded$1 = ["MenuListProps", "ButtonGroupProps", "children", "isLoading", "onClick", "label"];
53
+
54
+ function CaretDownIcon() {
55
+ return /*#__PURE__*/jsxRuntime.jsx("svg", {
56
+ viewBox: "0 0 8 4",
57
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
58
+ fill: "currentColor",
59
+ d: "M0.666687 0.666656L4.00002 3.99999L7.33335 0.666656H0.666687Z"
60
+ })
61
+ });
62
+ }
63
+
64
+ var CaretButton = /*#__PURE__*/styled__default(Button).withConfig({
65
+ displayName: "DropdownButton__CaretButton",
66
+ componentId: "SD__sc-8l84jm-0"
67
+ })(["width:auto;", ";"], _ref => {
68
+ var {
69
+ variant
70
+ } = _ref;
71
+ return variant === 'contained' && "border-left: 1px solid ".concat(exports.Color.Blue500);
72
+ });
73
+ var DropdownButton = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
74
+ var _anchorRef$current2;
75
+
76
+ var {
77
+ MenuListProps,
78
+ ButtonGroupProps,
79
+ children,
80
+ isLoading,
81
+ onClick,
82
+ label
83
+ } = _ref2,
84
+ buttonProps = _objectWithoutProperties(_ref2, _excluded$1);
85
+
86
+ var uid = useUID();
87
+ var [open, setOpen] = React.useState(false);
88
+ var anchorRef = React.useRef(null);
89
+
90
+ function handleClick(event) {
91
+ setOpen(false);
92
+ onClick === null || onClick === void 0 ? void 0 : onClick(event);
93
+ }
94
+
95
+ function handleToggle() {
96
+ setOpen(prevOpen => !prevOpen);
97
+ }
98
+
99
+ function handleClose(event) {
100
+ var _anchorRef$current;
101
+
102
+ if ((_anchorRef$current = anchorRef.current) !== null && _anchorRef$current !== void 0 && _anchorRef$current.contains(event.currentTarget)) {
103
+ return;
104
+ }
105
+
106
+ setOpen(false);
107
+ }
108
+
109
+ return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
110
+ children: [/*#__PURE__*/jsxRuntime.jsxs(core.ButtonGroup, _objectSpread(_objectSpread({}, ButtonGroupProps), {}, {
111
+ ref: mergeRefs(ButtonGroupProps === null || ButtonGroupProps === void 0 ? void 0 : ButtonGroupProps.ref, anchorRef),
112
+ fullWidth: (ButtonGroupProps === null || ButtonGroupProps === void 0 ? void 0 : ButtonGroupProps.fullWidth) || buttonProps.fullWidth,
113
+ children: [/*#__PURE__*/jsxRuntime.jsx(Button, _objectSpread(_objectSpread({
114
+ ref: ref,
115
+ onClick: handleClick,
116
+ disabled: isLoading,
117
+ isLoading: isLoading
118
+ }, buttonProps), {}, {
119
+ children: label
120
+ })), /*#__PURE__*/jsxRuntime.jsx(CaretButton, {
121
+ onClick: handleToggle,
122
+ disabled: isLoading,
123
+ color: buttonProps.color,
124
+ variant: buttonProps.variant,
125
+ "aria-haspopup": "menu",
126
+ "aria-controls": open ? uid : undefined,
127
+ "aria-expanded": open ? 'true' : undefined,
128
+ children: /*#__PURE__*/jsxRuntime.jsx(CaretDownIcon, {})
129
+ })]
130
+ })), /*#__PURE__*/jsxRuntime.jsx(core.Popover, {
131
+ open: open,
132
+ onClose: handleClose,
133
+ anchorEl: anchorRef.current,
134
+ anchorOrigin: {
135
+ vertical: 'bottom',
136
+ horizontal: 'left'
137
+ },
138
+ children: /*#__PURE__*/jsxRuntime.jsx("div", {
139
+ style: {
140
+ minWidth: (_anchorRef$current2 = anchorRef.current) === null || _anchorRef$current2 === void 0 ? void 0 : _anchorRef$current2.clientWidth
141
+ },
142
+ children: /*#__PURE__*/jsxRuntime.jsx(core.MenuList, _objectSpread(_objectSpread({}, MenuListProps), {}, {
143
+ id: uid,
144
+ onClick: () => {
145
+ setOpen(false);
146
+ },
147
+ children: children
148
+ }))
149
+ })
150
+ })]
151
+ });
152
+ });
153
+ if (process.env.NODE_ENV !== "production") DropdownButton.displayName = "DropdownButton";
154
+
155
+ var _excluded$2 = ["items"];
53
156
 
54
157
  function useResizeObserver(node, observer) {
55
158
  var handler = hooks.useEventHandler(observer);
56
- react.useLayoutEffect(() => {
159
+ React.useLayoutEffect(() => {
57
160
  if (!node) {
58
161
  return;
59
162
  }
@@ -76,19 +179,19 @@ var useStyles = /*#__PURE__*/styles.makeStyles({
76
179
  }, {
77
180
  name: 'SD-AdaptiveToolbar'
78
181
  });
79
- var AdaptiveToolbar = /*#__PURE__*/react.forwardRef((_ref, ref) => {
182
+ var AdaptiveToolbar = /*#__PURE__*/React.forwardRef((_ref, ref) => {
80
183
  var {
81
184
  items
82
185
  } = _ref,
83
- props = _objectWithoutProperties(_ref, _excluded$1);
186
+ props = _objectWithoutProperties(_ref, _excluded$2);
84
187
 
85
188
  var styles = useStyles();
86
- var itemNodes = react.useRef([]);
87
- var optionsButtonRef = react.useRef(null);
88
- var [firstHiddenIdx, setFirstHiddenIdx] = react.useState(-1);
189
+ var itemNodes = React.useRef([]);
190
+ var optionsButtonRef = React.useRef(null);
191
+ var [firstHiddenIdx, setFirstHiddenIdx] = React.useState(-1);
89
192
  var menuItems = firstHiddenIdx === -1 ? [] : items.slice(firstHiddenIdx);
90
- var [menuButtonNode, setMenuButtonRef] = react.useState();
91
- var [rootNode, setRootNode] = react.useState(null);
193
+ var [menuButtonNode, setMenuButtonRef] = React.useState();
194
+ var [rootNode, setRootNode] = React.useState(null);
92
195
  useResizeObserver(rootNode, node => {
93
196
  var _optionsButtonRef$cur;
94
197
 
@@ -123,7 +226,6 @@ var AdaptiveToolbar = /*#__PURE__*/react.forwardRef((_ref, ref) => {
123
226
  children: /*#__PURE__*/jsxRuntime.jsxs(core.Grid, {
124
227
  container: true,
125
228
  spacing: 1,
126
- wrap: "nowrap",
127
229
  ref: setRootNode,
128
230
  children: [/*#__PURE__*/jsxRuntime.jsx(core.Grid, {
129
231
  item: true,
@@ -138,7 +240,16 @@ var AdaptiveToolbar = /*#__PURE__*/react.forwardRef((_ref, ref) => {
138
240
  ref: node => {
139
241
  itemNodes.current[idx] = node;
140
242
  },
141
- children: /*#__PURE__*/jsxRuntime.jsx(Button, _objectSpread(_objectSpread({
243
+ children: item.dropdown ? /*#__PURE__*/jsxRuntime.jsx(DropdownButton, _objectSpread(_objectSpread({
244
+ type: "button",
245
+ onClick: item.onClick,
246
+ label: item.label
247
+ }, item.ButtonProps), {}, {
248
+ children: item.dropdown.map(dropdownItem => /*#__PURE__*/jsxRuntime.jsx(core.MenuItem, {
249
+ onClick: dropdownItem.onClick,
250
+ children: dropdownItem.label
251
+ }, dropdownItem.key))
252
+ })) : /*#__PURE__*/jsxRuntime.jsx(Button, _objectSpread(_objectSpread({
142
253
  type: "button",
143
254
  onClick: item.onClick
144
255
  }, item.ButtonProps), {}, {
@@ -169,15 +280,30 @@ var AdaptiveToolbar = /*#__PURE__*/react.forwardRef((_ref, ref) => {
169
280
  onClose: () => {
170
281
  setMenuButtonRef(undefined);
171
282
  },
172
- children: menuItems.map(item => /*#__PURE__*/jsxRuntime.jsx(core.MenuItem, {
173
- onClick: event => {
174
- var _item$onClick;
175
-
176
- (_item$onClick = item.onClick) === null || _item$onClick === void 0 ? void 0 : _item$onClick.call(item, event);
177
- setMenuButtonRef(undefined);
178
- },
179
- children: item.label
180
- }, item.key))
283
+ children: menuItems.map((item, index, arr) => {
284
+ var _item$dropdown;
285
+
286
+ var next = arr[index + 1];
287
+ return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
288
+ children: [/*#__PURE__*/jsxRuntime.jsx(core.MenuItem, {
289
+ onClick: event => {
290
+ var _item$onClick;
291
+
292
+ (_item$onClick = item.onClick) === null || _item$onClick === void 0 ? void 0 : _item$onClick.call(item, event);
293
+ setMenuButtonRef(undefined);
294
+ },
295
+ children: item.label
296
+ }, item.key), (_item$dropdown = item.dropdown) === null || _item$dropdown === void 0 ? void 0 : _item$dropdown.map(dropdownItem => /*#__PURE__*/jsxRuntime.jsx(core.MenuItem, {
297
+ onClick: event => {
298
+ var _dropdownItem$onClick;
299
+
300
+ (_dropdownItem$onClick = dropdownItem.onClick) === null || _dropdownItem$onClick === void 0 ? void 0 : _dropdownItem$onClick.call(dropdownItem, event);
301
+ setMenuButtonRef(undefined);
302
+ },
303
+ children: dropdownItem.label
304
+ }, dropdownItem.key)), next && item.groupKey !== next.groupKey && /*#__PURE__*/jsxRuntime.jsx(core.Divider, {})]
305
+ });
306
+ })
181
307
  })]
182
308
  })]
183
309
  })
@@ -261,7 +387,7 @@ function isColorProp(name) {
261
387
  return typeof name == 'string' && Object.prototype.hasOwnProperty.call(exports.Color, name);
262
388
  }
263
389
 
264
- var _excluded$2 = ["size", "icon", "isLoading", "classes", "disabled", "avatarRef", "className", "alt", "imgProps", "sizes", "src", "srcSet", "variant", "children"],
390
+ var _excluded$3 = ["size", "icon", "isLoading", "classes", "disabled", "avatarRef", "className", "alt", "imgProps", "sizes", "src", "srcSet", "variant", "children"],
265
391
  _excluded2 = ["button", "overlay", "progress", "withIcon", "sizeLarge"];
266
392
  var useStyles$1 = /*#__PURE__*/styles.makeStyles(theme => {
267
393
  var sm = theme.breakpoints.up('sm');
@@ -354,7 +480,7 @@ var useStyles$1 = /*#__PURE__*/styles.makeStyles(theme => {
354
480
  }, {
355
481
  name: 'SD-AvatarButton'
356
482
  });
357
- var AvatarButton = /*#__PURE__*/react.forwardRef((_ref, ref) => {
483
+ var AvatarButton = /*#__PURE__*/React.forwardRef((_ref, ref) => {
358
484
  var {
359
485
  size,
360
486
  icon,
@@ -371,7 +497,7 @@ var AvatarButton = /*#__PURE__*/react.forwardRef((_ref, ref) => {
371
497
  variant,
372
498
  children
373
499
  } = _ref,
374
- props = _objectWithoutProperties(_ref, _excluded$2);
500
+ props = _objectWithoutProperties(_ref, _excluded$3);
375
501
 
376
502
  var _useStyles = useStyles$1({
377
503
  classes
@@ -413,7 +539,7 @@ var AvatarButton = /*#__PURE__*/react.forwardRef((_ref, ref) => {
413
539
  });
414
540
  if (process.env.NODE_ENV !== "production") AvatarButton.displayName = "AvatarButton";
415
541
 
416
- var _excluded$3 = ["hint", "size", "error", "classes", "className", "children", "endIcon", "startIcon", "disabled"];
542
+ var _excluded$4 = ["hint", "size", "error", "classes", "className", "children", "endIcon", "startIcon", "disabled"];
417
543
  var useStyles$2 = /*#__PURE__*/styles.makeStyles(theme => ({
418
544
  root: {
419
545
  width: '100%',
@@ -485,7 +611,7 @@ var useStyles$2 = /*#__PURE__*/styles.makeStyles(theme => ({
485
611
  }), {
486
612
  name: 'SD-CardButton'
487
613
  });
488
- var CardButton = /*#__PURE__*/react.forwardRef((_ref, ref) => {
614
+ var CardButton = /*#__PURE__*/React.forwardRef((_ref, ref) => {
489
615
  var {
490
616
  hint,
491
617
  size,
@@ -497,7 +623,7 @@ var CardButton = /*#__PURE__*/react.forwardRef((_ref, ref) => {
497
623
  startIcon,
498
624
  disabled
499
625
  } = _ref,
500
- props = _objectWithoutProperties(_ref, _excluded$3);
626
+ props = _objectWithoutProperties(_ref, _excluded$4);
501
627
 
502
628
  var styles = useStyles$2({
503
629
  classes
@@ -536,8 +662,8 @@ var CardButton = /*#__PURE__*/react.forwardRef((_ref, ref) => {
536
662
  });
537
663
  if (process.env.NODE_ENV !== "production") CardButton.displayName = "CardButton";
538
664
 
539
- var _excluded$4 = ["label", "error", "checked", "onBlur", "onChange", "helperText", "FormControlLabelProps"];
540
- var CheckboxField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
665
+ var _excluded$5 = ["label", "error", "checked", "onBlur", "onChange", "helperText", "FormControlLabelProps"];
666
+ var CheckboxField = /*#__PURE__*/React.forwardRef((_ref, ref) => {
541
667
  var {
542
668
  label,
543
669
  error,
@@ -547,7 +673,7 @@ var CheckboxField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
547
673
  helperText,
548
674
  FormControlLabelProps: formControlLabelProps
549
675
  } = _ref,
550
- props = _objectWithoutProperties(_ref, _excluded$4);
676
+ props = _objectWithoutProperties(_ref, _excluded$5);
551
677
 
552
678
  return /*#__PURE__*/jsxRuntime.jsxs(core.FormControl, {
553
679
  error: error,
@@ -568,8 +694,8 @@ var CheckboxField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
568
694
  });
569
695
  if (process.env.NODE_ENV !== "production") CheckboxField.displayName = "CheckboxField";
570
696
 
571
- var _excluded$5 = ["FormGroupProps", "label", "FormLabelProps", "helperText", "FormHelperTextProps", "children"];
572
- var CheckboxGroupField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
697
+ var _excluded$6 = ["FormGroupProps", "label", "FormLabelProps", "helperText", "FormHelperTextProps", "children"];
698
+ var CheckboxGroupField = /*#__PURE__*/React.forwardRef((_ref, ref) => {
573
699
  var {
574
700
  FormGroupProps: formGroupProps,
575
701
  label,
@@ -578,7 +704,7 @@ var CheckboxGroupField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
578
704
  FormHelperTextProps: formHelperTextProps,
579
705
  children
580
706
  } = _ref,
581
- formControlProps = _objectWithoutProperties(_ref, _excluded$5);
707
+ formControlProps = _objectWithoutProperties(_ref, _excluded$6);
582
708
 
583
709
  return /*#__PURE__*/jsxRuntime.jsxs(core.FormControl, _objectSpread(_objectSpread({}, formControlProps), {}, {
584
710
  hiddenLabel: !label,
@@ -595,7 +721,7 @@ var CheckboxGroupField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
595
721
  });
596
722
  if (process.env.NODE_ENV !== "production") CheckboxGroupField.displayName = "CheckboxGroupField";
597
723
 
598
- var Context = /*#__PURE__*/react.createContext({});
724
+ var Context = /*#__PURE__*/React.createContext({});
599
725
 
600
726
  function useBreakpoint(breakpoint) {
601
727
  return core.useMediaQuery(theme => theme.breakpoints.only(breakpoint));
@@ -612,7 +738,7 @@ function ResponsiveContextProvider(_ref) {
612
738
  var isLG = useBreakpoint('lg');
613
739
  var isXL = useBreakpoint('xl');
614
740
  var breakpoint = isXS ? 'xs' : isSM ? 'sm' : isMD ? 'md' : isLG ? 'lg' : isXL ? 'xl' : defaultBreakpoint;
615
- var ctx = react.useMemo(() => ({
741
+ var ctx = React.useMemo(() => ({
616
742
  breakpoint
617
743
  }), [breakpoint]);
618
744
  return /*#__PURE__*/jsxRuntime.jsx(Context.Provider, {
@@ -621,7 +747,7 @@ function ResponsiveContextProvider(_ref) {
621
747
  });
622
748
  }
623
749
  function useResponsiveContext() {
624
- return react.useContext(Context);
750
+ return React.useContext(Context);
625
751
  }
626
752
 
627
753
  function parseResponsiveProp(prop) {
@@ -716,7 +842,7 @@ var ColumnRoot = /*#__PURE__*/styled__default.div.withConfig({
716
842
  } = _ref;
717
843
  return styled.css(["min-width:0;", ";", "{", ";}", "{", ";}& > div{padding-top:var(--column-space-top);padding-left:var(--column-space-left);padding-bottom:var(--column-space-bottom);}&:last-child > div{padding-top:0;padding-bottom:0;}"], columnRootMixin(columnWidth[0]), theme.breakpoints.up('sm'), columnRootMixin(columnWidth[1]), theme.breakpoints.up('md'), columnRootMixin(columnWidth[2]));
718
844
  });
719
- var Column = /*#__PURE__*/react.forwardRef((_ref2, ref) => {
845
+ var Column = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
720
846
  var {
721
847
  children,
722
848
  'aria-label': ariaLabel,
@@ -817,7 +943,7 @@ function renderChildren(node) {
817
943
  return node;
818
944
  }
819
945
 
820
- var _excluded$6 = ["render", "onChange"];
946
+ var _excluded$7 = ["render", "onChange"];
821
947
  function useVisibilityObserver(node) {
822
948
  var {
823
949
  threshold = 0,
@@ -826,9 +952,9 @@ function useVisibilityObserver(node) {
826
952
  marginRight = '0px',
827
953
  marginBottom = '0px'
828
954
  } = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
829
- var [state, setState] = react.useState('undetermined');
955
+ var [state, setState] = React.useState('undetermined');
830
956
  var rootMargin = "".concat(marginTop, " ").concat(marginRight, " ").concat(marginBottom, " ").concat(marginLeft);
831
- react.useLayoutEffect(() => {
957
+ React.useLayoutEffect(() => {
832
958
  if (!node || !('IntersectionObserver' in window)) {
833
959
  setState('undetermined');
834
960
  return;
@@ -853,9 +979,9 @@ function VisibilityObserver(_ref2) {
853
979
  render,
854
980
  onChange
855
981
  } = _ref2,
856
- options = _objectWithoutProperties(_ref2, _excluded$6);
982
+ options = _objectWithoutProperties(_ref2, _excluded$7);
857
983
 
858
- var [node, setNode] = react.useState(null);
984
+ var [node, setNode] = React.useState(null);
859
985
  var visibility = useVisibilityObserver(node, options);
860
986
  var children = render({
861
987
  ref: setNode,
@@ -867,7 +993,7 @@ function VisibilityObserver(_ref2) {
867
993
  return renderChildren(children);
868
994
  }
869
995
 
870
- var _excluded$7 = ["title", "enterDelay"],
996
+ var _excluded$8 = ["title", "enterDelay"],
871
997
  _excluded2$1 = ["onClick", "children", "className", "disableUnderline", "TooltipProps"];
872
998
  var useStyles$3 = /*#__PURE__*/styles.makeStyles(theme => ({
873
999
  root: {
@@ -888,7 +1014,7 @@ var useStyles$3 = /*#__PURE__*/styles.makeStyles(theme => ({
888
1014
  }), {
889
1015
  name: 'SD-OverflowText'
890
1016
  });
891
- var OverflowText = /*#__PURE__*/react.forwardRef((_ref, rootRef) => {
1017
+ var OverflowText = /*#__PURE__*/React.forwardRef((_ref, rootRef) => {
892
1018
  var {
893
1019
  onClick: _onClick,
894
1020
  children,
@@ -899,10 +1025,10 @@ var OverflowText = /*#__PURE__*/react.forwardRef((_ref, rootRef) => {
899
1025
  enterDelay = 1000
900
1026
  } = {}
901
1027
  } = _ref,
902
- tooltipProps = _objectWithoutProperties(_ref.TooltipProps, _excluded$7),
1028
+ tooltipProps = _objectWithoutProperties(_ref.TooltipProps, _excluded$8),
903
1029
  props = _objectWithoutProperties(_ref, _excluded2$1);
904
1030
 
905
- var [isOpen, setIsOpen] = react.useState(false);
1031
+ var [isOpen, setIsOpen] = React.useState(false);
906
1032
  var styles = useStyles$3();
907
1033
  return /*#__PURE__*/jsxRuntime.jsx(VisibilityObserver, {
908
1034
  render: _ref2 => {
@@ -947,11 +1073,11 @@ function isEmptyReactNode(node) {
947
1073
 
948
1074
  var current = 0;
949
1075
  function useUID(defaultID) {
950
- var uid = react.useMemo(() => "uid_".concat(current += 1), []);
1076
+ var uid = React.useMemo(() => "uid_".concat(current += 1), []);
951
1077
  return defaultID || uid;
952
1078
  }
953
1079
 
954
- var _excluded$8 = ["size"];
1080
+ var _excluded$9 = ["size"];
955
1081
 
956
1082
  function sizeVariant(theme, mobileSpacing, desktopSpacing) {
957
1083
  return {
@@ -991,11 +1117,11 @@ var useStyles$4 = /*#__PURE__*/styles.makeStyles(theme => ({
991
1117
  // DescriptionList
992
1118
  //
993
1119
 
994
- var DescriptionList = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1120
+ var DescriptionList = /*#__PURE__*/React.forwardRef((_ref, ref) => {
995
1121
  var {
996
1122
  size
997
1123
  } = _ref,
998
- props = _objectWithoutProperties(_ref, _excluded$8);
1124
+ props = _objectWithoutProperties(_ref, _excluded$9);
999
1125
 
1000
1126
  var styles = useStyles$4();
1001
1127
  return /*#__PURE__*/jsxRuntime.jsx("div", _objectSpread(_objectSpread({}, props), {}, {
@@ -1011,7 +1137,7 @@ var DescriptionList = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1011
1137
  //
1012
1138
 
1013
1139
  if (process.env.NODE_ENV !== "production") DescriptionList.displayName = "DescriptionList";
1014
- var DescriptionListItem = /*#__PURE__*/react.forwardRef((_ref2, ref) => {
1140
+ var DescriptionListItem = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
1015
1141
  var _ref3, _contentTypographyPro, _contentTypographyPro2;
1016
1142
 
1017
1143
  var {
@@ -1051,7 +1177,7 @@ var DescriptionListItem = /*#__PURE__*/react.forwardRef((_ref2, ref) => {
1051
1177
  });
1052
1178
  if (process.env.NODE_ENV !== "production") DescriptionListItem.displayName = "DescriptionListItem";
1053
1179
 
1054
- var _excluded$9 = ["children", "className"];
1180
+ var _excluded$a = ["children", "className"];
1055
1181
  var useStyles$5 = /*#__PURE__*/styles.makeStyles(theme => ({
1056
1182
  appBar: {
1057
1183
  '&&': {
@@ -1080,12 +1206,12 @@ var useStyles$5 = /*#__PURE__*/styles.makeStyles(theme => ({
1080
1206
  }), {
1081
1207
  name: 'SD-DrawerActions'
1082
1208
  });
1083
- var DrawerActions = /*#__PURE__*/react.forwardRef((_ref, appBarRef) => {
1209
+ var DrawerActions = /*#__PURE__*/React.forwardRef((_ref, appBarRef) => {
1084
1210
  var {
1085
1211
  children,
1086
1212
  className
1087
1213
  } = _ref,
1088
- props = _objectWithoutProperties(_ref, _excluded$9);
1214
+ props = _objectWithoutProperties(_ref, _excluded$a);
1089
1215
 
1090
1216
  var styles = useStyles$5();
1091
1217
  return /*#__PURE__*/jsxRuntime.jsx(VisibilityObserver, {
@@ -1112,7 +1238,7 @@ var DrawerActions = /*#__PURE__*/react.forwardRef((_ref, appBarRef) => {
1112
1238
  });
1113
1239
  if (process.env.NODE_ENV !== "production") DrawerActions.displayName = "DrawerActions";
1114
1240
 
1115
- var _excluded$a = ["className"];
1241
+ var _excluded$b = ["className"];
1116
1242
  var useStyles$6 = /*#__PURE__*/styles.makeStyles(theme => ({
1117
1243
  root: {
1118
1244
  maxWidth: '100%',
@@ -1124,11 +1250,11 @@ var useStyles$6 = /*#__PURE__*/styles.makeStyles(theme => ({
1124
1250
  }), {
1125
1251
  name: 'SD-DrawerContent'
1126
1252
  });
1127
- var DrawerContent = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1253
+ var DrawerContent = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1128
1254
  var {
1129
1255
  className
1130
1256
  } = _ref,
1131
- props = _objectWithoutProperties(_ref, _excluded$a);
1257
+ props = _objectWithoutProperties(_ref, _excluded$b);
1132
1258
 
1133
1259
  var styles = useStyles$6();
1134
1260
  return /*#__PURE__*/jsxRuntime.jsx("div", _objectSpread(_objectSpread({}, props), {}, {
@@ -1138,7 +1264,7 @@ var DrawerContent = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1138
1264
  });
1139
1265
  if (process.env.NODE_ENV !== "production") DrawerContent.displayName = "DrawerContent";
1140
1266
 
1141
- var _excluded$b = ["className"];
1267
+ var _excluded$c = ["className"];
1142
1268
 
1143
1269
  function listItemMixins(theme, space) {
1144
1270
  return {
@@ -1167,11 +1293,11 @@ var useStyles$7 = /*#__PURE__*/styles.makeStyles(theme => ({
1167
1293
  }), {
1168
1294
  name: 'SD-DrawerList'
1169
1295
  });
1170
- var DrawerList = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1296
+ var DrawerList = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1171
1297
  var {
1172
1298
  className
1173
1299
  } = _ref,
1174
- props = _objectWithoutProperties(_ref, _excluded$b);
1300
+ props = _objectWithoutProperties(_ref, _excluded$c);
1175
1301
 
1176
1302
  var styles = useStyles$7();
1177
1303
  return /*#__PURE__*/jsxRuntime.jsx(core.List, _objectSpread(_objectSpread({}, props), {}, {
@@ -1182,7 +1308,7 @@ var DrawerList = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1182
1308
  });
1183
1309
  if (process.env.NODE_ENV !== "production") DrawerList.displayName = "DrawerList";
1184
1310
 
1185
- var _excluded$c = ["title", "titleTypographyProps", "subtitle", "subtitleTypographyProps", "startAction", "endAction", "className"];
1311
+ var _excluded$d = ["title", "titleTypographyProps", "subtitle", "subtitleTypographyProps", "startAction", "endAction", "className"];
1186
1312
  var useStyles$8 = /*#__PURE__*/styles.makeStyles(theme => ({
1187
1313
  appBar: {
1188
1314
  '&&': {
@@ -1221,7 +1347,7 @@ var useStyles$8 = /*#__PURE__*/styles.makeStyles(theme => ({
1221
1347
  }), {
1222
1348
  name: 'SD-DrawerTitle'
1223
1349
  });
1224
- var DrawerTitle = /*#__PURE__*/react.forwardRef((_ref, appBarRef) => {
1350
+ var DrawerTitle = /*#__PURE__*/React.forwardRef((_ref, appBarRef) => {
1225
1351
  var {
1226
1352
  title,
1227
1353
  titleTypographyProps,
@@ -1231,7 +1357,7 @@ var DrawerTitle = /*#__PURE__*/react.forwardRef((_ref, appBarRef) => {
1231
1357
  endAction,
1232
1358
  className
1233
1359
  } = _ref,
1234
- props = _objectWithoutProperties(_ref, _excluded$c);
1360
+ props = _objectWithoutProperties(_ref, _excluded$d);
1235
1361
 
1236
1362
  var styles = useStyles$8();
1237
1363
  return /*#__PURE__*/jsxRuntime.jsx(VisibilityObserver, {
@@ -1285,19 +1411,19 @@ var DrawerTitle = /*#__PURE__*/react.forwardRef((_ref, appBarRef) => {
1285
1411
  });
1286
1412
  if (process.env.NODE_ENV !== "production") DrawerTitle.displayName = "DrawerTitle";
1287
1413
 
1288
- var _excluded$d = ["children", "alignItems"];
1414
+ var _excluded$e = ["children", "alignItems"];
1289
1415
  /**
1290
1416
  * @deprecated in favor of `Stack`.
1291
1417
  */
1292
1418
 
1293
- var GridStack = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1419
+ var GridStack = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1294
1420
  var {
1295
1421
  children,
1296
1422
  alignItems = 'stretch'
1297
1423
  } = _ref,
1298
- props = _objectWithoutProperties(_ref, _excluded$d);
1424
+ props = _objectWithoutProperties(_ref, _excluded$e);
1299
1425
 
1300
- var items = react.Children.toArray(children);
1426
+ var items = React.Children.toArray(children);
1301
1427
  return /*#__PURE__*/jsxRuntime.jsx(core.Grid, _objectSpread(_objectSpread({}, props), {}, {
1302
1428
  ref: ref,
1303
1429
  container: true,
@@ -1314,21 +1440,21 @@ var GridStack = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1314
1440
  });
1315
1441
  if (process.env.NODE_ENV !== "production") GridStack.displayName = "GridStack";
1316
1442
 
1317
- var _excluded$e = ["children", "wrap", "justify", "alignItems"];
1443
+ var _excluded$f = ["children", "wrap", "justify", "alignItems"];
1318
1444
  /**
1319
1445
  * @deprecated in favor of `Inline` component.
1320
1446
  */
1321
1447
 
1322
- var InlineGrid = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1448
+ var InlineGrid = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1323
1449
  var {
1324
1450
  children,
1325
1451
  wrap = 'wrap',
1326
1452
  justify = 'flex-start',
1327
1453
  alignItems = 'flex-start'
1328
1454
  } = _ref,
1329
- props = _objectWithoutProperties(_ref, _excluded$e);
1455
+ props = _objectWithoutProperties(_ref, _excluded$f);
1330
1456
 
1331
- var items = react.Children.toArray(children);
1457
+ var items = React.Children.toArray(children);
1332
1458
  return /*#__PURE__*/jsxRuntime.jsx(core.Grid, _objectSpread(_objectSpread({}, props), {}, {
1333
1459
  ref: ref,
1334
1460
  wrap: wrap,
@@ -1365,7 +1491,7 @@ function assignRef(ref, value) {
1365
1491
  }
1366
1492
  }
1367
1493
 
1368
- var _excluded$f = ["size", "square", "classes", "children", "className", "CardContentProps"],
1494
+ var _excluded$g = ["size", "square", "classes", "children", "className", "CardContentProps"],
1369
1495
  _excluded2$2 = ["content", "sizeLarge", "fullWidth"];
1370
1496
  var useStyles$9 = /*#__PURE__*/styles.makeStyles(theme => ({
1371
1497
  root: {
@@ -1388,7 +1514,7 @@ var useStyles$9 = /*#__PURE__*/styles.makeStyles(theme => ({
1388
1514
  }), {
1389
1515
  name: 'SD-InfoCard'
1390
1516
  });
1391
- var InfoCard = /*#__PURE__*/react.forwardRef((_ref, _ref2) => {
1517
+ var InfoCard = /*#__PURE__*/React.forwardRef((_ref, _ref2) => {
1392
1518
  var {
1393
1519
  size,
1394
1520
  square,
@@ -1397,7 +1523,7 @@ var InfoCard = /*#__PURE__*/react.forwardRef((_ref, _ref2) => {
1397
1523
  className,
1398
1524
  CardContentProps: cardContentProps = {}
1399
1525
  } = _ref,
1400
- props = _objectWithoutProperties(_ref, _excluded$f);
1526
+ props = _objectWithoutProperties(_ref, _excluded$g);
1401
1527
 
1402
1528
  var _useStyles = useStyles$9({
1403
1529
  classes
@@ -1409,7 +1535,7 @@ var InfoCard = /*#__PURE__*/react.forwardRef((_ref, _ref2) => {
1409
1535
  } = _useStyles,
1410
1536
  styles = _objectWithoutProperties(_useStyles, _excluded2$2);
1411
1537
 
1412
- var [rootNode, setRootNode] = react.useState(null);
1538
+ var [rootNode, setRootNode] = React.useState(null);
1413
1539
  var clientRect = rootNode === null || rootNode === void 0 ? void 0 : rootNode.getBoundingClientRect();
1414
1540
  var isFullWidth = (clientRect === null || clientRect === void 0 ? void 0 : clientRect.width) === window.innerWidth;
1415
1541
  return /*#__PURE__*/jsxRuntime.jsx(core.Card, _objectSpread(_objectSpread({}, props), {}, {
@@ -1445,7 +1571,7 @@ var InlineRoot = /*#__PURE__*/styled__default.div.withConfig({
1445
1571
  } = _ref;
1446
1572
  return styled.css(["padding-top:1px;&:before{content:'';display:block;}", " ", "{", "}", "{", "}"], inlineRootMixin(space[0], noWrap[0], verticalAlign[0], horizontalAlign[0]), theme.breakpoints.up('sm'), inlineRootMixin(space[1], noWrap[1], verticalAlign[1], horizontalAlign[1]), theme.breakpoints.up('md'), inlineRootMixin(space[2], noWrap[2], verticalAlign[2], horizontalAlign[2]));
1447
1573
  });
1448
- var Inline = /*#__PURE__*/react.forwardRef((_ref2, ref) => {
1574
+ var Inline = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
1449
1575
  var {
1450
1576
  children,
1451
1577
  'aria-label': ariaLabel,
@@ -1476,8 +1602,8 @@ var Inline = /*#__PURE__*/react.forwardRef((_ref2, ref) => {
1476
1602
  });
1477
1603
  if (process.env.NODE_ENV !== "production") Inline.displayName = "Inline";
1478
1604
 
1479
- var _excluded$g = ["label", "error", "checked", "onBlur", "onChange", "helperText", "FormControlLabelProps"];
1480
- var RadioField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1605
+ var _excluded$h = ["label", "error", "checked", "onBlur", "onChange", "helperText", "FormControlLabelProps"];
1606
+ var RadioField = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1481
1607
  var {
1482
1608
  label,
1483
1609
  error,
@@ -1487,7 +1613,7 @@ var RadioField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1487
1613
  helperText,
1488
1614
  FormControlLabelProps: formControlLabelProps
1489
1615
  } = _ref,
1490
- props = _objectWithoutProperties(_ref, _excluded$g);
1616
+ props = _objectWithoutProperties(_ref, _excluded$h);
1491
1617
 
1492
1618
  return /*#__PURE__*/jsxRuntime.jsxs(core.FormControl, {
1493
1619
  error: error,
@@ -1507,8 +1633,8 @@ var RadioField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1507
1633
  });
1508
1634
  if (process.env.NODE_ENV !== "production") RadioField.displayName = "RadioField";
1509
1635
 
1510
- var _excluded$h = ["name", "value", "onChange", "RadioGroupProps", "label", "FormLabelProps", "helperText", "FormHelperTextProps", "children"];
1511
- var RadioGroupField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1636
+ var _excluded$i = ["name", "value", "onChange", "RadioGroupProps", "label", "FormLabelProps", "helperText", "FormHelperTextProps", "children"];
1637
+ var RadioGroupField = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1512
1638
  var {
1513
1639
  name,
1514
1640
  value = '',
@@ -1520,7 +1646,7 @@ var RadioGroupField = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1520
1646
  FormHelperTextProps: formHelperTextProps,
1521
1647
  children
1522
1648
  } = _ref,
1523
- formControlProps = _objectWithoutProperties(_ref, _excluded$h);
1649
+ formControlProps = _objectWithoutProperties(_ref, _excluded$i);
1524
1650
 
1525
1651
  return /*#__PURE__*/jsxRuntime.jsxs(core.FormControl, _objectSpread(_objectSpread({}, formControlProps), {}, {
1526
1652
  hiddenLabel: !label,
@@ -1555,7 +1681,7 @@ function useCollapseBreakpoint(collapseBreakpoint) {
1555
1681
  return breakpointIDX < collapseBreakpointIDX;
1556
1682
  }
1557
1683
 
1558
- var _excluded$i = ["action", "children", "onClose", "className", "classes", "variant"],
1684
+ var _excluded$j = ["action", "children", "onClose", "className", "classes", "variant"],
1559
1685
  _excluded2$3 = ["icon", "closeButton", "variantError", "variantSuccess"];
1560
1686
  var useStyles$a = /*#__PURE__*/styles.makeStyles(theme => ({
1561
1687
  root: {
@@ -1591,7 +1717,7 @@ var useStyles$a = /*#__PURE__*/styles.makeStyles(theme => ({
1591
1717
  }), {
1592
1718
  name: 'SD-SnackbarContent'
1593
1719
  });
1594
- var SnackbarContent = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1720
+ var SnackbarContent = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1595
1721
  var {
1596
1722
  action,
1597
1723
  children,
@@ -1600,7 +1726,7 @@ var SnackbarContent = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1600
1726
  classes,
1601
1727
  variant = 'default'
1602
1728
  } = _ref,
1603
- props = _objectWithoutProperties(_ref, _excluded$i);
1729
+ props = _objectWithoutProperties(_ref, _excluded$j);
1604
1730
 
1605
1731
  var _useStyles = useStyles$a({
1606
1732
  classes
@@ -1650,7 +1776,7 @@ var SnackbarContent = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1650
1776
  });
1651
1777
  if (process.env.NODE_ENV !== "production") SnackbarContent.displayName = "SnackbarContent";
1652
1778
 
1653
- var _excluded$j = ["open", "action", "variant", "onClose", "children", "ContentProps", "hasCloseButton", "TransitionComponent"];
1779
+ var _excluded$k = ["open", "action", "variant", "onClose", "children", "ContentProps", "hasCloseButton", "TransitionComponent"];
1654
1780
 
1655
1781
  function SlideTransition(props) {
1656
1782
  return /*#__PURE__*/jsxRuntime.jsx(core.Slide, _objectSpread(_objectSpread({}, props), {}, {
@@ -1658,7 +1784,7 @@ function SlideTransition(props) {
1658
1784
  }));
1659
1785
  }
1660
1786
 
1661
- var Snackbar = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1787
+ var Snackbar = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1662
1788
  var {
1663
1789
  open,
1664
1790
  action,
@@ -1669,7 +1795,7 @@ var Snackbar = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1669
1795
  hasCloseButton = onClose != null,
1670
1796
  TransitionComponent = SlideTransition
1671
1797
  } = _ref,
1672
- props = _objectWithoutProperties(_ref, _excluded$j);
1798
+ props = _objectWithoutProperties(_ref, _excluded$k);
1673
1799
 
1674
1800
  function handleClose(reason) {
1675
1801
  if (reason !== 'clickaway') {
@@ -1698,14 +1824,14 @@ var Snackbar = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1698
1824
  });
1699
1825
  if (process.env.NODE_ENV !== "production") Snackbar.displayName = "Snackbar";
1700
1826
 
1701
- var _excluded$k = ["onClose", "variant", "key", "id", "autoHideDuration"];
1827
+ var _excluded$l = ["onClose", "variant", "key", "id", "autoHideDuration"];
1702
1828
 
1703
1829
  function warnContext() {
1704
1830
  // eslint-disable-next-line no-console
1705
1831
  console.log('`useSnackbarStack` is used outside of `SnackbarStackProvider`.');
1706
1832
  }
1707
1833
 
1708
- var Context$1 = /*#__PURE__*/react.createContext({
1834
+ var Context$1 = /*#__PURE__*/React.createContext({
1709
1835
  clearStack: warnContext,
1710
1836
  addSnackbar: () => {
1711
1837
  warnContext();
@@ -1713,7 +1839,7 @@ var Context$1 = /*#__PURE__*/react.createContext({
1713
1839
  }
1714
1840
  });
1715
1841
  function useSnackbarStack() {
1716
- return react.useContext(Context$1);
1842
+ return React.useContext(Context$1);
1717
1843
  }
1718
1844
  function SnackbarStackConsumer(_ref) {
1719
1845
  var {
@@ -1728,13 +1854,13 @@ function SnackbarStackProvider(_ref2) {
1728
1854
  var {
1729
1855
  children
1730
1856
  } = _ref2;
1731
- var [stack, setStack] = react.useState(new Map());
1732
- var transientKeyRef = react.useRef(0);
1733
- var getNextTransientKey = react.useCallback(() => TRANSIENT_KEY + String(transientKeyRef.current += 1), []);
1734
- var clearStack = react.useCallback(() => {
1857
+ var [stack, setStack] = React.useState(new Map());
1858
+ var transientKeyRef = React.useRef(0);
1859
+ var getNextTransientKey = React.useCallback(() => TRANSIENT_KEY + String(transientKeyRef.current += 1), []);
1860
+ var clearStack = React.useCallback(() => {
1735
1861
  setStack(x => x.size === 0 ? x : new Map());
1736
1862
  }, []);
1737
- var addSnackbar = react.useCallback(function (message) {
1863
+ var addSnackbar = React.useCallback(function (message) {
1738
1864
  var _ref3 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
1739
1865
  {
1740
1866
  onClose: _onClose,
@@ -1744,7 +1870,7 @@ function SnackbarStackProvider(_ref2) {
1744
1870
  id = String(key),
1745
1871
  autoHideDuration = 5000
1746
1872
  } = _ref3,
1747
- props = _objectWithoutProperties(_ref3, _excluded$k);
1873
+ props = _objectWithoutProperties(_ref3, _excluded$l);
1748
1874
 
1749
1875
  function removeSnackbar() {
1750
1876
  setStack(prev => {
@@ -1795,7 +1921,7 @@ function SnackbarStackProvider(_ref2) {
1795
1921
  open: false
1796
1922
  });
1797
1923
  }, [stack]);
1798
- var api = react.useMemo(() => ({
1924
+ var api = React.useMemo(() => ({
1799
1925
  clearStack,
1800
1926
  addSnackbar
1801
1927
  }), [clearStack, addSnackbar]);
@@ -1820,7 +1946,7 @@ var StackRoot = /*#__PURE__*/styled__default.div.withConfig({
1820
1946
  } = _ref;
1821
1947
  return styled.css(["width:100%;& > div{", ";", "{", ";}", "{", ";}}"], stackItemMixin(space[0], align[0]), theme.breakpoints.up('sm'), stackItemMixin(space[1], align[1]), theme.breakpoints.up('md'), stackItemMixin(space[2], align[2]));
1822
1948
  });
1823
- var Stack = /*#__PURE__*/react.forwardRef((_ref2, ref) => {
1949
+ var Stack = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
1824
1950
  var {
1825
1951
  children,
1826
1952
  'aria-label': ariaLabel,
@@ -1841,7 +1967,7 @@ var Stack = /*#__PURE__*/react.forwardRef((_ref2, ref) => {
1841
1967
  });
1842
1968
  if (process.env.NODE_ENV !== "production") Stack.displayName = "Stack";
1843
1969
 
1844
- var _excluded$l = ["color", "variant", "children", "classes", "className", "noWrap", "fontWeight", "component"];
1970
+ var _excluded$m = ["color", "variant", "children", "classes", "className", "noWrap", "fontWeight", "component"];
1845
1971
  var useStyles$b = /*#__PURE__*/styles.makeStyles(theme => ({
1846
1972
  root: {
1847
1973
  maxWidth: '100%',
@@ -1914,7 +2040,7 @@ var useStyles$b = /*#__PURE__*/styles.makeStyles(theme => ({
1914
2040
  }), {
1915
2041
  name: 'SD-Tag'
1916
2042
  });
1917
- var Tag = /*#__PURE__*/react.forwardRef((_ref, ref) => {
2043
+ var Tag = /*#__PURE__*/React.forwardRef((_ref, ref) => {
1918
2044
  var {
1919
2045
  color,
1920
2046
  variant,
@@ -1925,7 +2051,7 @@ var Tag = /*#__PURE__*/react.forwardRef((_ref, ref) => {
1925
2051
  fontWeight = 'bold',
1926
2052
  component = 'div'
1927
2053
  } = _ref,
1928
- props = _objectWithoutProperties(_ref, _excluded$l);
2054
+ props = _objectWithoutProperties(_ref, _excluded$m);
1929
2055
 
1930
2056
  var styles = useStyles$b({
1931
2057
  classes
@@ -2897,7 +3023,7 @@ function overrideTabs(theme) {
2897
3023
  };
2898
3024
  }
2899
3025
 
2900
- var SelectIcon = /*#__PURE__*/react.forwardRef((props, ref) => /*#__PURE__*/jsxRuntime.jsx(core.SvgIcon, _objectSpread(_objectSpread({
3026
+ var SelectIcon = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/jsxRuntime.jsx(core.SvgIcon, _objectSpread(_objectSpread({
2901
3027
  ref: ref
2902
3028
  }, props), {}, {
2903
3029
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -3412,7 +3538,7 @@ var useStyles$c = /*#__PURE__*/styles.makeStyles(theme => ({
3412
3538
  }), {
3413
3539
  name: 'SD-Tiles'
3414
3540
  });
3415
- var Tiles = /*#__PURE__*/react.forwardRef((_ref, ref) => {
3541
+ var Tiles = /*#__PURE__*/React.forwardRef((_ref, ref) => {
3416
3542
  var {
3417
3543
  children,
3418
3544
  space: spaceProp = 1,
@@ -3452,6 +3578,7 @@ exports.DrawerActions = DrawerActions;
3452
3578
  exports.DrawerContent = DrawerContent;
3453
3579
  exports.DrawerList = DrawerList;
3454
3580
  exports.DrawerTitle = DrawerTitle;
3581
+ exports.DropdownButton = DropdownButton;
3455
3582
  exports.GridStack = GridStack;
3456
3583
  exports.InfoCard = InfoCard;
3457
3584
  exports.Inline = Inline;