@hyphen/hyphen-components 4.6.0 → 4.7.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.
@@ -25,6 +25,7 @@ var AsyncCreatableSelect = require('react-select/async-creatable');
25
25
  var AsyncSelect = require('react-select/async');
26
26
  var CreatableSelect = require('react-select/creatable');
27
27
  var uuid = require('uuid');
28
+ var TooltipPrimitive = require('@radix-ui/react-tooltip');
28
29
 
29
30
  function _interopNamespaceDefault(e) {
30
31
  var n = Object.create(null);
@@ -46,6 +47,7 @@ function _interopNamespaceDefault(e) {
46
47
  var React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
47
48
  var CollapsiblePrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(CollapsiblePrimitive);
48
49
  var DropdownMenuPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(DropdownMenuPrimitive);
50
+ var TooltipPrimitive__namespace = /*#__PURE__*/_interopNamespaceDefault(TooltipPrimitive);
49
51
 
50
52
  function _extends() {
51
53
  return _extends = Object.assign ? Object.assign.bind() : function (n) {
@@ -275,7 +277,7 @@ Component, props, getDefault) {
275
277
 
276
278
  var styles$x = {"box-transition":"Box-module_box-transition__eQx8C"};
277
279
 
278
- var _excluded$M = ["as", "alignItems", "alignContent", "alignSelf", "background", "borderColor", "borderWidth", "children", "childGap", "className", "color", "columnGap", "cursor", "display", "direction", "flex", "fontFamily", "fontSize", "focus", "fontWeight", "gap", "height", "hover", "justifyContent", "margin", "maxHeight", "minHeight", "maxWidth", "minWidth", "overflow", "padding", "position", "radius", "rowGap", "shadow", "style", "textAlign", "wrap", "width", "zIndex"];
280
+ var _excluded$N = ["as", "alignItems", "alignContent", "alignSelf", "background", "borderColor", "borderWidth", "children", "childGap", "className", "color", "columnGap", "cursor", "display", "direction", "flex", "fontFamily", "fontSize", "focus", "fontWeight", "gap", "height", "hover", "justifyContent", "margin", "maxHeight", "minHeight", "maxWidth", "minWidth", "overflow", "padding", "position", "radius", "rowGap", "shadow", "style", "textAlign", "wrap", "width", "zIndex"];
279
281
  /**
280
282
  * A `<Box>` is a layout component to build UIs with consistent padding and spacing between
281
283
  * elements.
@@ -362,7 +364,7 @@ var Box = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
362
364
  width = _ref$width === void 0 ? undefined : _ref$width,
363
365
  _ref$zIndex = _ref.zIndex,
364
366
  zIndex = _ref$zIndex === void 0 ? undefined : _ref$zIndex,
365
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$M);
367
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$N);
366
368
  var heightCss = getDimensionCss('h', height);
367
369
  var widthCss = getDimensionCss('w', width);
368
370
  var maxHeightCss = getDimensionCss('mh', maxHeight);
@@ -513,14 +515,14 @@ var Box = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
513
515
  });
514
516
  var boxPropsKeys = ['as', 'alignItems', 'alignContent', 'alignSelf', 'background', 'borderColor', 'borderWidth', 'className', 'childGap', 'children', 'color', 'columnGap', 'cursor', 'direction', 'display', 'flex', 'focus', 'fontFamily', 'fontSize', 'fontWeight', 'gap', 'height', 'hover', 'justifyContent', 'margin', 'maxHeight', 'minHeight', 'maxWidth', 'minWidth', 'overflow', 'padding', 'position', 'radius', 'rowGap', 'shadow', 'style', 'textAlign', 'wrap', 'width', 'zIndex'];
515
517
 
516
- var _excluded$L = ["className", "name", "color", "size"];
518
+ var _excluded$M = ["className", "name", "color", "size"];
517
519
  var Icon = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
518
520
  var _ref$className = _ref.className,
519
521
  className = _ref$className === void 0 ? undefined : _ref$className,
520
522
  name = _ref.name,
521
523
  color = _ref.color,
522
524
  size = _ref.size,
523
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$L);
525
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$M);
524
526
  var IconComponent = icons[name];
525
527
  if (!IconComponent) console.error("Icon '" + name + "' not found"); // eslint-disable-line no-console
526
528
  var iconClasses = classNames(className, generateResponsiveClasses('font-color', color), generateResponsiveClasses('font-size', size));
@@ -559,7 +561,7 @@ var ALERT_ICONS_MAP = {
559
561
  }
560
562
  };
561
563
 
562
- var _excluded$K = ["className", "closeText", "hasIcon", "isCompact", "isClosable", "message", "onClose", "render", "title", "variant"];
564
+ var _excluded$L = ["className", "closeText", "hasIcon", "isCompact", "isClosable", "message", "onClose", "render", "title", "variant"];
563
565
  var Alert = function Alert(_ref) {
564
566
  var _ref$className = _ref.className,
565
567
  className = _ref$className === void 0 ? '' : _ref$className,
@@ -581,7 +583,7 @@ var Alert = function Alert(_ref) {
581
583
  title = _ref$title === void 0 ? '' : _ref$title,
582
584
  _ref$variant = _ref.variant,
583
585
  variant = _ref$variant === void 0 ? 'default' : _ref$variant,
584
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$K);
586
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$L);
585
587
  var handleClose = function handleClose(event) {
586
588
  if (!onClose) return;
587
589
  onClose(event);
@@ -635,7 +637,7 @@ var Alert = function Alert(_ref) {
635
637
 
636
638
  var styles$v = {"badge":"Badge-module_badge__ZbEBU","size-sm":"Badge-module_size-sm__rL8a6","size-md":"Badge-module_size-md__kf6IH","size-lg":"Badge-module_size-lg__of6XJ","inverse":"Badge-module_inverse__qZCFA","purple":"Badge-module_purple__rX-xW","green":"Badge-module_green__W03uU","red":"Badge-module_red__fl2jg","blue":"Badge-module_blue__C7kyV","yellow":"Badge-module_yellow__gGZ6R","light-grey":"Badge-module_light-grey__Wtrhx","dark-grey":"Badge-module_dark-grey__X-807","hyphen":"Badge-module_hyphen__9pe7x","size-sm-tablet":"Badge-module_size-sm-tablet__6xMVk","size-md-tablet":"Badge-module_size-md-tablet__4w-7I","size-lg-tablet":"Badge-module_size-lg-tablet__8xyRF","size-sm-desktop":"Badge-module_size-sm-desktop__Ayf5L","size-md-desktop":"Badge-module_size-md-desktop__XSq7m","size-lg-desktop":"Badge-module_size-lg-desktop__Baw3S","size-sm-hd":"Badge-module_size-sm-hd__Da6Au","size-md-hd":"Badge-module_size-md-hd__-VNMk","size-lg-hd":"Badge-module_size-lg-hd__6MOwL"};
637
639
 
638
- var _excluded$J = ["className", "message", "variant", "size"];
640
+ var _excluded$K = ["className", "message", "variant", "size"];
639
641
  var Badge = function Badge(_ref) {
640
642
  var _classNames;
641
643
  var _ref$className = _ref.className,
@@ -646,7 +648,7 @@ var Badge = function Badge(_ref) {
646
648
  variant = _ref$variant === void 0 ? 'light-grey' : _ref$variant,
647
649
  _ref$size = _ref.size,
648
650
  size = _ref$size === void 0 ? 'md' : _ref$size,
649
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$J);
651
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$K);
650
652
  var responsiveClasses = generateResponsiveClasses('size', size).map(function (c) {
651
653
  return styles$v[c];
652
654
  });
@@ -752,7 +754,7 @@ var Spinner = function Spinner(_ref) {
752
754
 
753
755
  var styles$t = {"button":"Button-module_button__18Bed","size-sm":"Button-module_size-sm__6Xrjw","size-md":"Button-module_size-md__BkuGu","size-lg":"Button-module_size-lg__JVYWV","primary":"Button-module_primary__st6yY","secondary":"Button-module_secondary__j-3rj","tertiary":"Button-module_tertiary__Nd7xM","danger":"Button-module_danger__Hxs5n","size-sm-tablet":"Button-module_size-sm-tablet__9XaSx","size-md-tablet":"Button-module_size-md-tablet__YQxaI","size-lg-tablet":"Button-module_size-lg-tablet__h3l97","size-sm-desktop":"Button-module_size-sm-desktop__8tTsg","size-md-desktop":"Button-module_size-md-desktop__OCdDi","size-lg-desktop":"Button-module_size-lg-desktop__uFc4f","size-sm-hd":"Button-module_size-sm-hd__INFfD","size-md-hd":"Button-module_size-md-hd__8e2mW","size-lg-hd":"Button-module_size-lg-hd__DH60l","loading":"Button-module_loading__QfItr","label":"Button-module_label__1PsXG","full-width":"Button-module_full-width__qDri6","spinner-wrapper":"Button-module_spinner-wrapper__rALNw"};
754
756
 
755
- var _excluded$I = ["asChild", "children", "className", "fullWidth", "iconPrefix", "iconSuffix", "isDisabled", "isLoading", "onClick", "onBlur", "onFocus", "shadow", "size", "type", "variant"];
757
+ var _excluded$J = ["asChild", "children", "className", "fullWidth", "iconPrefix", "iconSuffix", "isDisabled", "isLoading", "onClick", "onBlur", "onFocus", "shadow", "size", "type", "variant"];
756
758
  var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
757
759
  var _classNames;
758
760
  var asChild = _ref.asChild,
@@ -773,7 +775,7 @@ var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
773
775
  type = _ref$type === void 0 ? 'button' : _ref$type,
774
776
  _ref$variant = _ref.variant,
775
777
  variant = _ref$variant === void 0 ? 'primary' : _ref$variant,
776
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$I);
778
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$J);
777
779
  var disabled = isLoading || isDisabled;
778
780
  var responsiveClasses = generateResponsiveClasses('size', size).map(function (c) {
779
781
  return styles$t[c];
@@ -816,7 +818,7 @@ var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
816
818
  });
817
819
  Button.displayName = 'Button';
818
820
 
819
- var _excluded$H = ["background", "borderColor", "borderWidth", "children", "display", "padding"];
821
+ var _excluded$I = ["background", "borderColor", "borderWidth", "children", "display", "padding"];
820
822
  var CardFooter = function CardFooter(_ref) {
821
823
  var _ref$background = _ref.background,
822
824
  background = _ref$background === void 0 ? 'secondary' : _ref$background,
@@ -830,7 +832,7 @@ var CardFooter = function CardFooter(_ref) {
830
832
  display = _ref$display === void 0 ? 'block' : _ref$display,
831
833
  _ref$padding = _ref.padding,
832
834
  padding = _ref$padding === void 0 ? '2xl' : _ref$padding,
833
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$H);
835
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$I);
834
836
  return React.createElement(Box, _extends({
835
837
  display: display,
836
838
  padding: padding,
@@ -851,7 +853,7 @@ var HEADING_DEFAULT_SIZE_MAP = {
851
853
 
852
854
  var styles$s = {"heading":"Heading-module_heading__zKyv7"};
853
855
 
854
- var _excluded$G = ["as", "children", "className", "color", "size"];
856
+ var _excluded$H = ["as", "children", "className", "color", "size"];
855
857
  var Heading = function Heading(_ref) {
856
858
  var _classNames;
857
859
  var _ref$as = _ref.as,
@@ -860,7 +862,7 @@ var Heading = function Heading(_ref) {
860
862
  className = _ref.className,
861
863
  color = _ref.color,
862
864
  size = _ref.size,
863
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$G);
865
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$H);
864
866
  var element = getElementType(Heading, {
865
867
  as: as
866
868
  });
@@ -871,12 +873,12 @@ var Heading = function Heading(_ref) {
871
873
  }, restProps), children);
872
874
  };
873
875
 
874
- var _excluded$F = ["children", "title", "description"];
876
+ var _excluded$G = ["children", "title", "description"];
875
877
  var CardHeader = function CardHeader(_ref) {
876
878
  var children = _ref.children,
877
879
  title = _ref.title,
878
880
  description = _ref.description,
879
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$F);
881
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$G);
880
882
  return React.createElement(Box, _extends({
881
883
  padding: "2xl",
882
884
  direction: "row",
@@ -899,7 +901,7 @@ var CardHeader = function CardHeader(_ref) {
899
901
 
900
902
  var styles$r = {"card-section-border":"Card-module_card-section-border__OefDX"};
901
903
 
902
- var _excluded$E = ["background", "borderColor", "borderWidth", "children", "childGap", "gap", "className", "display", "padding", "subdued", "title"];
904
+ var _excluded$F = ["background", "borderColor", "borderWidth", "children", "childGap", "gap", "className", "display", "padding", "subdued", "title"];
903
905
  var CardSection = function CardSection(_ref) {
904
906
  var _classNames;
905
907
  var _ref$background = _ref.background,
@@ -924,7 +926,7 @@ var CardSection = function CardSection(_ref) {
924
926
  subdued = _ref$subdued === void 0 ? undefined : _ref$subdued,
925
927
  _ref$title = _ref.title,
926
928
  title = _ref$title === void 0 ? undefined : _ref$title,
927
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$E);
929
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$F);
928
930
  var renderTitle = typeof title === 'string' ? React.createElement(Box, {
929
931
  className: "m-bottom-md"
930
932
  }, React.createElement(Box, {
@@ -947,7 +949,7 @@ var CardSection = function CardSection(_ref) {
947
949
  }, children));
948
950
  };
949
951
 
950
- var _excluded$D = ["children", "subdued", "overflow", "display", "width"];
952
+ var _excluded$E = ["children", "subdued", "overflow", "display", "width"];
951
953
  var CardBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
952
954
  var children = _ref.children,
953
955
  subdued = _ref.subdued,
@@ -957,7 +959,7 @@ var CardBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
957
959
  display = _ref$display === void 0 ? 'block' : _ref$display,
958
960
  _ref$width = _ref.width,
959
961
  width = _ref$width === void 0 ? '100' : _ref$width,
960
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$D);
962
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$E);
961
963
  return React.createElement(Box, _extends({
962
964
  background: subdued ? 'secondary' : 'primary',
963
965
  borderWidth: "sm",
@@ -980,7 +982,7 @@ var Card = /*#__PURE__*/function () {
980
982
  return Card;
981
983
  }();
982
984
 
983
- var _excluded$C = ["className", "error", "isChecked", "isDisabled", "isIndeterminate"];
985
+ var _excluded$D = ["className", "error", "isChecked", "isDisabled", "isIndeterminate"];
984
986
  var CheckboxIcon = function CheckboxIcon(_ref) {
985
987
  var _ref$className = _ref.className,
986
988
  className = _ref$className === void 0 ? undefined : _ref$className,
@@ -992,7 +994,7 @@ var CheckboxIcon = function CheckboxIcon(_ref) {
992
994
  isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
993
995
  _ref$isIndeterminate = _ref.isIndeterminate,
994
996
  isIndeterminate = _ref$isIndeterminate === void 0 ? false : _ref$isIndeterminate,
995
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$C);
997
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$D);
996
998
  var color = 'base';
997
999
  var name = 'checkbox-btn';
998
1000
  if (isChecked) name = 'checkbox-btn-checked';else name = 'checkbox-btn';
@@ -1017,7 +1019,7 @@ var CheckboxIcon = function CheckboxIcon(_ref) {
1017
1019
 
1018
1020
  var styles$q = {"checkbox":"Checkbox-module_checkbox__dY-7P","size-sm":"Checkbox-module_size-sm__mJkMQ","size-md":"Checkbox-module_size-md__I2s8g","size-lg":"Checkbox-module_size-lg__rFFnb","hidden":"Checkbox-module_hidden__2y7Zr","size-sm-tablet":"Checkbox-module_size-sm-tablet__GhQUW","size-md-tablet":"Checkbox-module_size-md-tablet__XRHf4","size-lg-tablet":"Checkbox-module_size-lg-tablet__quoAJ","size-sm-desktop":"Checkbox-module_size-sm-desktop__fqeEc","size-md-desktop":"Checkbox-module_size-md-desktop__9a278","size-lg-desktop":"Checkbox-module_size-lg-desktop__WQnv0","size-sm-hd":"Checkbox-module_size-sm-hd__X3yIF","size-md-hd":"Checkbox-module_size-md-hd__6T0dF","size-lg-hd":"Checkbox-module_size-lg-hd__UXCt1"};
1019
1021
 
1020
- var _excluded$B = ["className", "display", "id", "isChecked", "label", "labelledby", "onChange", "error", "isDisabled", "isHidden", "isIndeterminate", "isRequired", "onBlur", "onFocus", "size", "value"];
1022
+ var _excluded$C = ["className", "display", "id", "isChecked", "label", "labelledby", "onChange", "error", "isDisabled", "isHidden", "isIndeterminate", "isRequired", "onBlur", "onFocus", "size", "value"];
1021
1023
  var Checkbox = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1022
1024
  var _ref2;
1023
1025
  var _ref$className = _ref.className,
@@ -1047,7 +1049,7 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1047
1049
  size = _ref$size === void 0 ? 'md' : _ref$size,
1048
1050
  _ref$value = _ref.value,
1049
1051
  value = _ref$value === void 0 ? undefined : _ref$value,
1050
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$B);
1052
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$C);
1051
1053
  var inputRef = React.useRef(null);
1052
1054
  React.useEffect(function () {
1053
1055
  if (inputRef != null && inputRef.current) {
@@ -1136,7 +1138,7 @@ var HelpText = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1136
1138
  }, children);
1137
1139
  });
1138
1140
 
1139
- var _excluded$A = ["children", "inputId", "className", "display", "helpText", "isDisabled", "isFieldRequired", "isRadioInputLabel", "requiredIndicator", "margin", "padding"];
1141
+ var _excluded$B = ["children", "inputId", "className", "display", "helpText", "isDisabled", "isFieldRequired", "isRadioInputLabel", "requiredIndicator", "margin", "padding"];
1140
1142
  var FormLabel = function FormLabel(_ref) {
1141
1143
  var _classNames;
1142
1144
  var children = _ref.children,
@@ -1158,7 +1160,7 @@ var FormLabel = function FormLabel(_ref) {
1158
1160
  margin = _ref$margin === void 0 ? '0' : _ref$margin,
1159
1161
  _ref$padding = _ref.padding,
1160
1162
  padding = _ref$padding === void 0 ? '0' : _ref$padding,
1161
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$A);
1163
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$B);
1162
1164
  var labelClasses = classNames('hyphen-components__variables__form-control', styles$o.label, className, (_classNames = {}, _classNames[styles$o.disabled] = isDisabled, _classNames[styles$o.disabled] = isDisabled, _classNames[styles$o['radio-input-label']] = isRadioInputLabel, _classNames));
1163
1165
  return React.createElement(Box, _extends({
1164
1166
  as: "label",
@@ -1171,7 +1173,7 @@ var FormLabel = function FormLabel(_ref) {
1171
1173
  }, restProps), children, isFieldRequired && requiredIndicator && React.createElement("span", null, requiredIndicator), helpText && React.createElement(HelpText, null, helpText));
1172
1174
  };
1173
1175
 
1174
- var _excluded$z = ["id", "isChecked", "label", "onChange", "className", "error", "hideLabel", "helpText", "isDisabled", "isIndeterminate", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size"];
1176
+ var _excluded$A = ["id", "isChecked", "label", "onChange", "className", "error", "hideLabel", "helpText", "isDisabled", "isIndeterminate", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size"];
1175
1177
  var labelMarginSizeMap = {
1176
1178
  sm: '2xs 0 0 0',
1177
1179
  md: 'xs 0 0 0',
@@ -1216,7 +1218,7 @@ var CheckboxInput = function CheckboxInput(_ref2) {
1216
1218
  requiredIndicator = _ref2$requiredIndicat === void 0 ? ' *' : _ref2$requiredIndicat,
1217
1219
  _ref2$size = _ref2.size,
1218
1220
  size = _ref2$size === void 0 ? 'md' : _ref2$size,
1219
- restProps = _objectWithoutPropertiesLoose(_ref2, _excluded$z);
1221
+ restProps = _objectWithoutPropertiesLoose(_ref2, _excluded$A);
1220
1222
  var handleBlur = function handleBlur(event) {
1221
1223
  if (onBlur) onBlur(event);
1222
1224
  };
@@ -1264,7 +1266,7 @@ var CollapsibleContent = CollapsiblePrimitive__namespace.CollapsibleContent;
1264
1266
 
1265
1267
  var styles$m = {};
1266
1268
 
1267
- var _excluded$y = ["children", "dayClassName", "maxDate", "minDate", "monthsShown", "openToDate", "startDate", "selected", "selectsRange", "showTwoColumnMonthYearPicker", "showFullMonthYearPicker", "showMonthYearPicker", "className", "formatWeekDay"];
1269
+ var _excluded$z = ["children", "dayClassName", "maxDate", "minDate", "monthsShown", "openToDate", "startDate", "selected", "selectsRange", "showTwoColumnMonthYearPicker", "showFullMonthYearPicker", "showMonthYearPicker", "className", "formatWeekDay"];
1268
1270
  var DatePicker = function DatePicker(_ref) {
1269
1271
  var _ref$children = _ref.children,
1270
1272
  children = _ref$children === void 0 ? null : _ref$children,
@@ -1296,7 +1298,7 @@ var DatePicker = function DatePicker(_ref) {
1296
1298
  formatWeekDay = _ref$formatWeekDay === void 0 ? function (formattedDate) {
1297
1299
  return formattedDate[0];
1298
1300
  } : _ref$formatWeekDay,
1299
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$y);
1301
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$z);
1300
1302
  var datePickerClasses = classNames(styles$m['react-datepicker'], className);
1301
1303
  return React.createElement(ReactDatePicker, _extends({
1302
1304
  inline: true,
@@ -1316,7 +1318,7 @@ var DatePicker = function DatePicker(_ref) {
1316
1318
  }, restProps), children);
1317
1319
  };
1318
1320
 
1319
- var _excluded$x = ["label", "hideLabel", "children", "error", "id", "isRequired", "helpText", "isDisabled", "requiredIndicator", "width"];
1321
+ var _excluded$y = ["label", "hideLabel", "children", "error", "id", "isRequired", "helpText", "isDisabled", "requiredIndicator", "width"];
1320
1322
  var FormControl = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1321
1323
  var label = _ref.label,
1322
1324
  hideLabel = _ref.hideLabel,
@@ -1329,7 +1331,7 @@ var FormControl = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1329
1331
  requiredIndicator = _ref.requiredIndicator,
1330
1332
  _ref$width = _ref.width,
1331
1333
  width = _ref$width === void 0 ? '100' : _ref$width,
1332
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$x);
1334
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$y);
1333
1335
  var labelProps = {
1334
1336
  inputId: id,
1335
1337
  helpText: helpText,
@@ -1357,7 +1359,7 @@ function getAutoCompleteValue(value) {
1357
1359
 
1358
1360
  var styles$l = {"text-input-wrapper":"TextInput-module_text-input-wrapper__HCnQD","size-sm":"TextInput-module_size-sm__qWJn7","prefix":"TextInput-module_prefix__-wFO9","suffix":"TextInput-module_suffix__327yL","clear-button":"TextInput-module_clear-button__LUJpO","is-clearable":"TextInput-module_is-clearable__ExAY3","size-md":"TextInput-module_size-md__UFPtt","size-lg":"TextInput-module_size-lg__Hjfez","disabled":"TextInput-module_disabled__lrifj","size-sm-tablet":"TextInput-module_size-sm-tablet__neC5C","size-md-tablet":"TextInput-module_size-md-tablet__u29oc","size-lg-tablet":"TextInput-module_size-lg-tablet__3PUB3","size-sm-desktop":"TextInput-module_size-sm-desktop__kA12V","size-md-desktop":"TextInput-module_size-md-desktop__yLJGr","size-lg-desktop":"TextInput-module_size-lg-desktop__A1pcS","size-sm-hd":"TextInput-module_size-sm-hd__f7Thr","size-md-hd":"TextInput-module_size-md-hd__Tsnqc","size-lg-hd":"TextInput-module_size-lg-hd__XLMos","error":"TextInput-module_error__p6zZq","text-input-label":"TextInput-module_text-input-label__3PlSG"};
1359
1361
 
1360
- var _excluded$w = ["id", "label", "onChange", "value", "autoComplete", "autoFocus", "error", "helpText", "hideLabel", "inputProps", "isDisabled", "isRequired", "maxLength", "name", "onBlur", "onClear", "onFocus", "prefix", "placeholder", "requiredIndicator", "suffix", "size", "type"];
1362
+ var _excluded$x = ["id", "label", "onChange", "value", "autoComplete", "autoFocus", "error", "helpText", "hideLabel", "inputProps", "isDisabled", "isRequired", "maxLength", "name", "onBlur", "onClear", "onFocus", "prefix", "placeholder", "requiredIndicator", "suffix", "size", "type"];
1361
1363
  var TextInput = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1362
1364
  var _ref2;
1363
1365
  var id = _ref.id,
@@ -1401,7 +1403,7 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1401
1403
  size = _ref$size === void 0 ? 'md' : _ref$size,
1402
1404
  _ref$type = _ref.type,
1403
1405
  type = _ref$type === void 0 ? 'text' : _ref$type,
1404
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$w);
1406
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$x);
1405
1407
  var responsiveClasses = generateResponsiveClasses('size', size);
1406
1408
  var inputWrapperClasses = classNames.apply(void 0, ['hyphen-components__variables__form-control', styles$l['text-input-wrapper']].concat(responsiveClasses.map(function (c) {
1407
1409
  return styles$l[c];
@@ -1553,7 +1555,7 @@ var BREAKPOINTS = /*#__PURE__*/[].concat(Object.entries(designTokens.size.breakp
1553
1555
  var Z_INDEX_VALUES = designTokens.size['z-index'];
1554
1556
  // export const BOX_SHADOW_VALUES = designTokens.size['box-shadow'];
1555
1557
 
1556
- var _excluded$v = ["className", "isOpen", "children", "content", "arrowColor", "contentContainerProps", "hasArrow", "offsetFromTarget", "onClickOutside", "placement", "withPortal", "portalTarget", "trapFocus"];
1558
+ var _excluded$w = ["className", "isOpen", "children", "content", "arrowColor", "contentContainerProps", "hasArrow", "offsetFromTarget", "onClickOutside", "placement", "withPortal", "portalTarget", "trapFocus"];
1557
1559
  var contentContainerDefaults = {
1558
1560
  background: 'primary',
1559
1561
  padding: 'sm',
@@ -1582,7 +1584,7 @@ var Popover = function Popover(_ref) {
1582
1584
  portalTarget = _ref.portalTarget,
1583
1585
  _ref$trapFocus = _ref.trapFocus,
1584
1586
  trapFocus = _ref$trapFocus === void 0 ? false : _ref$trapFocus,
1585
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$v);
1587
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$w);
1586
1588
  var triggerRef = React.useRef(null);
1587
1589
  var popperRef = React.useRef(null);
1588
1590
  var _useState = React.useState(null),
@@ -1688,7 +1690,7 @@ var Popover = function Popover(_ref) {
1688
1690
  withPortal && portalTarget ? reactDom.createPortal(renderPopperContent(), portalTarget) : renderPopperContent()));
1689
1691
  };
1690
1692
 
1691
- var _excluded$u = ["datePickerProps", "textInputProps", "dateFormat", "dateOptions", "popoverProps"];
1693
+ var _excluded$v = ["datePickerProps", "textInputProps", "dateFormat", "dateOptions", "popoverProps"];
1692
1694
  var defaultDatePickerProps = {
1693
1695
  selected: null,
1694
1696
  selectsRange: false
@@ -1708,7 +1710,7 @@ var DateInput = function DateInput(_ref) {
1708
1710
  dateOptions = _ref$dateOptions === void 0 ? undefined : _ref$dateOptions,
1709
1711
  _ref$popoverProps = _ref.popoverProps,
1710
1712
  popoverProps = _ref$popoverProps === void 0 ? _extends({}, defaultPopoverProps) : _ref$popoverProps,
1711
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$u);
1713
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$v);
1712
1714
  var mergedDatePickerProps = _extends({}, defaultDatePickerProps, datePickerProps);
1713
1715
  var mergedPopoverProps = _extends({}, defaultPopoverProps, popoverProps);
1714
1716
  var mergedTextInputProps = _extends({}, defaultTextInputProps, textInputProps);
@@ -1785,14 +1787,14 @@ var DateInput = function DateInput(_ref) {
1785
1787
  var ENTER = 13;
1786
1788
  var SPACE = 32;
1787
1789
 
1788
- var _excluded$t = ["children", "display", "isDetailsOpen", "onToggle"];
1790
+ var _excluded$u = ["children", "display", "isDetailsOpen", "onToggle"];
1789
1791
  var DetailsSummary = function DetailsSummary(_ref) {
1790
1792
  var children = _ref.children,
1791
1793
  _ref$display = _ref.display,
1792
1794
  display = _ref$display === void 0 ? 'block' : _ref$display,
1793
1795
  isDetailsOpen = _ref.isDetailsOpen,
1794
1796
  onToggle = _ref.onToggle,
1795
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$t);
1797
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$u);
1796
1798
  var handleClick = function handleClick(event) {
1797
1799
  // Needed to avoid default `details` behavior on a click event and keep this as controlled component.
1798
1800
  event.preventDefault();
@@ -1830,14 +1832,14 @@ var DetailsSummary = function DetailsSummary(_ref) {
1830
1832
 
1831
1833
  var styles$j = {"details-reset":"Details-module_details-reset__HWtSD"};
1832
1834
 
1833
- var _excluded$s = ["children", "className", "display", "isOpen"];
1835
+ var _excluded$t = ["children", "className", "display", "isOpen"];
1834
1836
  var DetailsBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1835
1837
  var children = _ref.children,
1836
1838
  className = _ref.className,
1837
1839
  _ref$display = _ref.display,
1838
1840
  display = _ref$display === void 0 ? 'block' : _ref$display,
1839
1841
  isOpen = _ref.isOpen,
1840
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$s);
1842
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$t);
1841
1843
  var detailsClasses = classNames(className, styles$j['details-reset'], styles$j.details);
1842
1844
  return React.createElement(Box, _extends({
1843
1845
  as: "details",
@@ -1857,7 +1859,7 @@ var Details = /*#__PURE__*/function () {
1857
1859
 
1858
1860
  var styles$i = {"drawer":"Drawer-module_drawer__IKoOm","hide-overlay-right":"Drawer-module_hide-overlay-right__FANA9","hide-overlay-left":"Drawer-module_hide-overlay-left__xZFa3","hide-overlay-bottom":"Drawer-module_hide-overlay-bottom__11EB1","hide-overlay-top":"Drawer-module_hide-overlay-top__kEsV5","drawer-content":"Drawer-module_drawer-content__zZ9xR","left":"Drawer-module_left__pwTcW","right":"Drawer-module_right__EzGpI","bottom":"Drawer-module_bottom__r3Q5Z","top":"Drawer-module_top__xQejO"};
1859
1861
 
1860
- var _excluded$r = ["defaultIsOpen", "open", "onOpenChange", "className", "children"],
1862
+ var _excluded$s = ["defaultIsOpen", "open", "onOpenChange", "className", "children"],
1861
1863
  _excluded2$2 = ["asChild", "onClick"],
1862
1864
  _excluded3$2 = ["className"],
1863
1865
  _excluded4$2 = ["className", "onClick", "onClose"],
@@ -1877,7 +1879,7 @@ var DrawerProvider = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1877
1879
  setOpenProp = _ref.onOpenChange,
1878
1880
  className = _ref.className,
1879
1881
  children = _ref.children,
1880
- props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
1882
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
1881
1883
  var _useState = React.useState(openProp != null ? openProp : defaultIsOpen),
1882
1884
  _open = _useState[0],
1883
1885
  _setOpen = _useState[1];
@@ -2101,7 +2103,7 @@ var DrawerContent = /*#__PURE__*/React.forwardRef(function (_ref7, ref) {
2101
2103
  }, props));
2102
2104
  });
2103
2105
 
2104
- var _excluded$q = ["className", "inset"],
2106
+ var _excluded$r = ["className", "inset"],
2105
2107
  _excluded2$1 = ["className", "sideOffset"],
2106
2108
  _excluded3$1 = ["className", "inset"],
2107
2109
  _excluded4$1 = ["className"],
@@ -2117,7 +2119,7 @@ var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
2117
2119
  var DropdownMenuItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2118
2120
  var className = _ref.className,
2119
2121
  inset = _ref.inset,
2120
- props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
2122
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
2121
2123
  return React.createElement(DropdownMenuPrimitive__namespace.Item, _extends({
2122
2124
  ref: ref,
2123
2125
  className: classNames('font-size-sm position-relative cursor-default display-flex br-sm align-items-center p-sm g-sm outline-none', inset && 'p-left-md', !props.disabled && 'hover:background-color-secondary focus:background-color-secondary', props.disabled && 'cursor-not-allowed font-color-disabled', className)
@@ -2197,7 +2199,7 @@ var DropdownMenuSubContent = /*#__PURE__*/React.forwardRef(function (_ref7, ref)
2197
2199
  });
2198
2200
  DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
2199
2201
 
2200
- var _excluded$p = ["field", "form", "onChange", "id", "label"];
2202
+ var _excluded$q = ["field", "form", "onChange", "id", "label"];
2201
2203
  var FormikCheckboxInput = function FormikCheckboxInput(_ref) {
2202
2204
  var _ref$field = _ref.field,
2203
2205
  name = _ref$field.name,
@@ -2210,7 +2212,7 @@ var FormikCheckboxInput = function FormikCheckboxInput(_ref) {
2210
2212
  onChange = _ref.onChange,
2211
2213
  id = _ref.id,
2212
2214
  label = _ref.label,
2213
- props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
2215
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
2214
2216
  return React.createElement(CheckboxInput, _extends({}, props, {
2215
2217
  id: id,
2216
2218
  label: label,
@@ -2221,7 +2223,7 @@ var FormikCheckboxInput = function FormikCheckboxInput(_ref) {
2221
2223
  }));
2222
2224
  };
2223
2225
 
2224
- var _excluded$o = ["className", "isSelected", "isDisabled", "error"];
2226
+ var _excluded$p = ["className", "isSelected", "isDisabled", "error"];
2225
2227
  var RadioInputIcon = function RadioInputIcon(_ref) {
2226
2228
  var _ref$className = _ref.className,
2227
2229
  className = _ref$className === void 0 ? undefined : _ref$className,
@@ -2231,7 +2233,7 @@ var RadioInputIcon = function RadioInputIcon(_ref) {
2231
2233
  isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
2232
2234
  _ref$error = _ref.error,
2233
2235
  error = _ref$error === void 0 ? null : _ref$error,
2234
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
2236
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$p);
2235
2237
  var color = 'secondary';
2236
2238
  var name = 'radio-btn-unchecked';
2237
2239
  if (isSelected && isDisabled) {
@@ -2324,7 +2326,7 @@ var RadioInput = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2324
2326
 
2325
2327
  var styles$g = {"radio-group":"RadioGroup-module_radio-group__FWPcT","fieldset":"RadioGroup-module_fieldset__PEUXI","legend":"RadioGroup-module_legend__tcfV7","description":"RadioGroup-module_description__8fzM-"};
2326
2328
 
2327
- var _excluded$n = ["name", "onChange", "options", "className", "description", "direction", "error", "isDisabled", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size", "title", "value"];
2329
+ var _excluded$o = ["name", "onChange", "options", "className", "description", "direction", "error", "isDisabled", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size", "title", "value"];
2328
2330
  var RadioGroup = function RadioGroup(_ref) {
2329
2331
  var _classNames;
2330
2332
  var name = _ref.name,
@@ -2354,7 +2356,7 @@ var RadioGroup = function RadioGroup(_ref) {
2354
2356
  title = _ref$title === void 0 ? undefined : _ref$title,
2355
2357
  _ref$value = _ref.value,
2356
2358
  value = _ref$value === void 0 ? undefined : _ref$value,
2357
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$n);
2359
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
2358
2360
  var groupClasses = classNames('hyphen-components__variables__form-control', className, (_classNames = {}, _classNames[styles$g.loading] = error, _classNames));
2359
2361
  return React.createElement("div", _extends({
2360
2362
  className: classNames(styles$g['radio-group'], groupClasses)
@@ -2384,7 +2386,7 @@ var RadioGroup = function RadioGroup(_ref) {
2384
2386
  }))), error && typeof error !== 'boolean' && React.createElement(InputValidationMessage, null, error));
2385
2387
  };
2386
2388
 
2387
- var _excluded$m = ["field", "form", "onChange", "options"];
2389
+ var _excluded$n = ["field", "form", "onChange", "options"];
2388
2390
  var FormikRadioGroup = function FormikRadioGroup(_ref) {
2389
2391
  var _ref$field = _ref.field,
2390
2392
  name = _ref$field.name,
@@ -2396,7 +2398,7 @@ var FormikRadioGroup = function FormikRadioGroup(_ref) {
2396
2398
  errors = _ref$form.errors,
2397
2399
  onChange = _ref.onChange,
2398
2400
  options = _ref.options,
2399
- props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
2401
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
2400
2402
  return React.createElement(RadioGroup, _extends({}, props, {
2401
2403
  options: options,
2402
2404
  name: name,
@@ -2409,7 +2411,7 @@ var FormikRadioGroup = function FormikRadioGroup(_ref) {
2409
2411
 
2410
2412
  var styles$f = {"react-select-icon":"SelectInput-module_react-select-icon__PvocB","size-sm":"SelectInput-module_size-sm__PKB-J","size-md":"SelectInput-module_size-md__n9Fj8","size-lg":"SelectInput-module_size-lg__LQ-uG","error":"SelectInput-module_error__Avf98","size-sm-tablet":"SelectInput-module_size-sm-tablet__2Dg01","size-md-tablet":"SelectInput-module_size-md-tablet__-iOSg","size-lg-tablet":"SelectInput-module_size-lg-tablet__9xmuJ","size-sm-desktop":"SelectInput-module_size-sm-desktop__tOWI4","size-md-desktop":"SelectInput-module_size-md-desktop__vo-UC","size-lg-desktop":"SelectInput-module_size-lg-desktop__nxQdj","size-sm-hd":"SelectInput-module_size-sm-hd__qamTH","size-md-hd":"SelectInput-module_size-md-hd__Cf8hk","size-lg-hd":"SelectInput-module_size-lg-hd__E4-mZ","disabled":"SelectInput-module_disabled__4ezAy","select-input-label":"SelectInput-module_select-input-label__eqEYa"};
2411
2413
 
2412
- var _excluded$l = ["id", "label", "onChange", "options", "value", "autoFocus", "className", "error", "helpText", "hideLabel", "isClearable", "isAsync", "isCreatable", "isDisabled", "isMulti", "isRequired", "menuPortalTarget", "name", "onFocus", "onBlur", "placeholder", "requiredIndicator", "size"];
2414
+ var _excluded$m = ["id", "label", "onChange", "options", "value", "autoFocus", "className", "error", "helpText", "hideLabel", "isClearable", "isAsync", "isCreatable", "isDisabled", "isMulti", "isRequired", "menuPortalTarget", "name", "onFocus", "onBlur", "placeholder", "requiredIndicator", "size"];
2413
2415
  function SelectInput(props) {
2414
2416
  var _ref, _classNames;
2415
2417
  var id = props.id,
@@ -2452,7 +2454,7 @@ function SelectInput(props) {
2452
2454
  requiredIndicator = _props$requiredIndica === void 0 ? ' *' : _props$requiredIndica,
2453
2455
  _props$size = props.size,
2454
2456
  size = _props$size === void 0 ? 'md' : _props$size,
2455
- restProps = _objectWithoutPropertiesLoose(props, _excluded$l);
2457
+ restProps = _objectWithoutPropertiesLoose(props, _excluded$m);
2456
2458
  var handleChange = function handleChange(values) {
2457
2459
  var simulatedEventPayloadType = {
2458
2460
  target: {
@@ -2525,7 +2527,7 @@ function SelectInput(props) {
2525
2527
  })), error && typeof error !== 'boolean' && React.createElement(InputValidationMessage, null, error));
2526
2528
  }
2527
2529
 
2528
- var _excluded$k = ["field", "form", "onChange", "id", "label", "options", "error"];
2530
+ var _excluded$l = ["field", "form", "onChange", "id", "label", "options", "error"];
2529
2531
  var FormikSelectInput = function FormikSelectInput(_ref) {
2530
2532
  var _ref$field = _ref.field,
2531
2533
  name = _ref$field.name,
@@ -2540,7 +2542,7 @@ var FormikSelectInput = function FormikSelectInput(_ref) {
2540
2542
  label = _ref.label,
2541
2543
  options = _ref.options,
2542
2544
  errorProp = _ref.error,
2543
- props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2545
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
2544
2546
  var errorMessage;
2545
2547
  var error = errorProp != null ? errorProp : formik.getIn(touched, name) && formik.getIn(errors, name);
2546
2548
  if (typeof error === 'string') {
@@ -2668,7 +2670,7 @@ var SelectInputInset = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2668
2670
  }, label, isRequired && requiredIndicator && React.createElement("span", null, requiredIndicator))), helpText && React.createElement(HelpText, null, helpText), error && error !== true && React.createElement(InputValidationMessage, null, error));
2669
2671
  });
2670
2672
 
2671
- var _excluded$j = ["field", "form", "onChange", "id", "label", "options"];
2673
+ var _excluded$k = ["field", "form", "onChange", "id", "label", "options"];
2672
2674
  var FormikSelectInputInset = function FormikSelectInputInset(_ref) {
2673
2675
  var _ref$field = _ref.field,
2674
2676
  name = _ref$field.name,
@@ -2682,7 +2684,7 @@ var FormikSelectInputInset = function FormikSelectInputInset(_ref) {
2682
2684
  id = _ref.id,
2683
2685
  label = _ref.label,
2684
2686
  options = _ref.options,
2685
- props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2687
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2686
2688
  return React.createElement(SelectInputInset, _extends({}, props, {
2687
2689
  id: id,
2688
2690
  label: label,
@@ -2780,7 +2782,7 @@ var TextareaInputInset = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2780
2782
  }, label, isRequired && requiredIndicator && React.createElement("span", null, requiredIndicator))), helpText && React.createElement(HelpText, null, helpText), error && error !== true && React.createElement(InputValidationMessage, null, error));
2781
2783
  });
2782
2784
 
2783
- var _excluded$i = ["field", "form", "onChange", "id", "label"];
2785
+ var _excluded$j = ["field", "form", "onChange", "id", "label"];
2784
2786
  var FormikTextareaInputInset = function FormikTextareaInputInset(_ref) {
2785
2787
  var _ref$field = _ref.field,
2786
2788
  name = _ref$field.name,
@@ -2793,7 +2795,7 @@ var FormikTextareaInputInset = function FormikTextareaInputInset(_ref) {
2793
2795
  onChange = _ref.onChange,
2794
2796
  id = _ref.id,
2795
2797
  label = _ref.label,
2796
- props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
2798
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2797
2799
  return React.createElement(TextareaInputInset, _extends({}, props, {
2798
2800
  id: id,
2799
2801
  label: label,
@@ -2920,7 +2922,7 @@ var TextInputInset = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2920
2922
  }, suffix)), helpText && React.createElement(HelpText, null, helpText), error && error !== true && React.createElement(InputValidationMessage, null, error));
2921
2923
  });
2922
2924
 
2923
- var _excluded$h = ["field", "form", "onChange", "id", "label"];
2925
+ var _excluded$i = ["field", "form", "onChange", "id", "label"];
2924
2926
  var FormikTextInputInset = function FormikTextInputInset(_ref) {
2925
2927
  var _ref$field = _ref.field,
2926
2928
  name = _ref$field.name,
@@ -2933,7 +2935,7 @@ var FormikTextInputInset = function FormikTextInputInset(_ref) {
2933
2935
  onChange = _ref.onChange,
2934
2936
  id = _ref.id,
2935
2937
  label = _ref.label,
2936
- props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
2938
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
2937
2939
  return React.createElement(TextInputInset, _extends({}, props, {
2938
2940
  id: id,
2939
2941
  label: label,
@@ -2947,7 +2949,7 @@ var FormikTextInputInset = function FormikTextInputInset(_ref) {
2947
2949
 
2948
2950
  var styles$b = {"select-input-native-wrapper":"SelectInputNative-module_select-input-native-wrapper__-vvFm","disabled":"SelectInputNative-module_disabled__gKmV4","size-sm":"SelectInputNative-module_size-sm__7Ql4z","size-md":"SelectInputNative-module_size-md__ofleh","size-lg":"SelectInputNative-module_size-lg__ewS-6","size-sm-tablet":"SelectInputNative-module_size-sm-tablet__3wbFA","size-md-tablet":"SelectInputNative-module_size-md-tablet__nLo2t","size-lg-tablet":"SelectInputNative-module_size-lg-tablet__fLu2T","size-sm-desktop":"SelectInputNative-module_size-sm-desktop__aUL7D","size-md-desktop":"SelectInputNative-module_size-md-desktop__s1uoc","size-lg-desktop":"SelectInputNative-module_size-lg-desktop__Ri2Ka","size-sm-hd":"SelectInputNative-module_size-sm-hd__RVm4G","size-md-hd":"SelectInputNative-module_size-md-hd__m4Rqf","size-lg-hd":"SelectInputNative-module_size-lg-hd__V6i8b","error":"SelectInputNative-module_error__RBOZT","text-input-label":"SelectInputNative-module_text-input-label__-YjDc"};
2949
2951
 
2950
- var _excluded$g = ["autoFocus", "label", "hideLabel", "helpText", "error", "id", "isDisabled", "isRequired", "name", "value", "options", "onChange", "placeholder", "requiredIndicator", "size"];
2952
+ var _excluded$h = ["autoFocus", "label", "hideLabel", "helpText", "error", "id", "isDisabled", "isRequired", "name", "value", "options", "onChange", "placeholder", "requiredIndicator", "size"];
2951
2953
  var SelectInputNative = function SelectInputNative(_ref) {
2952
2954
  var _ref2;
2953
2955
  var _ref$autoFocus = _ref.autoFocus,
@@ -2969,7 +2971,7 @@ var SelectInputNative = function SelectInputNative(_ref) {
2969
2971
  requiredIndicator = _ref$requiredIndicato === void 0 ? ' *' : _ref$requiredIndicato,
2970
2972
  _ref$size = _ref.size,
2971
2973
  size = _ref$size === void 0 ? 'md' : _ref$size,
2972
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
2974
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
2973
2975
  var placeholderOption = {
2974
2976
  value: '',
2975
2977
  label: placeholder
@@ -3015,7 +3017,7 @@ var SelectInputNative = function SelectInputNative(_ref) {
3015
3017
  }))));
3016
3018
  };
3017
3019
 
3018
- var _excluded$f = ["field", "form", "onChange", "options", "id", "label"];
3020
+ var _excluded$g = ["field", "form", "onChange", "options", "id", "label"];
3019
3021
  var FormikSelectInputNative = function FormikSelectInputNative(_ref) {
3020
3022
  var _ref$field = _ref.field,
3021
3023
  name = _ref$field.name,
@@ -3029,7 +3031,7 @@ var FormikSelectInputNative = function FormikSelectInputNative(_ref) {
3029
3031
  options = _ref.options,
3030
3032
  id = _ref.id,
3031
3033
  label = _ref.label,
3032
- props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
3034
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
3033
3035
  return React.createElement(SelectInputNative, _extends({}, props, {
3034
3036
  options: options,
3035
3037
  id: id,
@@ -3042,7 +3044,7 @@ var FormikSelectInputNative = function FormikSelectInputNative(_ref) {
3042
3044
  }));
3043
3045
  };
3044
3046
 
3045
- var _excluded$e = ["field", "form", "onChange", "id", "label"];
3047
+ var _excluded$f = ["field", "form", "onChange", "id", "label"];
3046
3048
  var FormikTextInput = function FormikTextInput(_ref) {
3047
3049
  var _ref$field = _ref.field,
3048
3050
  name = _ref$field.name,
@@ -3055,7 +3057,7 @@ var FormikTextInput = function FormikTextInput(_ref) {
3055
3057
  onChange = _ref.onChange,
3056
3058
  id = _ref.id,
3057
3059
  label = _ref.label,
3058
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
3060
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
3059
3061
  return React.createElement(TextInput, _extends({}, props, {
3060
3062
  id: id,
3061
3063
  label: label,
@@ -3069,7 +3071,7 @@ var FormikTextInput = function FormikTextInput(_ref) {
3069
3071
 
3070
3072
  var styles$a = {"textarea-input-wrapper":"TextareaInput-module_textarea-input-wrapper__mJBZN","size-sm":"TextareaInput-module_size-sm__-YCcV","size-md":"TextareaInput-module_size-md__uPOvN","size-lg":"TextareaInput-module_size-lg__P5SYv","size-sm-tablet":"TextareaInput-module_size-sm-tablet__rYP2T","size-md-tablet":"TextareaInput-module_size-md-tablet__D1PYq","size-lg-tablet":"TextareaInput-module_size-lg-tablet__N-UED","size-sm-desktop":"TextareaInput-module_size-sm-desktop__Z-Zdg","size-md-desktop":"TextareaInput-module_size-md-desktop__W3jIm","size-lg-desktop":"TextareaInput-module_size-lg-desktop__XLwk0","size-sm-hd":"TextareaInput-module_size-sm-hd__KP21d","size-md-hd":"TextareaInput-module_size-md-hd__3me0R","size-lg-hd":"TextareaInput-module_size-lg-hd__BcgC-","error":"TextareaInput-module_error__JpCpt","textarea-input-label":"TextareaInput-module_textarea-input-label__1zb77","textarea-resize-both":"TextareaInput-module_textarea-resize-both__Gn3Zh","textarea-resize-horizontal":"TextareaInput-module_textarea-resize-horizontal__0aRED","textarea-resize-vertical":"TextareaInput-module_textarea-resize-vertical__DbKar","textarea-resize-none":"TextareaInput-module_textarea-resize-none__l6dRF"};
3071
3073
 
3072
- var _excluded$d = ["id", "label", "onChange", "value", "autoComplete", "autoFocus", "className", "error", "helpText", "hideLabel", "isDisabled", "isRequired", "maxLength", "name", "onBlur", "onFocus", "placeholder", "requiredIndicator", "resize", "rows", "size"];
3074
+ var _excluded$e = ["id", "label", "onChange", "value", "autoComplete", "autoFocus", "className", "error", "helpText", "hideLabel", "isDisabled", "isRequired", "maxLength", "name", "onBlur", "onFocus", "placeholder", "requiredIndicator", "resize", "rows", "size"];
3073
3075
  var TextareaInput = function TextareaInput(_ref) {
3074
3076
  var _ref2;
3075
3077
  var id = _ref.id,
@@ -3109,7 +3111,7 @@ var TextareaInput = function TextareaInput(_ref) {
3109
3111
  rows = _ref$rows === void 0 ? 3 : _ref$rows,
3110
3112
  _ref$size = _ref.size,
3111
3113
  size = _ref$size === void 0 ? 'md' : _ref$size,
3112
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$d);
3114
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$e);
3113
3115
  var responsiveClasses = generateResponsiveClasses('size', size);
3114
3116
  var inputWrapperClasses = classNames.apply(void 0, ['hyphen-components__variables__form-control', styles$a['textarea-input-wrapper']].concat(responsiveClasses.map(function (c) {
3115
3117
  return styles$a[c];
@@ -3153,7 +3155,7 @@ var TextareaInput = function TextareaInput(_ref) {
3153
3155
  }, inputProps))), error && error !== true && React.createElement(InputValidationMessage, null, error));
3154
3156
  };
3155
3157
 
3156
- var _excluded$c = ["field", "form", "onChange", "id", "label"];
3158
+ var _excluded$d = ["field", "form", "onChange", "id", "label"];
3157
3159
  var FormikTextareaInput = function FormikTextareaInput(_ref) {
3158
3160
  var _ref$field = _ref.field,
3159
3161
  name = _ref$field.name,
@@ -3166,7 +3168,7 @@ var FormikTextareaInput = function FormikTextareaInput(_ref) {
3166
3168
  onChange = _ref.onChange,
3167
3169
  id = _ref.id,
3168
3170
  label = _ref.label,
3169
- props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
3171
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
3170
3172
  return React.createElement(TextareaInput, _extends({}, props, {
3171
3173
  id: id,
3172
3174
  label: label,
@@ -3178,7 +3180,7 @@ var FormikTextareaInput = function FormikTextareaInput(_ref) {
3178
3180
  }));
3179
3181
  };
3180
3182
 
3181
- var _excluded$b = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3183
+ var _excluded$c = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3182
3184
  var TimePicker = function TimePicker(_ref) {
3183
3185
  var id = _ref.id,
3184
3186
  name = _ref.name,
@@ -3200,7 +3202,7 @@ var TimePicker = function TimePicker(_ref) {
3200
3202
  placeholder = _ref$placeholder === void 0 ? 'HH:MM' : _ref$placeholder,
3201
3203
  _ref$startTime = _ref.startTime,
3202
3204
  startTime = _ref$startTime === void 0 ? undefined : _ref$startTime,
3203
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$b);
3205
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$c);
3204
3206
  var generateTimes = function generateTimes() {
3205
3207
  var first = new Date();
3206
3208
  first.setHours((startTime == null ? void 0 : startTime.hour) || 0, (startTime == null ? void 0 : startTime.minute) || 0, 0, 0);
@@ -3228,7 +3230,7 @@ var TimePicker = function TimePicker(_ref) {
3228
3230
  }));
3229
3231
  };
3230
3232
 
3231
- var _excluded$a = ["field", "form", "options", "onChange"];
3233
+ var _excluded$b = ["field", "form", "options", "onChange"];
3232
3234
  var FormikTimePicker = function FormikTimePicker(_ref) {
3233
3235
  var _ref$field = _ref.field,
3234
3236
  name = _ref$field.name,
@@ -3240,7 +3242,7 @@ var FormikTimePicker = function FormikTimePicker(_ref) {
3240
3242
  errors = _ref$form.errors,
3241
3243
  options = _ref.options,
3242
3244
  onChange = _ref.onChange,
3243
- props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
3245
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
3244
3246
  return React.createElement(TimePicker, _extends({}, props, {
3245
3247
  name: name,
3246
3248
  onBlur: onBlur,
@@ -3251,7 +3253,7 @@ var FormikTimePicker = function FormikTimePicker(_ref) {
3251
3253
  }));
3252
3254
  };
3253
3255
 
3254
- var _excluded$9 = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3256
+ var _excluded$a = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3255
3257
  var TimePickerNative = function TimePickerNative(_ref) {
3256
3258
  var id = _ref.id,
3257
3259
  name = _ref.name,
@@ -3273,7 +3275,7 @@ var TimePickerNative = function TimePickerNative(_ref) {
3273
3275
  placeholder = _ref$placeholder === void 0 ? 'HH:MM' : _ref$placeholder,
3274
3276
  _ref$startTime = _ref.startTime,
3275
3277
  startTime = _ref$startTime === void 0 ? undefined : _ref$startTime,
3276
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$9);
3278
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$a);
3277
3279
  var generateTimes = function generateTimes() {
3278
3280
  var first = new Date();
3279
3281
  first.setHours((startTime == null ? void 0 : startTime.hour) || 0, (startTime == null ? void 0 : startTime.minute) || 0, 0, 0);
@@ -3302,7 +3304,7 @@ var TimePickerNative = function TimePickerNative(_ref) {
3302
3304
  }));
3303
3305
  };
3304
3306
 
3305
- var _excluded$8 = ["field", "form", "onChange"];
3307
+ var _excluded$9 = ["field", "form", "onChange"];
3306
3308
  var FormikTimePickerNative = function FormikTimePickerNative(_ref) {
3307
3309
  var _ref$field = _ref.field,
3308
3310
  name = _ref$field.name,
@@ -3313,7 +3315,7 @@ var FormikTimePickerNative = function FormikTimePickerNative(_ref) {
3313
3315
  touched = _ref$form.touched,
3314
3316
  errors = _ref$form.errors,
3315
3317
  onChange = _ref.onChange,
3316
- props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
3318
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
3317
3319
  return React.createElement(TimePickerNative, _extends({}, props, {
3318
3320
  name: name,
3319
3321
  onBlur: onBlur,
@@ -3414,7 +3416,7 @@ var Toggle = function Toggle(_ref) {
3414
3416
  }, helpText)))), error && error !== true && React.createElement(InputValidationMessage, null, error));
3415
3417
  };
3416
3418
 
3417
- var _excluded$7 = ["field", "form"];
3419
+ var _excluded$8 = ["field", "form"];
3418
3420
  var FormikToggle = function FormikToggle(_ref) {
3419
3421
  var _ref$field = _ref.field,
3420
3422
  name = _ref$field.name,
@@ -3424,7 +3426,7 @@ var FormikToggle = function FormikToggle(_ref) {
3424
3426
  _ref$form = _ref.form,
3425
3427
  touched = _ref$form.touched,
3426
3428
  errors = _ref$form.errors,
3427
- props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
3429
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
3428
3430
  return React.createElement(Toggle, _extends({
3429
3431
  error: formik.getIn(touched, name) && formik.getIn(errors, name),
3430
3432
  isChecked: value,
@@ -3433,7 +3435,7 @@ var FormikToggle = function FormikToggle(_ref) {
3433
3435
  }, props));
3434
3436
  };
3435
3437
 
3436
- var _excluded$6 = ["children", "padding", "direction", "alignItems", "justifyContent", "gap", "style"];
3438
+ var _excluded$7 = ["children", "padding", "direction", "alignItems", "justifyContent", "gap", "style"];
3437
3439
  var ModalFooter = function ModalFooter(_ref) {
3438
3440
  var children = _ref.children,
3439
3441
  padding = _ref.padding,
@@ -3446,7 +3448,7 @@ var ModalFooter = function ModalFooter(_ref) {
3446
3448
  _ref$gap = _ref.gap,
3447
3449
  gap = _ref$gap === void 0 ? 'md' : _ref$gap,
3448
3450
  style = _ref.style,
3449
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$6);
3451
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$7);
3450
3452
  return React.createElement(Box, _extends({
3451
3453
  padding: padding,
3452
3454
  direction: direction,
@@ -3490,7 +3492,7 @@ var ModalHeader = function ModalHeader(_ref) {
3490
3492
  }));
3491
3493
  };
3492
3494
 
3493
- var _excluded$5 = ["children", "flex", "overflow", "height"];
3495
+ var _excluded$6 = ["children", "flex", "overflow", "height"];
3494
3496
  var ModalBody = function ModalBody(_ref) {
3495
3497
  var children = _ref.children,
3496
3498
  _ref$flex = _ref.flex,
@@ -3499,7 +3501,7 @@ var ModalBody = function ModalBody(_ref) {
3499
3501
  overflow = _ref$overflow === void 0 ? 'auto' : _ref$overflow,
3500
3502
  _ref$height = _ref.height,
3501
3503
  height = _ref$height === void 0 ? '100' : _ref$height,
3502
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$5);
3504
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$6);
3503
3505
  return React.createElement(Box, _extends({
3504
3506
  flex: flex,
3505
3507
  overflow: overflow,
@@ -3512,7 +3514,7 @@ var ModalBody = function ModalBody(_ref) {
3512
3514
 
3513
3515
  var styles$8 = {"modal-close":"Modal-module_modal-close__1YmMa","modal":"Modal-module_modal__yNG-7","modal-content":"Modal-module_modal-content__GMtBm"};
3514
3516
 
3515
- var _excluded$4 = ["ariaLabel", "ariaLabelledBy", "allowPinchZoom", "children", "className", "containerRef", "fullScreenMobile", "initialFocusRef", "isOpen", "maxWidth", "onDismiss", "overflow"];
3517
+ var _excluded$5 = ["ariaLabel", "ariaLabelledBy", "allowPinchZoom", "children", "className", "containerRef", "fullScreenMobile", "initialFocusRef", "isOpen", "maxWidth", "onDismiss", "overflow"];
3516
3518
  var ModalBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
3517
3519
  var _classNames;
3518
3520
  var ariaLabel = _ref.ariaLabel,
@@ -3532,7 +3534,7 @@ var ModalBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
3532
3534
  onDismiss = _ref.onDismiss,
3533
3535
  _ref$overflow = _ref.overflow,
3534
3536
  overflow = _ref$overflow === void 0 ? 'hidden' : _ref$overflow,
3535
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3537
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$5);
3536
3538
  var activateFocusLock = React.useCallback(function () {
3537
3539
  setTimeout(function () {
3538
3540
  if (initialFocusRef && initialFocusRef.current) {
@@ -3758,7 +3760,7 @@ var Pagination = function Pagination(_ref) {
3758
3760
 
3759
3761
  var styles$7 = {"slider":"RangeInput-module_slider__Z6D68","disabled":"RangeInput-module_disabled__gyu72"};
3760
3762
 
3761
- var _excluded$3 = ["value", "max", "id", "onChange", "className", "isDisabled"];
3763
+ var _excluded$4 = ["value", "max", "id", "onChange", "className", "isDisabled"];
3762
3764
  var RangeInput = function RangeInput(_ref) {
3763
3765
  var _classNames;
3764
3766
  var _ref$value = _ref.value,
@@ -3770,7 +3772,7 @@ var RangeInput = function RangeInput(_ref) {
3770
3772
  className = _ref.className,
3771
3773
  _ref$isDisabled = _ref.isDisabled,
3772
3774
  isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
3773
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3775
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3774
3776
  var currentProgress = value > 0 ? value / max * 100 : 0;
3775
3777
  return React.createElement("input", _extends({}, restProps, {
3776
3778
  id: id,
@@ -3873,7 +3875,7 @@ function useIsMobile() {
3873
3875
 
3874
3876
  var styles$6 = {"rail":"Sidebar-module_rail__nWu0Q"};
3875
3877
 
3876
- var _excluded$2 = ["defaultOpen", "open", "onOpenChange", "className", "style", "children"],
3878
+ var _excluded$3 = ["defaultOpen", "open", "onOpenChange", "className", "style", "children"],
3877
3879
  _excluded2 = ["side", "collapsible", "className", "children"],
3878
3880
  _excluded3 = ["className", "onClick"],
3879
3881
  _excluded4 = ["className"],
@@ -3911,7 +3913,7 @@ var SidebarProvider = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
3911
3913
  className = _ref.className,
3912
3914
  style = _ref.style,
3913
3915
  children = _ref.children,
3914
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3916
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3915
3917
  var isMobile = useIsMobile();
3916
3918
  var _useState = React.useState(function () {
3917
3919
  return isMobile ? false : openProp != null ? openProp : defaultOpen;
@@ -4662,7 +4664,7 @@ var Table = function Table(_ref) {
4662
4664
  }))));
4663
4665
  };
4664
4666
 
4665
- var _excluded$1 = ["children", "defaultTheme", "storageKey"];
4667
+ var _excluded$2 = ["children", "defaultTheme", "storageKey"];
4666
4668
  var initialState = {
4667
4669
  theme: 'system',
4668
4670
  setTheme: function setTheme() {
@@ -4676,7 +4678,7 @@ function ThemeProvider(_ref) {
4676
4678
  defaultTheme = _ref$defaultTheme === void 0 ? 'system' : _ref$defaultTheme,
4677
4679
  _ref$storageKey = _ref.storageKey,
4678
4680
  storageKey = _ref$storageKey === void 0 ? 'hyphen-ui-theme' : _ref$storageKey,
4679
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1);
4681
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2);
4680
4682
  var _useState = React.useState(function () {
4681
4683
  return localStorage.getItem(storageKey) || defaultTheme;
4682
4684
  }),
@@ -5152,7 +5154,7 @@ var useToasts = function useToasts(toastOptions) {
5152
5154
  };
5153
5155
  };
5154
5156
 
5155
- var _excluded = ["children", "containerStyle", "containerClassName", "gutter", "position", "reverseOrder", "toastOptions"];
5157
+ var _excluded$1 = ["children", "containerStyle", "containerClassName", "gutter", "position", "reverseOrder", "toastOptions"];
5156
5158
  var createRectRef = function createRectRef(onRect) {
5157
5159
  return function (el) {
5158
5160
  if (el) {
@@ -5213,7 +5215,7 @@ var ToastContainer = function ToastContainer(_ref) {
5213
5215
  _ref$reverseOrder = _ref.reverseOrder,
5214
5216
  reverseOrder = _ref$reverseOrder === void 0 ? false : _ref$reverseOrder,
5215
5217
  toastOptions = _ref.toastOptions,
5216
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded);
5218
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$1);
5217
5219
  var _useToasts = useToasts(toastOptions),
5218
5220
  toasts = _useToasts.toasts,
5219
5221
  handlers = _useToasts.handlers;
@@ -5251,6 +5253,24 @@ var ToastContainer = function ToastContainer(_ref) {
5251
5253
  }));
5252
5254
  };
5253
5255
 
5256
+ var _excluded = ["className", "sideOffset"];
5257
+ var TooltipProvider = TooltipPrimitive__namespace.Provider;
5258
+ var Tooltip = TooltipPrimitive__namespace.Root;
5259
+ var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
5260
+ var TooltipPortal = TooltipPrimitive__namespace.Portal;
5261
+ var TooltipContent = /*#__PURE__*/React__namespace.forwardRef(function (_ref, ref) {
5262
+ var className = _ref.className,
5263
+ _ref$sideOffset = _ref.sideOffset,
5264
+ sideOffset = _ref$sideOffset === void 0 ? 4 : _ref$sideOffset,
5265
+ props = _objectWithoutPropertiesLoose(_ref, _excluded);
5266
+ return React__namespace.createElement(TooltipPrimitive__namespace.Content, _extends({
5267
+ ref: ref,
5268
+ sideOffset: sideOffset,
5269
+ className: classNames('background-color-tooltip font-color-tooltip font-size-xs overflow-hidden br-sm p-h-sm p-v-xs shadow-sm ', className)
5270
+ }, props));
5271
+ });
5272
+ TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
5273
+
5254
5274
  var useWindowSize = function useWindowSize() {
5255
5275
  var _React$useContext = React.useContext(ResponsiveContext),
5256
5276
  innerWidth = _React$useContext.innerWidth,
@@ -5443,6 +5463,11 @@ exports.TimePicker = TimePicker;
5443
5463
  exports.TimePickerNative = TimePickerNative;
5444
5464
  exports.ToastContainer = ToastContainer;
5445
5465
  exports.Toggle = Toggle;
5466
+ exports.Tooltip = Tooltip;
5467
+ exports.TooltipContent = TooltipContent;
5468
+ exports.TooltipPortal = TooltipPortal;
5469
+ exports.TooltipProvider = TooltipProvider;
5470
+ exports.TooltipTrigger = TooltipTrigger;
5446
5471
  exports.boxPropsKeys = boxPropsKeys;
5447
5472
  exports.createRectRef = createRectRef;
5448
5473
  exports.toast = toast;