opus-toolkit-components 1.8.7 → 1.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/main.js CHANGED
@@ -692,6 +692,136 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(D
692
692
 
693
693
  /***/ }),
694
694
 
695
+ /***/ 1181:
696
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
697
+
698
+ __webpack_require__.r(__webpack_exports__);
699
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
700
+ /* harmony export */ "default": () => (/* binding */ ToggleSwitch)
701
+ /* harmony export */ });
702
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
703
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
704
+ /* harmony import */ var _Text_Text__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(21111);
705
+ /* harmony import */ var _utils_getDataCy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(67339);
706
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(94178);
707
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__);
708
+ const _excluded = ["checked", "onChange", "onToggle", "leftLabel", "rightLabel", "disabled", "name", "title", "dataCy", "className"];
709
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
710
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
711
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
712
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
713
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
714
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
715
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
716
+
717
+
718
+
719
+
720
+ /**
721
+ * Props for ToggleSwitch.
722
+ *
723
+ * @typedef {Object} ToggleSwitchProps
724
+ *
725
+ * @property {boolean} checked
726
+ * Whether the switch is currently on.
727
+ *
728
+ * @property {(checked: boolean) => void} [onChange]
729
+ * Receives the next checked value.
730
+ *
731
+ * @property {(checked: boolean) => void} [onToggle]
732
+ * Alias for onChange.
733
+ *
734
+ * @property {React.ReactNode} [leftLabel]
735
+ * Optional label shown to the left of the switch.
736
+ *
737
+ * @property {React.ReactNode} [rightLabel]
738
+ * Optional label shown to the right of the switch.
739
+ *
740
+ * @property {boolean} [disabled]
741
+ * Prevents user interaction.
742
+ *
743
+ * @property {string} [name]
744
+ * Standard HTML name attribute and data-cy source.
745
+ *
746
+ * @property {string} [title]
747
+ *
748
+ * @property {string} [dataCy]
749
+ * Override test selector.
750
+ *
751
+ * @property {string} [className]
752
+ * Optional wrapper class names.
753
+ */
754
+
755
+ /**
756
+ * @param {ToggleSwitchProps & React.HTMLAttributes<HTMLDivElement>} props
757
+ */
758
+
759
+ function ToggleSwitch(_ref) {
760
+ let {
761
+ checked,
762
+ onChange,
763
+ onToggle,
764
+ leftLabel,
765
+ rightLabel,
766
+ disabled = false,
767
+ name,
768
+ title,
769
+ dataCy,
770
+ className = ""
771
+ } = _ref,
772
+ rest = _objectWithoutProperties(_ref, _excluded);
773
+ const handleToggle = () => {
774
+ if (disabled) return;
775
+ const nextChecked = !checked;
776
+ onChange === null || onChange === void 0 || onChange(nextChecked);
777
+ onToggle === null || onToggle === void 0 || onToggle(nextChecked);
778
+ };
779
+ const handleKeyDown = event => {
780
+ if (disabled) return;
781
+ if (event.key === "Enter" || event.key === " ") {
782
+ event.preventDefault();
783
+ handleToggle();
784
+ }
785
+ };
786
+ const trackClasses = checked ? "bg-[--color-primary-btn] border-[--color-primary-btn]" : "bg-[--color-input-bg] border-[--color-stroke]";
787
+ const thumbClasses = checked ? "translate-x-5 bg-[--color-primary-btn-txt]" : "translate-x-0 bg-[--color-text-strong]";
788
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsxs)("div", _objectSpread(_objectSpread({
789
+ className: "inline-flex items-center gap-3 ".concat(className)
790
+ }, rest), {}, {
791
+ children: [leftLabel ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_1__["default"], {
792
+ variant: "label",
793
+ as: "span",
794
+ className: "text-[--color-text-strong]",
795
+ children: leftLabel
796
+ }) : null, /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)("button", {
797
+ type: "button",
798
+ role: "switch",
799
+ "aria-checked": checked,
800
+ "aria-disabled": disabled,
801
+ disabled: disabled,
802
+ name: name,
803
+ title: title,
804
+ "data-cy": (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_2__.getDataCy)({
805
+ name,
806
+ dataCy
807
+ }),
808
+ onClick: handleToggle,
809
+ onKeyDown: handleKeyDown,
810
+ className: "relative inline-flex h-7 w-12 items-center rounded-full border px-1 transition duration-300 ease-in-out focus:outline-none ".concat(disabled ? "cursor-not-allowed opacity-50" : "cursor-pointer", " ").concat(trackClasses),
811
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)("span", {
812
+ className: "inline-block h-5 w-5 transform rounded-full shadow-sm transition duration-300 ease-in-out ".concat(thumbClasses)
813
+ })
814
+ }), rightLabel ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_1__["default"], {
815
+ variant: "label",
816
+ as: "span",
817
+ className: "text-[--color-text-strong]",
818
+ children: rightLabel
819
+ }) : null]
820
+ }));
821
+ }
822
+
823
+ /***/ }),
824
+
695
825
  /***/ 1321:
696
826
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
697
827
 
@@ -735,6 +865,55 @@ function CubeIcon({
735
865
  const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(CubeIcon);
736
866
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ForwardRef);
737
867
 
868
+ /***/ }),
869
+
870
+ /***/ 1443:
871
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
872
+
873
+ __webpack_require__.r(__webpack_exports__);
874
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
875
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
876
+ /* harmony export */ });
877
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(85072);
878
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__);
879
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(97825);
880
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__);
881
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(77659);
882
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__);
883
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(55056);
884
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__);
885
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(10540);
886
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__);
887
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(41113);
888
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__);
889
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_callout_scss__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(67834);
890
+
891
+
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+ var options = {};
902
+
903
+ options.styleTagTransform = (_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default());
904
+ options.setAttributes = (_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default());
905
+ options.insert = _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null, "head");
906
+ options.domAPI = (_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default());
907
+ options.insertStyleElement = (_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default());
908
+
909
+ var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_callout_scss__WEBPACK_IMPORTED_MODULE_6__["default"], options);
910
+
911
+
912
+
913
+
914
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_callout_scss__WEBPACK_IMPORTED_MODULE_6__["default"] && _node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_callout_scss__WEBPACK_IMPORTED_MODULE_6__["default"].locals ? _node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_callout_scss__WEBPACK_IMPORTED_MODULE_6__["default"].locals : undefined);
915
+
916
+
738
917
  /***/ }),
739
918
 
740
919
  /***/ 1646:
@@ -1467,8 +1646,9 @@ __webpack_require__.r(__webpack_exports__);
1467
1646
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
1468
1647
  /* harmony export */ });
1469
1648
  /* harmony import */ var _BarLayout_BarLayout__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7779);
1470
- /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(94178);
1471
- /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__);
1649
+ /* harmony import */ var _FooterLogo_FooterLogo__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(49465);
1650
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(94178);
1651
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__);
1472
1652
  const _excluded = ["left", "center", "right", "className"];
1473
1653
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
1474
1654
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
@@ -1479,16 +1659,17 @@ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i
1479
1659
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
1480
1660
 
1481
1661
 
1482
- /**
1483
- * @typedef {Object} FooterProps
1484
- * @property {React.ReactNode} [left] Left footer content
1485
- * @property {React.ReactNode} [center] Center footer content
1486
- * @property {React.ReactNode} [right] Right footer content
1487
- * @property {string} [className] Optional wrapper class
1662
+
1663
+ /**
1664
+ * @typedef {Object} FooterProps
1665
+ * @property {React.ReactNode} [left] Left footer content
1666
+ * @property {React.ReactNode} [center] Center footer content
1667
+ * @property {React.ReactNode} [right] Right footer content
1668
+ * @property {string} [className] Optional wrapper class
1488
1669
  */
1489
1670
 
1490
- /**
1491
- * @param {FooterProps} props
1671
+ /**
1672
+ * @param {FooterProps} props
1492
1673
  */
1493
1674
 
1494
1675
  const Footer = _ref => {
@@ -1499,17 +1680,19 @@ const Footer = _ref => {
1499
1680
  className = ""
1500
1681
  } = _ref,
1501
1682
  rest = _objectWithoutProperties(_ref, _excluded);
1502
- return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div", _objectSpread(_objectSpread({
1683
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__.jsx)("div", _objectSpread(_objectSpread({
1503
1684
  className: "w-full px-4 py-2 ".concat(className)
1504
1685
  }, rest), {}, {
1505
- children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_BarLayout_BarLayout__WEBPACK_IMPORTED_MODULE_0__["default"], {
1686
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__.jsx)(_BarLayout_BarLayout__WEBPACK_IMPORTED_MODULE_0__["default"], {
1506
1687
  left: left,
1507
1688
  center: center,
1508
- right: right
1689
+ right: right !== null && right !== void 0 ? right : /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__.jsx)(_FooterLogo_FooterLogo__WEBPACK_IMPORTED_MODULE_1__["default"], {})
1509
1690
  })
1510
- }));
1691
+ })) //test
1692
+ ;
1511
1693
  };
1512
1694
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Footer);
1695
+ // i am joel
1513
1696
 
1514
1697
  /***/ }),
1515
1698
 
@@ -5067,6 +5250,13 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(V
5067
5250
 
5068
5251
  /***/ }),
5069
5252
 
5253
+ /***/ 10463:
5254
+ /***/ ((module) => {
5255
+
5256
+ module.exports = require("opus-toolkit-styles/assets/logos/opus-dark-logo.svg");
5257
+
5258
+ /***/ }),
5259
+
5070
5260
  /***/ 10540:
