@hyphen/hyphen-components 4.6.0 → 4.7.1

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,8 +637,8 @@ 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"];
639
- var Badge = function Badge(_ref) {
640
+ var _excluded$K = ["className", "message", "variant", "size"];
641
+ var Badge = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
640
642
  var _classNames;
641
643
  var _ref$className = _ref.className,
642
644
  className = _ref$className === void 0 ? '' : _ref$className,
@@ -646,16 +648,17 @@ 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
  });
653
655
  var badgeClasses = classNames(styles$v.badge, className, responsiveClasses, (_classNames = {}, _classNames[styles$v[variant]] = variant, _classNames));
654
656
  return React.createElement(Box, _extends({
657
+ ref: ref,
655
658
  className: badgeClasses,
656
659
  display: "inline-block"
657
660
  }, restProps), message);
658
- };
661
+ });
659
662
 
660
663
  var styles$u = {"spinner":"Spinner-module_spinner__SZoUP","spin":"Spinner-module_spin__Yk0wm"};
661
664
 
@@ -752,7 +755,7 @@ var Spinner = function Spinner(_ref) {
752
755
 
753
756
  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
757
 
755
- var _excluded$I = ["asChild", "children", "className", "fullWidth", "iconPrefix", "iconSuffix", "isDisabled", "isLoading", "onClick", "onBlur", "onFocus", "shadow", "size", "type", "variant"];
758
+ var _excluded$J = ["asChild", "children", "className", "fullWidth", "iconPrefix", "iconSuffix", "isDisabled", "isLoading", "onClick", "onBlur", "onFocus", "shadow", "size", "type", "variant"];
756
759
  var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
757
760
  var _classNames;
758
761
  var asChild = _ref.asChild,
@@ -773,7 +776,7 @@ var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
773
776
  type = _ref$type === void 0 ? 'button' : _ref$type,
774
777
  _ref$variant = _ref.variant,
775
778
  variant = _ref$variant === void 0 ? 'primary' : _ref$variant,
776
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$I);
779
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$J);
777
780
  var disabled = isLoading || isDisabled;
778
781
  var responsiveClasses = generateResponsiveClasses('size', size).map(function (c) {
779
782
  return styles$t[c];
@@ -816,7 +819,7 @@ var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
816
819
  });
817
820
  Button.displayName = 'Button';
818
821
 