5071
5261
  /***/ ((module) => {
5072
5262
 
@@ -13617,6 +13807,144 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(G
13617
13807
 
13618
13808
  /***/ }),
13619
13809
 
13810
+ /***/ 26831:
13811
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
13812
+
13813
+ __webpack_require__.r(__webpack_exports__);
13814
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13815
+ /* harmony export */ "default": () => (/* binding */ CardItem)
13816
+ /* harmony export */ });
13817
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
13818
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
13819
+ /* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(34164);
13820
+ /* harmony import */ var _Text_Text__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(21111);
13821
+ /* harmony import */ var _utils_getDataCy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(67339);
13822
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(94178);
13823
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__);
13824
+ const _excluded = ["heading", "subheading", "icon", "checked", "onCheckedChange", "iconPosition", "disabled", "className", "dataCy", "name"];
13825
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
13826
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
13827
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
13828
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
13829
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
13830
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
13831
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
13832
+
13833
+
13834
+
13835
+
13836
+
13837
+ /**
13838
+ * Allowed icon placement values.
13839
+ * @typedef {'left'|'right'} CardItemIconPosition
13840
+ */
13841
+
13842
+ /**
13843
+ * Props for the CardItem component.
13844
+ *
13845
+ * @typedef {Object} CardItemProps
13846
+ * @property {React.ReactNode} heading
13847
+ * Main heading content displayed in the card.
13848
+ * @property {React.ReactNode} [subheading]
13849
+ * Supporting text shown below the heading.
13850
+ * @property {React.ReactNode} [icon]
13851
+ * Optional icon rendered beside the text.
13852
+ * @property {boolean} [checked]
13853
+ * Optional checkbox state rendered in the icon area.
13854
+ * @property {(checked: boolean) => void} [onCheckedChange]
13855
+ * Fired when the checkbox state changes.
13856
+ * @property {CardItemIconPosition} [iconPosition='left']
13857
+ * Controls whether the icon appears on the left or right side.
13858
+ * @property {boolean} [disabled]
13859
+ * Disables interaction when true.
13860
+ * @property {string} [className]
13861
+ * Optional wrapper class names.
13862
+ * @property {string} [dataCy]
13863
+ * Override for auto-generated test selector.
13864
+ * @property {string} [name]
13865
+ * Standard name attribute and data-cy source.
13866
+ */
13867
+
13868
+ /**
13869
+ * Small information card with optional icon and two lines of text.
13870
+ *
13871
+ * @param {CardItemProps & React.HTMLAttributes<HTMLDivElement>} props
13872
+ */
13873
+
13874
+ function CardItem(_ref) {
13875
+ let {
13876
+ heading,
13877
+ subheading,
13878
+ icon,
13879
+ checked,
13880
+ onCheckedChange,
13881
+ iconPosition = "left",
13882
+ disabled = false,
13883
+ className = "",
13884
+ dataCy,
13885
+ name
13886
+ } = _ref,
13887
+ rest = _objectWithoutProperties(_ref, _excluded);
13888
+ const checkboxId = name ? "card-item-checkbox-".concat(name) : undefined;
13889
+ const rootClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("flex w-full items-center gap-4 rounded-lg border border-[--color-stroke] bg-[--color-primary-bg] px-4 py-3 text-left text-[--color-text-strong] transition duration-300 ease-in-out", disabled && "cursor-not-allowed opacity-50", className);
13890
+ const iconClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("flex h-16 w-16 shrink-0 items-center justify-center border-[--color-stroke]", iconPosition === "left" ? "border-r pr-4" : "order-2 border-l pl-4");
13891
+ const textClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("min-w-0 flex-1", iconPosition === "right" && "order-1");
13892
+ const hasCheckbox = typeof checked === "boolean";
13893
+ const mediaElement = hasCheckbox ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("label", {
13894
+ htmlFor: checkboxId,
13895
+ className: "inline-flex items-center justify-center",
13896
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("input", {
13897
+ id: checkboxId,
13898
+ type: "checkbox",
13899
+ name: name,
13900
+ checked: checked,
13901
+ disabled: disabled,
13902
+ onChange: event => onCheckedChange === null || onCheckedChange === void 0 ? void 0 : onCheckedChange(event.target.checked),
13903
+ "aria-label": "Select card",
13904
+ "aria-disabled": disabled,
13905
+ "data-cy": (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_3__.getDataCy)({
13906
+ name,
13907
+ value: "checkbox",
13908
+ dataCy
13909
+ }),
13910
+ className: "h-5 w-5 rounded-sm ".concat(disabled ? "cursor-not-allowed opacity-50" : "cursor-pointer"),
13911
+ style: {
13912
+ accentColor: "var(--color-primary-btn)"
13913
+ }
13914
+ })
13915
+ }) : icon;
13916
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsxs)("div", _objectSpread(_objectSpread(_objectSpread({
13917
+ className: rootClasses
13918
+ }, rest), !hasCheckbox ? (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_3__.getDataCy)({
13919
+ name,
13920
+ dataCy
13921
+ }) : {}), {}, {
13922
+ children: [mediaElement ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("div", {
13923
+ className: iconClasses,
13924
+ children: mediaElement
13925
+ }) : null, /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsxs)("div", {
13926
+ className: textClasses,
13927
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_2__["default"], {
13928
+ as: "div",
13929
+ variant: "h4",
13930
+ color: "text-[--color-text-strong]",
13931
+ className: "truncate",
13932
+ title: typeof heading === "string" ? heading : undefined,
13933
+ children: heading
13934
+ }), subheading ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_2__["default"], {
13935
+ as: "div",
13936
+ variant: "body",
13937
+ color: "text-[--color-text-weak]",
13938
+ className: "mt-1 truncate",
13939
+ title: typeof subheading === "string" ? subheading : undefined,
13940
+ children: subheading
13941
+ }) : null]
13942
+ })]
13943
+ }));
13944
+ }
13945
+
13946
+ /***/ }),
13947
+
13620
13948
  /***/ 26956:
13621
13949
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
13622
13950
 
@@ -17191,6 +17519,13 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(N
17191
17519
 
17192
17520
  /***/ }),
17193
17521
 
17522
+ /***/ 32757:
17523
+ /***/ ((module) => {
17524
+
17525
+ module.exports = require("opus-toolkit-styles/assets/logos/opus-light-logo.svg");
17526
+
17527
+ /***/ }),
17528
+
17194
17529
  /***/ 32868:
17195
17530
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
17196
17531
 
@@ -18750,6 +19085,29 @@ function PauseCircleIcon({
18750
19085
  const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(PauseCircleIcon);
18751
19086
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ForwardRef);
18752
19087
 
19088
+ /***/ }),
19089
+
19090
+ /***/ 34945:
19091
+ /***/ ((module, __webpack_exports__, __webpack_require__) => {
19092
+
19093
+ __webpack_require__.r(__webpack_exports__);
19094
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19095
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
19096
+ /* harmony export */ });
19097
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(71354);
19098
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
19099
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(76314);
19100
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
19101
+ // Imports
19102
+
19103
+
19104
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
19105
+ // Module
19106
+ ___CSS_LOADER_EXPORT___.push([module.id, `.footer-logo-light{display:inline-block}.footer-logo-dark{display:none}:where(html,div)[data-theme=dark] .footer-logo-light{display:none}:where(html,div)[data-theme=dark] .footer-logo-dark{display:inline-block}`, "",{"version":3,"sources":["webpack://./src/components/FooterLogo/footer-logo.scss"],"names":[],"mappings":"AAAA,mBACE,oBAAA,CAGF,kBACE,YAAA,CAGF,qDACE,YAAA,CAGF,oDACE,oBAAA","sourcesContent":[".footer-logo-light {\r\n display: inline-block;\r\n}\r\n\r\n.footer-logo-dark {\r\n display: none;\r\n}\r\n\r\n:where(html, div)[data-theme=\"dark\"] .footer-logo-light {\r\n display: none;\r\n}\r\n\r\n:where(html, div)[data-theme=\"dark\"] .footer-logo-dark {\r\n display: inline-block;\r\n}\r\n"],"sourceRoot":""}]);
19107
+ // Exports
19108
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
19109
+
19110
+
18753
19111
  /***/ }),
18754
19112
 
18755
19113
  /***/ 34970:
@@ -20746,7 +21104,7 @@ __webpack_require__.r(__webpack_exports__);
20746
21104
  /* harmony import */ var _utils_getDataCy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(67339);
20747
21105
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(94178);
20748
21106
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__);
20749
- const _excluded = ["label", "placeholder", "type", "tabIndex", "title", "name", "isValid", "errorMessage", "onChange", "className", "value", "Icon", "iconPosition", "isAnimated", "required", "shouldRenderCustomComponent", "customComponent", "customComponentProps", "disabled", "dataCy"];
21107
+ const _excluded = ["label", "placeholder", "type", "tabIndex", "title", "name", "isValid", "errorMessage", "onChange", "className", "value", "Icon", "iconPosition", "isAnimated", "required", "hideLabel", "shouldRenderCustomComponent", "customComponent", "customComponentProps", "disabled", "dataCy"];
20750
21108
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
20751
21109
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
20752
21110
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
@@ -20758,75 +21116,78 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
20758
21116
 
20759
21117
 
20760
21118
 
20761
- /**
20762
- * Icon component type — any React component that renders an SVG.
20763
- * @typedef {(props: React.SVGProps<SVGSVGElement>) => JSX.Element} IconComponent
21119
+ /**
21120
+ * Icon component type — any React component that renders an SVG.
21121
+ * @typedef {(props: React.SVGProps<SVGSVGElement>) => JSX.Element} IconComponent
20764
21122
  */
20765
21123
 
20766
- /**
20767
- * Custom component type for supplementary UI below input.
20768
- * Must be a React component.
20769
- * @typedef {(props: any) => JSX.Element} CustomComponent
21124
+ /**
21125
+ * Custom component type for supplementary UI below input.
21126
+ * Must be a React component.
21127
+ * @typedef {(props: any) => JSX.Element} CustomComponent
20770
21128
  */
20771
21129
 
20772
- /**
20773
- * Input component props.
20774
- *
20775
- * @typedef {Object} InputProps
20776
- *
20777
- * @property {string} label
20778
- * Label displayed above the input.
20779
- *
20780
- * @property {string} [placeholder]
20781
- *
20782
- * @property {'text'|'email'|'password'|'number'|'search'|'tel'|'url'|'date'|'datetime-local'|'month'|'time'|'week'|string} [type]
20783
- * HTML input type.
20784
- *
20785
- * @property {string|number} [tabIndex]
20786
- *
20787
- * @property {string} [title]
20788
- *
20789
- * @property {string} [name]
20790
- *
20791
- * @property {boolean} [isValid]
20792
- * Whether the field is valid — shows error text if false.
20793
- *
20794
- * @property {string} [errorMessage]
20795
- *
20796
- * @property {(event: React.ChangeEvent<HTMLInputElement>) => void} [onChange]
20797
- * Change handler using your preferred full event signature.
20798
- *
20799
- * @property {string} [className]
20800
- *
20801
- * @property {string|number} [value]
20802
- *
20803
- * @property {IconComponent} [Icon]
20804
- *
20805
- * @property {'left'|'right'} [iconPosition]
20806
- * Icon placement inside the input.
20807
- *
20808
- * @property {boolean} [isAnimated]
20809
- * Enables focus animation on the icon.
20810
- *
20811
- * @property {boolean} [required]
20812
- *
20813
- * @property {boolean} [disabled]
20814
- *
20815
- * @property {boolean} [shouldRenderCustomComponent]
20816
- *
20817
- * @property {CustomComponent} [customComponent]
20818
- *
20819
- * @property {Object<string, any>} [customComponentProps]
20820
- *
20821
- * @property {string} [dataCy]
20822
- * Override for auto-generated test selector.
21130
+ /**
21131
+ * Input component props.
21132
+ *
21133
+ * @typedef {Object} InputProps
21134
+ *
21135
+ * @property {string} label
21136
+ * Label displayed above the input.
21137
+ *
21138
+ * @property {string} [placeholder]
21139
+ *
21140
+ * @property {'text'|'email'|'password'|'number'|'search'|'tel'|'url'|'date'|'datetime-local'|'month'|'time'|'week'|string} [type]
21141
+ * HTML input type.
21142
+ *
21143
+ * @property {string|number} [tabIndex]
21144
+ *
21145
+ * @property {string} [title]
21146
+ *
21147
+ * @property {string} [name]
21148
+ *
21149
+ * @property {boolean} [isValid]
21150
+ * Whether the field is valid — shows error text if false.
21151
+ *
21152
+ * @property {string} [errorMessage]
21153
+ *
21154
+ * @property {(event: React.ChangeEvent<HTMLInputElement>) => void} [onChange]
21155
+ * Change handler using your preferred full event signature.
21156
+ *
21157
+ * @property {string} [className]
21158
+ *
21159
+ * @property {string|number} [value]
21160
+ *
21161
+ * @property {IconComponent} [Icon]
21162
+ *
21163
+ * @property {'left'|'right'} [iconPosition]
21164
+ * Icon placement inside the input.
21165
+ *
21166
+ * @property {boolean} [isAnimated]
21167
+ * Enables focus animation on the icon.
21168
+ *
21169
+ * @property {boolean} [required]
21170
+ *
21171
+ * @property {boolean} [hideLabel]
21172
+ * Hides the visible label while keeping the input accessible.
21173
+ *
21174
+ * @property {boolean} [disabled]
21175
+ *
21176
+ * @property {boolean} [shouldRenderCustomComponent]
21177
+ *
21178
+ * @property {CustomComponent} [customComponent]
21179
+ *
21180
+ * @property {Object<string, any>} [customComponentProps]
21181
+ *
21182
+ * @property {string} [dataCy]
21183
+ * Override for auto-generated test selector.
20823
21184
  */