819
- var _excluded$H = ["background", "borderColor", "borderWidth", "children", "display", "padding"];
822
+ var _excluded$I = ["background", "borderColor", "borderWidth", "children", "display", "padding"];
820
823
  var CardFooter = function CardFooter(_ref) {
821
824
  var _ref$background = _ref.background,
822
825
  background = _ref$background === void 0 ? 'secondary' : _ref$background,
@@ -830,7 +833,7 @@ var CardFooter = function CardFooter(_ref) {
830
833
  display = _ref$display === void 0 ? 'block' : _ref$display,
831
834
  _ref$padding = _ref.padding,
832
835
  padding = _ref$padding === void 0 ? '2xl' : _ref$padding,
833
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$H);
836
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$I);
834
837
  return React.createElement(Box, _extends({
835
838
  display: display,
836
839
  padding: padding,
@@ -851,7 +854,7 @@ var HEADING_DEFAULT_SIZE_MAP = {
851
854
 
852
855
  var styles$s = {"heading":"Heading-module_heading__zKyv7"};
853
856
 
854
- var _excluded$G = ["as", "children", "className", "color", "size"];
857
+ var _excluded$H = ["as", "children", "className", "color", "size"];
855
858
  var Heading = function Heading(_ref) {
856
859
  var _classNames;
857
860
  var _ref$as = _ref.as,
@@ -860,7 +863,7 @@ var Heading = function Heading(_ref) {
860
863
  className = _ref.className,
861
864
  color = _ref.color,
862
865
  size = _ref.size,
863
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$G);
866
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$H);
864
867
  var element = getElementType(Heading, {
865
868
  as: as
866
869
  });
@@ -871,12 +874,12 @@ var Heading = function Heading(_ref) {
871
874
  }, restProps), children);
872
875
  };
873
876
 
874
- var _excluded$F = ["children", "title", "description"];
877
+ var _excluded$G = ["children", "title", "description"];
875
878
  var CardHeader = function CardHeader(_ref) {
876
879
  var children = _ref.children,
877
880
  title = _ref.title,
878
881
  description = _ref.description,
879
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$F);
882
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$G);
880
883
  return React.createElement(Box, _extends({
881
884
  padding: "2xl",
882
885
  direction: "row",
@@ -899,7 +902,7 @@ var CardHeader = function CardHeader(_ref) {
899
902
 
900
903
  var styles$r = {"card-section-border":"Card-module_card-section-border__OefDX"};
901
904
 
902
- var _excluded$E = ["background", "borderColor", "borderWidth", "children", "childGap", "gap", "className", "display", "padding", "subdued", "title"];
905
+ var _excluded$F = ["background", "borderColor", "borderWidth", "children", "childGap", "gap", "className", "display", "padding", "subdued", "title"];
903
906
  var CardSection = function CardSection(_ref) {
904
907
  var _classNames;
905
908
  var _ref$background = _ref.background,
@@ -924,7 +927,7 @@ var CardSection = function CardSection(_ref) {
924
927
  subdued = _ref$subdued === void 0 ? undefined : _ref$subdued,
925
928
  _ref$title = _ref.title,
926
929
  title = _ref$title === void 0 ? undefined : _ref$title,
927
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$E);
930
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$F);
928
931
  var renderTitle = typeof title === 'string' ? React.createElement(Box, {
929
932
  className: "m-bottom-md"
930
933
  }, React.createElement(Box, {
@@ -947,7 +950,7 @@ var CardSection = function CardSection(_ref) {
947
950
  }, children));
948
951
  };
949
952
 
950
- var _excluded$D = ["children", "subdued", "overflow", "display", "width"];
953
+ var _excluded$E = ["children", "subdued", "overflow", "display", "width"];
951
954
  var CardBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
952
955
  var children = _ref.children,
953
956
  subdued = _ref.subdued,
@@ -957,7 +960,7 @@ var CardBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
957
960
  display = _ref$display === void 0 ? 'block' : _ref$display,
958
961
  _ref$width = _ref.width,
959
962
  width = _ref$width === void 0 ? '100' : _ref$width,
960
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$D);
963
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$E);
961
964
  return React.createElement(Box, _extends({
962
965
  background: subdued ? 'secondary' : 'primary',
963
966
  borderWidth: "sm",
@@ -980,7 +983,7 @@ var Card = /*#__PURE__*/function () {
980
983
  return Card;
981
984
  }();
982
985
 
983
- var _excluded$C = ["className", "error", "isChecked", "isDisabled", "isIndeterminate"];
986
+ var _excluded$D = ["className", "error", "isChecked", "isDisabled", "isIndeterminate"];
984
987
  var CheckboxIcon = function CheckboxIcon(_ref) {
985
988
  var _ref$className = _ref.className,
986
989
  className = _ref$className === void 0 ? undefined : _ref$className,
@@ -992,7 +995,7 @@ var CheckboxIcon = function CheckboxIcon(_ref) {
992
995
  isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
993
996
  _ref$isIndeterminate = _ref.isIndeterminate,
994
997
  isIndeterminate = _ref$isIndeterminate === void 0 ? false : _ref$isIndeterminate,
995
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$C);
998
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$D);
996
999
  var color = 'base';
997
1000
  var name = 'checkbox-btn';
998
1001
  if (isChecked) name = 'checkbox-btn-checked';else name = 'checkbox-btn';
@@ -1017,7 +1020,7 @@ var CheckboxIcon = function CheckboxIcon(_ref) {
1017
1020
 
1018
1021
  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
1022
 
1020
- var _excluded$B = ["className", "display", "id", "isChecked", "label", "labelledby", "onChange", "error", "isDisabled", "isHidden", "isIndeterminate", "isRequired", "onBlur", "onFocus", "size", "value"];
1023
+ var _excluded$C = ["className", "display", "id", "isChecked", "label", "labelledby", "onChange", "error", "isDisabled", "isHidden", "isIndeterminate", "isRequired", "onBlur", "onFocus", "size", "value"];
1021
1024
  var Checkbox = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1022
1025
  var _ref2;
1023
1026
  var _ref$className = _ref.className,
@@ -1047,7 +1050,7 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1047
1050
  size = _ref$size === void 0 ? 'md' : _ref$size,
1048
1051
  _ref$value = _ref.value,
1049
1052
  value = _ref$value === void 0 ? undefined : _ref$value,
1050
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$B);
1053
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$C);
1051
1054
  var inputRef = React.useRef(null);
1052
1055
  React.useEffect(function () {
1053
1056
  if (inputRef != null && inputRef.current) {
@@ -1136,7 +1139,7 @@ var HelpText = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1136
1139
  }, children);
1137
1140
  });
1138
1141
 
1139
- var _excluded$A = ["children", "inputId", "className", "display", "helpText", "isDisabled", "isFieldRequired", "isRadioInputLabel", "requiredIndicator", "margin", "padding"];
1142
+ var _excluded$B = ["children", "inputId", "className", "display", "helpText", "isDisabled", "isFieldRequired", "isRadioInputLabel", "requiredIndicator", "margin", "padding"];
1140
1143
  var FormLabel = function FormLabel(_ref) {
1141
1144
  var _classNames;
1142
1145
  var children = _ref.children,
@@ -1158,7 +1161,7 @@ var FormLabel = function FormLabel(_ref) {
1158
1161
  margin = _ref$margin === void 0 ? '0' : _ref$margin,
1159
1162
  _ref$padding = _ref.padding,
1160
1163
  padding = _ref$padding === void 0 ? '0' : _ref$padding,
1161
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$A);
1164
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$B);
1162
1165
  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
1166
  return React.createElement(Box, _extends({
1164
1167
  as: "label",
@@ -1171,7 +1174,7 @@ var FormLabel = function FormLabel(_ref) {
1171
1174
  }, restProps), children, isFieldRequired && requiredIndicator && React.createElement("span", null, requiredIndicator), helpText && React.createElement(HelpText, null, helpText));
1172
1175
  };
1173
1176
 
1174
- var _excluded$z = ["id", "isChecked", "label", "onChange", "className", "error", "hideLabel", "helpText", "isDisabled", "isIndeterminate", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size"];
1177
+ var _excluded$A = ["id", "isChecked", "label", "onChange", "className", "error", "hideLabel", "helpText", "isDisabled", "isIndeterminate", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size"];
1175
1178
  var labelMarginSizeMap = {
1176
1179
  sm: '2xs 0 0 0',
1177
1180
  md: 'xs 0 0 0',
@@ -1216,7 +1219,7 @@ var CheckboxInput = function CheckboxInput(_ref2) {
1216
1219
  requiredIndicator = _ref2$requiredIndicat === void 0 ? ' *' : _ref2$requiredIndicat,
1217
1220
  _ref2$size = _ref2.size,
1218
1221
  size = _ref2$size === void 0 ? 'md' : _ref2$size,
1219
- restProps = _objectWithoutPropertiesLoose(_ref2, _excluded$z);
1222
+ restProps = _objectWithoutPropertiesLoose(_ref2, _excluded$A);
1220
1223
  var handleBlur = function handleBlur(event) {
1221
1224
  if (onBlur) onBlur(event);
1222
1225
  };
@@ -1264,7 +1267,7 @@ var CollapsibleContent = CollapsiblePrimitive__namespace.CollapsibleContent;
1264
1267
 
1265
1268
  var styles$m = {};
1266
1269
 
1267
- var _excluded$y = ["children", "dayClassName", "maxDate", "minDate", "monthsShown", "openToDate", "startDate", "selected", "selectsRange", "showTwoColumnMonthYearPicker", "showFullMonthYearPicker", "showMonthYearPicker", "className", "formatWeekDay"];
1270
+ var _excluded$z = ["children", "dayClassName", "maxDate", "minDate", "monthsShown", "openToDate", "startDate", "selected", "selectsRange", "showTwoColumnMonthYearPicker", "showFullMonthYearPicker", "showMonthYearPicker", "className", "formatWeekDay"];
1268
1271
  var DatePicker = function DatePicker(_ref) {
1269
1272
  var _ref$children = _ref.children,
1270
1273
  children = _ref$children === void 0 ? null : _ref$children,
@@ -1296,7 +1299,7 @@ var DatePicker = function DatePicker(_ref) {
1296
1299
  formatWeekDay = _ref$formatWeekDay === void 0 ? function (formattedDate) {
1297
1300
  return formattedDate[0];
1298
1301
  } : _ref$formatWeekDay,
1299
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$y);
1302
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$z);
1300
1303
  var datePickerClasses = classNames(styles$m['react-datepicker'], className);
1301
1304
  return React.createElement(ReactDatePicker, _extends({
1302
1305
  inline: true,
@@ -1316,7 +1319,7 @@ var DatePicker = function DatePicker(_ref) {
1316
1319
  }, restProps), children);
1317
1320
  };
1318
1321
 
1319
- var _excluded$x = ["label", "hideLabel", "children", "error", "id", "isRequired", "helpText", "isDisabled", "requiredIndicator", "width"];
1322
+ var _excluded$y = ["label", "hideLabel", "children", "error", "id", "isRequired", "helpText", "isDisabled", "requiredIndicator", "width"];
1320
1323
  var FormControl = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1321
1324
  var label = _ref.label,
1322
1325
  hideLabel = _ref.hideLabel,
@@ -1329,7 +1332,7 @@ var FormControl = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1329
1332
  requiredIndicator = _ref.requiredIndicator,
1330
1333
  _ref$width = _ref.width,
1331
1334
  width = _ref$width === void 0 ? '100' : _ref$width,
1332
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$x);
1335
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$y);
1333
1336
  var labelProps = {
1334
1337
  inputId: id,
1335
1338
  helpText: helpText,
@@ -1357,7 +1360,7 @@ function getAutoCompleteValue(value) {
1357
1360
 
1358
1361
  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
1362
 
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"];
1363
+ 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
1364
  var TextInput = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1362
1365
  var _ref2;
1363
1366
  var id = _ref.id,
@@ -1401,7 +1404,7 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1401
1404
  size = _ref$size === void 0 ? 'md' : _ref$size,
1402
1405
  _ref$type = _ref.type,
1403
1406
  type = _ref$type === void 0 ? 'text' : _ref$type,
1404
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$w);
1407
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$x);
1405
1408
  var responsiveClasses = generateResponsiveClasses('size', size);
1406
1409
  var inputWrapperClasses = classNames.apply(void 0, ['hyphen-components__variables__form-control', styles$l['text-input-wrapper']].concat(responsiveClasses.map(function (c) {
1407
1410
  return styles$l[c];
@@ -1553,7 +1556,7 @@ var BREAKPOINTS = /*#__PURE__*/[].concat(Object.entries(designTokens.size.breakp
1553
1556
  var Z_INDEX_VALUES = designTokens.size['z-index'];
1554
1557
  // export const BOX_SHADOW_VALUES = designTokens.size['box-shadow'];
1555
1558
 
1556
- var _excluded$v = ["className", "isOpen", "children", "content", "arrowColor", "contentContainerProps", "hasArrow", "offsetFromTarget", "onClickOutside", "placement", "withPortal", "portalTarget", "trapFocus"];
1559
+ var _excluded$w = ["className", "isOpen", "children", "content", "arrowColor", "contentContainerProps", "hasArrow", "offsetFromTarget", "onClickOutside", "placement", "withPortal", "portalTarget", "trapFocus"];
1557
1560
  var contentContainerDefaults = {
1558
1561
  background: 'primary',
1559
1562
  padding: 'sm',
@@ -1582,7 +1585,7 @@ var Popover = function Popover(_ref) {
1582
1585
  portalTarget = _ref.portalTarget,
1583
1586
  _ref$trapFocus = _ref.trapFocus,
1584
1587
  trapFocus = _ref$trapFocus === void 0 ? false : _ref$trapFocus,
1585
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$v);
1588
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$w);
1586
1589
  var triggerRef = React.useRef(null);
1587
1590
  var popperRef = React.useRef(null);
1588
1591
  var _useState = React.useState(null),
@@ -1688,7 +1691,7 @@ var Popover = function Popover(_ref) {
1688
1691
  withPortal && portalTarget ? reactDom.createPortal(renderPopperContent(), portalTarget) : renderPopperContent()));
1689
1692
  };
1690
1693
 
1691
- var _excluded$u = ["datePickerProps", "textInputProps", "dateFormat", "dateOptions", "popoverProps"];
1694
+ var _excluded$v = ["datePickerProps", "textInputProps", "dateFormat", "dateOptions", "popoverProps"];
1692
1695
  var defaultDatePickerProps = {
1693
1696
  selected: null,
1694
1697
  selectsRange: false
@@ -1708,7 +1711,7 @@ var DateInput = function DateInput(_ref) {
1708
1711
  dateOptions = _ref$dateOptions === void 0 ? undefined : _ref$dateOptions,
1709
1712
  _ref$popoverProps = _ref.popoverProps,
1710
1713
  popoverProps = _ref$popoverProps === void 0 ? _extends({}, defaultPopoverProps) : _ref$popoverProps,
1711
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$u);
1714
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$v);
1712
1715
  var mergedDatePickerProps = _extends({}, defaultDatePickerProps, datePickerProps);
1713
1716
  var mergedPopoverProps = _extends({}, defaultPopoverProps, popoverProps);
1714
1717
  var mergedTextInputProps = _extends({}, defaultTextInputProps, textInputProps);
@@ -1785,14 +1788,14 @@ var DateInput = function DateInput(_ref) {
1785
1788
  var ENTER = 13;
1786
1789
  var SPACE = 32;
1787
1790
 
1788
- var _excluded$t = ["children", "display", "isDetailsOpen", "onToggle"];
1791
+ var _excluded$u = ["children", "display", "isDetailsOpen", "onToggle"];
1789
1792
  var DetailsSummary = function DetailsSummary(_ref) {
1790
1793
  var children = _ref.children,
1791
1794
  _ref$display = _ref.display,
1792
1795
  display = _ref$display === void 0 ? 'block' : _ref$display,
1793
1796
  isDetailsOpen = _ref.isDetailsOpen,
1794
1797
  onToggle = _ref.onToggle,
1795
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$t);
1798
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$u);
1796
1799
  var handleClick = function handleClick(event) {
1797
1800
  // Needed to avoid default `details` behavior on a click event and keep this as controlled component.
1798
1801
  event.preventDefault();
@@ -1830,14 +1833,14 @@ var DetailsSummary = function DetailsSummary(_ref) {
1830
1833
 
1831
1834
  var styles$j = {"details-reset":"Details-module_details-reset__HWtSD"};
1832
1835
 
1833
- var _excluded$s = ["children", "className", "display", "isOpen"];
1836
+ var _excluded$t = ["children", "className", "display", "isOpen"];
1834
1837
  var DetailsBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1835
1838
  var children = _ref.children,
1836
1839
  className = _ref.className,
1837
1840
  _ref$display = _ref.display,
1838
1841
  display = _ref$display === void 0 ? 'block' : _ref$display,
1839
1842
  isOpen = _ref.isOpen,
1840
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$s);
1843
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$t);
1841
1844
  var detailsClasses = classNames(className, styles$j['details-reset'], styles$j.details);
1842
1845
  return React.createElement(Box, _extends({
1843
1846
  as: "details",
@@ -1857,7 +1860,7 @@ var Details = /*#__PURE__*/function () {
1857
1860
 
1858
1861
  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
1862
 
1860
- var _excluded$r = ["defaultIsOpen", "open", "onOpenChange", "className", "children"],
1863
+ var _excluded$s = ["defaultIsOpen", "open", "onOpenChange", "className", "children"],
1861
1864
  _excluded2$2 = ["asChild", "onClick"],
1862
1865
  _excluded3$2 = ["className"],
1863
1866
  _excluded4$2 = ["className", "onClick", "onClose"],
@@ -1877,7 +1880,7 @@ var DrawerProvider = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
1877
1880
  setOpenProp = _ref.onOpenChange,
1878
1881
  className = _ref.className,
1879
1882
  children = _ref.children,
1880
- props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
1883
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
1881
1884
  var _useState = React.useState(openProp != null ? openProp : defaultIsOpen),
1882
1885
  _open = _useState[0],
1883
1886
  _setOpen = _useState[1];
@@ -2101,7 +2104,7 @@ var DrawerContent = /*#__PURE__*/React.forwardRef(function (_ref7, ref) {
2101
2104
  }, props));
2102
2105
  });
2103
2106
 
2104
- var _excluded$q = ["className", "inset"],
2107
+ var _excluded$r = ["className", "inset"],
2105
2108
  _excluded2$1 = ["className", "sideOffset"],
2106
2109
  _excluded3$1 = ["className", "inset"],
2107
2110
  _excluded4$1 = ["className"],
@@ -2117,7 +2120,7 @@ var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
2117
2120
  var DropdownMenuItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2118
2121
  var className = _ref.className,
2119
2122
  inset = _ref.inset,
2120
- props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
2123
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
2121
2124
  return React.createElement(DropdownMenuPrimitive__namespace.Item, _extends({
2122
2125
  ref: ref,
2123
2126
  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 +2200,7 @@ var DropdownMenuSubContent = /*#__PURE__*/React.forwardRef(function (_ref7, ref)
2197
2200
  });
2198
2201
  DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
2199
2202
 
2200
- var _excluded$p = ["field", "form", "onChange", "id", "label"];
2203
+ var _excluded$q = ["field", "form", "onChange", "id", "label"];
2201
2204
  var FormikCheckboxInput = function FormikCheckboxInput(_ref) {
2202
2205
  var _ref$field = _ref.field,
2203
2206
  name = _ref$field.name,
@@ -2210,7 +2213,7 @@ var FormikCheckboxInput = function FormikCheckboxInput(_ref) {
2210
2213
  onChange = _ref.onChange,
2211
2214
  id = _ref.id,
2212
2215
  label = _ref.label,
2213
- props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
2216
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
2214
2217
  return React.createElement(CheckboxInput, _extends({}, props, {
2215
2218
  id: id,
2216
2219
  label: label,
@@ -2221,7 +2224,7 @@ var FormikCheckboxInput = function FormikCheckboxInput(_ref) {
2221
2224
  }));
2222
2225
  };
2223
2226
 
2224
- var _excluded$o = ["className", "isSelected", "isDisabled", "error"];
2227
+ var _excluded$p = ["className", "isSelected", "isDisabled", "error"];
2225
2228
  var RadioInputIcon = function RadioInputIcon(_ref) {
2226
2229
  var _ref$className = _ref.className,
2227
2230
  className = _ref$className === void 0 ? undefined : _ref$className,
@@ -2231,7 +2234,7 @@ var RadioInputIcon = function RadioInputIcon(_ref) {
2231
2234
  isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
2232
2235
  _ref$error = _ref.error,
2233
2236
  error = _ref$error === void 0 ? null : _ref$error,
2234
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
2237
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$p);
2235
2238
  var color = 'secondary';
2236
2239
  var name = 'radio-btn-unchecked';
2237
2240
  if (isSelected && isDisabled) {
@@ -2324,7 +2327,7 @@ var RadioInput = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2324
2327
 
2325
2328
  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
2329
 
2327
- var _excluded$n = ["name", "onChange", "options", "className", "description", "direction", "error", "isDisabled", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size", "title", "value"];
2330
+ var _excluded$o = ["name", "onChange", "options", "className", "description", "direction", "error", "isDisabled", "isRequired", "onBlur", "onFocus", "requiredIndicator", "size", "title", "value"];
2328
2331
  var RadioGroup = function RadioGroup(_ref) {
2329
2332
  var _classNames;
2330
2333
  var name = _ref.name,
@@ -2354,7 +2357,7 @@ var RadioGroup = function RadioGroup(_ref) {
2354
2357
  title = _ref$title === void 0 ? undefined : _ref$title,
2355
2358
  _ref$value = _ref.value,
2356
2359
  value = _ref$value === void 0 ? undefined : _ref$value,
2357
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$n);
2360
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
2358
2361
  var groupClasses = classNames('hyphen-components__variables__form-control', className, (_classNames = {}, _classNames[styles$g.loading] = error, _classNames));
2359
2362
  return React.createElement("div", _extends({
2360
2363
  className: classNames(styles$g['radio-group'], groupClasses)
@@ -2384,7 +2387,7 @@ var RadioGroup = function RadioGroup(_ref) {
2384
2387
  }))), error && typeof error !== 'boolean' && React.createElement(InputValidationMessage, null, error));
2385
2388
  };
2386
2389
 
2387
- var _excluded$m = ["field", "form", "onChange", "options"];
2390
+ var _excluded$n = ["field", "form", "onChange", "options"];
2388
2391
  var FormikRadioGroup = function FormikRadioGroup(_ref) {
2389
2392
  var _ref$field = _ref.field,
2390
2393
  name = _ref$field.name,
@@ -2396,7 +2399,7 @@ var FormikRadioGroup = function FormikRadioGroup(_ref) {
2396
2399
  errors = _ref$form.errors,
2397
2400
  onChange = _ref.onChange,
2398
2401
  options = _ref.options,
2399
- props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
2402
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
2400
2403
  return React.createElement(RadioGroup, _extends({}, props, {
2401
2404
  options: options,
2402
2405
  name: name,
@@ -2409,7 +2412,7 @@ var FormikRadioGroup = function FormikRadioGroup(_ref) {
2409
2412
 
2410
2413
  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
2414
 
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"];
2415
+ 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
2416
  function SelectInput(props) {
2414
2417
  var _ref, _classNames;
2415
2418
  var id = props.id,
@@ -2452,7 +2455,7 @@ function SelectInput(props) {
2452
2455
  requiredIndicator = _props$requiredIndica === void 0 ? ' *' : _props$requiredIndica,
2453
2456
  _props$size = props.size,
2454
2457
  size = _props$size === void 0 ? 'md' : _props$size,
2455
- restProps = _objectWithoutPropertiesLoose(props, _excluded$l);
2458
+ restProps = _objectWithoutPropertiesLoose(props, _excluded$m);
2456
2459
  var handleChange = function handleChange(values) {
2457
2460
  var simulatedEventPayloadType = {
2458
2461
  target: {
@@ -2525,7 +2528,7 @@ function SelectInput(props) {
2525
2528
  })), error && typeof error !== 'boolean' && React.createElement(InputValidationMessage, null, error));
2526
2529
  }
2527
2530
 
2528
- var _excluded$k = ["field", "form", "onChange", "id", "label", "options", "error"];
2531
+ var _excluded$l = ["field", "form", "onChange", "id", "label", "options", "error"];
2529
2532
  var FormikSelectInput = function FormikSelectInput(_ref) {
2530
2533
  var _ref$field = _ref.field,
2531
2534
  name = _ref$field.name,
@@ -2540,7 +2543,7 @@ var FormikSelectInput = function FormikSelectInput(_ref) {
2540
2543
  label = _ref.label,
2541
2544
  options = _ref.options,
2542
2545
  errorProp = _ref.error,
2543
- props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2546
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
2544
2547
  var errorMessage;
2545
2548
  var error = errorProp != null ? errorProp : formik.getIn(touched, name) && formik.getIn(errors, name);
2546
2549
  if (typeof error === 'string') {
@@ -2668,7 +2671,7 @@ var SelectInputInset = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2668
2671
  }, label, isRequired && requiredIndicator && React.createElement("span", null, requiredIndicator))), helpText && React.createElement(HelpText, null, helpText), error && error !== true && React.createElement(InputValidationMessage, null, error));
2669
2672
  });
2670
2673
 
2671
- var _excluded$j = ["field", "form", "onChange", "id", "label", "options"];
2674
+ var _excluded$k = ["field", "form", "onChange", "id", "label", "options"];
2672
2675
  var FormikSelectInputInset = function FormikSelectInputInset(_ref) {
2673
2676
  var _ref$field = _ref.field,
2674
2677
  name = _ref$field.name,
@@ -2682,7 +2685,7 @@ var FormikSelectInputInset = function FormikSelectInputInset(_ref) {
2682
2685
  id = _ref.id,
2683
2686
  label = _ref.label,
2684
2687
  options = _ref.options,
2685
- props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2688
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2686
2689
  return React.createElement(SelectInputInset, _extends({}, props, {
2687
2690
  id: id,
2688
2691
  label: label,
@@ -2780,7 +2783,7 @@ var TextareaInputInset = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2780
2783
  }, label, isRequired && requiredIndicator && React.createElement("span", null, requiredIndicator))), helpText && React.createElement(HelpText, null, helpText), error && error !== true && React.createElement(InputValidationMessage, null, error));
2781
2784
  });
2782
2785
 
2783
- var _excluded$i = ["field", "form", "onChange", "id", "label"];
2786
+ var _excluded$j = ["field", "form", "onChange", "id", "label"];
2784
2787
  var FormikTextareaInputInset = function FormikTextareaInputInset(_ref) {
2785
2788
  var _ref$field = _ref.field,
2786
2789
  name = _ref$field.name,
@@ -2793,7 +2796,7 @@ var FormikTextareaInputInset = function FormikTextareaInputInset(_ref) {
2793
2796
  onChange = _ref.onChange,
2794
2797
  id = _ref.id,
2795
2798
  label = _ref.label,
2796
- props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
2799
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2797
2800
  return React.createElement(TextareaInputInset, _extends({}, props, {
2798
2801
  id: id,
2799
2802
  label: label,
@@ -2920,7 +2923,7 @@ var TextInputInset = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
2920
2923
  }, suffix)), helpText && React.createElement(HelpText, null, helpText), error && error !== true && React.createElement(InputValidationMessage, null, error));
2921
2924
  });
2922
2925
 
2923
- var _excluded$h = ["field", "form", "onChange", "id", "label"];
2926
+ var _excluded$i = ["field", "form", "onChange", "id", "label"];
2924
2927
  var FormikTextInputInset = function FormikTextInputInset(_ref) {
2925
2928
  var _ref$field = _ref.field,
2926
2929
  name = _ref$field.name,
@@ -2933,7 +2936,7 @@ var FormikTextInputInset = function FormikTextInputInset(_ref) {
2933
2936
  onChange = _ref.onChange,
2934
2937
  id = _ref.id,
2935
2938
  label = _ref.label,
2936
- props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
2939
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
2937
2940
  return React.createElement(TextInputInset, _extends({}, props, {
2938
2941
  id: id,
2939
2942
  label: label,
@@ -2947,7 +2950,7 @@ var FormikTextInputInset = function FormikTextInputInset(_ref) {
2947
2950
 
2948
2951
  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
2952
 
2950
- var _excluded$g = ["autoFocus", "label", "hideLabel", "helpText", "error", "id", "isDisabled", "isRequired", "name", "value", "options", "onChange", "placeholder", "requiredIndicator", "size"];
2953
+ var _excluded$h = ["autoFocus", "label", "hideLabel", "helpText", "error", "id", "isDisabled", "isRequired", "name", "value", "options", "onChange", "placeholder", "requiredIndicator", "size"];
2951
2954
  var SelectInputNative = function SelectInputNative(_ref) {
2952
2955
  var _ref2;
2953
2956
  var _ref$autoFocus = _ref.autoFocus,
@@ -2969,7 +2972,7 @@ var SelectInputNative = function SelectInputNative(_ref) {
2969
2972
  requiredIndicator = _ref$requiredIndicato === void 0 ? ' *' : _ref$requiredIndicato,
2970
2973
  _ref$size = _ref.size,
2971
2974
  size = _ref$size === void 0 ? 'md' : _ref$size,
2972
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
2975
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
2973
2976
  var placeholderOption = {
2974
2977
  value: '',
2975
2978
  label: placeholder
@@ -3015,7 +3018,7 @@ var SelectInputNative = function SelectInputNative(_ref) {
3015
3018
  }))));
3016
3019
  };
3017
3020
 
3018
- var _excluded$f = ["field", "form", "onChange", "options", "id", "label"];
3021
+ var _excluded$g = ["field", "form", "onChange", "options", "id", "label"];
3019
3022
  var FormikSelectInputNative = function FormikSelectInputNative(_ref) {
3020
3023
  var _ref$field = _ref.field,
3021
3024
  name = _ref$field.name,
@@ -3029,7 +3032,7 @@ var FormikSelectInputNative = function FormikSelectInputNative(_ref) {
3029
3032
  options = _ref.options,
3030
3033
  id = _ref.id,
3031
3034
  label = _ref.label,
3032
- props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
3035
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
3033
3036
  return React.createElement(SelectInputNative, _extends({}, props, {
3034
3037
  options: options,
3035
3038
  id: id,
@@ -3042,7 +3045,7 @@ var FormikSelectInputNative = function FormikSelectInputNative(_ref) {
3042
3045
  }));
3043
3046
  };
3044
3047
 
3045
- var _excluded$e = ["field", "form", "onChange", "id", "label"];
3048
+ var _excluded$f = ["field", "form", "onChange", "id", "label"];
3046
3049
  var FormikTextInput = function FormikTextInput(_ref) {
3047
3050
  var _ref$field = _ref.field,
3048
3051
  name = _ref$field.name,
@@ -3055,7 +3058,7 @@ var FormikTextInput = function FormikTextInput(_ref) {
3055
3058
  onChange = _ref.onChange,
3056
3059
  id = _ref.id,
3057
3060
  label = _ref.label,
3058
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
3061
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
3059
3062
  return React.createElement(TextInput, _extends({}, props, {
3060
3063
  id: id,
3061
3064
  label: label,
@@ -3069,7 +3072,7 @@ var FormikTextInput = function FormikTextInput(_ref) {
3069
3072
 
3070
3073
  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
3074
 
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"];
3075
+ 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
3076
  var TextareaInput = function TextareaInput(_ref) {
3074
3077
  var _ref2;
3075
3078
  var id = _ref.id,
@@ -3109,7 +3112,7 @@ var TextareaInput = function TextareaInput(_ref) {
3109
3112
  rows = _ref$rows === void 0 ? 3 : _ref$rows,
3110
3113
  _ref$size = _ref.size,
3111
3114
  size = _ref$size === void 0 ? 'md' : _ref$size,
3112
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$d);
3115
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$e);
3113
3116
  var responsiveClasses = generateResponsiveClasses('size', size);
3114
3117
  var inputWrapperClasses = classNames.apply(void 0, ['hyphen-components__variables__form-control', styles$a['textarea-input-wrapper']].concat(responsiveClasses.map(function (c) {
3115
3118
  return styles$a[c];
@@ -3153,7 +3156,7 @@ var TextareaInput = function TextareaInput(_ref) {
3153
3156
  }, inputProps))), error && error !== true && React.createElement(InputValidationMessage, null, error));
3154
3157
  };
3155
3158
 
3156
- var _excluded$c = ["field", "form", "onChange", "id", "label"];
3159
+ var _excluded$d = ["field", "form", "onChange", "id", "label"];
3157
3160
  var FormikTextareaInput = function FormikTextareaInput(_ref) {
3158
3161
  var _ref$field = _ref.field,
3159
3162
  name = _ref$field.name,
@@ -3166,7 +3169,7 @@ var FormikTextareaInput = function FormikTextareaInput(_ref) {
3166
3169
  onChange = _ref.onChange,
3167
3170
  id = _ref.id,
3168
3171
  label = _ref.label,
3169
- props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
3172
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
3170
3173
  return React.createElement(TextareaInput, _extends({}, props, {
3171
3174
  id: id,
3172
3175
  label: label,
@@ -3178,7 +3181,7 @@ var FormikTextareaInput = function FormikTextareaInput(_ref) {
3178
3181
  }));
3179
3182
  };
3180
3183
 
3181
- var _excluded$b = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3184
+ var _excluded$c = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3182
3185
  var TimePicker = function TimePicker(_ref) {
3183
3186
  var id = _ref.id,
3184
3187
  name = _ref.name,
@@ -3200,7 +3203,7 @@ var TimePicker = function TimePicker(_ref) {
3200
3203
  placeholder = _ref$placeholder === void 0 ? 'HH:MM' : _ref$placeholder,
3201
3204
  _ref$startTime = _ref.startTime,
3202
3205
  startTime = _ref$startTime === void 0 ? undefined : _ref$startTime,
3203
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$b);
3206
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$c);
3204
3207
  var generateTimes = function generateTimes() {
3205
3208
  var first = new Date();
3206
3209
  first.setHours((startTime == null ? void 0 : startTime.hour) || 0, (startTime == null ? void 0 : startTime.minute) || 0, 0, 0);
@@ -3228,7 +3231,7 @@ var TimePicker = function TimePicker(_ref) {
3228
3231
  }));
3229
3232
  };
3230
3233
 
3231
- var _excluded$a = ["field", "form", "options", "onChange"];
3234
+ var _excluded$b = ["field", "form", "options", "onChange"];
3232
3235
  var FormikTimePicker = function FormikTimePicker(_ref) {
3233
3236
  var _ref$field = _ref.field,
3234
3237
  name = _ref$field.name,
@@ -3240,7 +3243,7 @@ var FormikTimePicker = function FormikTimePicker(_ref) {
3240
3243
  errors = _ref$form.errors,
3241
3244
  options = _ref.options,
3242
3245
  onChange = _ref.onChange,
3243
- props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
3246
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
3244
3247
  return React.createElement(TimePicker, _extends({}, props, {
3245
3248
  name: name,
3246
3249
  onBlur: onBlur,
@@ -3251,7 +3254,7 @@ var FormikTimePicker = function FormikTimePicker(_ref) {
3251
3254
  }));
3252
3255
  };
3253
3256
 
3254
- var _excluded$9 = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3257
+ var _excluded$a = ["id", "name", "label", "onChange", "value", "dateDisplayOptions", "endTime", "interval", "locales", "placeholder", "startTime"];
3255
3258
  var TimePickerNative = function TimePickerNative(_ref) {
3256
3259
  var id = _ref.id,
3257
3260
  name = _ref.name,
@@ -3273,7 +3276,7 @@ var TimePickerNative = function TimePickerNative(_ref) {
3273
3276
  placeholder = _ref$placeholder === void 0 ? 'HH:MM' : _ref$placeholder,
3274
3277
  _ref$startTime = _ref.startTime,
3275
3278
  startTime = _ref$startTime === void 0 ? undefined : _ref$startTime,
3276
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$9);
3279
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$a);
3277
3280
  var generateTimes = function generateTimes() {
3278
3281
  var first = new Date();
3279
3282
  first.setHours((startTime == null ? void 0 : startTime.hour) || 0, (startTime == null ? void 0 : startTime.minute) || 0, 0, 0);
@@ -3302,7 +3305,7 @@ var TimePickerNative = function TimePickerNative(_ref) {
3302
3305
  }));
3303
3306
  };
3304
3307
 
3305
- var _excluded$8 = ["field", "form", "onChange"];
3308
+ var _excluded$9 = ["field", "form", "onChange"];
3306
3309
  var FormikTimePickerNative = function FormikTimePickerNative(_ref) {
3307
3310
  var _ref$field = _ref.field,
3308
3311
  name = _ref$field.name,
@@ -3313,7 +3316,7 @@ var FormikTimePickerNative = function FormikTimePickerNative(_ref) {
3313
3316
  touched = _ref$form.touched,
3314
3317
  errors = _ref$form.errors,
3315
3318
  onChange = _ref.onChange,
3316
- props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
3319
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
3317
3320
  return React.createElement(TimePickerNative, _extends({}, props, {
3318
3321
  name: name,
3319
3322
  onBlur: onBlur,
@@ -3414,7 +3417,7 @@ var Toggle = function Toggle(_ref) {
3414
3417
  }, helpText)))), error && error !== true && React.createElement(InputValidationMessage, null, error));
3415
3418
  };
3416
3419
 
3417
- var _excluded$7 = ["field", "form"];
3420
+ var _excluded$8 = ["field", "form"];
3418
3421
  var FormikToggle = function FormikToggle(_ref) {
3419
3422
  var _ref$field = _ref.field,
3420
3423
  name = _ref$field.name,
@@ -3424,7 +3427,7 @@ var FormikToggle = function FormikToggle(_ref) {
3424
3427
  _ref$form = _ref.form,
3425
3428
  touched = _ref$form.touched,
3426
3429
  errors = _ref$form.errors,
3427
- props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
3430
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
3428
3431
  return React.createElement(Toggle, _extends({
3429
3432
  error: formik.getIn(touched, name) && formik.getIn(errors, name),
3430
3433
  isChecked: value,
@@ -3433,7 +3436,7 @@ var FormikToggle = function FormikToggle(_ref) {
3433
3436
  }, props));
3434
3437
  };
3435
3438
 
3436
- var _excluded$6 = ["children", "padding", "direction", "alignItems", "justifyContent", "gap", "style"];
3439
+ var _excluded$7 = ["children", "padding", "direction", "alignItems", "justifyContent", "gap", "style"];
3437
3440
  var ModalFooter = function ModalFooter(_ref) {
3438
3441
  var children = _ref.children,
3439
3442
  padding = _ref.padding,
@@ -3446,7 +3449,7 @@ var ModalFooter = function ModalFooter(_ref) {
3446
3449
  _ref$gap = _ref.gap,
3447
3450
  gap = _ref$gap === void 0 ? 'md' : _ref$gap,
3448
3451
  style = _ref.style,
3449
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$6);
3452
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$7);
3450
3453
  return React.createElement(Box, _extends({
3451
3454
  padding: padding,
3452
3455
  direction: direction,
@@ -3490,7 +3493,7 @@ var ModalHeader = function ModalHeader(_ref) {
3490
3493
  }));
3491
3494
  };
3492
3495
 
3493
- var _excluded$5 = ["children", "flex", "overflow", "height"];
3496
+ var _excluded$6 = ["children", "flex", "overflow", "height"];
3494
3497
  var ModalBody = function ModalBody(_ref) {
3495
3498
  var children = _ref.children,
3496
3499
  _ref$flex = _ref.flex,
@@ -3499,7 +3502,7 @@ var ModalBody = function ModalBody(_ref) {
3499
3502
  overflow = _ref$overflow === void 0 ? 'auto' : _ref$overflow,
3500
3503
  _ref$height = _ref.height,
3501
3504
  height = _ref$height === void 0 ? '100' : _ref$height,
3502
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$5);
3505
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$6);
3503
3506
  return React.createElement(Box, _extends({
3504
3507
  flex: flex,
3505
3508
  overflow: overflow,
@@ -3512,7 +3515,7 @@ var ModalBody = function ModalBody(_ref) {
3512
3515
 
3513
3516
  var styles$8 = {"modal-close":"Modal-module_modal-close__1YmMa","modal":"Modal-module_modal__yNG-7","modal-content":"Modal-module_modal-content__GMtBm"};
3514
3517
 
3515
- var _excluded$4 = ["ariaLabel", "ariaLabelledBy", "allowPinchZoom", "children", "className", "containerRef", "fullScreenMobile", "initialFocusRef", "isOpen", "maxWidth", "onDismiss", "overflow"];
3518
+ var _excluded$5 = ["ariaLabel", "ariaLabelledBy", "allowPinchZoom", "children", "className", "containerRef", "fullScreenMobile", "initialFocusRef", "isOpen", "maxWidth", "onDismiss", "overflow"];
3516
3519
  var ModalBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
3517
3520
  var _classNames;
3518
3521
  var ariaLabel = _ref.ariaLabel,
@@ -3532,7 +3535,7 @@ var ModalBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
3532
3535
  onDismiss = _ref.onDismiss,
3533
3536
  _ref$overflow = _ref.overflow,
3534
3537
  overflow = _ref$overflow === void 0 ? 'hidden' : _ref$overflow,
3535
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3538
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$5);
3536
3539
  var activateFocusLock = React.useCallback(function () {
3537
3540
  setTimeout(function () {
3538
3541
  if (initialFocusRef && initialFocusRef.current) {
@@ -3758,7 +3761,7 @@ var Pagination = function Pagination(_ref) {
3758
3761
 
3759
3762
  var styles$7 = {"slider":"RangeInput-module_slider__Z6D68","disabled":"RangeInput-module_disabled__gyu72"};
3760
3763
 
3761
- var _excluded$3 = ["value", "max", "id", "onChange", "className", "isDisabled"];
3764
+ var _excluded$4 = ["value", "max", "id", "onChange", "className", "isDisabled"];
3762
3765
  var RangeInput = function RangeInput(_ref) {
3763
3766
  var _classNames;
3764
3767
  var _ref$value = _ref.value,
@@ -3770,7 +3773,7 @@ var RangeInput = function RangeInput(_ref) {
3770
3773
  className = _ref.className,
3771
3774
  _ref$isDisabled = _ref.isDisabled,
3772
3775
  isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
3773
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3776
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3774
3777
  var currentProgress = value > 0 ? value / max * 100 : 0;
3775
3778
  return React.createElement("input", _extends({}, restProps, {
3776
3779
  id: id,
@@ -3873,7 +3876,7 @@ function useIsMobile() {
3873
3876
 
3874
3877
  var styles$6 = {"rail":"Sidebar-module_rail__nWu0Q"};
3875
3878
 
3876
- var _excluded$2 = ["defaultOpen", "open", "onOpenChange", "className", "style", "children"],
3879
+ var _excluded$3 = ["defaultOpen", "open", "onOpenChange", "className", "style", "children"],
3877
3880
  _excluded2 = ["side", "collapsible", "className", "children"],
3878
3881
  _excluded3 = ["className", "onClick"],
3879
3882
  _excluded4 = ["className"],
@@ -3911,7 +3914,7 @@ var SidebarProvider = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
3911
3914
  className = _ref.className,
3912
3915
  style = _ref.style,
3913
3916
  children = _ref.children,
3914
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3917
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3915
3918
  var isMobile = useIsMobile();
3916
3919
  var _useState = React.useState(function () {
3917
3920
  return isMobile ? false : openProp != null ? openProp : defaultOpen;
@@ -4662,7 +4665,7 @@ var Table = function Table(_ref) {
4662
4665
  }))));
4663
4666
  };
4664
4667
 
4665
- var _excluded$1 = ["children", "defaultTheme", "storageKey"];
4668
+ var _excluded$2 = ["children", "defaultTheme", "storageKey"];
4666
4669
  var initialState = {
4667
4670
  theme: 'system',
4668
4671
  setTheme: function setTheme() {
@@ -4676,7 +4679,7 @@ function ThemeProvider(_ref) {
4676
4679
  defaultTheme = _ref$defaultTheme === void 0 ? 'system' : _ref$defaultTheme,
4677
4680
  _ref$storageKey = _ref.storageKey,
4678
4681
  storageKey = _ref$storageKey === void 0 ? 'hyphen-ui-theme' : _ref$storageKey,
4679
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1);
4682
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2);
4680
4683
  var _useState = React.useState(function () {
4681
4684
  return localStorage.getItem(storageKey) || defaultTheme;
4682
4685
  }),
@@ -5152,7 +5155,7 @@ var useToasts = function useToasts(toastOptions) {
5152
5155
  };
5153
5156
  };
5154
5157
 
5155
- var _excluded = ["children", "containerStyle", "containerClassName", "gutter", "position", "reverseOrder", "toastOptions"];
5158
+ var _excluded$1 = ["children", "containerStyle", "containerClassName", "gutter", "position", "reverseOrder", "toastOptions"];
5156
5159
  var createRectRef = function createRectRef(onRect) {
5157
5160
  return function (el) {
5158
5161
  if (el) {
@@ -5213,7 +5216,7 @@ var ToastContainer = function ToastContainer(_ref) {
5213
5216
  _ref$reverseOrder = _ref.reverseOrder,
5214
5217
  reverseOrder = _ref$reverseOrder === void 0 ? false : _ref$reverseOrder,
5215
5218
  toastOptions = _ref.toastOptions,
5216
- restProps = _objectWithoutPropertiesLoose(_ref, _excluded);
5219
+ restProps = _objectWithoutPropertiesLoose(_ref, _excluded$1);
5217
5220
  var _useToasts = useToasts(toastOptions),
5218
5221
  toasts = _useToasts.toasts,
5219
5222
  handlers = _useToasts.handlers;
@@ -5251,6 +5254,24 @@ var ToastContainer = function ToastContainer(_ref) {
5251
5254
  }));
5252
5255
  };
5253
5256
 
5257
+ var _excluded = ["className", "sideOffset"];
5258
+ var TooltipProvider = TooltipPrimitive__namespace.Provider;
5259
+ var Tooltip = TooltipPrimitive__namespace.Root;
5260
+ var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
5261
+ var TooltipPortal = TooltipPrimitive__namespace.Portal;
5262
+ var TooltipContent = /*#__PURE__*/React__namespace.forwardRef(function (_ref, ref) {
5263
+ var className = _ref.className,
5264
+ _ref$sideOffset = _ref.sideOffset,
5265
+ sideOffset = _ref$sideOffset === void 0 ? 4 : _ref$sideOffset,
5266
+ props = _objectWithoutPropertiesLoose(_ref, _excluded);
5267
+ return React__namespace.createElement(TooltipPrimitive__namespace.Content, _extends({
5268
+ ref: ref,
5269
+ sideOffset: sideOffset,
5270
+ className: classNames('background-color-tooltip font-color-tooltip font-size-xs z-index-popover overflow-hidden br-sm p-h-sm p-v-xs shadow-sm', className)
5271
+ }, props));
5272
+ });
5273
+ TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
5274
+
5254
5275
  var useWindowSize = function useWindowSize() {
5255
5276
  var _React$useContext = React.useContext(ResponsiveContext),
5256
5277
  innerWidth = _React$useContext.innerWidth,
@@ -5443,6 +5464,11 @@ exports.TimePicker = TimePicker;
5443
5464
  exports.TimePickerNative = TimePickerNative;
5444
5465
  exports.ToastContainer = ToastContainer;
5445
5466
  exports.Toggle = Toggle;
5467
+ exports.Tooltip = Tooltip;
5468
+ exports.TooltipContent = TooltipContent;
5469
+ exports.TooltipPortal = TooltipPortal;
5470
+ exports.TooltipProvider = TooltipProvider;
5471
+ exports.TooltipTrigger = TooltipTrigger;
5446
5472
  exports.boxPropsKeys = boxPropsKeys;
5447
5473
  exports.createRectRef = createRectRef;
5448
5474
  exports.toast = toast;