20824
21185
 
20825
- /**
20826
- * ForwardRef Input component with complete JSDoc typings.
20827
- *
20828
- * @param {InputProps & React.InputHTMLAttributes<HTMLInputElement>} props
20829
- * @param {React.Ref<HTMLInputElement>} ref
21186
+ /**
21187
+ * ForwardRef Input component with complete JSDoc typings.
21188
+ *
21189
+ * @param {InputProps & React.InputHTMLAttributes<HTMLInputElement>} props
21190
+ * @param {React.Ref<HTMLInputElement>} ref
20830
21191
  */
20831
21192
 
20832
21193
  const Input = /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.forwardRef)((_ref, ref) => {
@@ -20850,6 +21211,7 @@ const Input = /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.forwardRef)((_r
20850
21211
  // Add animation class when focused
20851
21212
  required = false,
20852
21213
  // Required field indicator
21214
+ hideLabel = false,
20853
21215
  shouldRenderCustomComponent,
20854
21216
  // Condition to render custom component
20855
21217
  customComponent,
@@ -20869,7 +21231,7 @@ const Input = /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.forwardRef)((_r
20869
21231
  as: "label",
20870
21232
  variant: "label",
20871
21233
  htmlFor: name,
20872
- className: "mb-1 flex items-center",
21234
+ className: hideLabel ? "sr-only" : "mb-1 flex items-center",
20873
21235
  children: [label, required && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_1__["default"], {
20874
21236
  as: "span",
20875
21237
  variant: "small",
@@ -20900,6 +21262,7 @@ const Input = /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.forwardRef)((_r
20900
21262
  name,
20901
21263
  dataCy
20902
21264
  }),
21265
+ "aria-label": hideLabel ? label : undefined,
20903
21266
  "aria-invalid": !isValid,
20904
21267
  "aria-describedby": !isValid ? "".concat(name, "-error") : undefined
20905
21268
  }, rest)), Icon && iconPosition === "right" && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)("span", {
@@ -22026,6 +22389,55 @@ function FingerPrintIcon({
22026
22389
  const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(FingerPrintIcon);
22027
22390
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ForwardRef);
22028
22391
 
22392
+ /***/ }),
22393
+
22394
+ /***/ 41518:
22395
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22396
+
22397
+ __webpack_require__.r(__webpack_exports__);
22398
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22399
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
22400
+ /* harmony export */ });
22401
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(85072);
22402
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__);
22403
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(97825);
22404
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__);
22405
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(77659);
22406
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__);
22407
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(55056);
22408
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__);
22409
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(10540);
22410
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__);
22411
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(41113);
22412
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__);
22413
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_footer_logo_scss__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(34945);
22414
+
22415
+
22416
+
22417
+
22418
+
22419
+
22420
+
22421
+
22422
+
22423
+
22424
+
22425
+ var options = {};
22426
+
22427
+ options.styleTagTransform = (_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default());
22428
+ options.setAttributes = (_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default());
22429
+ options.insert = _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null, "head");
22430
+ options.domAPI = (_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default());
22431
+ options.insertStyleElement = (_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default());
22432
+
22433
+ var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_footer_logo_scss__WEBPACK_IMPORTED_MODULE_6__["default"], options);
22434
+
22435
+
22436
+
22437
+
22438
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_footer_logo_scss__WEBPACK_IMPORTED_MODULE_6__["default"] && _node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_footer_logo_scss__WEBPACK_IMPORTED_MODULE_6__["default"].locals ? _node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_footer_logo_scss__WEBPACK_IMPORTED_MODULE_6__["default"].locals : undefined);
22439
+
22440
+
22029
22441
  /***/ }),
22030
22442
 
22031
22443
  /***/ 41519:
@@ -23534,7 +23946,7 @@ function $bdb11010cef70236$export$b4cc09c592e8fdb8(depArray = []) {
23534
23946
 
23535
23947
  __webpack_require__.r(__webpack_exports__);
23536
23948
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23537
- /* harmony export */ "default": () => (/* binding */ IconButton)
23949
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
23538
23950
  /* harmony export */ });
23539
23951
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
23540
23952
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
@@ -23542,7 +23954,7 @@ __webpack_require__.r(__webpack_exports__);
23542
23954
  /* harmony import */ var _Icon_Icon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(57739);
23543
23955
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(94178);
23544
23956
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__);
23545
- const _excluded = ["rank", "size", "title", "iconName", "iconLibrary", "isFullWidth", "className", "name", "dataCy"];
23957
+ const _excluded = ["rank", "size", "title", "iconName", "iconLibrary", "icon", "children", "isFullWidth", "className", "name", "dataCy"];
23546
23958
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
23547
23959
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
23548
23960
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
@@ -23568,7 +23980,7 @@ const iconSizes = {
23568
23980
  lg: 24
23569
23981
  };
23570
23982
  const DEFAULT_ICON = "PlusIcon";
23571
- function IconButton(_ref) {
23983
+ const IconButton = /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.forwardRef)((_ref, ref) => {
23572
23984
  let {
23573
23985
  rank = "primary",
23574
23986
  size = "md",
@@ -23576,28 +23988,34 @@ function IconButton(_ref) {
23576
23988
  iconName = DEFAULT_ICON,
23577
23989
  iconLibrary = "hero",
23578
23990
  // 'hero' or 'c247'
23991
+ icon,
23992
+ children,
23579
23993
  isFullWidth = false,
23580
23994
  className = "",
23581
23995
  name,
23582
23996
  dataCy
23583
23997
  } = _ref,
23584
23998
  rest = _objectWithoutProperties(_ref, _excluded);
23585
- const classNames = "\n ".concat(rankStyles[rank] || rankStyles.primary, "\n flex\n items-center\n justify-center\n p-3\n transition\n ease-in-out\n duration-700\n hover:shadow-lg\n ").concat(isFullWidth ? "w-full" : "", "\n ").concat(className, "\n ");
23586
- return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)("button", _objectSpread(_objectSpread(_objectSpread({
23999
+ const classNames = "\n ".concat(rankStyles[rank] || rankStyles.primary, "\n flex\n items-center\n justify-center\n p-3\n transition\n ease-in-out\n duration-700\n hover:shadow-lg\n ").concat(isFullWidth ? "w-full" : "", "\n ").concat(className, "\n ");
24000
+ const iconContent = children || icon || iconName && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)(_Icon_Icon__WEBPACK_IMPORTED_MODULE_2__["default"], {
24001
+ name: iconName,
24002
+ library: iconLibrary,
24003
+ size: iconSizes[size] || iconSizes.md
24004
+ });
24005
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)("button", _objectSpread(_objectSpread({
24006
+ ref: ref,
23587
24007
  title: title,
23588
24008
  name: name,
23589
- className: classNames
23590
- }, rest), (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_1__.getDataCy)({
23591
- name,
23592
- dataCy
23593
- })), {}, {
23594
- children: iconName && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_3__.jsx)(_Icon_Icon__WEBPACK_IMPORTED_MODULE_2__["default"], {
23595
- name: iconName,
23596
- library: iconLibrary,
23597
- size: iconSizes[size] || iconSizes.md
24009
+ className: classNames,
24010
+ "data-cy": (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_1__.getDataCy)({
24011
+ name,
24012
+ dataCy
23598
24013
  })
24014
+ }, rest), {}, {
24015
+ children: iconContent
23599
24016
  }));
23600
- }
24017
+ });
24018
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (IconButton);
23601
24019
 
23602
24020
  /***/ }),
23603
24021
 
@@ -27479,6 +27897,84 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(P
27479
27897
 
27480
27898
  /***/ }),
27481
27899
 
27900
+ /***/ 49465:
27901
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27902
+
27903
+ __webpack_require__.r(__webpack_exports__);
27904
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27905
+ /* harmony export */ "default": () => (/* binding */ FooterLogo)
27906
+ /* harmony export */ });
27907
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
27908
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
27909
+ /* harmony import */ var opus_toolkit_styles_assets_logos_opus_light_logo_svg__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(32757);
27910
+ /* harmony import */ var opus_toolkit_styles_assets_logos_opus_light_logo_svg__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(opus_toolkit_styles_assets_logos_opus_light_logo_svg__WEBPACK_IMPORTED_MODULE_1__);
27911
+ /* harmony import */ var opus_toolkit_styles_assets_logos_opus_dark_logo_svg__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(10463);
27912
+ /* harmony import */ var opus_toolkit_styles_assets_logos_opus_dark_logo_svg__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(opus_toolkit_styles_assets_logos_opus_dark_logo_svg__WEBPACK_IMPORTED_MODULE_2__);
27913
+ /* harmony import */ var _footer_logo_scss__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(41518);
27914
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(94178);
27915
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__);
27916
+ const _excluded = ["href", "className"];
27917
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
27918
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
27919
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
27920
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
27921
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
27922
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
27923
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
27924
+
27925
+
27926
+
27927
+
27928
+
27929
+ /**
27930
+ * Props for the FooterLogo component.
27931
+ *
27932
+ * @typedef {Object} FooterLogoProps
27933
+ *
27934
+ * @property {string} [href]
27935
+ * Optional link target for the logo.
27936
+ *
27937
+ * @property {string} [className]
27938
+ * Optional wrapper class names.
27939
+ */
27940
+
27941
+ /**
27942
+ * Theme-aware company logo for footer usage.
27943
+ *
27944
+ * @param {FooterLogoProps & React.HTMLAttributes<HTMLDivElement>} props
27945
+ */
27946
+
27947
+ function FooterLogo(_ref) {
27948
+ let {
27949
+ href = "/",
27950
+ className = ""
27951
+ } = _ref,
27952
+ rest = _objectWithoutProperties(_ref, _excluded);
27953
+ const content = /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.Fragment, {
27954
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
27955
+ src: (opus_toolkit_styles_assets_logos_opus_light_logo_svg__WEBPACK_IMPORTED_MODULE_1___default()),
27956
+ alt: "Opus logo",
27957
+ className: "footer-logo-light h-10 w-auto"
27958
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("img", {
27959
+ src: (opus_toolkit_styles_assets_logos_opus_dark_logo_svg__WEBPACK_IMPORTED_MODULE_2___default()),
27960
+ alt: "Opus logo",
27961
+ className: "footer-logo-dark h-10 w-auto"
27962
+ })]
27963
+ });
27964
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("div", _objectSpread(_objectSpread({
27965
+ className: "footer-logo inline-flex items-center ".concat(className)
27966
+ }, rest), {}, {
27967
+ children: href ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)("a", {
27968
+ href: href,
27969
+ className: "inline-flex items-center",
27970
+ "aria-label": "Opus home",
27971
+ children: content
27972
+ }) : content
27973
+ }));
27974
+ }
27975
+
27976
+ /***/ }),
27977
+
27482
27978
  /***/ 49489:
27483
27979
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
27484
27980
 
@@ -45721,6 +46217,29 @@ function ChatBubbleOvalLeftEllipsisIcon({
45721
46217
  const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(ChatBubbleOvalLeftEllipsisIcon);
45722
46218
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ForwardRef);
45723
46219
 
46220
+ /***/ }),
46221
+
46222
+ /***/ 67834:
46223
+ /***/ ((module, __webpack_exports__, __webpack_require__) => {
46224
+
46225
+ __webpack_require__.r(__webpack_exports__);
46226
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
46227
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
46228
+ /* harmony export */ });
46229
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(71354);
46230
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
46231
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(76314);
46232
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
46233
+ // Imports
46234
+
46235
+
46236
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
46237
+ // Module
46238
+ ___CSS_LOADER_EXPORT___.push([module.id, `.callout-ticker-viewport{--callout-fade-width: 10px;-webkit-mask-image:linear-gradient(to right, transparent 0, #000 var(--callout-fade-width), #000 calc(100% - var(--callout-fade-width)), transparent 100%);mask-image:linear-gradient(to right, transparent 0, #000 var(--callout-fade-width), #000 calc(100% - var(--callout-fade-width)), transparent 100%)}.callout-ticker{display:inline-flex;align-items:center;gap:var(--callout-ticker-gap, 2rem);width:max-content;will-change:transform;animation:callout-ticker var(--callout-ticker-duration, 12s) linear infinite}@keyframes callout-ticker{0%{transform:translateX(0)}100%{transform:translateX(calc(var(--callout-ticker-distance, 0px) * -1))}}`, "",{"version":3,"sources":["webpack://./src/components/Callout/callout.scss"],"names":[],"mappings":"AAAA,yBACE,0BAAA,CACA,0JAAA,CAOA,kJAAA,CASF,gBACE,mBAAA,CACA,kBAAA,CACA,mCAAA,CACA,iBAAA,CACA,qBAAA,CACA,4EAAA,CAGF,0BACE,GACE,uBAAA,CAGF,KACE,oEAAA,CAAA","sourcesContent":[".callout-ticker-viewport {\r\n --callout-fade-width: 10px;\r\n -webkit-mask-image: linear-gradient(\r\n to right,\r\n transparent 0,\r\n #000 var(--callout-fade-width),\r\n #000 calc(100% - var(--callout-fade-width)),\r\n transparent 100%\r\n );\r\n mask-image: linear-gradient(\r\n to right,\r\n transparent 0,\r\n #000 var(--callout-fade-width),\r\n #000 calc(100% - var(--callout-fade-width)),\r\n transparent 100%\r\n );\r\n}\r\n\r\n.callout-ticker {\r\n display: inline-flex;\r\n align-items: center;\r\n gap: var(--callout-ticker-gap, 2rem);\r\n width: max-content;\r\n will-change: transform;\r\n animation: callout-ticker var(--callout-ticker-duration, 12s) linear infinite;\r\n}\r\n\r\n@keyframes callout-ticker {\r\n 0% {\r\n transform: translateX(0);\r\n }\r\n\r\n 100% {\r\n transform: translateX(calc(var(--callout-ticker-distance, 0px) * -1));\r\n }\r\n}\r\n"],"sourceRoot":""}]);
46239
+ // Exports
46240
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
46241
+
46242
+
45724
46243
  /***/ }),
45725
46244
 
45726
46245
  /***/ 67864:
@@ -50083,7 +50602,7 @@ __webpack_require__.r(__webpack_exports__);
50083
50602
  /* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(34164);
50084
50603
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(94178);
50085
50604
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__);
50086
- const _excluded = ["intent", "className", "children"];
50605
+ const _excluded = ["intent", "hasOutline", "className", "children"];
50087
50606
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
50088
50607
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
50089
50608
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
@@ -50094,34 +50613,38 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
50094
50613
 
50095
50614
 
50096
50615
 
50097
- /**
50098
- * The visual intent / theme of the Card.
50099
- * @typedef {'default'|'info'|'warning'|'success'|'error'|'brand'|'brandSecondary'} CardIntent
50616
+ /**
50617
+ * The visual intent / theme of the Card.
50618
+ * @typedef {'default'|'info'|'warning'|'success'|'error'|'brand'|'brandSecondary'} CardIntent
50100
50619
  */
50101
50620
 
50102
- /**
50103
- * Props for the Card component.
50104
- *
50105
- * @typedef {Object} CardProps
50106
- * @property {CardIntent} [intent]
50107
- * Controls the background + text color theme of the card.
50108
- *
50109
- * @property {string} [className]
50110
- * Additional custom class names.
50111
- *
50112
- * @property {React.ReactNode} [children]
50113
- * Card content.
50621
+ /**
50622
+ * Props for the Card component.
50623
+ *
50624
+ * @typedef {Object} CardProps
50625
+ * @property {CardIntent} [intent]
50626
+ * Controls the background + text color theme of the card.
50627
+ *
50628
+ * @property {boolean} [hasOutline=true]
50629
+ * Toggles the default card outline.
50630
+ *
50631
+ * @property {string} [className]
50632
+ * Additional custom class names.
50633
+ *
50634
+ * @property {React.ReactNode} [children]
50635
+ * Card content.
50114
50636
  */
50115
50637
 
50116
- /**
50117
- * Card component with typed JSDoc for TS autocomplete.
50118
- *
50119
- * @param {CardProps & React.HTMLAttributes<HTMLDivElement>} props
50638
+ /**
50639
+ * Card component with typed JSDoc for TS autocomplete.
50640
+ *
50641
+ * @param {CardProps & React.HTMLAttributes<HTMLDivElement>} props
50120
50642
  */
50121
50643
 
50122
50644
  function Card(_ref) {
50123
50645
  let {
50124
50646
  intent,
50647
+ hasOutline = true,
50125
50648
  className = "",
50126
50649
  children
50127
50650
  } = _ref,
@@ -50137,7 +50660,7 @@ function Card(_ref) {
50137
50660
  brandSecondary: "bg-[--color-brand-secondary] text-[--color-white]"
50138
50661
  };
50139
50662
  const resolvedIntent = intent || "default";
50140
- const cardClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("p-5", "rounded-lg", "shadow-lg", "border-2 border-solid border-[--color-stroke]", intentClasses[resolvedIntent], className);
50663
+ const cardClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("p-5", "rounded-lg", "shadow-lg", hasOutline ? "border-2 border-solid border-[--color-stroke]" : "border-0", intentClasses[resolvedIntent], className);
50141
50664
  return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__.jsx)("div", _objectSpread(_objectSpread({
50142
50665
  className: cardClasses
50143
50666
  }, rest), {}, {
@@ -52042,6 +52565,356 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(D
52042
52565
 
52043
52566
  /***/ }),
52044
52567
 
52568
+ /***/ 79963:
52569
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
52570
+
52571
+ __webpack_require__.r(__webpack_exports__);
52572
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
52573
+ /* harmony export */ "default": () => (/* binding */ FilterPopover)
52574
+ /* harmony export */ });
52575
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
52576
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
52577
+ /* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(34164);
52578
+ /* harmony import */ var _heroicons_react_24_outline__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(58964);
52579
+ /* harmony import */ var _Buttons_Button__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(74670);
52580
+ /* harmony import */ var _Checkbox_Checkbox__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(56067);
52581
+ /* harmony import */ var _Inputs_Input__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(38014);
52582
+ /* harmony import */ var _IconButton_IconButton__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(43155);
52583
+ /* harmony import */ var _Text_Text__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(21111);
52584
+ /* harmony import */ var _utils_getDataCy__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(67339);
52585
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(94178);
52586
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__);
52587
+ const _excluded = ["options", "selectedValues", "onApply", "placeholder", "buttonLabel", "icon", "children", "footer", "panelClassName", "bodyClassName", "className", "dataCy", "name"];
52588
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
52589
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
52590
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
52591
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
52592
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
52593
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
52594
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
52595
+
52596
+
52597
+
52598
+
52599
+
52600
+
52601
+
52602
+
52603
+
52604
+
52605
+ /**
52606
+ * @typedef {Object} FilterPopoverOption
52607
+ * @property {string} label
52608
+ * @property {string} value
52609
+ */
52610
+
52611
+ /**
52612
+ * @typedef {Object} FilterPopoverProps
52613
+ * @property {FilterPopoverOption[]} options
52614
+ * @property {string[]} [selectedValues]
52615
+ * @property {(values: string[]) => void} [onApply]
52616
+ * @property {string} [placeholder]
52617
+ * @property {React.ReactNode} [buttonLabel]
52618
+ * @property {React.ReactNode} [icon]
52619
+ * @property {React.ReactNode | ((context: FilterPopoverRenderContext) => React.ReactNode)} [children]
52620
+ * @property {React.ReactNode | ((context: FilterPopoverRenderContext) => React.ReactNode)} [footer]
52621
+ * @property {string} [panelClassName]
52622
+ * @property {string} [bodyClassName]
52623
+ * @property {string} [className]
52624
+ * @property {string} [dataCy]
52625
+ * @property {string} [name]
52626
+ */
52627
+
52628
+ /**
52629
+ * @typedef {Object} FilterPopoverRenderContext
52630
+ * @property {boolean} isOpen
52631
+ * @property {string[]} selectedValues
52632
+ * @property {(values: string[] | ((currentValues: string[]) => string[])) => void} setSelectedValues
52633
+ * @property {(value: string) => void} toggleValue
52634
+ * @property {string} searchTerm
52635
+ * @property {(value: string) => void} setSearchTerm
52636
+ * @property {FilterPopoverOption[]} filteredOptions
52637
+ * @property {() => void} closePopover
52638
+ */
52639
+
52640
+ /**
52641
+ * @param {FilterPopoverProps & React.HTMLAttributes<HTMLDivElement>} props
52642
+ */
52643
+
52644
+ function FilterPopover(_ref) {
52645
+ let {
52646
+ options = [],
52647
+ selectedValues = [],
52648
+ onApply,
52649
+ placeholder = "Search",
52650
+ buttonLabel = "Apply filters",
52651
+ icon,
52652
+ children,
52653
+ footer,
52654
+ panelClassName = "",
52655
+ bodyClassName = "",
52656
+ className = "",
52657
+ dataCy,
52658
+ name = "filterPopover"
52659
+ } = _ref,
52660
+ rest = _objectWithoutProperties(_ref, _excluded);
52661
+ const [isOpen, setIsOpen] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(false);
52662
+ const [searchTerm, setSearchTerm] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)("");
52663
+ const [localSelectedValues, setLocalSelectedValues] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(selectedValues);
52664
+ const containerRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
52665
+ const triggerRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
52666
+ const searchInputRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
52667
+ const panelRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
52668
+ const optionRefs = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)([]);
52669
+ const generatedId = (0,react__WEBPACK_IMPORTED_MODULE_0__.useId)();
52670
+ const panelId = "".concat(name, "-").concat(generatedId, "-panel");
52671
+ const listboxId = "".concat(name, "-").concat(generatedId, "-listbox");
52672
+ const hasCustomContent = typeof children !== "undefined";
52673
+ const panelClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("ring-opacity-1 absolute right-0 top-full z-20 mt-2 overflow-hidden rounded-md bg-[--color-primary-bg] shadow-lg ring-1 ring-[--color-stroke] focus:outline-none", hasCustomContent ? "w-[30rem]" : "w-72", panelClassName);
52674
+ const triggerIcon = icon || /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(_heroicons_react_24_outline__WEBPACK_IMPORTED_MODULE_2__.FunnelIcon, {
52675
+ className: "h-5 w-5"
52676
+ });
52677
+ (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
52678
+ setLocalSelectedValues(selectedValues);
52679
+ }, [selectedValues]);
52680
+ (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
52681
+ if (!isOpen) {
52682
+ setSearchTerm("");
52683
+ return undefined;
52684
+ }
52685
+ if (!hasCustomContent) {
52686
+ var _searchInputRef$curre;
52687
+ (_searchInputRef$curre = searchInputRef.current) === null || _searchInputRef$curre === void 0 || _searchInputRef$curre.focus();
52688
+ } else {
52689
+ var _panelRef$current;
52690
+ const firstFocusableElement = (_panelRef$current = panelRef.current) === null || _panelRef$current === void 0 ? void 0 : _panelRef$current.querySelector('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
52691
+ if (firstFocusableElement && typeof firstFocusableElement.focus === "function") {
52692
+ firstFocusableElement.focus();
52693
+ }
52694
+ }
52695
+ const handlePointerDown = event => {
52696
+ var _containerRef$current;
52697
+ if (!((_containerRef$current = containerRef.current) !== null && _containerRef$current !== void 0 && _containerRef$current.contains(event.target))) {
52698
+ setIsOpen(false);
52699
+ }
52700
+ };
52701
+ const handleEscape = event => {
52702
+ if (event.key === "Escape") {
52703
+ var _triggerRef$current;
52704
+ setIsOpen(false);
52705
+ (_triggerRef$current = triggerRef.current) === null || _triggerRef$current === void 0 || _triggerRef$current.focus();
52706
+ }
52707
+ };
52708
+ document.addEventListener("mousedown", handlePointerDown);
52709
+ document.addEventListener("keydown", handleEscape);
52710
+ return () => {
52711
+ document.removeEventListener("mousedown", handlePointerDown);
52712
+ document.removeEventListener("keydown", handleEscape);
52713
+ };
52714
+ }, [hasCustomContent, isOpen]);
52715
+ const filteredOptions = (0,react__WEBPACK_IMPORTED_MODULE_0__.useMemo)(() => {
52716
+ const normalizedSearch = searchTerm.trim().toLowerCase();
52717
+ if (!normalizedSearch) {
52718
+ return options;
52719
+ }
52720
+ return options.filter(option => option.label.toLowerCase().includes(normalizedSearch));
52721
+ }, [options, searchTerm]);
52722
+ const setOptionRef = (index, node) => {
52723
+ optionRefs.current[index] = node;
52724
+ };
52725
+ const focusOption = index => {
52726
+ var _optionRefs$current$i;
52727
+ (_optionRefs$current$i = optionRefs.current[index]) === null || _optionRefs$current$i === void 0 || _optionRefs$current$i.focus();
52728
+ };
52729
+ const togglePopover = () => {
52730
+ setIsOpen(previous => {
52731
+ const nextIsOpen = !previous;
52732
+ if (nextIsOpen) {
52733
+ setLocalSelectedValues(selectedValues);
52734
+ }
52735
+ return nextIsOpen;
52736
+ });
52737
+ };
52738
+ const toggleValue = value => {
52739
+ setLocalSelectedValues(currentValues => currentValues.includes(value) ? currentValues.filter(currentValue => currentValue !== value) : [...currentValues, value]);
52740
+ };
52741
+ const handleTriggerKeyDown = event => {
52742
+ if (event.key === "ArrowDown") {
52743
+ event.preventDefault();
52744
+ if (!isOpen) {
52745
+ setLocalSelectedValues(selectedValues);
52746
+ setIsOpen(true);
52747
+ return;
52748
+ }
52749
+ if (filteredOptions.length > 0) {
52750
+ focusOption(0);
52751
+ }
52752
+ }
52753
+ };
52754
+ const handleSearchKeyDown = event => {
52755
+ if (event.key === "ArrowDown" && filteredOptions.length > 0) {
52756
+ event.preventDefault();
52757
+ focusOption(0);
52758
+ }
52759
+ };
52760
+ const handleOptionKeyDown = (event, index) => {
52761
+ if (event.key === "ArrowDown" && filteredOptions.length > 0) {
52762
+ event.preventDefault();
52763
+ focusOption((index + 1) % filteredOptions.length);
52764
+ }
52765
+ if (event.key === "ArrowUp") {
52766
+ event.preventDefault();
52767
+ if (index === 0) {
52768
+ var _searchInputRef$curre2;
52769
+ (_searchInputRef$curre2 = searchInputRef.current) === null || _searchInputRef$curre2 === void 0 || _searchInputRef$curre2.focus();
52770
+ return;
52771
+ }
52772
+ focusOption(index - 1);
52773
+ }
52774
+ if (event.key === "Home") {
52775
+ event.preventDefault();
52776
+ focusOption(0);
52777
+ }
52778
+ if (event.key === "End") {
52779
+ event.preventDefault();
52780
+ focusOption(filteredOptions.length - 1);
52781
+ }
52782
+ if (event.key === "Escape") {
52783
+ var _triggerRef$current2;
52784
+ event.preventDefault();
52785
+ setIsOpen(false);
52786
+ (_triggerRef$current2 = triggerRef.current) === null || _triggerRef$current2 === void 0 || _triggerRef$current2.focus();
52787
+ }
52788
+ };
52789
+ const handleApply = () => {
52790
+ var _triggerRef$current3;
52791
+ if (localSelectedValues.length === 0) {
52792
+ return;
52793
+ }
52794
+ onApply === null || onApply === void 0 || onApply(localSelectedValues);
52795
+ setIsOpen(false);
52796
+ (_triggerRef$current3 = triggerRef.current) === null || _triggerRef$current3 === void 0 || _triggerRef$current3.focus();
52797
+ };
52798
+ const closePopover = () => {
52799
+ var _triggerRef$current4;
52800
+ setIsOpen(false);
52801
+ (_triggerRef$current4 = triggerRef.current) === null || _triggerRef$current4 === void 0 || _triggerRef$current4.focus();
52802
+ };
52803
+ const renderContext = {
52804
+ isOpen,
52805
+ selectedValues: localSelectedValues,
52806
+ setSelectedValues: setLocalSelectedValues,
52807
+ toggleValue,
52808
+ searchTerm,
52809
+ setSearchTerm,
52810
+ filteredOptions,
52811
+ closePopover
52812
+ };
52813
+ const resolvedChildren = typeof children === "function" ? children(renderContext) : children;
52814
+ const resolvedFooter = typeof footer === "function" ? footer(renderContext) : footer;
52815
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsxs)("div", _objectSpread(_objectSpread({
52816
+ ref: containerRef,
52817
+ className: (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("relative inline-flex", className),
52818
+ "data-cy": (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_8__.getDataCy)({
52819
+ name,
52820
+ dataCy
52821
+ })
52822
+ }, rest), {}, {
52823
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(_IconButton_IconButton__WEBPACK_IMPORTED_MODULE_6__["default"], {
52824
+ ref: triggerRef,
52825
+ type: "button",
52826
+ rank: isOpen ? "primary" : "outline",
52827
+ title: "Open filters",
52828
+ "aria-label": "Open filters",
52829
+ "aria-haspopup": "dialog",
52830
+ "aria-expanded": isOpen,
52831
+ "aria-controls": panelId,
52832
+ name: name,
52833
+ dataCy: dataCy ? "".concat(dataCy, "-trigger") : undefined,
52834
+ icon: triggerIcon,
52835
+ iconName: "",
52836
+ onClick: togglePopover,
52837
+ onKeyDown: handleTriggerKeyDown
52838
+ }), isOpen && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("div", {
52839
+ ref: panelRef,
52840
+ id: panelId,
52841
+ role: "dialog",
52842
+ "aria-modal": "false",
52843
+ "aria-label": "Filter options",
52844
+ className: panelClasses,
52845
+ children: hasCustomContent ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.Fragment, {
52846
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("div", {
52847
+ className: (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("p-4", bodyClassName),
52848
+ children: resolvedChildren
52849
+ }), resolvedFooter && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("div", {
52850
+ className: "border-t border-[--color-stroke] p-4",
52851
+ children: resolvedFooter
52852
+ })]
52853
+ }) : /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.Fragment, {
52854
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("div", {
52855
+ className: "border-b border-[--color-stroke] p-4 pb-0",
52856
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(_Inputs_Input__WEBPACK_IMPORTED_MODULE_5__["default"], {
52857
+ ref: searchInputRef,
52858
+ label: "Search",
52859
+ hideLabel: true,
52860
+ type: "search",
52861
+ name: "".concat(name, "-search"),
52862
+ placeholder: placeholder,
52863
+ value: searchTerm,
52864
+ onChange: event => setSearchTerm(event.target.value),
52865
+ dataCy: dataCy ? "".concat(dataCy, "-search") : undefined,
52866
+ className: "mb-0",
52867
+ onKeyDown: handleSearchKeyDown
52868
+ })
52869
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("div", {
52870
+ className: "border-b border-[--color-stroke] p-4 pt-4",
52871
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsxs)("div", {
52872
+ id: listboxId,
52873
+ role: "listbox",
52874
+ "aria-multiselectable": "true",
52875
+ className: "max-h-60 space-y-1 overflow-y-auto pr-1",
52876
+ children: [filteredOptions.length === 0 && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_7__["default"], {
52877
+ variant: "small",
52878
+ className: "px-3 py-2 text-[--color-text-weak]",
52879
+ children: "No options found."
52880
+ }), filteredOptions.map((option, index) => {
52881
+ const isSelected = localSelectedValues.includes(option.value);
52882
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("button", {
52883
+ ref: node => setOptionRef(index, node),
52884
+ type: "button",
52885
+ role: "option",
52886
+ "aria-selected": isSelected,
52887
+ className: "flex w-full items-center gap-3 rounded-md px-3 py-2 text-left focus:outline-none",
52888
+ "data-cy": dataCy ? "".concat(dataCy, "-option-").concat(option.value) : undefined,
52889
+ onClick: () => toggleValue(option.value),
52890
+ onKeyDown: event => handleOptionKeyDown(event, index),
52891
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(_Checkbox_Checkbox__WEBPACK_IMPORTED_MODULE_4__["default"], {
52892
+ label: option.label,
52893
+ name: "".concat(name, "-").concat(option.value),
52894
+ value: isSelected,
52895
+ className: "pointer-events-none mb-0",
52896
+ dataCy: dataCy ? "".concat(dataCy, "-checkbox-").concat(option.value) : undefined
52897
+ })
52898
+ }, option.value);
52899
+ })]
52900
+ })
52901
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)("div", {
52902
+ className: "p-4 pt-4",
52903
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_9__.jsx)(_Buttons_Button__WEBPACK_IMPORTED_MODULE_3__["default"], {
52904
+ text: buttonLabel,
52905
+ isFullWidth: true,
52906
+ state: localSelectedValues.length > 0 ? "default" : "disabled",
52907
+ onClick: handleApply,
52908
+ dataCy: dataCy ? "".concat(dataCy, "-apply") : undefined
52909
+ })
52910
+ })]
52911
+ })
52912
+ })]
52913
+ }));
52914
+ }
52915
+
52916
+ /***/ }),
52917
+
52045
52918
  /***/ 80184:
52046
52919
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
52047
52920
 
@@ -52959,6 +53832,142 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(B
52959
53832
 
52960
53833
  /***/ }),
52961
53834
 
53835
+ /***/ 81859:
53836
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
53837
+
53838
+ __webpack_require__.r(__webpack_exports__);
53839
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
53840
+ /* harmony export */ "default": () => (/* binding */ FileUploadCard)
53841
+ /* harmony export */ });
53842
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
53843
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
53844
+ /* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(34164);
53845
+ /* harmony import */ var _Card__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(76526);
53846
+ /* harmony import */ var _Icon_Icon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(57739);
53847
+ /* harmony import */ var _IconButton_IconButton__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(43155);
53848
+ /* harmony import */ var _Text_Text__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(21111);
53849
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(94178);
53850
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__);
53851
+ const _excluded = ["fileName", "uploadedDate", "previewSrc", "previewAlt", "preview", "action", "downloadTitle", "onDownload", "className"];
53852
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
53853
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
53854
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
53855
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
53856
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
53857
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
53858
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
53859
+
53860
+
53861
+
53862
+
53863
+
53864
+
53865
+
53866
+ /**
53867
+ * Props for the FileUploadCard component.
53868
+ *
53869
+ * @typedef {Object} FileUploadCardProps
53870
+ * @property {string} fileName
53871
+ * Display name of the uploaded file.
53872
+ * @property {string} uploadedDate
53873
+ * Uploaded date text shown under the file name.
53874
+ * @property {string} [previewSrc]
53875
+ * Optional image preview source.
53876
+ * @property {string} [previewAlt]
53877
+ * Alt text for the image preview.
53878
+ * @property {React.ReactNode} [preview]
53879
+ * Optional custom preview content. Takes precedence over previewSrc.
53880
+ * @property {React.ReactNode} [action]
53881
+ * Optional custom action rendered on the right side of the footer section.
53882
+ * @property {string} [downloadTitle]
53883
+ * Accessible label for the download button.
53884
+ * @property {(event: React.MouseEvent<HTMLButtonElement>) => void} [onDownload]
53885
+ * Fired when the download button is clicked.
53886
+ * @property {string} [className]
53887
+ * Optional wrapper class names.
53888
+ */
53889
+
53890
+ /**
53891
+ * File upload card with large preview region and download action.
53892
+ *
53893
+ * @param {FileUploadCardProps & React.HTMLAttributes<HTMLDivElement>} props
53894
+ */
53895
+
53896
+ function FileUploadCard(_ref) {
53897
+ let {
53898
+ fileName,
53899
+ uploadedDate,
53900
+ previewSrc,
53901
+ previewAlt = "",
53902
+ preview,
53903
+ action,
53904
+ downloadTitle = "Download file",
53905
+ onDownload,
53906
+ className = ""
53907
+ } = _ref,
53908
+ rest = _objectWithoutProperties(_ref, _excluded);
53909
+ const previewContent = preview !== null && preview !== void 0 ? preview : previewSrc ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)("img", {
53910
+ src: previewSrc,
53911
+ alt: previewAlt,
53912
+ className: "h-full w-full object-cover"
53913
+ }) : /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)("div", {
53914
+ className: "flex h-40 w-32 items-center justify-center rounded-[2rem] bg-[--color-primary-bg] shadow-md",
53915
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)(_Icon_Icon__WEBPACK_IMPORTED_MODULE_3__["default"], {
53916
+ name: "DocumentTextIcon",
53917
+ library: "hero",
53918
+ size: 72,
53919
+ className: "text-[--color-text-strong]"
53920
+ })
53921
+ });
53922
+ const resolvedAction = action !== null && action !== void 0 ? action : /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)(_IconButton_IconButton__WEBPACK_IMPORTED_MODULE_4__["default"], {
53923
+ rank: "outline",
53924
+ size: "md",
53925
+ title: downloadTitle,
53926
+ iconName: "ArrowDownTrayIcon",
53927
+ iconLibrary: "hero",
53928
+ className: "shrink-0",
53929
+ onClick: onDownload
53930
+ });
53931
+ const cardClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("flex h-full min-h-[22rem] flex-col overflow-hidden rounded border border-[--color-stroke] bg-[--color-primary-bg] p-0 text-[--color-text-strong] shadow-none", className);
53932
+ const previewClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("flex min-h-[16rem] flex-1 items-center justify-center overflow-hidden bg-[--color-secondary-bg]");
53933
+ const footerClasses = (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])("flex items-end gap-4 border-t border-[--color-stroke] bg-[--color-primary-bg] p-4 sm:p-5");
53934
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsxs)(_Card__WEBPACK_IMPORTED_MODULE_2__["default"], _objectSpread(_objectSpread({
53935
+ className: cardClasses
53936
+ }, rest), {}, {
53937
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)("div", {
53938
+ className: previewClasses,
53939
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)("div", {
53940
+ className: "flex h-full w-full items-center justify-center overflow-hidden",
53941
+ children: previewContent
53942
+ })
53943
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsxs)("div", {
53944
+ className: footerClasses,
53945
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsxs)("div", {
53946
+ className: "min-w-0 flex-1",
53947
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_5__["default"], {
53948
+ variant: "h4",
53949
+ as: "div",
53950
+ color: "text-[--color-text-strong]",
53951
+ className: "truncate text-xl leading-tight",
53952
+ title: fileName,
53953
+ children: fileName
53954
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsxs)(_Text_Text__WEBPACK_IMPORTED_MODULE_5__["default"], {
53955
+ variant: "body",
53956
+ as: "div",
53957
+ color: "text-[--color-text-weak]",
53958
+ className: "mt-1",
53959
+ children: ["Uploaded: ", uploadedDate]
53960
+ })]
53961
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)("div", {
53962
+ className: "shrink-0",
53963
+ children: resolvedAction
53964
+ })]
53965
+ })]
53966
+ }));
53967
+ }
53968
+
53969
+ /***/ }),
53970
+
52962
53971
  /***/ 82008:
52963
53972
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
52964
53973
 
@@ -53115,6 +54124,178 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(C
53115
54124
 
53116
54125
  /***/ }),
53117
54126
 
54127
+ /***/ 82347:
54128
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
54129
+
54130
+ __webpack_require__.r(__webpack_exports__);
54131
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
54132
+ /* harmony export */ "default": () => (/* binding */ Callout)
54133
+ /* harmony export */ });
54134
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
54135
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
54136
+ /* harmony import */ var _utils_getDataCy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(67339);
54137
+ /* harmony import */ var _Icon_Icon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(57739);
54138
+ /* harmony import */ var _Text_Text__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(21111);
54139
+ /* harmony import */ var _callout_scss__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(1443);
54140
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(94178);
54141
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__);
54142
+ const _excluded = ["message", "tone", "className", "name", "dataCy"];
54143
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
54144
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
54145
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
54146
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
54147
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
54148
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
54149
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
54150
+
54151
+
54152
+
54153
+
54154
+
54155
+
54156
+ const toneStyles = {
54157
+ green: "bg-[--color-util-green]",
54158
+ amber: "bg-[--color-util-yellow]",
54159
+ red: "bg-[--color-util-red]",
54160
+ pink: "bg-[--color-primary]"
54161
+ };
54162
+ const toneTextStyles = {
54163
+ green: "text-[--color-black]",
54164
+ amber: "text-[--color-black]",
54165
+ red: "text-[--color-white]",
54166
+ pink: "text-[--color-white]"
54167
+ };
54168
+
54169
+ /**
54170
+ * Props for the Callout component.
54171
+ *
54172
+ * @typedef {Object} CalloutProps
54173
+ *
54174
+ * @property {string} message
54175
+ * The message shown inside the callout bar.
54176
+ *
54177
+ * @property {"green" | "amber" | "red" | "pink"} [tone]
54178
+ * Visual style of the callout bar.
54179
+ *
54180
+ * @property {string} [className]
54181
+ * Optional wrapper class names.
54182
+ *
54183
+ * @property {string} [name]
54184
+ * Optional name for testing/automation.
54185
+ *
54186
+ * @property {string} [dataCy]
54187
+ * Optional data-cy override.
54188
+ */
54189
+
54190
+ /**
54191
+ * Callout notification bar for short, high-visibility messages.
54192
+ *
54193
+ * @param {CalloutProps & React.HTMLAttributes<HTMLDivElement>} props
54194
+ */
54195
+ function Callout(_ref) {
54196
+ let {
54197
+ message,
54198
+ tone = "green",
54199
+ className = "",
54200
+ name,
54201
+ dataCy
54202
+ } = _ref,
54203
+ rest = _objectWithoutProperties(_ref, _excluded);
54204
+ const normalizedMessage = typeof message === "string" ? message.trim() : message;
54205
+ const viewportRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
54206
+ const measureRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
54207
+ const [tickerMetrics, setTickerMetrics] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)({
54208
+ isActive: false,
54209
+ width: 0
54210
+ });
54211
+ (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
54212
+ if (!normalizedMessage) {
54213
+ setTickerMetrics({
54214
+ isActive: false,
54215
+ width: 0
54216
+ });
54217
+ return;
54218
+ }
54219
+ const measureOverflow = () => {
54220
+ if (!viewportRef.current || !measureRef.current) return;
54221
+ const textWidth = measureRef.current.scrollWidth;
54222
+ const viewportWidth = viewportRef.current.clientWidth;
54223
+ setTickerMetrics({
54224
+ isActive: textWidth - viewportWidth > 1,
54225
+ width: textWidth
54226
+ });
54227
+ };
54228
+ measureOverflow();
54229
+ if (typeof ResizeObserver === "undefined") {
54230
+ window.addEventListener("resize", measureOverflow);
54231
+ return () => window.removeEventListener("resize", measureOverflow);
54232
+ }
54233
+ const resizeObserver = new ResizeObserver(() => {
54234
+ measureOverflow();
54235
+ });
54236
+ resizeObserver.observe(viewportRef.current);
54237
+ resizeObserver.observe(measureRef.current);
54238
+ return () => resizeObserver.disconnect();
54239
+ }, [normalizedMessage]);
54240
+ const tickerGap = 32;
54241
+ const tickerDuration = Math.max(12, (tickerMetrics.width + tickerGap) / 70);
54242
+ const isTickerActive = Boolean(normalizedMessage) && tickerMetrics.isActive;
54243
+ const textColorClass = toneTextStyles[tone] || toneTextStyles.green;
54244
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("div", _objectSpread(_objectSpread(_objectSpread({
54245
+ className: "inline-flex max-w-full items-center gap-3 overflow-hidden rounded-full px-4 py-3 ".concat(toneStyles[tone] || toneStyles.green, " ").concat(className),
54246
+ role: "status"
54247
+ }, rest), (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_1__.getDataCy)({
54248
+ name,
54249
+ dataCy
54250
+ })), {}, {
54251
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(_Icon_Icon__WEBPACK_IMPORTED_MODULE_2__["default"], {
54252
+ name: "MegaphoneIcon",
54253
+ library: "hero",
54254
+ size: 20,
54255
+ className: "shrink-0 ".concat(textColorClass),
54256
+ "aria-hidden": "true"
54257
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("span", {
54258
+ ref: viewportRef,
54259
+ className: "relative min-w-0 overflow-hidden ".concat(isTickerActive ? "callout-ticker-viewport" : ""),
54260
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)("span", {
54261
+ ref: measureRef,
54262
+ className: "pointer-events-none absolute left-0 top-0 whitespace-nowrap text-base leading-[1.2] opacity-0 ".concat(textColorClass),
54263
+ "aria-hidden": "true",
54264
+ children: normalizedMessage
54265
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_3__["default"], {
54266
+ as: "span",
54267
+ variant: "body",
54268
+ color: textColorClass,
54269
+ className: "block whitespace-nowrap leading-[1.2] ".concat(isTickerActive ? "sr-only" : ""),
54270
+ children: normalizedMessage
54271
+ }), isTickerActive ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsxs)("span", {
54272
+ className: "callout-ticker",
54273
+ style: {
54274
+ "--callout-ticker-distance": "".concat(tickerMetrics.width + tickerGap, "px"),
54275
+ "--callout-ticker-duration": "".concat(tickerDuration, "s"),
54276
+ "--callout-ticker-gap": "".concat(tickerGap, "px")
54277
+ },
54278
+ children: [/*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_3__["default"], {
54279
+ as: "span",
54280
+ variant: "body",
54281
+ color: textColorClass,
54282
+ className: "whitespace-nowrap leading-[1.2]",
54283
+ children: normalizedMessage
54284
+ }), /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_5__.jsx)(_Text_Text__WEBPACK_IMPORTED_MODULE_3__["default"], {
54285
+ as: "span",
54286
+ variant: "body",
54287
+ color: textColorClass,
54288
+ className: "whitespace-nowrap leading-[1.2]",
54289
+ "aria-hidden": "true",
54290
+ children: normalizedMessage
54291
+ })]
54292
+ }) : null]
54293
+ })]
54294
+ }));
54295
+ }
54296
+
54297
+ /***/ }),
54298
+
53118
54299
  /***/ 82388:
53119
54300
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
53120
54301
 
@@ -57658,7 +58839,7 @@ __webpack_require__.r(__webpack_exports__);
57658
58839
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
57659
58840
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(94178);
57660
58841
  /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__);
57661
- const _excluded = ["text", "status", "className", "icon"];
58842
+ const _excluded = ["text", "status", "className", "icon", "iconPosition", "onIconClick"];
57662
58843
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
57663
58844
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
57664
58845
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
@@ -57677,35 +58858,46 @@ const statusClasses = {
57677
58858
  notice: "bg-[--color-util-yellow] text-[--color-black]"
57678
58859
  };
57679
58860
 
57680
- /**
57681
- * Allowed pill status values.
57682
- * @typedef {'primary'|'danger'|'warning'|'success'|'info'|'notice'} PillStatus
58861
+ /**
58862
+ * Allowed pill status values.
58863
+ * @typedef {'primary'|'danger'|'warning'|'success'|'info'|'notice'} PillStatus
57683
58864
  */
57684
58865
 
57685
- /**
57686
- * Icon component type — any valid SVG React component.
57687
- * @typedef {(props: React.SVGProps<SVGSVGElement>) => JSX.Element} IconComponent
58866
+ /**
58867
+ * Icon component type — any valid SVG React component.
58868
+ * @typedef {(props: React.SVGProps<SVGSVGElement>) => JSX.Element} IconComponent
57688
58869
  */
57689
58870
 
57690
- /**
57691
- * Props for the Pill component.
57692
- *
57693
- * @typedef {Object} PillProps
57694
- * @property {string} [text='']
57695
- * Text displayed inside the pill.
57696
- *
57697
- * @property {PillStatus} [status='info']
57698
- * Determines visual colors of the pill.
57699
- *
57700
- * @property {string} [className]
57701
- * Additional class names.
57702
- *
57703
- * @property {IconComponent} [icon]
57704
- * Optional icon displayed before the text.
58871
+ /**
58872
+ * Allowed icon placement values.
58873
+ * @typedef {'left'|'right'} PillIconPosition
57705
58874
  */
57706
58875
 
57707
- /**
57708
- * @param {PillProps & React.HTMLAttributes<HTMLSpanElement>} props
58876
+ /**
58877
+ * Props for the Pill component.
58878
+ *
58879
+ * @typedef {Object} PillProps
58880
+ * @property {string} [text='']
58881
+ * Text displayed inside the pill.
58882
+ *
58883
+ * @property {PillStatus} [status='info']
58884
+ * Determines visual colors of the pill.
58885
+ *
58886
+ * @property {string} [className]
58887
+ * Additional class names.
58888
+ *
58889
+ * @property {IconComponent} [icon]
58890
+ * Optional icon displayed alongside the text.
58891
+ *
58892
+ * @property {PillIconPosition} [iconPosition='left']
58893
+ * Controls whether the icon appears before or after the text.
58894
+ *
58895
+ * @property {(event: React.MouseEvent<HTMLButtonElement>) => void} [onIconClick]
58896
+ * Optional click handler for the icon action button.
58897
+ */
58898
+
58899
+ /**
58900
+ * @param {PillProps & React.HTMLAttributes<HTMLSpanElement>} props
57709
58901
  */
57710
58902
 
57711
58903
  const Pill = _ref => {
@@ -57713,17 +58905,32 @@ const Pill = _ref => {
57713
58905
  text = "",
57714
58906
  status = "info",
57715
58907
  className = "",
57716
- icon: Icon
58908
+ icon: Icon,
58909
+ iconPosition = "left",
58910
+ onIconClick
57717
58911
  } = _ref,
57718
58912
  rest = _objectWithoutProperties(_ref, _excluded);
57719
58913
  const baseClasses = "inline-flex items-center gap-1 text-xs font-medium px-3 py-1 rounded-full";
57720
58914
  const statusClass = statusClasses[status] || statusClasses.info;
58915
+ const iconClasses = "h-4 w-4";
58916
+ const iconElement = Icon ? onIconClick ? /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("button", {
58917
+ type: "button",
58918
+ onClick: event => {
58919
+ event.stopPropagation();
58920
+ onIconClick(event);
58921
+ },
58922
+ className: "inline-flex items-center justify-center rounded-full focus:outline-none",
58923
+ "aria-label": "Pill icon action",
58924
+ children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(Icon, {
58925
+ className: iconClasses
58926
+ })
58927
+ }) : /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(Icon, {
58928
+ className: iconClasses
58929
+ }) : null;
57721
58930
  return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)("span", _objectSpread(_objectSpread({
57722
58931
  className: "".concat(baseClasses, " ").concat(statusClass, " ").concat(className)
57723
58932
  }, rest), {}, {
57724
- children: [Icon && /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(Icon, {
57725
- className: "h-4 w-4"
57726
- }), text]
58933
+ children: [iconPosition === "left" ? iconElement : null, text, iconPosition === "right" ? iconElement : null]
57727
58934
  }));
57728
58935
  };
57729
58936
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Pill);
@@ -62928,6 +64135,89 @@ const ForwardRef = /*#__PURE__*/ react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(C
62928
64135
 
62929
64136
  /***/ }),
62930
64137
 
64138
+ /***/ 97670:
64139
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
64140
+
64141
+ __webpack_require__.r(__webpack_exports__);
64142
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
64143
+ /* harmony export */ "default": () => (/* binding */ PillButton)
64144
+ /* harmony export */ });
64145
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9206);
64146
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
64147
+ /* harmony import */ var _utils_getDataCy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(67339);
64148
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(94178);
64149
+ /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__);
64150
+ const _excluded = ["label", "active", "className", "name", "dataCy", "onClick", "onPress", "type"];
64151
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
64152
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
64153
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
64154
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
64155
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
64156
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
64157
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
64158
+
64159
+
64160
+
64161
+ const stateClasses = {
64162
+ default: "bg-[--color-input-bg] text-[--color-text-strong] border border-[--color-stroke] hover:border-[--color-text-strong]",
64163
+ active: "bg-[--color-primary] text-[--color-primary-btn-txt] border border-[--color-primary] hover:bg-[--color-primary-hover] hover:border-[--color-primary-hover]"
64164
+ };
64165
+
64166
+ /**
64167
+ * Props for the PillButton component.
64168
+ *
64169
+ * @typedef {Object} PillButtonProps
64170
+ * @property {React.ReactNode} label
64171
+ * Content displayed inside the pill button.
64172
+ * @property {boolean} [active=false]
64173
+ * Whether the pill is in its selected state.
64174
+ * @property {string} [className]
64175
+ * Additional class names.
64176
+ * @property {string} [name]
64177
+ * Standard HTML name attribute and data-cy source.
64178
+ * @property {string} [dataCy]
64179
+ * Override for auto-generated test selector.
64180
+ * @property {(event: React.MouseEvent<HTMLButtonElement>) => void} [onClick]
64181
+ * Click handler.
64182
+ * @property {(event: React.MouseEvent<HTMLButtonElement>) => void} [onPress]
64183
+ * Alias for onClick.
64184
+ */
64185
+
64186
+ /**
64187
+ * Single pill-shaped button with controlled active state.
64188
+ *
64189
+ * @param {PillButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement>} props
64190
+ */
64191
+ function PillButton(_ref) {
64192
+ let {
64193
+ label,
64194
+ active = false,
64195
+ className = "",
64196
+ name,
64197
+ dataCy,
64198
+ onClick,
64199
+ onPress,
64200
+ type = "button"
64201
+ } = _ref,
64202
+ rest = _objectWithoutProperties(_ref, _excluded);
64203
+ const resolvedStateClass = active ? stateClasses.active : stateClasses.default;
64204
+ const classNames = "\n ".concat(resolvedStateClass, "\n inline-flex\n items-center\n justify-center\n rounded-full\n px-4\n py-1.5\n text-sm\n font-medium\n whitespace-nowrap\n transition\n ease-in-out\n duration-700\n hover:shadow-lg\n focus:outline-none\n ").concat(className, "\n ");
64205
+ const handleClick = onClick || onPress;
64206
+ return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__.jsx)("button", _objectSpread(_objectSpread(_objectSpread({
64207
+ type: type,
64208
+ name: name,
64209
+ className: classNames,
64210
+ onClick: handleClick
64211
+ }, rest), (0,_utils_getDataCy__WEBPACK_IMPORTED_MODULE_1__.getDataCy)({
64212
+ name,
64213
+ dataCy
64214
+ })), {}, {
64215
+ children: label
64216
+ }));
64217
+ }
64218
+
64219
+ /***/ }),
64220
+
62931
64221
  /***/ 97739:
62932
64222
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
62933
64223
 
@@ -63998,52 +65288,73 @@ var __webpack_exports__ = {};
63998
65288
  __webpack_require__.r(__webpack_exports__);
63999
65289
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
64000
65290
  /* harmony export */ Accordion: () => (/* reexport safe */ _components_Accordions_Accordion__WEBPACK_IMPORTED_MODULE_0__["default"]),
64001
- /* harmony export */ BarLayout: () => (/* reexport safe */ _components_BarLayout_BarLayout__WEBPACK_IMPORTED_MODULE_20__["default"]),
65291
+ /* harmony export */ BarLayout: () => (/* reexport safe */ _components_BarLayout_BarLayout__WEBPACK_IMPORTED_MODULE_27__["default"]),
64002
65292
  /* harmony export */ Button: () => (/* reexport safe */ _components_Buttons_Button__WEBPACK_IMPORTED_MODULE_1__["default"]),
65293
+ /* harmony export */ Callout: () => (/* reexport safe */ _components_Callout_Callout__WEBPACK_IMPORTED_MODULE_5__["default"]),
64003
65294
  /* harmony export */ Card: () => (/* reexport safe */ _components_Cards_Card__WEBPACK_IMPORTED_MODULE_2__["default"]),
64004
- /* harmony export */ Checkbox: () => (/* reexport safe */ _components_Forms_Checkbox_Checkbox__WEBPACK_IMPORTED_MODULE_6__["default"]),
64005
- /* harmony export */ CookieBanner: () => (/* reexport safe */ _components_Cookie_Cookie__WEBPACK_IMPORTED_MODULE_13__["default"]),
64006
- /* harmony export */ DatePicker: () => (/* reexport safe */ _components_Forms_Datepickers_DatePicker__WEBPACK_IMPORTED_MODULE_4__["default"]),
64007
- /* harmony export */ Dropdown: () => (/* reexport safe */ _components_Forms_Dropdowns_Dropdown__WEBPACK_IMPORTED_MODULE_8__["default"]),
64008
- /* harmony export */ Footer: () => (/* reexport safe */ _components_Footer_Footer__WEBPACK_IMPORTED_MODULE_18__["default"]),
64009
- /* harmony export */ Header: () => (/* reexport safe */ _components_Header_Header__WEBPACK_IMPORTED_MODULE_16__["default"]),
64010
- /* harmony export */ Icon: () => (/* reexport safe */ _components_Icon_Icon__WEBPACK_IMPORTED_MODULE_17__["default"]),
64011
- /* harmony export */ IconButton: () => (/* reexport safe */ _components_IconButton_IconButton__WEBPACK_IMPORTED_MODULE_22__["default"]),
64012
- /* harmony export */ Input: () => (/* reexport safe */ _components_Forms_Inputs_Input__WEBPACK_IMPORTED_MODULE_3__["default"]),
64013
- /* harmony export */ Loader: () => (/* reexport safe */ _components_Loader_Loader__WEBPACK_IMPORTED_MODULE_11__["default"]),
64014
- /* harmony export */ Modal: () => (/* reexport safe */ _components_Modals_Modal__WEBPACK_IMPORTED_MODULE_10__["default"]),
64015
- /* harmony export */ Navbar: () => (/* reexport safe */ _components_Navbar_Navbar__WEBPACK_IMPORTED_MODULE_9__["default"]),
64016
- /* harmony export */ PageTemplate: () => (/* reexport safe */ _components_PageTemplate_PageTemplate__WEBPACK_IMPORTED_MODULE_19__["default"]),
64017
- /* harmony export */ Pill: () => (/* reexport safe */ _components_Pills_Pill__WEBPACK_IMPORTED_MODULE_12__["default"]),
64018
- /* harmony export */ ProfileCard: () => (/* reexport safe */ _components_Profile_ProfileCard_ProfileCard__WEBPACK_IMPORTED_MODULE_21__["default"]),
64019
- /* harmony export */ RadioButton: () => (/* reexport safe */ _components_Forms_Radios_RadioButton__WEBPACK_IMPORTED_MODULE_5__["default"]),
64020
- /* harmony export */ Sidebar: () => (/* reexport safe */ _components_Sidebar_Sidebar__WEBPACK_IMPORTED_MODULE_15__["default"]),
64021
- /* harmony export */ Table: () => (/* reexport safe */ _components_Tables_Table__WEBPACK_IMPORTED_MODULE_7__["default"]),
64022
- /* harmony export */ Text: () => (/* reexport safe */ _components_Text_Text__WEBPACK_IMPORTED_MODULE_14__["default"])
65295
+ /* harmony export */ CardItem: () => (/* reexport safe */ _components_Cards_CardItem__WEBPACK_IMPORTED_MODULE_3__["default"]),
65296
+ /* harmony export */ Checkbox: () => (/* reexport safe */ _components_Forms_Checkbox_Checkbox__WEBPACK_IMPORTED_MODULE_10__["default"]),
65297
+ /* harmony export */ CookieBanner: () => (/* reexport safe */ _components_Cookie_Cookie__WEBPACK_IMPORTED_MODULE_19__["default"]),
65298
+ /* harmony export */ DatePicker: () => (/* reexport safe */ _components_Forms_Datepickers_DatePicker__WEBPACK_IMPORTED_MODULE_7__["default"]),
65299
+ /* harmony export */ Dropdown: () => (/* reexport safe */ _components_Forms_Dropdowns_Dropdown__WEBPACK_IMPORTED_MODULE_13__["default"]),
65300
+ /* harmony export */ FileUploadCard: () => (/* reexport safe */ _components_Cards_FileUploadCard__WEBPACK_IMPORTED_MODULE_4__["default"]),
65301
+ /* harmony export */ FilterPopover: () => (/* reexport safe */ _components_Forms_FilterPopover_FilterPopover__WEBPACK_IMPORTED_MODULE_11__["default"]),
65302
+ /* harmony export */ Footer: () => (/* reexport safe */ _components_Footer_Footer__WEBPACK_IMPORTED_MODULE_24__["default"]),
65303
+ /* harmony export */ FooterLogo: () => (/* reexport safe */ _components_FooterLogo_FooterLogo__WEBPACK_IMPORTED_MODULE_25__["default"]),
65304
+ /* harmony export */ Header: () => (/* reexport safe */ _components_Header_Header__WEBPACK_IMPORTED_MODULE_22__["default"]),
65305
+ /* harmony export */ Icon: () => (/* reexport safe */ _components_Icon_Icon__WEBPACK_IMPORTED_MODULE_23__["default"]),
65306
+ /* harmony export */ IconButton: () => (/* reexport safe */ _components_IconButton_IconButton__WEBPACK_IMPORTED_MODULE_29__["default"]),
65307
+ /* harmony export */ Input: () => (/* reexport safe */ _components_Forms_Inputs_Input__WEBPACK_IMPORTED_MODULE_6__["default"]),
65308
+ /* harmony export */ Loader: () => (/* reexport safe */ _components_Loader_Loader__WEBPACK_IMPORTED_MODULE_16__["default"]),
65309
+ /* harmony export */ Modal: () => (/* reexport safe */ _components_Modals_Modal__WEBPACK_IMPORTED_MODULE_15__["default"]),
65310
+ /* harmony export */ Navbar: () => (/* reexport safe */ _components_Navbar_Navbar__WEBPACK_IMPORTED_MODULE_14__["default"]),
65311
+ /* harmony export */ PageTemplate: () => (/* reexport safe */ _components_PageTemplate_PageTemplate__WEBPACK_IMPORTED_MODULE_26__["default"]),
65312
+ /* harmony export */ Pill: () => (/* reexport safe */ _components_Pills_Pill__WEBPACK_IMPORTED_MODULE_17__["default"]),
65313
+ /* harmony export */ PillButton: () => (/* reexport safe */ _components_Pills_PillButton__WEBPACK_IMPORTED_MODULE_18__["default"]),
65314
+ /* harmony export */ ProfileCard: () => (/* reexport safe */ _components_Profile_ProfileCard_ProfileCard__WEBPACK_IMPORTED_MODULE_28__["default"]),
65315
+ /* harmony export */ RadioButton: () => (/* reexport safe */ _components_Forms_Radios_RadioButton__WEBPACK_IMPORTED_MODULE_9__["default"]),
65316
+ /* harmony export */ Sidebar: () => (/* reexport safe */ _components_Sidebar_Sidebar__WEBPACK_IMPORTED_MODULE_21__["default"]),
65317
+ /* harmony export */ Table: () => (/* reexport safe */ _components_Tables_Table__WEBPACK_IMPORTED_MODULE_12__["default"]),
65318
+ /* harmony export */ Text: () => (/* reexport safe */ _components_Text_Text__WEBPACK_IMPORTED_MODULE_20__["default"]),
65319
+ /* harmony export */ ToggleSwitch: () => (/* reexport safe */ _components_Forms_ToggleSwitch_ToggleSwitch__WEBPACK_IMPORTED_MODULE_8__["default"])
64023
65320
  /* harmony export */ });
64024
65321
  /* harmony import */ var _components_Accordions_Accordion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(43614);
64025
65322
  /* harmony import */ var _components_Buttons_Button__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(74670);
64026
65323
  /* harmony import */ var _components_Cards_Card__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(76526);
64027
- /* harmony import */ var _components_Forms_Inputs_Input__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(38014);
64028
- /* harmony import */ var _components_Forms_Datepickers_DatePicker__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(70430);
64029
- /* harmony import */ var _components_Forms_Radios_RadioButton__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(16720);
64030
- /* harmony import */ var _components_Forms_Checkbox_Checkbox__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(56067);
64031
- /* harmony import */ var _components_Tables_Table__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(28966);
64032
- /* harmony import */ var _components_Forms_Dropdowns_Dropdown__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(85894);
64033
- /* harmony import */ var _components_Navbar_Navbar__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(21097);
64034
- /* harmony import */ var _components_Modals_Modal__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(50548);
64035
- /* harmony import */ var _components_Loader_Loader__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(77695);
64036
- /* harmony import */ var _components_Pills_Pill__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(89714);
64037
- /* harmony import */ var _components_Cookie_Cookie__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(44609);
64038
- /* harmony import */ var _components_Text_Text__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(21111);
64039
- /* harmony import */ var _components_Sidebar_Sidebar__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(11775);
64040
- /* harmony import */ var _components_Header_Header__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(38195);
64041
- /* harmony import */ var _components_Icon_Icon__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(57739);
64042
- /* harmony import */ var _components_Footer_Footer__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(3047);
64043
- /* harmony import */ var _components_PageTemplate_PageTemplate__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(3179);
64044
- /* harmony import */ var _components_BarLayout_BarLayout__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(7779);
64045
- /* harmony import */ var _components_Profile_ProfileCard_ProfileCard__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(64977);
64046
- /* harmony import */ var _components_IconButton_IconButton__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(43155);
65324
+ /* harmony import */ var _components_Cards_CardItem__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(26831);
65325
+ /* harmony import */ var _components_Cards_FileUploadCard__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(81859);
65326
+ /* harmony import */ var _components_Callout_Callout__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(82347);
65327
+ /* harmony import */ var _components_Forms_Inputs_Input__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(38014);
65328
+ /* harmony import */ var _components_Forms_Datepickers_DatePicker__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(70430);
65329
+ /* harmony import */ var _components_Forms_ToggleSwitch_ToggleSwitch__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(1181);
65330
+ /* harmony import */ var _components_Forms_Radios_RadioButton__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(16720);
65331
+ /* harmony import */ var _components_Forms_Checkbox_Checkbox__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(56067);
65332
+ /* harmony import */ var _components_Forms_FilterPopover_FilterPopover__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(79963);
65333
+ /* harmony import */ var _components_Tables_Table__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(28966);
65334
+ /* harmony import */ var _components_Forms_Dropdowns_Dropdown__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(85894);
65335
+ /* harmony import */ var _components_Navbar_Navbar__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(21097);
65336
+ /* harmony import */ var _components_Modals_Modal__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(50548);
65337
+ /* harmony import */ var _components_Loader_Loader__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(77695);
65338
+ /* harmony import */ var _components_Pills_Pill__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(89714);
65339
+ /* harmony import */ var _components_Pills_PillButton__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(97670);
65340
+ /* harmony import */ var _components_Cookie_Cookie__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(44609);
65341
+ /* harmony import */ var _components_Text_Text__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(21111);
65342
+ /* harmony import */ var _components_Sidebar_Sidebar__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(11775);
65343
+ /* harmony import */ var _components_Header_Header__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(38195);
65344
+ /* harmony import */ var _components_Icon_Icon__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(57739);
65345
+ /* harmony import */ var _components_Footer_Footer__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(3047);
65346
+ /* harmony import */ var _components_FooterLogo_FooterLogo__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(49465);
65347
+ /* harmony import */ var _components_PageTemplate_PageTemplate__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(3179);
65348
+ /* harmony import */ var _components_BarLayout_BarLayout__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(7779);
65349
+ /* harmony import */ var _components_Profile_ProfileCard_ProfileCard__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(64977);
65350
+ /* harmony import */ var _components_IconButton_IconButton__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(43155);
65351
+
65352
+
65353
+
65354
+
65355
+
65356
+
65357
+
64047
65358
 
64048
65359
 
64049
65360