opus-react 0.2.17 → 0.2.19

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/dist/index.cjs CHANGED
@@ -564,7 +564,7 @@ __export(src_exports, {
564
564
  module.exports = __toCommonJS(src_exports);
565
565
 
566
566
  // ../../components/fields/Button/Button.module.css
567
- var Button_default = {"danger":"opus_lZkc26_danger","button":"opus_lZkc26_button","warning":"opus_lZkc26_warning","primary":"opus_lZkc26_primary","success":"opus_lZkc26_success","info":"opus_lZkc26_info","secondary":"opus_lZkc26_secondary","dark":"opus_lZkc26_dark","light":"opus_lZkc26_light","link":"opus_lZkc26_link"};
567
+ var Button_default = {"warning":"opus_lZkc26_warning","button":"opus_lZkc26_button","primary":"opus_lZkc26_primary","dark":"opus_lZkc26_dark","secondary":"opus_lZkc26_secondary","success":"opus_lZkc26_success","info":"opus_lZkc26_info","link":"opus_lZkc26_link","danger":"opus_lZkc26_danger","light":"opus_lZkc26_light"};
568
568
 
569
569
  // ../../components/fields/Button/Button.tsx
570
570
  var import_jsx_runtime = require("react/jsx-runtime");
@@ -586,12 +586,16 @@ var import_react2 = require("react");
586
586
 
587
587
  // ../../components/Tooltip/Tooltip.tsx
588
588
  var import_react = require("react");
589
+ var import_react_dom = require("react-dom");
589
590
 
590
591
  // ../../components/Tooltip/Tooltip.module.css
591
- var Tooltip_default = {"trigger":"opus_R70RbH_trigger","bottom":"opus_R70RbH_bottom","left":"opus_R70RbH_left","top":"opus_R70RbH_top","root":"opus_R70RbH_root","popup":"opus_R70RbH_popup","triggerWrap":"opus_R70RbH_triggerWrap","right":"opus_R70RbH_right"};
592
+ var Tooltip_default = {"left":"opus_R70RbH_left","bottom":"opus_R70RbH_bottom","triggerWrap":"opus_R70RbH_triggerWrap","top":"opus_R70RbH_top","right":"opus_R70RbH_right","arrow":"opus_R70RbH_arrow","root":"opus_R70RbH_root","popup":"opus_R70RbH_popup","trigger":"opus_R70RbH_trigger"};
592
593
 
593
594
  // ../../components/Tooltip/Tooltip.tsx
594
595
  var import_jsx_runtime2 = require("react/jsx-runtime");
596
+ var GAP = 8;
597
+ var VIEWPORT_PADDING = 8;
598
+ var ARROW_HALF = 6;
595
599
  function Tooltip({
596
600
  content,
597
601
  label = "More information",
@@ -602,8 +606,64 @@ function Tooltip({
602
606
  }) {
603
607
  const tooltipId = (0, import_react.useId)();
604
608
  const rootRef = (0, import_react.useRef)(null);
609
+ const popupRef = (0, import_react.useRef)(null);
605
610
  const [open, setOpen] = (0, import_react.useState)(false);
611
+ const [mounted, setMounted] = (0, import_react.useState)(false);
612
+ const [position, setPosition] = (0, import_react.useState)(null);
606
613
  const isVisible = open && !disabled && content.length > 0;
614
+ (0, import_react.useEffect)(() => {
615
+ setMounted(true);
616
+ }, []);
617
+ const updatePosition = (0, import_react.useCallback)(() => {
618
+ const trigger = rootRef.current;
619
+ const popup2 = popupRef.current;
620
+ if (!trigger || !popup2) {
621
+ return;
622
+ }
623
+ const triggerRect = trigger.getBoundingClientRect();
624
+ const popupRect = popup2.getBoundingClientRect();
625
+ const vw = window.innerWidth;
626
+ const vh = window.innerHeight;
627
+ const centerX = triggerRect.left + triggerRect.width / 2;
628
+ const centerY = triggerRect.top + triggerRect.height / 2;
629
+ let left = 0;
630
+ let top = 0;
631
+ let arrowOffset = 0;
632
+ if (placement === "top" || placement === "bottom") {
633
+ top = placement === "top" ? triggerRect.top - popupRect.height - GAP : triggerRect.bottom + GAP;
634
+ const rawLeft = centerX - popupRect.width / 2;
635
+ const maxLeft = vw - popupRect.width - VIEWPORT_PADDING;
636
+ left = Math.min(Math.max(rawLeft, VIEWPORT_PADDING), Math.max(maxLeft, VIEWPORT_PADDING));
637
+ arrowOffset = Math.min(
638
+ Math.max(centerX - left, ARROW_HALF + 2),
639
+ popupRect.width - ARROW_HALF - 2
640
+ );
641
+ } else {
642
+ left = placement === "left" ? triggerRect.left - popupRect.width - GAP : triggerRect.right + GAP;
643
+ const rawTop = centerY - popupRect.height / 2;
644
+ const maxTop = vh - popupRect.height - VIEWPORT_PADDING;
645
+ top = Math.min(Math.max(rawTop, VIEWPORT_PADDING), Math.max(maxTop, VIEWPORT_PADDING));
646
+ arrowOffset = Math.min(
647
+ Math.max(centerY - top, ARROW_HALF + 2),
648
+ popupRect.height - ARROW_HALF - 2
649
+ );
650
+ }
651
+ setPosition({ left, top, arrowOffset });
652
+ }, [placement]);
653
+ (0, import_react.useLayoutEffect)(() => {
654
+ if (!isVisible) {
655
+ setPosition(null);
656
+ return;
657
+ }
658
+ updatePosition();
659
+ const handleReflow = () => updatePosition();
660
+ window.addEventListener("scroll", handleReflow, true);
661
+ window.addEventListener("resize", handleReflow);
662
+ return () => {
663
+ window.removeEventListener("scroll", handleReflow, true);
664
+ window.removeEventListener("resize", handleReflow);
665
+ };
666
+ }, [isVisible, updatePosition]);
607
667
  (0, import_react.useEffect)(() => {
608
668
  if (!isVisible) {
609
669
  return;
@@ -632,14 +692,24 @@ function Tooltip({
632
692
  setOpen(false);
633
693
  }
634
694
  };
635
- const popup = isVisible ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
636
- "span",
637
- {
638
- className: [Tooltip_default.popup, Tooltip_default[placement]].join(" "),
639
- id: tooltipId,
640
- role: "tooltip",
641
- children: content
642
- }
695
+ const isHorizontal = placement === "left" || placement === "right";
696
+ const arrowStyle = position ? isHorizontal ? { top: position.arrowOffset } : { left: position.arrowOffset } : void 0;
697
+ const popup = isVisible && mounted ? (0, import_react_dom.createPortal)(
698
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
699
+ "span",
700
+ {
701
+ ref: popupRef,
702
+ className: [Tooltip_default.popup, Tooltip_default[placement]].join(" "),
703
+ id: tooltipId,
704
+ role: "tooltip",
705
+ style: position ? { left: position.left, top: position.top, visibility: "visible" } : { left: 0, top: 0, visibility: "hidden" },
706
+ children: [
707
+ content,
708
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { "aria-hidden": "true", className: Tooltip_default.arrow, style: arrowStyle })
709
+ ]
710
+ }
711
+ ),
712
+ document.body
643
713
  ) : null;
644
714
  const rootClassName = [Tooltip_default.root, className].filter(Boolean).join(" ");
645
715
  if (children) {
@@ -688,7 +758,7 @@ function Tooltip({
688
758
  }
689
759
 
690
760
  // ../../components/fields/FieldShell/FieldShell.module.css
691
- var FieldShell_default = {"flaggedCenter":"opus_zNi12Z_flaggedCenter","flagged":"opus_zNi12Z_flagged","labelRight":"opus_zNi12Z_labelRight","compactControl":"opus_zNi12Z_compactControl","errorFlagged":"opus_zNi12Z_errorFlagged","stackedRight":"opus_zNi12Z_stackedRight","labelFlagged":"opus_zNi12Z_labelFlagged","fitContent":"opus_zNi12Z_fitContent","required":"opus_zNi12Z_required","error":"opus_zNi12Z_error","label":"opus_zNi12Z_label","flaggedStart":"opus_zNi12Z_flaggedStart","visuallyHidden":"opus_zNi12Z_visuallyHidden","stacked":"opus_zNi12Z_stacked","controlFlagged":"opus_zNi12Z_controlFlagged","control":"opus_zNi12Z_control","stackedLeft":"opus_zNi12Z_stackedLeft","labelLeft":"opus_zNi12Z_labelLeft","root":"opus_zNi12Z_root"};
761
+ var FieldShell_default = {"error":"opus_zNi12Z_error","labelRight":"opus_zNi12Z_labelRight","label":"opus_zNi12Z_label","controlFlagged":"opus_zNi12Z_controlFlagged","flagged":"opus_zNi12Z_flagged","visuallyHidden":"opus_zNi12Z_visuallyHidden","labelFlagged":"opus_zNi12Z_labelFlagged","stacked":"opus_zNi12Z_stacked","flaggedCenter":"opus_zNi12Z_flaggedCenter","labelLeft":"opus_zNi12Z_labelLeft","stackedLeft":"opus_zNi12Z_stackedLeft","fitContent":"opus_zNi12Z_fitContent","flaggedStart":"opus_zNi12Z_flaggedStart","required":"opus_zNi12Z_required","root":"opus_zNi12Z_root","control":"opus_zNi12Z_control","compactControl":"opus_zNi12Z_compactControl","stackedRight":"opus_zNi12Z_stackedRight","errorFlagged":"opus_zNi12Z_errorFlagged"};
692
762
 
693
763
  // ../../components/fields/FieldShell/FieldShell.tsx
694
764
  var import_jsx_runtime3 = require("react/jsx-runtime");
@@ -813,7 +883,7 @@ function FieldShell({
813
883
  }
814
884
 
815
885
  // ../../components/fields/CheckboxField/CheckboxField.module.css
816
- var CheckboxField_default = {"round":"opus_g-5tlR_round","error":"opus_g-5tlR_error","toggle":"opus_g-5tlR_toggle","visual":"opus_g-5tlR_visual","square":"opus_g-5tlR_square","shell":"opus_g-5tlR_shell","nativeInput":"opus_g-5tlR_nativeInput"};
886
+ var CheckboxField_default = {"shell":"opus_g-5tlR_shell","round":"opus_g-5tlR_round","error":"opus_g-5tlR_error","toggle":"opus_g-5tlR_toggle","nativeInput":"opus_g-5tlR_nativeInput","visual":"opus_g-5tlR_visual","square":"opus_g-5tlR_square"};
817
887
 
818
888
  // ../../components/fields/CheckboxField/CheckboxField.tsx
819
889
  var import_jsx_runtime4 = require("react/jsx-runtime");
@@ -870,7 +940,7 @@ function CheckboxField({
870
940
  }
871
941
 
872
942
  // ../../components/fields/ColorField/ColorField.module.css
873
- var ColorField_default = {"icon":"opus_Z7jeX4_icon","picker":"opus_Z7jeX4_picker","nativeInput":"opus_Z7jeX4_nativeInput","value":"opus_Z7jeX4_value","error":"opus_Z7jeX4_error","swatch":"opus_Z7jeX4_swatch"};
943
+ var ColorField_default = {"picker":"opus_Z7jeX4_picker","swatch":"opus_Z7jeX4_swatch","value":"opus_Z7jeX4_value","nativeInput":"opus_Z7jeX4_nativeInput","error":"opus_Z7jeX4_error","icon":"opus_Z7jeX4_icon"};
874
944
 
875
945
  // ../../components/fields/ColorField/ColorField.tsx
876
946
  var import_jsx_runtime5 = require("react/jsx-runtime");
@@ -920,7 +990,7 @@ function ColorField({
920
990
  }
921
991
 
922
992
  // ../../components/fields/DateField/DateField.module.css
923
- var DateField_default = {"input":"opus_G3y11z_input","error":"opus_G3y11z_error"};
993
+ var DateField_default = {"error":"opus_G3y11z_error","input":"opus_G3y11z_input"};
924
994
 
925
995
  // ../../components/fields/DateField/DateField.tsx
926
996
  var import_jsx_runtime6 = require("react/jsx-runtime");
@@ -963,7 +1033,7 @@ function DateField({
963
1033
  }
964
1034
 
965
1035
  // ../../components/fields/HiddenField/HiddenField.module.css
966
- var HiddenField_default = {"preview":"opus_kL1YXS_preview","meta":"opus_kL1YXS_meta","note":"opus_kL1YXS_note"};
1036
+ var HiddenField_default = {"note":"opus_kL1YXS_note","meta":"opus_kL1YXS_meta","preview":"opus_kL1YXS_preview"};
967
1037
 
968
1038
  // ../../components/fields/HiddenField/HiddenField.tsx
969
1039
  var import_jsx_runtime7 = require("react/jsx-runtime");
@@ -1011,7 +1081,7 @@ function HiddenField({
1011
1081
  }
1012
1082
 
1013
1083
  // ../../components/fields/FileField/FileField.module.css
1014
- var FileField_default = {"wrapper":"opus_aOsPA7_wrapper","title":"opus_aOsPA7_title","dropError":"opus_aOsPA7_dropError","hint":"opus_aOsPA7_hint","footnote":"opus_aOsPA7_footnote","content":"opus_aOsPA7_content","iconSvg":"opus_aOsPA7_iconSvg","action":"opus_aOsPA7_action","input":"opus_aOsPA7_input","icon":"opus_aOsPA7_icon","dragging":"opus_aOsPA7_dragging","drop":"opus_aOsPA7_drop"};
1084
+ var FileField_default = {"drop":"opus_aOsPA7_drop","dropError":"opus_aOsPA7_dropError","title":"opus_aOsPA7_title","action":"opus_aOsPA7_action","iconSvg":"opus_aOsPA7_iconSvg","input":"opus_aOsPA7_input","icon":"opus_aOsPA7_icon","hint":"opus_aOsPA7_hint","footnote":"opus_aOsPA7_footnote","content":"opus_aOsPA7_content","wrapper":"opus_aOsPA7_wrapper","dragging":"opus_aOsPA7_dragging"};
1015
1085
 
1016
1086
  // ../../components/fields/FileField/FileField.tsx
1017
1087
  var import_react3 = require("react");
@@ -1148,7 +1218,7 @@ function FileField({
1148
1218
  var import_react4 = require("react");
1149
1219
 
1150
1220
  // ../../components/fields/NumberField/NumberField.module.css
1151
- var NumberField_default = {"error":"opus_L272Dk_error","button":"opus_L272Dk_button","stepper":"opus_L272Dk_stepper","input":"opus_L272Dk_input"};
1221
+ var NumberField_default = {"stepper":"opus_L272Dk_stepper","button":"opus_L272Dk_button","input":"opus_L272Dk_input","error":"opus_L272Dk_error"};
1152
1222
 
1153
1223
  // ../../components/fields/numericUtils.ts
1154
1224
  function decimalPlacesFromStep(step) {
@@ -1316,7 +1386,7 @@ function NumberField({
1316
1386
  var import_react5 = require("react");
1317
1387
 
1318
1388
  // ../../components/fields/RadioGroup/RadioGroup.module.css
1319
- var RadioGroup_default = {"round":"opus_O-1nor_round","square":"opus_O-1nor_square","choice":"opus_O-1nor_choice","option":"opus_O-1nor_option","options":"opus_O-1nor_options","nativeInput":"opus_O-1nor_nativeInput","error":"opus_O-1nor_error","shell":"opus_O-1nor_shell","visual":"opus_O-1nor_visual"};
1389
+ var RadioGroup_default = {"visual":"opus_O-1nor_visual","choice":"opus_O-1nor_choice","round":"opus_O-1nor_round","shell":"opus_O-1nor_shell","options":"opus_O-1nor_options","nativeInput":"opus_O-1nor_nativeInput","square":"opus_O-1nor_square","error":"opus_O-1nor_error","option":"opus_O-1nor_option"};
1320
1390
 
1321
1391
  // ../../components/fields/RadioGroup/RadioGroup.tsx
1322
1392
  var import_jsx_runtime10 = require("react/jsx-runtime");
@@ -1413,7 +1483,7 @@ function Radio({ children, error, name, shape, value, defaultChecked }) {
1413
1483
  var import_react6 = require("react");
1414
1484
 
1415
1485
  // ../../components/fields/ChipInputField/ChipInputField.module.css
1416
- var ChipInputField_default = {"input":"opus_IOOYwh_input","shell":"opus_IOOYwh_shell","field":"opus_IOOYwh_field","chip":"opus_IOOYwh_chip","error":"opus_IOOYwh_error","chipLabel":"opus_IOOYwh_chipLabel","disabled":"opus_IOOYwh_disabled","readOnly":"opus_IOOYwh_readOnly","remove":"opus_IOOYwh_remove"};
1486
+ var ChipInputField_default = {"remove":"opus_IOOYwh_remove","error":"opus_IOOYwh_error","readOnly":"opus_IOOYwh_readOnly","chipLabel":"opus_IOOYwh_chipLabel","shell":"opus_IOOYwh_shell","input":"opus_IOOYwh_input","disabled":"opus_IOOYwh_disabled","field":"opus_IOOYwh_field","chip":"opus_IOOYwh_chip"};
1417
1487
 
1418
1488
  // ../../components/fields/ChipInputField/ChipInputField.tsx
1419
1489
  var import_jsx_runtime11 = require("react/jsx-runtime");
@@ -1549,7 +1619,7 @@ function ChipInput({
1549
1619
  var ChipInputField = ChipInput;
1550
1620
 
1551
1621
  // ../../components/fields/RangeField/RangeField.module.css
1552
- var RangeField_default = {"footer":"opus_iRHQuG_footer","topRow":"opus_iRHQuG_topRow","slider":"opus_iRHQuG_slider","value":"opus_iRHQuG_value","error":"opus_iRHQuG_error","wrap":"opus_iRHQuG_wrap","fieldLabel":"opus_iRHQuG_fieldLabel"};
1622
+ var RangeField_default = {"error":"opus_iRHQuG_error","footer":"opus_iRHQuG_footer","value":"opus_iRHQuG_value","topRow":"opus_iRHQuG_topRow","fieldLabel":"opus_iRHQuG_fieldLabel","slider":"opus_iRHQuG_slider","wrap":"opus_iRHQuG_wrap"};
1553
1623
 
1554
1624
  // ../../components/fields/RangeField/RangeField.tsx
1555
1625
  var import_jsx_runtime12 = require("react/jsx-runtime");
@@ -1628,7 +1698,7 @@ function RangeField({
1628
1698
  }
1629
1699
 
1630
1700
  // ../../components/fields/SelectField/SelectField.module.css
1631
- var SelectField_default = {"select":"opus_m2ObG0_select","error":"opus_m2ObG0_error","wrap":"opus_m2ObG0_wrap"};
1701
+ var SelectField_default = {"select":"opus_m2ObG0_select","wrap":"opus_m2ObG0_wrap","error":"opus_m2ObG0_error"};
1632
1702
 
1633
1703
  // ../../components/fields/SelectField/SelectField.tsx
1634
1704
  var import_jsx_runtime13 = require("react/jsx-runtime");
@@ -1672,7 +1742,7 @@ function SelectField({
1672
1742
  }
1673
1743
 
1674
1744
  // ../../components/fields/SwitchField/SwitchField.module.css
1675
- var SwitchField_default = {"error":"opus_t9NLEA_error","shell":"opus_t9NLEA_shell","toggle":"opus_t9NLEA_toggle","track":"opus_t9NLEA_track"};
1745
+ var SwitchField_default = {"error":"opus_t9NLEA_error","track":"opus_t9NLEA_track","shell":"opus_t9NLEA_shell","toggle":"opus_t9NLEA_toggle"};
1676
1746
 
1677
1747
  // ../../components/fields/SwitchField/SwitchField.tsx
1678
1748
  var import_jsx_runtime14 = require("react/jsx-runtime");
@@ -1721,7 +1791,7 @@ function SwitchField({
1721
1791
  var import_react7 = require("react");
1722
1792
 
1723
1793
  // ../../components/fields/TextAreaField/TextAreaField.module.css
1724
- var TextAreaField_default = {"inputWrap":"opus_FjhWmh_inputWrap","externalCount":"opus_FjhWmh_externalCount","field":"opus_FjhWmh_field","footerError":"opus_FjhWmh_footerError","footer":"opus_FjhWmh_footer","error":"opus_FjhWmh_error","textarea":"opus_FjhWmh_textarea","withCount":"opus_FjhWmh_withCount","inlineCount":"opus_FjhWmh_inlineCount"};
1794
+ var TextAreaField_default = {"footer":"opus_FjhWmh_footer","withCount":"opus_FjhWmh_withCount","error":"opus_FjhWmh_error","field":"opus_FjhWmh_field","footerError":"opus_FjhWmh_footerError","inlineCount":"opus_FjhWmh_inlineCount","externalCount":"opus_FjhWmh_externalCount","textarea":"opus_FjhWmh_textarea","inputWrap":"opus_FjhWmh_inputWrap"};
1725
1795
 
1726
1796
  // ../../components/fields/TextAreaField/TextAreaField.tsx
1727
1797
  var import_jsx_runtime15 = require("react/jsx-runtime");
@@ -1805,7 +1875,7 @@ var import_react_fontawesome = require("@fortawesome/react-fontawesome");
1805
1875
  var import_free_solid_svg_icons = require("@fortawesome/free-solid-svg-icons");
1806
1876
 
1807
1877
  // ../../components/fields/RichTextField/RichTextField.module.css
1808
- var RichTextField_default = {"modal":"opus_6HFqZH_modal","blockSelect":"opus_6HFqZH_blockSelect","colorSwatch":"opus_6HFqZH_colorSwatch","modalConfirm":"opus_6HFqZH_modalConfirm","editorShell":"opus_6HFqZH_editorShell","editor":"opus_6HFqZH_editor","modalInput":"opus_6HFqZH_modalInput","modalOverlay":"opus_6HFqZH_modalOverlay","modalDimensionField":"opus_6HFqZH_modalDimensionField","field":"opus_6HFqZH_field","modalActions":"opus_6HFqZH_modalActions","modalNumber":"opus_6HFqZH_modalNumber","modalDimensions":"opus_6HFqZH_modalDimensions","colorInput":"opus_6HFqZH_colorInput","toolbar":"opus_6HFqZH_toolbar","toolbarIcon":"opus_6HFqZH_toolbarIcon","toolbarButtonActive":"opus_6HFqZH_toolbarButtonActive","error":"opus_6HFqZH_error","modalTitle":"opus_6HFqZH_modalTitle","readOnly":"opus_6HFqZH_readOnly","modalCancel":"opus_6HFqZH_modalCancel","modalLabel":"opus_6HFqZH_modalLabel","toolbarButton":"opus_6HFqZH_toolbarButton","modalField":"opus_6HFqZH_modalField","divider":"opus_6HFqZH_divider","modalTimes":"opus_6HFqZH_modalTimes"};
1878
+ var RichTextField_default = {"modalActions":"opus_6HFqZH_modalActions","blockSelect":"opus_6HFqZH_blockSelect","field":"opus_6HFqZH_field","toolbarButton":"opus_6HFqZH_toolbarButton","modal":"opus_6HFqZH_modal","modalNumber":"opus_6HFqZH_modalNumber","toolbarIcon":"opus_6HFqZH_toolbarIcon","modalDimensionField":"opus_6HFqZH_modalDimensionField","modalTitle":"opus_6HFqZH_modalTitle","colorSwatch":"opus_6HFqZH_colorSwatch","modalOverlay":"opus_6HFqZH_modalOverlay","toolbarButtonActive":"opus_6HFqZH_toolbarButtonActive","readOnly":"opus_6HFqZH_readOnly","editorShell":"opus_6HFqZH_editorShell","editor":"opus_6HFqZH_editor","colorInput":"opus_6HFqZH_colorInput","toolbar":"opus_6HFqZH_toolbar","modalDimensions":"opus_6HFqZH_modalDimensions","modalConfirm":"opus_6HFqZH_modalConfirm","modalField":"opus_6HFqZH_modalField","modalTimes":"opus_6HFqZH_modalTimes","divider":"opus_6HFqZH_divider","modalCancel":"opus_6HFqZH_modalCancel","error":"opus_6HFqZH_error","modalLabel":"opus_6HFqZH_modalLabel","modalInput":"opus_6HFqZH_modalInput"};
1809
1879
 
1810
1880
  // ../../components/fields/RichTextField/RichTextField.tsx
1811
1881
  var import_jsx_runtime16 = require("react/jsx-runtime");
@@ -2453,7 +2523,7 @@ var import_react9 = require("react");
2453
2523
  var TextField_default = {"input":"opus_SOck2f_input","error":"opus_SOck2f_error"};
2454
2524
 
2455
2525
  // ../../components/fields/shared/fieldControl.module.css
2456
- var fieldControl_default = {"triggerError":"opus_1Q5xBh_triggerError","panelFooter":"opus_1Q5xBh_panelFooter","placeholder":"opus_1Q5xBh_placeholder","actionButton":"opus_1Q5xBh_actionButton","search":"opus_1Q5xBh_search","passwordToggle":"opus_1Q5xBh_passwordToggle","groupLabel":"opus_1Q5xBh_groupLabel","chevron":"opus_1Q5xBh_chevron","actionButtonPrimary":"opus_1Q5xBh_actionButtonPrimary","triggerOpen":"opus_1Q5xBh_triggerOpen","list":"opus_1Q5xBh_list","option":"opus_1Q5xBh_option","error":"opus_1Q5xBh_error","panel":"opus_1Q5xBh_panel","trigger":"opus_1Q5xBh_trigger","input":"opus_1Q5xBh_input","passwordWrap":"opus_1Q5xBh_passwordWrap","passwordToggleSlot":"opus_1Q5xBh_passwordToggleSlot","passwordInput":"opus_1Q5xBh_passwordInput"};
2526
+ var fieldControl_default = {"trigger":"opus_1Q5xBh_trigger","input":"opus_1Q5xBh_input","error":"opus_1Q5xBh_error","placeholder":"opus_1Q5xBh_placeholder","passwordToggle":"opus_1Q5xBh_passwordToggle","groupLabel":"opus_1Q5xBh_groupLabel","passwordInput":"opus_1Q5xBh_passwordInput","panel":"opus_1Q5xBh_panel","panelFooter":"opus_1Q5xBh_panelFooter","search":"opus_1Q5xBh_search","passwordToggleSlot":"opus_1Q5xBh_passwordToggleSlot","actionButtonPrimary":"opus_1Q5xBh_actionButtonPrimary","option":"opus_1Q5xBh_option","list":"opus_1Q5xBh_list","chevron":"opus_1Q5xBh_chevron","passwordWrap":"opus_1Q5xBh_passwordWrap","triggerOpen":"opus_1Q5xBh_triggerOpen","actionButton":"opus_1Q5xBh_actionButton","triggerError":"opus_1Q5xBh_triggerError"};
2457
2527
 
2458
2528
  // ../../components/fields/shared/PasswordToggle.tsx
2459
2529
  var import_react_fontawesome2 = require("@fortawesome/react-fontawesome");
@@ -2536,7 +2606,7 @@ var import_react_fontawesome3 = require("@fortawesome/react-fontawesome");
2536
2606
  var import_free_solid_svg_icons3 = require("@fortawesome/free-solid-svg-icons");
2537
2607
 
2538
2608
  // ../../components/fields/ThemeToggleField/ThemeToggleField.module.css
2539
- var ThemeToggleField_default = {"option":"opus_SwerMA_option","indicator":"opus_SwerMA_indicator","toggle":"opus_SwerMA_toggle","active":"opus_SwerMA_active"};
2609
+ var ThemeToggleField_default = {"toggle":"opus_SwerMA_toggle","indicator":"opus_SwerMA_indicator","active":"opus_SwerMA_active","option":"opus_SwerMA_option"};
2540
2610
 
2541
2611
  // ../../components/fields/ThemeToggleField/ThemeToggleField.tsx
2542
2612
  var import_jsx_runtime19 = require("react/jsx-runtime");
@@ -2867,7 +2937,7 @@ function MultiSelectField({
2867
2937
  var import_react12 = require("react");
2868
2938
 
2869
2939
  // ../../components/fields/TransferListField/TransferListField.module.css
2870
- var TransferListField_default = {"column":"opus_NPBFZk_column","itemActive":"opus_NPBFZk_itemActive","columnHeader":"opus_NPBFZk_columnHeader","controls":"opus_NPBFZk_controls","controlButton":"opus_NPBFZk_controlButton","root":"opus_NPBFZk_root","item":"opus_NPBFZk_item","list":"opus_NPBFZk_list"};
2940
+ var TransferListField_default = {"column":"opus_NPBFZk_column","controlButton":"opus_NPBFZk_controlButton","item":"opus_NPBFZk_item","root":"opus_NPBFZk_root","columnHeader":"opus_NPBFZk_columnHeader","controls":"opus_NPBFZk_controls","itemActive":"opus_NPBFZk_itemActive","list":"opus_NPBFZk_list"};
2871
2941
 
2872
2942
  // ../../components/fields/TransferListField/TransferListField.tsx
2873
2943
  var import_jsx_runtime22 = require("react/jsx-runtime");
@@ -2983,9 +3053,11 @@ function ListColumn({
2983
3053
 
2984
3054
  // ../../components/fields/PasswordStrengthField/PasswordStrengthField.tsx
2985
3055
  var import_react13 = require("react");
3056
+ var import_react_fontawesome4 = require("@fortawesome/react-fontawesome");
3057
+ var import_free_solid_svg_icons4 = require("@fortawesome/free-solid-svg-icons");
2986
3058
 
2987
3059
  // ../../components/fields/PasswordStrengthField/PasswordStrengthField.module.css
2988
- var PasswordStrengthField_default = {"root":"opus_S1A372_root","requirementMet":"opus_S1A372_requirementMet","meterWrap":"opus_S1A372_meterWrap","meterTrack":"opus_S1A372_meterTrack","meterLabel":"opus_S1A372_meterLabel","requirement":"opus_S1A372_requirement","meterFill":"opus_S1A372_meterFill","requirements":"opus_S1A372_requirements"};
3060
+ var PasswordStrengthField_default = {"meterTrack":"opus_S1A372_meterTrack","meterWrap":"opus_S1A372_meterWrap","meterLabel":"opus_S1A372_meterLabel","meterFill":"opus_S1A372_meterFill","root":"opus_S1A372_root","requirementIcon":"opus_S1A372_requirementIcon","requirements":"opus_S1A372_requirements","requirementMet":"opus_S1A372_requirementMet","requirement":"opus_S1A372_requirement"};
2989
3061
 
2990
3062
  // ../../components/fields/PasswordStrengthField/PasswordStrengthField.tsx
2991
3063
  var import_jsx_runtime23 = require("react/jsx-runtime");
@@ -3068,11 +3140,21 @@ function PasswordStrengthField({
3068
3140
  ] }),
3069
3141
  showRequirements ? /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("ul", { className: PasswordStrengthField_default.requirements, children: requirements.map((requirement) => {
3070
3142
  const met = requirement.test(value);
3071
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
3143
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
3072
3144
  "li",
3073
3145
  {
3074
3146
  className: met ? PasswordStrengthField_default.requirementMet : PasswordStrengthField_default.requirement,
3075
- children: requirement.label
3147
+ children: [
3148
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
3149
+ import_react_fontawesome4.FontAwesomeIcon,
3150
+ {
3151
+ "aria-hidden": "true",
3152
+ className: PasswordStrengthField_default.requirementIcon,
3153
+ icon: met ? import_free_solid_svg_icons4.faCheck : import_free_solid_svg_icons4.faXmark
3154
+ }
3155
+ ),
3156
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("span", { children: requirement.label })
3157
+ ]
3076
3158
  },
3077
3159
  requirement.id
3078
3160
  );
@@ -3083,7 +3165,7 @@ function PasswordStrengthField({
3083
3165
  }
3084
3166
 
3085
3167
  // ../../components/fields/RatingField/RatingField.module.css
3086
- var RatingField_default = {"symbolActive":"opus_0tdNUz_symbolActive","root":"opus_0tdNUz_root","symbol":"opus_0tdNUz_symbol","numeric":"opus_0tdNUz_numeric","numericActive":"opus_0tdNUz_numericActive"};
3168
+ var RatingField_default = {"numericActive":"opus_0tdNUz_numericActive","root":"opus_0tdNUz_root","symbolActive":"opus_0tdNUz_symbolActive","symbol":"opus_0tdNUz_symbol","numeric":"opus_0tdNUz_numeric"};
3087
3169
 
3088
3170
  // ../../components/fields/RatingField/RatingField.tsx
3089
3171
  var import_jsx_runtime24 = require("react/jsx-runtime");
@@ -3158,7 +3240,7 @@ function RatingField({
3158
3240
  }
3159
3241
 
3160
3242
  // ../../components/fields/SegmentedControlField/SegmentedControlField.module.css
3161
- var SegmentedControlField_default = {"segment":"opus_ZHwfiN_segment","segmentActive":"opus_ZHwfiN_segmentActive","root":"opus_ZHwfiN_root"};
3243
+ var SegmentedControlField_default = {"root":"opus_ZHwfiN_root","segmentActive":"opus_ZHwfiN_segmentActive","segment":"opus_ZHwfiN_segment"};
3162
3244
 
3163
3245
  // ../../components/fields/SegmentedControlField/SegmentedControlField.tsx
3164
3246
  var import_jsx_runtime25 = require("react/jsx-runtime");
@@ -3213,7 +3295,7 @@ function SegmentedControlField({
3213
3295
  var import_react14 = require("react");
3214
3296
 
3215
3297
  // ../../components/fields/SliderRangeField/SliderRangeField.module.css
3216
- var SliderRangeField_default = {"value":"opus_k3d0sS_value","trackWrap":"opus_k3d0sS_trackWrap","footer":"opus_k3d0sS_footer","header":"opus_k3d0sS_header","slider":"opus_k3d0sS_slider","root":"opus_k3d0sS_root","track":"opus_k3d0sS_track"};
3298
+ var SliderRangeField_default = {"header":"opus_k3d0sS_header","value":"opus_k3d0sS_value","track":"opus_k3d0sS_track","root":"opus_k3d0sS_root","trackWrap":"opus_k3d0sS_trackWrap","footer":"opus_k3d0sS_footer","slider":"opus_k3d0sS_slider"};
3217
3299
 
3218
3300
  // ../../components/fields/SliderRangeField/SliderRangeField.tsx
3219
3301
  var import_jsx_runtime26 = require("react/jsx-runtime");
@@ -3310,7 +3392,7 @@ function SliderRangeField({
3310
3392
  var import_react15 = require("react");
3311
3393
 
3312
3394
  // ../../components/fields/PhoneNumberField/PhoneNumberField.module.css
3313
- var PhoneNumberField_default = {"root":"opus_WC4gnN_root","optionLabel":"opus_WC4gnN_optionLabel","dial":"opus_WC4gnN_dial","optionActive":"opus_WC4gnN_optionActive","code":"opus_WC4gnN_code","chevron":"opus_WC4gnN_chevron","countryWrap":"opus_WC4gnN_countryWrap","panel":"opus_WC4gnN_panel","country":"opus_WC4gnN_country","optionDial":"opus_WC4gnN_optionDial","countryValue":"opus_WC4gnN_countryValue","empty":"opus_WC4gnN_empty","option":"opus_WC4gnN_option","flag":"opus_WC4gnN_flag"};
3395
+ var PhoneNumberField_default = {"empty":"opus_WC4gnN_empty","optionActive":"opus_WC4gnN_optionActive","countryWrap":"opus_WC4gnN_countryWrap","root":"opus_WC4gnN_root","country":"opus_WC4gnN_country","option":"opus_WC4gnN_option","panel":"opus_WC4gnN_panel","code":"opus_WC4gnN_code","optionLabel":"opus_WC4gnN_optionLabel","dial":"opus_WC4gnN_dial","flag":"opus_WC4gnN_flag","chevron":"opus_WC4gnN_chevron","countryValue":"opus_WC4gnN_countryValue","optionDial":"opus_WC4gnN_optionDial"};
3314
3396
 
3315
3397
  // ../../components/fields/PhoneNumberField/countries.ts
3316
3398
  function countryCodeToFlag(code) {
@@ -3713,7 +3795,7 @@ function PhoneNumberField({
3713
3795
  var import_react16 = require("react");
3714
3796
 
3715
3797
  // ../../components/fields/CountryPickerField/CountryPickerField.module.css
3716
- var CountryPickerField_default = {"root":"opus_O7qqfR_root","optionActive":"opus_O7qqfR_optionActive","flag":"opus_O7qqfR_flag","option":"opus_O7qqfR_option","triggerValue":"opus_O7qqfR_triggerValue","optionLabel":"opus_O7qqfR_optionLabel","optionCode":"opus_O7qqfR_optionCode","empty":"opus_O7qqfR_empty"};
3798
+ var CountryPickerField_default = {"triggerValue":"opus_O7qqfR_triggerValue","optionCode":"opus_O7qqfR_optionCode","root":"opus_O7qqfR_root","empty":"opus_O7qqfR_empty","option":"opus_O7qqfR_option","optionActive":"opus_O7qqfR_optionActive","optionLabel":"opus_O7qqfR_optionLabel","flag":"opus_O7qqfR_flag"};
3717
3799
 
3718
3800
  // ../../components/fields/CountryPickerField/CountryPickerField.tsx
3719
3801
  var import_jsx_runtime28 = require("react/jsx-runtime");
@@ -3869,7 +3951,7 @@ function CountryPickerField({
3869
3951
  var import_react17 = require("react");
3870
3952
 
3871
3953
  // ../../components/fields/TreeSelectField/TreeSelectField.module.css
3872
- var TreeSelectField_default = {"root":"opus_Mq6C00_root","treeOptionActive":"opus_Mq6C00_treeOptionActive","treeOption":"opus_Mq6C00_treeOption"};
3954
+ var TreeSelectField_default = {"root":"opus_Mq6C00_root","treeOption":"opus_Mq6C00_treeOption","treeOptionActive":"opus_Mq6C00_treeOptionActive"};
3873
3955
 
3874
3956
  // ../../components/fields/TreeSelectField/TreeSelectField.tsx
3875
3957
  var import_jsx_runtime29 = require("react/jsx-runtime");
@@ -3998,7 +4080,7 @@ function TreeSelectField({
3998
4080
  var import_react18 = require("react");
3999
4081
 
4000
4082
  // ../../components/fields/CascaderField/CascaderField.module.css
4001
- var CascaderField_default = {"root":"opus_1Fg59A_root","panel":"opus_1Fg59A_panel","option":"opus_1Fg59A_option","optionActive":"opus_1Fg59A_optionActive","column":"opus_1Fg59A_column"};
4083
+ var CascaderField_default = {"root":"opus_1Fg59A_root","option":"opus_1Fg59A_option","optionActive":"opus_1Fg59A_optionActive","column":"opus_1Fg59A_column","panel":"opus_1Fg59A_panel"};
4002
4084
 
4003
4085
  // ../../components/fields/CascaderField/CascaderField.tsx
4004
4086
  var import_jsx_runtime30 = require("react/jsx-runtime");
@@ -4201,7 +4283,7 @@ function OpusThemeProvider({
4201
4283
  }
4202
4284
 
4203
4285
  // ../../components/Alert/Alert.module.css
4204
- var Alert_default = {"icon":"opus_eh3eeT_icon","content":"opus_eh3eeT_content","dismiss":"opus_eh3eeT_dismiss","alert":"opus_eh3eeT_alert","iconMark":"opus_eh3eeT_iconMark","iconFlagged":"opus_eh3eeT_iconFlagged","iconSvg":"opus_eh3eeT_iconSvg","title":"opus_eh3eeT_title","dismissIcon":"opus_eh3eeT_dismissIcon","description":"opus_eh3eeT_description"};
4286
+ var Alert_default = {"alert":"opus_eh3eeT_alert","icon":"opus_eh3eeT_icon","iconSvg":"opus_eh3eeT_iconSvg","title":"opus_eh3eeT_title","dismissIcon":"opus_eh3eeT_dismissIcon","iconMark":"opus_eh3eeT_iconMark","iconFlagged":"opus_eh3eeT_iconFlagged","dismiss":"opus_eh3eeT_dismiss","content":"opus_eh3eeT_content","description":"opus_eh3eeT_description"};
4205
4287
 
4206
4288
  // ../../components/Alert/Alert.tsx
4207
4289
  var import_jsx_runtime33 = require("react/jsx-runtime");
@@ -4350,7 +4432,7 @@ function useOverlayAccessibility(active, containerRef, {
4350
4432
  }
4351
4433
 
4352
4434
  // ../../components/Dialog/Dialog.module.css
4353
- var Dialog_default = {"dialogIn":"opus_sz-ZGI_dialogIn","iconSvg":"opus_sz-ZGI_iconSvg","dialogOut":"opus_sz-ZGI_dialogOut","iconMark":"opus_sz-ZGI_iconMark","dialog":"opus_sz-ZGI_dialog","icon":"opus_sz-ZGI_icon","content":"opus_sz-ZGI_content","backdropIn":"opus_sz-ZGI_backdropIn","title":"opus_sz-ZGI_title","visuallyHidden":"opus_sz-ZGI_visuallyHidden","backdropOut":"opus_sz-ZGI_backdropOut","description":"opus_sz-ZGI_description","body":"opus_sz-ZGI_body","actions":"opus_sz-ZGI_actions","backdrop":"opus_sz-ZGI_backdrop"};
4435
+ var Dialog_default = {"backdrop":"opus_sz-ZGI_backdrop","backdropIn":"opus_sz-ZGI_backdropIn","backdropOut":"opus_sz-ZGI_backdropOut","dialogIn":"opus_sz-ZGI_dialogIn","dialogOut":"opus_sz-ZGI_dialogOut","visuallyHidden":"opus_sz-ZGI_visuallyHidden","content":"opus_sz-ZGI_content","dialog":"opus_sz-ZGI_dialog","icon":"opus_sz-ZGI_icon","actions":"opus_sz-ZGI_actions","iconSvg":"opus_sz-ZGI_iconSvg","description":"opus_sz-ZGI_description","title":"opus_sz-ZGI_title","iconMark":"opus_sz-ZGI_iconMark","body":"opus_sz-ZGI_body"};
4354
4436
 
4355
4437
  // ../../components/Dialog/Dialog.tsx
4356
4438
  var import_jsx_runtime34 = require("react/jsx-runtime");
@@ -4481,7 +4563,7 @@ function Dialog({
4481
4563
  var import_react22 = require("react");
4482
4564
 
4483
4565
  // ../../components/Modal/Modal.module.css
4484
- var Modal_default = {"modalPanelIn":"opus_LQbzGS_modalPanelIn","close":"opus_LQbzGS_close","actions":"opus_LQbzGS_actions","closeIcon":"opus_LQbzGS_closeIcon","footer":"opus_LQbzGS_footer","heading":"opus_LQbzGS_heading","backdrop":"opus_LQbzGS_backdrop","modal":"opus_LQbzGS_modal","modalPanelOut":"opus_LQbzGS_modalPanelOut","body":"opus_LQbzGS_body","modalBackdropIn":"opus_LQbzGS_modalBackdropIn","description":"opus_LQbzGS_description","title":"opus_LQbzGS_title","modalBackdropOut":"opus_LQbzGS_modalBackdropOut","footerContent":"opus_LQbzGS_footerContent","header":"opus_LQbzGS_header"};
4566
+ var Modal_default = {"modal":"opus_LQbzGS_modal","header":"opus_LQbzGS_header","title":"opus_LQbzGS_title","close":"opus_LQbzGS_close","closeIcon":"opus_LQbzGS_closeIcon","body":"opus_LQbzGS_body","footer":"opus_LQbzGS_footer","footerContent":"opus_LQbzGS_footerContent","actions":"opus_LQbzGS_actions","heading":"opus_LQbzGS_heading","modalBackdropIn":"opus_LQbzGS_modalBackdropIn","description":"opus_LQbzGS_description","modalPanelOut":"opus_LQbzGS_modalPanelOut","modalBackdropOut":"opus_LQbzGS_modalBackdropOut","backdrop":"opus_LQbzGS_backdrop","modalPanelIn":"opus_LQbzGS_modalPanelIn"};
4485
4567
 
4486
4568
  // ../../components/Modal/Modal.tsx
4487
4569
  var import_jsx_runtime35 = require("react/jsx-runtime");
@@ -4612,7 +4694,7 @@ function ModalDefaultActions({ onClose }) {
4612
4694
  var import_react23 = require("react");
4613
4695
 
4614
4696
  // ../../components/Drawer/Drawer.module.css
4615
- var Drawer_default = {"description":"opus_0CaGbZ_description","drawerInRight":"opus_0CaGbZ_drawerInRight","drawerOutRight":"opus_0CaGbZ_drawerOutRight","drawer":"opus_0CaGbZ_drawer","drawerInLeft":"opus_0CaGbZ_drawerInLeft","drawerInBottom":"opus_0CaGbZ_drawerInBottom","title":"opus_0CaGbZ_title","close":"opus_0CaGbZ_close","body":"opus_0CaGbZ_body","closeIcon":"opus_0CaGbZ_closeIcon","drawerBackdropOut":"opus_0CaGbZ_drawerBackdropOut","drawerInTop":"opus_0CaGbZ_drawerInTop","drawerOutBottom":"opus_0CaGbZ_drawerOutBottom","drawerOutLeft":"opus_0CaGbZ_drawerOutLeft","actions":"opus_0CaGbZ_actions","heading":"opus_0CaGbZ_heading","drawerBackdropIn":"opus_0CaGbZ_drawerBackdropIn","drawerOutTop":"opus_0CaGbZ_drawerOutTop","header":"opus_0CaGbZ_header","footer":"opus_0CaGbZ_footer","footerContent":"opus_0CaGbZ_footerContent","backdrop":"opus_0CaGbZ_backdrop"};
4697
+ var Drawer_default = {"header":"opus_0CaGbZ_header","close":"opus_0CaGbZ_close","actions":"opus_0CaGbZ_actions","backdrop":"opus_0CaGbZ_backdrop","description":"opus_0CaGbZ_description","drawerOutBottom":"opus_0CaGbZ_drawerOutBottom","heading":"opus_0CaGbZ_heading","drawerBackdropIn":"opus_0CaGbZ_drawerBackdropIn","drawerInLeft":"opus_0CaGbZ_drawerInLeft","title":"opus_0CaGbZ_title","drawerOutLeft":"opus_0CaGbZ_drawerOutLeft","drawerInTop":"opus_0CaGbZ_drawerInTop","footer":"opus_0CaGbZ_footer","drawerOutTop":"opus_0CaGbZ_drawerOutTop","drawerInRight":"opus_0CaGbZ_drawerInRight","drawerBackdropOut":"opus_0CaGbZ_drawerBackdropOut","drawerOutRight":"opus_0CaGbZ_drawerOutRight","closeIcon":"opus_0CaGbZ_closeIcon","body":"opus_0CaGbZ_body","footerContent":"opus_0CaGbZ_footerContent","drawer":"opus_0CaGbZ_drawer","drawerInBottom":"opus_0CaGbZ_drawerInBottom"};
4616
4698
 
4617
4699
  // ../../components/Drawer/Drawer.tsx
4618
4700
  var import_jsx_runtime36 = require("react/jsx-runtime");
@@ -4744,7 +4826,7 @@ function DrawerDefaultActions({ onClose }) {
4744
4826
  var import_react24 = require("react");
4745
4827
 
4746
4828
  // ../../components/Popover/Popover.module.css
4747
- var Popover_default = {"root":"opus_yq4OU0_root","panel":"opus_yq4OU0_panel","popoverIn":"opus_yq4OU0_popoverIn","title":"opus_yq4OU0_title","arrow":"opus_yq4OU0_arrow","content":"opus_yq4OU0_content"};
4829
+ var Popover_default = {"content":"opus_yq4OU0_content","title":"opus_yq4OU0_title","arrow":"opus_yq4OU0_arrow","panel":"opus_yq4OU0_panel","root":"opus_yq4OU0_root","popoverIn":"opus_yq4OU0_popoverIn"};
4748
4830
 
4749
4831
  // ../../components/Popover/Popover.tsx
4750
4832
  var import_jsx_runtime37 = require("react/jsx-runtime");
@@ -4847,14 +4929,14 @@ function Popover({
4847
4929
 
4848
4930
  // ../../components/DropdownMenu/DropdownMenu.tsx
4849
4931
  var import_react28 = require("react");
4850
- var import_react_dom2 = require("react-dom");
4932
+ var import_react_dom3 = require("react-dom");
4851
4933
 
4852
4934
  // ../../components/TopNavigation/TopNavigation.tsx
4853
4935
  var import_react27 = require("react");
4854
4936
 
4855
4937
  // ../../components/MegaMenu/MegaMenu.tsx
4856
4938
  var import_react26 = require("react");
4857
- var import_react_dom = require("react-dom");
4939
+ var import_react_dom2 = require("react-dom");
4858
4940
 
4859
4941
  // ../../components/TopNavigation/TopNavigationContext.tsx
4860
4942
  var import_react25 = require("react");
@@ -4895,7 +4977,7 @@ function resolveMegaMenuPortalStyle(root, inTopNavigation) {
4895
4977
  }
4896
4978
 
4897
4979
  // ../../components/MegaMenu/MegaMenu.module.css
4898
- var MegaMenu_default = {"panel":"opus_Y_ikQV_panel","section":"opus_Y_ikQV_section","root":"opus_Y_ikQV_root","item":"opus_Y_ikQV_item","itemCopy":"opus_Y_ikQV_itemCopy","featuredAction":"opus_Y_ikQV_featuredAction","featured":"opus_Y_ikQV_featured","megaMenuIn":"opus_Y_ikQV_megaMenuIn","megaMenuOut":"opus_Y_ikQV_megaMenuOut","trigger":"opus_Y_ikQV_trigger","items":"opus_Y_ikQV_items","eyebrow":"opus_Y_ikQV_eyebrow","menuBar":"opus_Y_ikQV_menuBar","itemIcon":"opus_Y_ikQV_itemIcon","sections":"opus_Y_ikQV_sections","panelContent":"opus_Y_ikQV_panelContent"};
4980
+ var MegaMenu_default = {"megaMenuIn":"opus_Y_ikQV_megaMenuIn","itemCopy":"opus_Y_ikQV_itemCopy","menuBar":"opus_Y_ikQV_menuBar","trigger":"opus_Y_ikQV_trigger","featured":"opus_Y_ikQV_featured","panelContent":"opus_Y_ikQV_panelContent","item":"opus_Y_ikQV_item","items":"opus_Y_ikQV_items","section":"opus_Y_ikQV_section","root":"opus_Y_ikQV_root","featuredAction":"opus_Y_ikQV_featuredAction","itemIcon":"opus_Y_ikQV_itemIcon","panel":"opus_Y_ikQV_panel","eyebrow":"opus_Y_ikQV_eyebrow","megaMenuOut":"opus_Y_ikQV_megaMenuOut","sections":"opus_Y_ikQV_sections"};
4899
4981
 
4900
4982
  // ../../components/MegaMenu/MegaMenu.tsx
4901
4983
  var import_jsx_runtime38 = require("react/jsx-runtime");
@@ -5331,14 +5413,14 @@ function MegaMenu({
5331
5413
  );
5332
5414
  }) }),
5333
5415
  isStaticPanel ? panelNode : null,
5334
- !isStaticPanel && portalReady && panelNode ? (0, import_react_dom.createPortal)(panelNode, document.body) : null
5416
+ !isStaticPanel && portalReady && panelNode ? (0, import_react_dom2.createPortal)(panelNode, document.body) : null
5335
5417
  ]
5336
5418
  }
5337
5419
  );
5338
5420
  }
5339
5421
 
5340
5422
  // ../../components/TopNavigation/TopNavigation.module.css
5341
- var TopNavigation_default = {"menuTrigger":"opus_OIomR6_menuTrigger","menuSlot":"opus_OIomR6_menuSlot","bar":"opus_OIomR6_bar","nav":"opus_OIomR6_nav","menuSlotMega":"opus_OIomR6_menuSlotMega"};
5423
+ var TopNavigation_default = {"bar":"opus_OIomR6_bar","menuSlot":"opus_OIomR6_menuSlot","menuSlotMega":"opus_OIomR6_menuSlotMega","menuTrigger":"opus_OIomR6_menuTrigger","nav":"opus_OIomR6_nav"};
5342
5424
 
5343
5425
  // ../../components/TopNavigation/TopNavigation.tsx
5344
5426
  var import_jsx_runtime39 = require("react/jsx-runtime");
@@ -5695,7 +5777,7 @@ function handleMenuKeyDown(event, menu, onEscape) {
5695
5777
  }
5696
5778
 
5697
5779
  // ../../components/DropdownMenu/DropdownMenu.module.css
5698
- var DropdownMenu_default = {"icon":"opus_UUVDVQ_icon","dropdownIn":"opus_UUVDVQ_dropdownIn","item":"opus_UUVDVQ_item","root":"opus_UUVDVQ_root","menu":"opus_UUVDVQ_menu","shortcut":"opus_UUVDVQ_shortcut","label":"opus_UUVDVQ_label","dropdownOut":"opus_UUVDVQ_dropdownOut"};
5780
+ var DropdownMenu_default = {"menu":"opus_UUVDVQ_menu","dropdownIn":"opus_UUVDVQ_dropdownIn","dropdownOut":"opus_UUVDVQ_dropdownOut","shortcut":"opus_UUVDVQ_shortcut","label":"opus_UUVDVQ_label","root":"opus_UUVDVQ_root","item":"opus_UUVDVQ_item","icon":"opus_UUVDVQ_icon"};
5699
5781
 
5700
5782
  // ../../components/DropdownMenu/DropdownMenu.tsx
5701
5783
  var import_jsx_runtime40 = require("react/jsx-runtime");
@@ -6015,7 +6097,7 @@ function DropdownMenu({
6015
6097
  },
6016
6098
  label
6017
6099
  ),
6018
- portalReady && menuNode ? (0, import_react_dom2.createPortal)(menuNode, document.body) : null
6100
+ portalReady && menuNode ? (0, import_react_dom3.createPortal)(menuNode, document.body) : null
6019
6101
  ]
6020
6102
  }
6021
6103
  );
@@ -6023,10 +6105,10 @@ function DropdownMenu({
6023
6105
 
6024
6106
  // ../../components/ContextMenu/ContextMenuProvider.tsx
6025
6107
  var import_react29 = require("react");
6026
- var import_react_dom3 = require("react-dom");
6108
+ var import_react_dom4 = require("react-dom");
6027
6109
 
6028
6110
  // ../../components/ContextMenu/ContextMenu.module.css
6029
- var ContextMenu_default = {"target":"opus_nMhhae_target","layer":"opus_nMhhae_layer","backdrop":"opus_nMhhae_backdrop","menu":"opus_nMhhae_menu","contextMenuBackdropIn":"opus_nMhhae_contextMenuBackdropIn","contextMenuIn":"opus_nMhhae_contextMenuIn"};
6111
+ var ContextMenu_default = {"target":"opus_nMhhae_target","contextMenuBackdropIn":"opus_nMhhae_contextMenuBackdropIn","contextMenuIn":"opus_nMhhae_contextMenuIn","menu":"opus_nMhhae_menu","layer":"opus_nMhhae_layer","backdrop":"opus_nMhhae_backdrop"};
6030
6112
 
6031
6113
  // ../../components/ContextMenu/ContextMenuProvider.tsx
6032
6114
  var import_jsx_runtime41 = require("react/jsx-runtime");
@@ -6231,7 +6313,7 @@ function ContextMenuProvider({
6231
6313
  const portalTheme = (_d2 = activeMenu == null ? void 0 : activeMenu.theme) != null ? _d2 : theme;
6232
6314
  return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(ContextMenuContext.Provider, { value: contextValue, children: [
6233
6315
  children,
6234
- mounted && visible && activeMenu && menuPosition ? (0, import_react_dom3.createPortal)(
6316
+ mounted && visible && activeMenu && menuPosition ? (0, import_react_dom4.createPortal)(
6235
6317
  /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: ContextMenu_default.layer, "data-theme": portalTheme, children: [
6236
6318
  /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
6237
6319
  "button",
@@ -6327,11 +6409,11 @@ ContextMenuTarget.displayName = "ContextMenuTarget";
6327
6409
 
6328
6410
  // ../../components/CommandPalette/CommandPalette.tsx
6329
6411
  var import_react30 = require("react");
6330
- var import_free_solid_svg_icons4 = require("@fortawesome/free-solid-svg-icons");
6331
- var import_react_fontawesome4 = require("@fortawesome/react-fontawesome");
6412
+ var import_free_solid_svg_icons5 = require("@fortawesome/free-solid-svg-icons");
6413
+ var import_react_fontawesome5 = require("@fortawesome/react-fontawesome");
6332
6414
 
6333
6415
  // ../../components/CommandPalette/CommandPalette.module.css
6334
- var CommandPalette_default = {"searchInput":"opus_k1ypuy_searchInput","backdrop":"opus_k1ypuy_backdrop","itemLabel":"opus_k1ypuy_itemLabel","empty":"opus_k1ypuy_empty","panel":"opus_k1ypuy_panel","footer":"opus_k1ypuy_footer","visuallyHidden":"opus_k1ypuy_visuallyHidden","commandPalettePanelIn":"opus_k1ypuy_commandPalettePanelIn","commandPaletteBackdropOut":"opus_k1ypuy_commandPaletteBackdropOut","itemDescription":"opus_k1ypuy_itemDescription","commandPaletteBackdropIn":"opus_k1ypuy_commandPaletteBackdropIn","searchWrap":"opus_k1ypuy_searchWrap","itemMain":"opus_k1ypuy_itemMain","shortcut":"opus_k1ypuy_shortcut","group":"opus_k1ypuy_group","item":"opus_k1ypuy_item","searchIconSvg":"opus_k1ypuy_searchIconSvg","results":"opus_k1ypuy_results","commandPalettePanelOut":"opus_k1ypuy_commandPalettePanelOut","groupLabel":"opus_k1ypuy_groupLabel","searchIcon":"opus_k1ypuy_searchIcon"};
6416
+ var CommandPalette_default = {"results":"opus_k1ypuy_results","itemMain":"opus_k1ypuy_itemMain","shortcut":"opus_k1ypuy_shortcut","group":"opus_k1ypuy_group","backdrop":"opus_k1ypuy_backdrop","searchInput":"opus_k1ypuy_searchInput","item":"opus_k1ypuy_item","groupLabel":"opus_k1ypuy_groupLabel","commandPaletteBackdropIn":"opus_k1ypuy_commandPaletteBackdropIn","searchWrap":"opus_k1ypuy_searchWrap","searchIcon":"opus_k1ypuy_searchIcon","itemDescription":"opus_k1ypuy_itemDescription","empty":"opus_k1ypuy_empty","itemLabel":"opus_k1ypuy_itemLabel","visuallyHidden":"opus_k1ypuy_visuallyHidden","panel":"opus_k1ypuy_panel","commandPalettePanelOut":"opus_k1ypuy_commandPalettePanelOut","commandPalettePanelIn":"opus_k1ypuy_commandPalettePanelIn","footer":"opus_k1ypuy_footer","commandPaletteBackdropOut":"opus_k1ypuy_commandPaletteBackdropOut","searchIconSvg":"opus_k1ypuy_searchIconSvg"};
6335
6417
 
6336
6418
  // ../../components/CommandPalette/CommandPalette.tsx
6337
6419
  var import_jsx_runtime42 = require("react/jsx-runtime");
@@ -6521,7 +6603,7 @@ function CommandPalette({
6521
6603
  children: [
6522
6604
  /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("h2", { className: CommandPalette_default.visuallyHidden, id: titleId, children: "Command palette" }),
6523
6605
  /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("label", { className: CommandPalette_default.searchWrap, htmlFor: inputId, children: [
6524
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { "aria-hidden": "true", className: CommandPalette_default.searchIcon, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(import_react_fontawesome4.FontAwesomeIcon, { className: CommandPalette_default.searchIconSvg, icon: import_free_solid_svg_icons4.faMagnifyingGlass }) }),
6606
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { "aria-hidden": "true", className: CommandPalette_default.searchIcon, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(import_react_fontawesome5.FontAwesomeIcon, { className: CommandPalette_default.searchIconSvg, icon: import_free_solid_svg_icons5.faMagnifyingGlass }) }),
6525
6607
  /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
6526
6608
  "input",
6527
6609
  {
@@ -6667,7 +6749,7 @@ function AccordionGroup({
6667
6749
  }
6668
6750
 
6669
6751
  // ../../components/Accordion/Accordion.module.css
6670
- var Accordion_default = {"standalone":"opus_WNZQMV_standalone","panelInner":"opus_WNZQMV_panelInner","triggerLabel":"opus_WNZQMV_triggerLabel","chevron":"opus_WNZQMV_chevron","panel":"opus_WNZQMV_panel","item":"opus_WNZQMV_item","content":"opus_WNZQMV_content","trigger":"opus_WNZQMV_trigger"};
6752
+ var Accordion_default = {"standalone":"opus_WNZQMV_standalone","content":"opus_WNZQMV_content","triggerLabel":"opus_WNZQMV_triggerLabel","panel":"opus_WNZQMV_panel","trigger":"opus_WNZQMV_trigger","chevron":"opus_WNZQMV_chevron","panelInner":"opus_WNZQMV_panelInner","item":"opus_WNZQMV_item"};
6671
6753
 
6672
6754
  // ../../components/Accordion/Accordion.tsx
6673
6755
  var import_jsx_runtime44 = require("react/jsx-runtime");
@@ -6754,7 +6836,7 @@ function Accordion({
6754
6836
  var import_react33 = require("react");
6755
6837
 
6756
6838
  // ../../components/ShowMore/ShowMore.module.css
6757
- var ShowMore_default = {"root":"opus_dSk-ve_root","toggle":"opus_dSk-ve_toggle","inner":"opus_dSk-ve_inner","contentShell":"opus_dSk-ve_contentShell","toggleLabel":"opus_dSk-ve_toggleLabel","chevron":"opus_dSk-ve_chevron","showMoreLabelIn":"opus_dSk-ve_showMoreLabelIn"};
6839
+ var ShowMore_default = {"toggleLabel":"opus_dSk-ve_toggleLabel","showMoreLabelIn":"opus_dSk-ve_showMoreLabelIn","chevron":"opus_dSk-ve_chevron","inner":"opus_dSk-ve_inner","contentShell":"opus_dSk-ve_contentShell","toggle":"opus_dSk-ve_toggle","root":"opus_dSk-ve_root"};
6758
6840
 
6759
6841
  // ../../components/ShowMore/ShowMore.tsx
6760
6842
  var import_jsx_runtime45 = require("react/jsx-runtime");
@@ -6858,7 +6940,7 @@ function ShowMore({
6858
6940
  }
6859
6941
 
6860
6942
  // ../../components/Toast/Toast.module.css
6861
- var Toast_default = {"dismiss":"opus_cklQPW_dismiss","iconMark":"opus_cklQPW_iconMark","description":"opus_cklQPW_description","body":"opus_cklQPW_body","toastProgress":"opus_cklQPW_toastProgress","progressBar":"opus_cklQPW_progressBar","content":"opus_cklQPW_content","title":"opus_cklQPW_title","main":"opus_cklQPW_main","dismissIcon":"opus_cklQPW_dismissIcon","progressTrack":"opus_cklQPW_progressTrack","toast":"opus_cklQPW_toast","icon":"opus_cklQPW_icon","iconSvg":"opus_cklQPW_iconSvg"};
6943
+ var Toast_default = {"toastProgress":"opus_cklQPW_toastProgress","iconMark":"opus_cklQPW_iconMark","icon":"opus_cklQPW_icon","progressTrack":"opus_cklQPW_progressTrack","main":"opus_cklQPW_main","dismiss":"opus_cklQPW_dismiss","toast":"opus_cklQPW_toast","iconSvg":"opus_cklQPW_iconSvg","title":"opus_cklQPW_title","dismissIcon":"opus_cklQPW_dismissIcon","body":"opus_cklQPW_body","content":"opus_cklQPW_content","description":"opus_cklQPW_description","progressBar":"opus_cklQPW_progressBar"};
6862
6944
 
6863
6945
  // ../../components/Toast/Toast.tsx
6864
6946
  var import_jsx_runtime46 = require("react/jsx-runtime");
@@ -6930,7 +7012,7 @@ function Toast({
6930
7012
  var import_react34 = require("react");
6931
7013
 
6932
7014
  // ../../components/ToastProvider/ToastProvider.module.css
6933
- var ToastProvider_default = {"viewportBottom":"opus_z3pSp7_viewportBottom","itemSurface":"opus_z3pSp7_itemSurface","itemClip":"opus_z3pSp7_itemClip","viewportRight":"opus_z3pSp7_viewportRight","viewportLeft":"opus_z3pSp7_viewportLeft","item":"opus_z3pSp7_item","viewport":"opus_z3pSp7_viewport","viewportTop":"opus_z3pSp7_viewportTop","itemBackdrop":"opus_z3pSp7_itemBackdrop"};
7015
+ var ToastProvider_default = {"itemClip":"opus_z3pSp7_itemClip","itemSurface":"opus_z3pSp7_itemSurface","viewportTop":"opus_z3pSp7_viewportTop","itemBackdrop":"opus_z3pSp7_itemBackdrop","item":"opus_z3pSp7_item","viewport":"opus_z3pSp7_viewport","viewportBottom":"opus_z3pSp7_viewportBottom","viewportLeft":"opus_z3pSp7_viewportLeft","viewportRight":"opus_z3pSp7_viewportRight"};
6934
7016
 
6935
7017
  // ../../components/ToastProvider/ToastProvider.tsx
6936
7018
  var import_jsx_runtime47 = require("react/jsx-runtime");
@@ -7300,7 +7382,7 @@ function ToastProvider({
7300
7382
  var import_react35 = require("react");
7301
7383
 
7302
7384
  // ../../components/Tabs/Tabs.module.css
7303
- var Tabs_default = {"tab":"opus_ADVJmy_tab","list":"opus_ADVJmy_list","panel":"opus_ADVJmy_panel","root":"opus_ADVJmy_root"};
7385
+ var Tabs_default = {"list":"opus_ADVJmy_list","panel":"opus_ADVJmy_panel","root":"opus_ADVJmy_root","tab":"opus_ADVJmy_tab"};
7304
7386
 
7305
7387
  // ../../components/Tabs/Tabs.tsx
7306
7388
  var import_jsx_runtime48 = require("react/jsx-runtime");
@@ -7414,7 +7496,7 @@ function Tabs({
7414
7496
  }
7415
7497
 
7416
7498
  // ../../components/Card/Card.module.css
7417
- var Card_default = {"footer":"opus_qWo1sP_footer","body":"opus_qWo1sP_body","heading":"opus_qWo1sP_heading","title":"opus_qWo1sP_title","footerContent":"opus_qWo1sP_footerContent","eyebrow":"opus_qWo1sP_eyebrow","content":"opus_qWo1sP_content","actions":"opus_qWo1sP_actions","card":"opus_qWo1sP_card","media":"opus_qWo1sP_media"};
7499
+ var Card_default = {"body":"opus_qWo1sP_body","heading":"opus_qWo1sP_heading","content":"opus_qWo1sP_content","card":"opus_qWo1sP_card","footer":"opus_qWo1sP_footer","media":"opus_qWo1sP_media","title":"opus_qWo1sP_title","footerContent":"opus_qWo1sP_footerContent","actions":"opus_qWo1sP_actions","eyebrow":"opus_qWo1sP_eyebrow"};
7418
7500
 
7419
7501
  // ../../components/Card/Card.tsx
7420
7502
  var import_jsx_runtime49 = require("react/jsx-runtime");
@@ -7445,7 +7527,7 @@ function Card({
7445
7527
  }
7446
7528
 
7447
7529
  // ../../components/dashboardMetricCardLayout/dashboardMetricCardLayout.module.css
7448
- var dashboardMetricCardLayout_default = {"metaSlot":"opus_6_sptY_metaSlot","iconPlaceholder":"opus_6_sptY_iconPlaceholder","label":"opus_6_sptY_label","metaPlaceholder":"opus_6_sptY_metaPlaceholder","iconSlot":"opus_6_sptY_iconSlot","value":"opus_6_sptY_value","shell":"opus_6_sptY_shell","header":"opus_6_sptY_header"};
7530
+ var dashboardMetricCardLayout_default = {"iconSlot":"opus_6_sptY_iconSlot","header":"opus_6_sptY_header","label":"opus_6_sptY_label","metaPlaceholder":"opus_6_sptY_metaPlaceholder","shell":"opus_6_sptY_shell","value":"opus_6_sptY_value","iconPlaceholder":"opus_6_sptY_iconPlaceholder","metaSlot":"opus_6_sptY_metaSlot"};
7449
7531
 
7450
7532
  // ../../components/StatCard/StatCard.module.css
7451
7533
  var StatCard_default = {"change":"opus_KIXsQY_change"};
@@ -7475,7 +7557,7 @@ function StatCard({
7475
7557
  }
7476
7558
 
7477
7559
  // ../../components/Gauge/Gauge.module.css
7478
- var Gauge_default = {"footerLabel":"opus_t6IuQe_footerLabel","gaugeCenter":"opus_t6IuQe_gaugeCenter","footer":"opus_t6IuQe_footer","gaugeTrack":"opus_t6IuQe_gaugeTrack","title":"opus_t6IuQe_title","heading":"opus_t6IuQe_heading","summary":"opus_t6IuQe_summary","change":"opus_t6IuQe_change","subtitle":"opus_t6IuQe_subtitle","gaugeSvg":"opus_t6IuQe_gaugeSvg","footerItem":"opus_t6IuQe_footerItem","widget":"opus_t6IuQe_widget","header":"opus_t6IuQe_header","footerTrend":"opus_t6IuQe_footerTrend","gauge":"opus_t6IuQe_gauge","body":"opus_t6IuQe_body","gaugeSlot":"opus_t6IuQe_gaugeSlot","gaugeValue":"opus_t6IuQe_gaugeValue","footerValue":"opus_t6IuQe_footerValue"};
7560
+ var Gauge_default = {"summary":"opus_t6IuQe_summary","gauge":"opus_t6IuQe_gauge","heading":"opus_t6IuQe_heading","footerTrend":"opus_t6IuQe_footerTrend","title":"opus_t6IuQe_title","footerItem":"opus_t6IuQe_footerItem","footerValue":"opus_t6IuQe_footerValue","gaugeTrack":"opus_t6IuQe_gaugeTrack","body":"opus_t6IuQe_body","gaugeSvg":"opus_t6IuQe_gaugeSvg","change":"opus_t6IuQe_change","subtitle":"opus_t6IuQe_subtitle","gaugeCenter":"opus_t6IuQe_gaugeCenter","header":"opus_t6IuQe_header","gaugeSlot":"opus_t6IuQe_gaugeSlot","footerLabel":"opus_t6IuQe_footerLabel","gaugeValue":"opus_t6IuQe_gaugeValue","footer":"opus_t6IuQe_footer","widget":"opus_t6IuQe_widget"};
7479
7561
 
7480
7562
  // ../../components/Gauge/Gauge.tsx
7481
7563
  var import_jsx_runtime51 = require("react/jsx-runtime");
@@ -7609,7 +7691,7 @@ function Gauge({
7609
7691
  var import_react36 = require("react");
7610
7692
 
7611
7693
  // ../../components/Sparkline/Sparkline.module.css
7612
- var Sparkline_default = {"endPoint":"opus_xXtB87_endPoint","label":"opus_xXtB87_label","svg":"opus_xXtB87_svg","line":"opus_xXtB87_line","sparkline":"opus_xXtB87_sparkline","chart":"opus_xXtB87_chart","area":"opus_xXtB87_area"};
7694
+ var Sparkline_default = {"area":"opus_xXtB87_area","svg":"opus_xXtB87_svg","endPoint":"opus_xXtB87_endPoint","label":"opus_xXtB87_label","chart":"opus_xXtB87_chart","sparkline":"opus_xXtB87_sparkline","line":"opus_xXtB87_line"};
7613
7695
 
7614
7696
  // ../../components/Sparkline/Sparkline.tsx
7615
7697
  var import_jsx_runtime52 = require("react/jsx-runtime");
@@ -7675,7 +7757,7 @@ function Sparkline({
7675
7757
  }
7676
7758
 
7677
7759
  // ../../components/ProgressRing/ProgressRing.module.css
7678
- var ProgressRing_default = {"track":"opus_YxX6Hh_track","svg":"opus_YxX6Hh_svg","center":"opus_YxX6Hh_center","ring":"opus_YxX6Hh_ring","value":"opus_YxX6Hh_value"};
7760
+ var ProgressRing_default = {"ring":"opus_YxX6Hh_ring","track":"opus_YxX6Hh_track","svg":"opus_YxX6Hh_svg","center":"opus_YxX6Hh_center","value":"opus_YxX6Hh_value"};
7679
7761
 
7680
7762
  // ../../components/ProgressRing/ProgressRing.tsx
7681
7763
  var import_jsx_runtime53 = require("react/jsx-runtime");
@@ -7708,7 +7790,7 @@ function ProgressRing({ label, max = 100, value }) {
7708
7790
  }
7709
7791
 
7710
7792
  // ../../components/ProgressBar/ProgressBar.module.css
7711
- var ProgressBar_default = {"fill":"opus_q04AvA_fill","bar":"opus_q04AvA_bar","label":"opus_q04AvA_label","value":"opus_q04AvA_value","track":"opus_q04AvA_track","header":"opus_q04AvA_header"};
7793
+ var ProgressBar_default = {"track":"opus_q04AvA_track","value":"opus_q04AvA_value","fill":"opus_q04AvA_fill","bar":"opus_q04AvA_bar","header":"opus_q04AvA_header","label":"opus_q04AvA_label"};
7712
7794
 
7713
7795
  // ../../components/ProgressBar/ProgressBar.tsx
7714
7796
  var import_jsx_runtime54 = require("react/jsx-runtime");
@@ -7728,7 +7810,7 @@ function ProgressBar({ label, max = 100, value }) {
7728
7810
  }
7729
7811
 
7730
7812
  // ../../components/Speedometer/Speedometer.module.css
7731
- var Speedometer_default = {"svg":"opus__jpB7z_svg","value":"opus__jpB7z_value","needle":"opus__jpB7z_needle","center":"opus__jpB7z_center","hub":"opus__jpB7z_hub","speedometer":"opus__jpB7z_speedometer","track":"opus__jpB7z_track"};
7813
+ var Speedometer_default = {"speedometer":"opus__jpB7z_speedometer","needle":"opus__jpB7z_needle","hub":"opus__jpB7z_hub","track":"opus__jpB7z_track","svg":"opus__jpB7z_svg","value":"opus__jpB7z_value","center":"opus__jpB7z_center"};
7732
7814
 
7733
7815
  // ../../components/Speedometer/Speedometer.tsx
7734
7816
  var import_jsx_runtime55 = require("react/jsx-runtime");
@@ -7761,7 +7843,7 @@ function Speedometer({ label, max = 100, value }) {
7761
7843
  }
7762
7844
 
7763
7845
  // ../../components/MetricTile/MetricTile.module.css
7764
- var MetricTile_default = {"sparklineReserve":"opus_-dz9KL_sparklineReserve","tile":"opus_-dz9KL_tile","sparklineRail":"opus_-dz9KL_sparklineRail"};
7846
+ var MetricTile_default = {"sparklineRail":"opus_-dz9KL_sparklineRail","tile":"opus_-dz9KL_tile","sparklineReserve":"opus_-dz9KL_sparklineReserve"};
7765
7847
 
7766
7848
  // ../../components/MetricTile/MetricTile.tsx
7767
7849
  var import_jsx_runtime56 = require("react/jsx-runtime");
@@ -7779,7 +7861,7 @@ function MetricTile({ density = "comfortable", icon, label, sparkline, value })
7779
7861
  }
7780
7862
 
7781
7863
  // ../../components/StatusIndicator/StatusIndicator.module.css
7782
- var StatusIndicator_default = {"dot":"opus_ZfaAEC_dot","indicator":"opus_ZfaAEC_indicator"};
7864
+ var StatusIndicator_default = {"indicator":"opus_ZfaAEC_indicator","dot":"opus_ZfaAEC_dot"};
7783
7865
 
7784
7866
  // ../../components/StatusIndicator/StatusIndicator.tsx
7785
7867
  var import_jsx_runtime57 = require("react/jsx-runtime");
@@ -7804,7 +7886,7 @@ function TrendBadge({ direction, value }) {
7804
7886
  }
7805
7887
 
7806
7888
  // ../../components/Panel/Panel.module.css
7807
- var Panel_default = {"header":"opus_JZHUc__header","panel":"opus_JZHUc__panel","title":"opus_JZHUc__title","footer":"opus_JZHUc__footer","description":"opus_JZHUc__description","headerActions":"opus_JZHUc__headerActions","body":"opus_JZHUc__body","heading":"opus_JZHUc__heading"};
7889
+ var Panel_default = {"heading":"opus_JZHUc__heading","title":"opus_JZHUc__title","description":"opus_JZHUc__description","headerActions":"opus_JZHUc__headerActions","body":"opus_JZHUc__body","header":"opus_JZHUc__header","panel":"opus_JZHUc__panel","footer":"opus_JZHUc__footer"};
7808
7890
 
7809
7891
  // ../../components/Panel/Panel.tsx
7810
7892
  var import_jsx_runtime59 = require("react/jsx-runtime");
@@ -7988,7 +8070,7 @@ function resolveSectionGapVars(gap = "md") {
7988
8070
  }
7989
8071
 
7990
8072
  // ../../components/Section/Section.module.css
7991
- var Section_default = {"row":"opus_FajZiH_row","body":"opus_FajZiH_body","description":"opus_FajZiH_description","header":"opus_FajZiH_header","title":"opus_FajZiH_title","section":"opus_FajZiH_section","column":"opus_FajZiH_column"};
8073
+ var Section_default = {"header":"opus_FajZiH_header","title":"opus_FajZiH_title","section":"opus_FajZiH_section","description":"opus_FajZiH_description","body":"opus_FajZiH_body","row":"opus_FajZiH_row","column":"opus_FajZiH_column"};
7992
8074
 
7993
8075
  // ../../components/Section/Section.tsx
7994
8076
  var import_jsx_runtime60 = require("react/jsx-runtime");
@@ -8069,7 +8151,7 @@ var Section = Object.assign(SectionRoot, {
8069
8151
  });
8070
8152
 
8071
8153
  // ../../components/Table/Table.module.css
8072
- var Table_default = {"empty":"opus_2q7S14_empty","table":"opus_2q7S14_table","visuallyHidden":"opus_2q7S14_visuallyHidden","wrap":"opus_2q7S14_wrap","caption":"opus_2q7S14_caption"};
8154
+ var Table_default = {"table":"opus_2q7S14_table","caption":"opus_2q7S14_caption","visuallyHidden":"opus_2q7S14_visuallyHidden","wrap":"opus_2q7S14_wrap","empty":"opus_2q7S14_empty"};
8073
8155
 
8074
8156
  // ../../components/Table/Table.tsx
8075
8157
  var import_jsx_runtime61 = require("react/jsx-runtime");
@@ -8099,11 +8181,11 @@ function Table({
8099
8181
 
8100
8182
  // ../../components/DataGrid/DataGrid.tsx
8101
8183
  var import_react37 = require("react");
8102
- var import_free_solid_svg_icons5 = require("@fortawesome/free-solid-svg-icons");
8103
- var import_react_fontawesome5 = require("@fortawesome/react-fontawesome");
8184
+ var import_free_solid_svg_icons6 = require("@fortawesome/free-solid-svg-icons");
8185
+ var import_react_fontawesome6 = require("@fortawesome/react-fontawesome");
8104
8186
 
8105
8187
  // ../../components/DataGrid/DataGrid.module.css
8106
- var DataGrid_default = {"grid":"opus_zN0bNb_grid","caption":"opus_zN0bNb_caption","wrap":"opus_zN0bNb_wrap","headerCell":"opus_zN0bNb_headerCell","sortIndicatorButton":"opus_zN0bNb_sortIndicatorButton","menuButton":"opus_zN0bNb_menuButton","visuallyHidden":"opus_zN0bNb_visuallyHidden","rowHeader":"opus_zN0bNb_rowHeader","sortIndicator":"opus_zN0bNb_sortIndicator","menuHost":"opus_zN0bNb_menuHost","frame":"opus_zN0bNb_frame","headerLabel":"opus_zN0bNb_headerLabel","menuSection":"opus_zN0bNb_menuSection","corner":"opus_zN0bNb_corner","menuFilterIcon":"opus_zN0bNb_menuFilterIcon","gridBody":"opus_zN0bNb_gridBody","sortButton":"opus_zN0bNb_sortButton","headerMenu":"opus_zN0bNb_headerMenu","menuChevron":"opus_zN0bNb_menuChevron","menuLabel":"opus_zN0bNb_menuLabel","menuAction":"opus_zN0bNb_menuAction","headerControls":"opus_zN0bNb_headerControls","columnResizeHandle":"opus_zN0bNb_columnResizeHandle","sortButtonLabel":"opus_zN0bNb_sortButtonLabel","empty":"opus_zN0bNb_empty","filterInput":"opus_zN0bNb_filterInput"};
8188
+ var DataGrid_default = {"wrap":"opus_zN0bNb_wrap","menuSection":"opus_zN0bNb_menuSection","menuAction":"opus_zN0bNb_menuAction","sortButton":"opus_zN0bNb_sortButton","sortIndicator":"opus_zN0bNb_sortIndicator","menuButton":"opus_zN0bNb_menuButton","visuallyHidden":"opus_zN0bNb_visuallyHidden","rowHeader":"opus_zN0bNb_rowHeader","menuFilterIcon":"opus_zN0bNb_menuFilterIcon","headerLabel":"opus_zN0bNb_headerLabel","caption":"opus_zN0bNb_caption","headerMenu":"opus_zN0bNb_headerMenu","grid":"opus_zN0bNb_grid","frame":"opus_zN0bNb_frame","headerCell":"opus_zN0bNb_headerCell","menuLabel":"opus_zN0bNb_menuLabel","columnResizeHandle":"opus_zN0bNb_columnResizeHandle","sortIndicatorButton":"opus_zN0bNb_sortIndicatorButton","menuChevron":"opus_zN0bNb_menuChevron","menuHost":"opus_zN0bNb_menuHost","filterInput":"opus_zN0bNb_filterInput","empty":"opus_zN0bNb_empty","headerControls":"opus_zN0bNb_headerControls","gridBody":"opus_zN0bNb_gridBody","corner":"opus_zN0bNb_corner","sortButtonLabel":"opus_zN0bNb_sortButtonLabel"};
8107
8189
 
8108
8190
  // ../../components/DataGrid/DataGrid.tsx
8109
8191
  var import_jsx_runtime62 = require("react/jsx-runtime");
@@ -8644,7 +8726,7 @@ function HeaderContent({
8644
8726
  "data-filter-active": filterActive,
8645
8727
  type: "button",
8646
8728
  onClick: (event) => onMenuToggle(event.currentTarget),
8647
- children: filterActive ? /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_react_fontawesome5.FontAwesomeIcon, { className: DataGrid_default.menuFilterIcon, icon: import_free_solid_svg_icons5.faFilter }) : /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("span", { "aria-hidden": "true", className: DataGrid_default.menuChevron })
8729
+ children: filterActive ? /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_react_fontawesome6.FontAwesomeIcon, { className: DataGrid_default.menuFilterIcon, icon: import_free_solid_svg_icons6.faFilter }) : /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("span", { "aria-hidden": "true", className: DataGrid_default.menuChevron })
8648
8730
  }
8649
8731
  ) : null
8650
8732
  ] }) : null
@@ -11046,7 +11128,7 @@ function SpecializedChart(props) {
11046
11128
  }
11047
11129
 
11048
11130
  // ../../components/Chart/Chart.module.css
11049
- var Chart_default = {"legend":"opus_L6guCK_legend","slice":"opus_L6guCK_slice","ring":"opus_L6guCK_ring","mapLand":"opus_L6guCK_mapLand","title":"opus_L6guCK_title","meta":"opus_L6guCK_meta","svg":"opus_L6guCK_svg","funnelText":"opus_L6guCK_funnelText","mapRegion":"opus_L6guCK_mapRegion","axisGuide":"opus_L6guCK_axisGuide","sankeyNode":"opus_L6guCK_sankeyNode","axisTitle":"opus_L6guCK_axisTitle","axes":"opus_L6guCK_axes","legendSwatch":"opus_L6guCK_legendSwatch","seriesD":"opus_L6guCK_seriesD","graphLabel":"opus_L6guCK_graphLabel","grid":"opus_L6guCK_grid","violin":"opus_L6guCK_violin","ridge":"opus_L6guCK_ridge","graphNode":"opus_L6guCK_graphNode","header":"opus_L6guCK_header","wick":"opus_L6guCK_wick","funnelGuide":"opus_L6guCK_funnelGuide","packLabel":"opus_L6guCK_packLabel","treemapLabel":"opus_L6guCK_treemapLabel","graphLink":"opus_L6guCK_graphLink","seriesB":"opus_L6guCK_seriesB","land":"opus_L6guCK_land","sankeySideValue":"opus_L6guCK_sankeySideValue","area":"opus_L6guCK_area","seriesA":"opus_L6guCK_seriesA","valueLabel":"opus_L6guCK_valueLabel","link":"opus_L6guCK_link","axisLabels":"opus_L6guCK_axisLabels","sankeySideLabel":"opus_L6guCK_sankeySideLabel","sankeySideName":"opus_L6guCK_sankeySideName","sankeyLink":"opus_L6guCK_sankeyLink","axisLine":"opus_L6guCK_axisLine","bar":"opus_L6guCK_bar","chart":"opus_L6guCK_chart","point":"opus_L6guCK_point","seriesC":"opus_L6guCK_seriesC","legendItem":"opus_L6guCK_legendItem","line":"opus_L6guCK_line","radarArea":"opus_L6guCK_radarArea","seriesE":"opus_L6guCK_seriesE","sankeyCenterLabel":"opus_L6guCK_sankeyCenterLabel","mapValue":"opus_L6guCK_mapValue","mapLabel":"opus_L6guCK_mapLabel","packParent":"opus_L6guCK_packParent","axisTick":"opus_L6guCK_axisTick","sankeyLabelBox":"opus_L6guCK_sankeyLabelBox","seriesF":"opus_L6guCK_seriesF","treemapGroupLabel":"opus_L6guCK_treemapGroupLabel","graphLinkColored":"opus_L6guCK_graphLinkColored","graphNodeRing":"opus_L6guCK_graphNodeRing","funnel":"opus_L6guCK_funnel","radarGrid":"opus_L6guCK_radarGrid"};
11131
+ var Chart_default = {"slice":"opus_L6guCK_slice","land":"opus_L6guCK_land","mapLand":"opus_L6guCK_mapLand","axisGuide":"opus_L6guCK_axisGuide","graphLink":"opus_L6guCK_graphLink","radarGrid":"opus_L6guCK_radarGrid","wick":"opus_L6guCK_wick","link":"opus_L6guCK_link","sankeyNode":"opus_L6guCK_sankeyNode","legendItem":"opus_L6guCK_legendItem","seriesE":"opus_L6guCK_seriesE","axisLabels":"opus_L6guCK_axisLabels","meta":"opus_L6guCK_meta","area":"opus_L6guCK_area","valueLabel":"opus_L6guCK_valueLabel","seriesF":"opus_L6guCK_seriesF","header":"opus_L6guCK_header","grid":"opus_L6guCK_grid","seriesB":"opus_L6guCK_seriesB","legend":"opus_L6guCK_legend","sankeyCenterLabel":"opus_L6guCK_sankeyCenterLabel","ring":"opus_L6guCK_ring","graphLinkColored":"opus_L6guCK_graphLinkColored","funnel":"opus_L6guCK_funnel","svg":"opus_L6guCK_svg","mapValue":"opus_L6guCK_mapValue","violin":"opus_L6guCK_violin","ridge":"opus_L6guCK_ridge","sankeySideName":"opus_L6guCK_sankeySideName","bar":"opus_L6guCK_bar","sankeySideValue":"opus_L6guCK_sankeySideValue","treemapLabel":"opus_L6guCK_treemapLabel","graphNode":"opus_L6guCK_graphNode","axisTick":"opus_L6guCK_axisTick","mapRegion":"opus_L6guCK_mapRegion","seriesD":"opus_L6guCK_seriesD","seriesA":"opus_L6guCK_seriesA","sankeySideLabel":"opus_L6guCK_sankeySideLabel","funnelText":"opus_L6guCK_funnelText","seriesC":"opus_L6guCK_seriesC","packParent":"opus_L6guCK_packParent","graphNodeRing":"opus_L6guCK_graphNodeRing","radarArea":"opus_L6guCK_radarArea","axisTitle":"opus_L6guCK_axisTitle","line":"opus_L6guCK_line","point":"opus_L6guCK_point","treemapGroupLabel":"opus_L6guCK_treemapGroupLabel","sankeyLabelBox":"opus_L6guCK_sankeyLabelBox","legendSwatch":"opus_L6guCK_legendSwatch","title":"opus_L6guCK_title","axes":"opus_L6guCK_axes","funnelGuide":"opus_L6guCK_funnelGuide","sankeyLink":"opus_L6guCK_sankeyLink","packLabel":"opus_L6guCK_packLabel","graphLabel":"opus_L6guCK_graphLabel","axisLine":"opus_L6guCK_axisLine","chart":"opus_L6guCK_chart","mapLabel":"opus_L6guCK_mapLabel"};
11050
11132
 
11051
11133
  // ../../components/Chart/Chart.tsx
11052
11134
  var import_jsx_runtime64 = require("react/jsx-runtime");
@@ -12146,7 +12228,7 @@ function Chart({
12146
12228
  }
12147
12229
 
12148
12230
  // ../../components/Skeleton/Skeleton.module.css
12149
- var Skeleton_default = {"line":"opus_27r9Md_line","stack":"opus_27r9Md_stack","avatarContent":"opus_27r9Md_avatarContent","skeleton":"opus_27r9Md_skeleton","tableRow":"opus_27r9Md_tableRow","skeletonPulse":"opus_27r9Md_skeletonPulse","skeletonShimmer":"opus_27r9Md_skeletonShimmer","avatar":"opus_27r9Md_avatar","media":"opus_27r9Md_media","tableCell":"opus_27r9Md_tableCell"};
12231
+ var Skeleton_default = {"skeletonPulse":"opus_27r9Md_skeletonPulse","avatar":"opus_27r9Md_avatar","line":"opus_27r9Md_line","tableCell":"opus_27r9Md_tableCell","skeletonShimmer":"opus_27r9Md_skeletonShimmer","avatarContent":"opus_27r9Md_avatarContent","media":"opus_27r9Md_media","stack":"opus_27r9Md_stack","tableRow":"opus_27r9Md_tableRow","skeleton":"opus_27r9Md_skeleton"};
12150
12232
 
12151
12233
  // ../../components/Skeleton/Skeleton.tsx
12152
12234
  var import_jsx_runtime65 = require("react/jsx-runtime");
@@ -12188,16 +12270,16 @@ function Skeleton({
12188
12270
 
12189
12271
  // ../../components/Carousel/Carousel.tsx
12190
12272
  var import_react40 = require("react");
12191
- var import_free_solid_svg_icons7 = require("@fortawesome/free-solid-svg-icons");
12192
- var import_react_fontawesome7 = require("@fortawesome/react-fontawesome");
12273
+ var import_free_solid_svg_icons8 = require("@fortawesome/free-solid-svg-icons");
12274
+ var import_react_fontawesome8 = require("@fortawesome/react-fontawesome");
12193
12275
 
12194
12276
  // ../../components/Lightbox/Lightbox.tsx
12195
12277
  var import_react39 = require("react");
12196
- var import_free_solid_svg_icons6 = require("@fortawesome/free-solid-svg-icons");
12197
- var import_react_fontawesome6 = require("@fortawesome/react-fontawesome");
12278
+ var import_free_solid_svg_icons7 = require("@fortawesome/free-solid-svg-icons");
12279
+ var import_react_fontawesome7 = require("@fortawesome/react-fontawesome");
12198
12280
 
12199
12281
  // ../../components/Lightbox/Lightbox.module.css
12200
- var Lightbox_default = {"lightboxFadeOut":"opus_s7Rpyv_lightboxFadeOut","frame":"opus_s7Rpyv_frame","lightboxFadeIn":"opus_s7Rpyv_lightboxFadeIn","image":"opus_s7Rpyv_image","overlay":"opus_s7Rpyv_overlay","lightbox":"opus_s7Rpyv_lightbox","lightboxPanelOut":"opus_s7Rpyv_lightboxPanelOut","closeIcon":"opus_s7Rpyv_closeIcon","caption":"opus_s7Rpyv_caption","trigger":"opus_s7Rpyv_trigger","close":"opus_s7Rpyv_close","lightboxPanelIn":"opus_s7Rpyv_lightboxPanelIn","panel":"opus_s7Rpyv_panel"};
12282
+ var Lightbox_default = {"lightbox":"opus_s7Rpyv_lightbox","lightboxPanelOut":"opus_s7Rpyv_lightboxPanelOut","close":"opus_s7Rpyv_close","trigger":"opus_s7Rpyv_trigger","lightboxFadeOut":"opus_s7Rpyv_lightboxFadeOut","lightboxPanelIn":"opus_s7Rpyv_lightboxPanelIn","overlay":"opus_s7Rpyv_overlay","panel":"opus_s7Rpyv_panel","image":"opus_s7Rpyv_image","caption":"opus_s7Rpyv_caption","frame":"opus_s7Rpyv_frame","closeIcon":"opus_s7Rpyv_closeIcon","lightboxFadeIn":"opus_s7Rpyv_lightboxFadeIn"};
12201
12283
 
12202
12284
  // ../../components/Lightbox/Lightbox.tsx
12203
12285
  var import_jsx_runtime66 = require("react/jsx-runtime");
@@ -12296,7 +12378,7 @@ function Lightbox({
12296
12378
  className: Lightbox_default.close,
12297
12379
  type: "button",
12298
12380
  onClick: () => setOpen(false),
12299
- children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_react_fontawesome6.FontAwesomeIcon, { "aria-hidden": "true", className: Lightbox_default.closeIcon, icon: import_free_solid_svg_icons6.faXmark })
12381
+ children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_react_fontawesome7.FontAwesomeIcon, { "aria-hidden": "true", className: Lightbox_default.closeIcon, icon: import_free_solid_svg_icons7.faXmark })
12300
12382
  }
12301
12383
  ),
12302
12384
  /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("figure", { className: Lightbox_default.panel, children: [
@@ -12312,7 +12394,7 @@ function Lightbox({
12312
12394
  }
12313
12395
 
12314
12396
  // ../../components/Carousel/Carousel.module.css
12315
- var Carousel_default = {"image":"opus_N4occJ_image","footer":"opus_N4occJ_footer","nav":"opus_N4occJ_nav","navIcon":"opus_N4occJ_navIcon","slide":"opus_N4occJ_slide","caption":"opus_N4occJ_caption","pips":"opus_N4occJ_pips","pip":"opus_N4occJ_pip","visuallyHidden":"opus_N4occJ_visuallyHidden","carousel":"opus_N4occJ_carousel","stage":"opus_N4occJ_stage","track":"opus_N4occJ_track","empty":"opus_N4occJ_empty"};
12397
+ var Carousel_default = {"visuallyHidden":"opus_N4occJ_visuallyHidden","stage":"opus_N4occJ_stage","slide":"opus_N4occJ_slide","pips":"opus_N4occJ_pips","track":"opus_N4occJ_track","nav":"opus_N4occJ_nav","navIcon":"opus_N4occJ_navIcon","footer":"opus_N4occJ_footer","carousel":"opus_N4occJ_carousel","image":"opus_N4occJ_image","caption":"opus_N4occJ_caption","pip":"opus_N4occJ_pip","empty":"opus_N4occJ_empty"};
12316
12398
 
12317
12399
  // ../../components/Carousel/Carousel.tsx
12318
12400
  var import_jsx_runtime67 = require("react/jsx-runtime");
@@ -12524,7 +12606,7 @@ function Carousel({
12524
12606
  disabled: isAnimating || !loopEnabled && trackIndex === 0,
12525
12607
  type: "button",
12526
12608
  onClick: handlePrevious,
12527
- children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_react_fontawesome7.FontAwesomeIcon, { "aria-hidden": "true", className: Carousel_default.navIcon, icon: import_free_solid_svg_icons7.faChevronLeft })
12609
+ children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_react_fontawesome8.FontAwesomeIcon, { "aria-hidden": "true", className: Carousel_default.navIcon, icon: import_free_solid_svg_icons8.faChevronLeft })
12528
12610
  }
12529
12611
  ),
12530
12612
  /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
@@ -12536,7 +12618,7 @@ function Carousel({
12536
12618
  disabled: isAnimating || !loopEnabled && trackIndex === trackImages.length - 1,
12537
12619
  type: "button",
12538
12620
  onClick: handleNext,
12539
- children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_react_fontawesome7.FontAwesomeIcon, { "aria-hidden": "true", className: Carousel_default.navIcon, icon: import_free_solid_svg_icons7.faChevronRight })
12621
+ children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_react_fontawesome8.FontAwesomeIcon, { "aria-hidden": "true", className: Carousel_default.navIcon, icon: import_free_solid_svg_icons8.faChevronRight })
12540
12622
  }
12541
12623
  ),
12542
12624
  showPips ? /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { "aria-label": "Choose slide", className: Carousel_default.pips, children: images.map((image, index) => {
@@ -12564,7 +12646,7 @@ function Carousel({
12564
12646
  }
12565
12647
 
12566
12648
  // ../../components/ImageThumbnail/ImageThumbnail.module.css
12567
- var ImageThumbnail_default = {"image":"opus_Gp1o-9_image","thumbnail":"opus_Gp1o-9_thumbnail","figure":"opus_Gp1o-9_figure","caption":"opus_Gp1o-9_caption"};
12649
+ var ImageThumbnail_default = {"thumbnail":"opus_Gp1o-9_thumbnail","figure":"opus_Gp1o-9_figure","image":"opus_Gp1o-9_image","caption":"opus_Gp1o-9_caption"};
12568
12650
 
12569
12651
  // ../../components/ImageThumbnail/ImageThumbnail.tsx
12570
12652
  var import_jsx_runtime68 = require("react/jsx-runtime");
@@ -12639,7 +12721,7 @@ var import_react42 = require("react");
12639
12721
  var import_react41 = require("react");
12640
12722
 
12641
12723
  // ../../components/ModelViewer/ModelViewer.module.css
12642
- var ModelViewer_default = {"viewer":"opus_f7gfHI_viewer","stage":"opus_f7gfHI_stage","canvasHost":"opus_f7gfHI_canvasHost","loading":"opus_f7gfHI_loading","caption":"opus_f7gfHI_caption","model":"opus_f7gfHI_model"};
12724
+ var ModelViewer_default = {"caption":"opus_f7gfHI_caption","stage":"opus_f7gfHI_stage","canvasHost":"opus_f7gfHI_canvasHost","viewer":"opus_f7gfHI_viewer","loading":"opus_f7gfHI_loading","model":"opus_f7gfHI_model"};
12643
12725
 
12644
12726
  // ../../components/ModelViewer/FireBarrelModelViewer.tsx
12645
12727
  var import_jsx_runtime70 = require("react/jsx-runtime");
@@ -12853,11 +12935,11 @@ function StandardModelViewer({
12853
12935
 
12854
12936
  // ../../components/ModelLightbox/ModelLightbox.tsx
12855
12937
  var import_react43 = require("react");
12856
- var import_free_solid_svg_icons8 = require("@fortawesome/free-solid-svg-icons");
12857
- var import_react_fontawesome8 = require("@fortawesome/react-fontawesome");
12938
+ var import_free_solid_svg_icons9 = require("@fortawesome/free-solid-svg-icons");
12939
+ var import_react_fontawesome9 = require("@fortawesome/react-fontawesome");
12858
12940
 
12859
12941
  // ../../components/ModelLightbox/ModelLightbox.module.css
12860
- var ModelLightbox_default = {"close":"opus_YYKGIB_close","overlay":"opus_YYKGIB_overlay","lightbox":"opus_YYKGIB_lightbox","modelLightboxFadeIn":"opus_YYKGIB_modelLightboxFadeIn","modelLightboxPanelOut":"opus_YYKGIB_modelLightboxPanelOut","trigger":"opus_YYKGIB_trigger","modelLightboxFadeOut":"opus_YYKGIB_modelLightboxFadeOut","closeIcon":"opus_YYKGIB_closeIcon","modelLightboxPanelIn":"opus_YYKGIB_modelLightboxPanelIn","frame":"opus_YYKGIB_frame"};
12942
+ var ModelLightbox_default = {"overlay":"opus_YYKGIB_overlay","frame":"opus_YYKGIB_frame","trigger":"opus_YYKGIB_trigger","modelLightboxPanelIn":"opus_YYKGIB_modelLightboxPanelIn","modelLightboxPanelOut":"opus_YYKGIB_modelLightboxPanelOut","close":"opus_YYKGIB_close","closeIcon":"opus_YYKGIB_closeIcon","modelLightboxFadeOut":"opus_YYKGIB_modelLightboxFadeOut","lightbox":"opus_YYKGIB_lightbox","modelLightboxFadeIn":"opus_YYKGIB_modelLightboxFadeIn"};
12861
12943
 
12862
12944
  // ../../components/ModelLightbox/ModelLightbox.tsx
12863
12945
  var import_jsx_runtime72 = require("react/jsx-runtime");
@@ -12949,7 +13031,7 @@ function ModelLightbox({
12949
13031
  className: ModelLightbox_default.close,
12950
13032
  type: "button",
12951
13033
  onClick: () => setOpen(false),
12952
- children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_react_fontawesome8.FontAwesomeIcon, { "aria-hidden": "true", className: ModelLightbox_default.closeIcon, icon: import_free_solid_svg_icons8.faXmark })
13034
+ children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_react_fontawesome9.FontAwesomeIcon, { "aria-hidden": "true", className: ModelLightbox_default.closeIcon, icon: import_free_solid_svg_icons9.faXmark })
12953
13035
  }
12954
13036
  ),
12955
13037
  /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(ModelViewer, { asset, height: "lightbox", showCaption })
@@ -12962,7 +13044,7 @@ function ModelLightbox({
12962
13044
  }
12963
13045
 
12964
13046
  // ../../components/ModelThumbnail/ModelThumbnail.module.css
12965
- var ModelThumbnail_default = {"staticThumbnail":"opus_NkO9Yb_staticThumbnail","caption":"opus_NkO9Yb_caption","content":"opus_NkO9Yb_content"};
13047
+ var ModelThumbnail_default = {"caption":"opus_NkO9Yb_caption","content":"opus_NkO9Yb_content","staticThumbnail":"opus_NkO9Yb_staticThumbnail"};
12966
13048
 
12967
13049
  // ../../components/ModelThumbnail/ModelThumbnail.tsx
12968
13050
  var import_jsx_runtime73 = require("react/jsx-runtime");
@@ -12997,7 +13079,7 @@ function ModelThumbnail({
12997
13079
  }
12998
13080
 
12999
13081
  // ../../components/ModelGallery/ModelGallery.module.css
13000
- var ModelGallery_default = {"gallery":"opus_8llAjm_gallery","empty":"opus_8llAjm_empty"};
13082
+ var ModelGallery_default = {"empty":"opus_8llAjm_empty","gallery":"opus_8llAjm_gallery"};
13001
13083
 
13002
13084
  // ../../components/ModelGallery/ModelGallery.tsx
13003
13085
  var import_jsx_runtime74 = require("react/jsx-runtime");
@@ -13029,17 +13111,17 @@ function ModelGallery({
13029
13111
  var import_react44 = require("react");
13030
13112
 
13031
13113
  // ../../components/CatalogIcon/CatalogIcon.tsx
13032
- var import_react_fontawesome9 = require("@fortawesome/react-fontawesome");
13114
+ var import_react_fontawesome10 = require("@fortawesome/react-fontawesome");
13033
13115
 
13034
13116
  // ../../lib/fontAwesomeIconCatalog.ts
13035
- var import_free_solid_svg_icons9 = require("@fortawesome/free-solid-svg-icons");
13117
+ var import_free_solid_svg_icons10 = require("@fortawesome/free-solid-svg-icons");
13036
13118
  function formatIconLabel(iconName) {
13037
13119
  return iconName.split("-").map((part) => part.charAt(0).toUpperCase() + part.slice(1)).join(" ");
13038
13120
  }
13039
13121
  function buildFontAwesomeIconCatalog() {
13040
13122
  const seen = /* @__PURE__ */ new Set();
13041
13123
  const catalog = [];
13042
- for (const [importName, icon] of Object.entries(import_free_solid_svg_icons9.fas)) {
13124
+ for (const [importName, icon] of Object.entries(import_free_solid_svg_icons10.fas)) {
13043
13125
  if (!importName.startsWith("fa") || typeof icon !== "object" || icon === null || !("iconName" in icon)) {
13044
13126
  continue;
13045
13127
  }
@@ -13076,11 +13158,11 @@ function filterFontAwesomeIcons(query) {
13076
13158
  // ../../components/CatalogIcon/CatalogIcon.tsx
13077
13159
  var import_jsx_runtime75 = require("react/jsx-runtime");
13078
13160
  function CatalogIcon({ iconName }) {
13079
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_react_fontawesome9.FontAwesomeIcon, { "aria-hidden": "true", icon: getFontAwesomeIconOption(iconName).icon });
13161
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(import_react_fontawesome10.FontAwesomeIcon, { "aria-hidden": "true", icon: getFontAwesomeIconOption(iconName).icon });
13080
13162
  }
13081
13163
 
13082
13164
  // ../../components/EmptyState/EmptyState.module.css
13083
- var EmptyState_default = {"copy":"opus_1KckGY_copy","iconWrap":"opus_1KckGY_iconWrap","description":"opus_1KckGY_description","title":"opus_1KckGY_title","actions":"opus_1KckGY_actions","root":"opus_1KckGY_root"};
13165
+ var EmptyState_default = {"actions":"opus_1KckGY_actions","iconWrap":"opus_1KckGY_iconWrap","root":"opus_1KckGY_root","title":"opus_1KckGY_title","description":"opus_1KckGY_description","copy":"opus_1KckGY_copy"};
13084
13166
 
13085
13167
  // ../../components/EmptyState/EmptyState.tsx
13086
13168
  var import_jsx_runtime76 = require("react/jsx-runtime");
@@ -13117,7 +13199,7 @@ function EmptyState({
13117
13199
  var import_react45 = require("react");
13118
13200
 
13119
13201
  // ../../components/Sidebar/Sidebar.module.css
13120
- var Sidebar_default = {"footer":"opus_4Pogux_footer","groupHeader":"opus_4Pogux_groupHeader","groupChevron":"opus_4Pogux_groupChevron","layout":"opus_4Pogux_layout","header":"opus_4Pogux_header","headerInner":"opus_4Pogux_headerInner","body":"opus_4Pogux_body","groupChevronOpen":"opus_4Pogux_groupChevronOpen","groupItems":"opus_4Pogux_groupItems","visuallyHidden":"opus_4Pogux_visuallyHidden","nav":"opus_4Pogux_nav","linkActive":"opus_4Pogux_linkActive","link":"opus_4Pogux_link","main":"opus_4Pogux_main","groupItemsWrap":"opus_4Pogux_groupItemsWrap","groupToggle":"opus_4Pogux_groupToggle","group":"opus_4Pogux_group","headerTitle":"opus_4Pogux_headerTitle","sidebar":"opus_4Pogux_sidebar","groupLabel":"opus_4Pogux_groupLabel"};
13202
+ var Sidebar_default = {"main":"opus_4Pogux_main","group":"opus_4Pogux_group","groupHeader":"opus_4Pogux_groupHeader","footer":"opus_4Pogux_footer","groupChevronOpen":"opus_4Pogux_groupChevronOpen","sidebar":"opus_4Pogux_sidebar","headerTitle":"opus_4Pogux_headerTitle","groupItems":"opus_4Pogux_groupItems","linkActive":"opus_4Pogux_linkActive","headerInner":"opus_4Pogux_headerInner","link":"opus_4Pogux_link","layout":"opus_4Pogux_layout","body":"opus_4Pogux_body","groupLabel":"opus_4Pogux_groupLabel","header":"opus_4Pogux_header","nav":"opus_4Pogux_nav","groupItemsWrap":"opus_4Pogux_groupItemsWrap","visuallyHidden":"opus_4Pogux_visuallyHidden","groupChevron":"opus_4Pogux_groupChevron","groupToggle":"opus_4Pogux_groupToggle"};
13121
13203
 
13122
13204
  // ../../components/Sidebar/Sidebar.tsx
13123
13205
  var import_jsx_runtime77 = require("react/jsx-runtime");
@@ -13226,7 +13308,7 @@ function SidebarLayout({ children, collapsed = false, main, side = "left" }) {
13226
13308
  var import_react46 = require("react");
13227
13309
 
13228
13310
  // ../../components/AccentColorPicker/AccentColorPicker.module.css
13229
- var AccentColorPicker_default = {"swatches":"opus_scMnrW_swatches","swatch":"opus_scMnrW_swatch"};
13311
+ var AccentColorPicker_default = {"swatch":"opus_scMnrW_swatch","swatches":"opus_scMnrW_swatches"};
13230
13312
 
13231
13313
  // ../../components/AccentColorPicker/AccentColorPicker.tsx
13232
13314
  var import_jsx_runtime78 = require("react/jsx-runtime");
@@ -13329,10 +13411,10 @@ function AccentColorPicker({
13329
13411
 
13330
13412
  // ../../components/IconPicker/IconPicker.tsx
13331
13413
  var import_react47 = require("react");
13332
- var import_react_fontawesome10 = require("@fortawesome/react-fontawesome");
13414
+ var import_react_fontawesome11 = require("@fortawesome/react-fontawesome");
13333
13415
 
13334
13416
  // ../../components/IconPicker/IconPicker.module.css
13335
- var IconPicker_default = {"grid":"opus_4E-Oa1_grid","triggerIcon":"opus_4E-Oa1_triggerIcon","root":"opus_4E-Oa1_root","empty":"opus_4E-Oa1_empty","trigger":"opus_4E-Oa1_trigger","menu":"opus_4E-Oa1_menu","optionIcon":"opus_4E-Oa1_optionIcon","triggerLabel":"opus_4E-Oa1_triggerLabel","option":"opus_4E-Oa1_option","search":"opus_4E-Oa1_search","chevron":"opus_4E-Oa1_chevron"};
13417
+ var IconPicker_default = {"triggerLabel":"opus_4E-Oa1_triggerLabel","root":"opus_4E-Oa1_root","trigger":"opus_4E-Oa1_trigger","chevron":"opus_4E-Oa1_chevron","option":"opus_4E-Oa1_option","menu":"opus_4E-Oa1_menu","search":"opus_4E-Oa1_search","empty":"opus_4E-Oa1_empty","optionIcon":"opus_4E-Oa1_optionIcon","triggerIcon":"opus_4E-Oa1_triggerIcon","grid":"opus_4E-Oa1_grid"};
13336
13418
 
13337
13419
  // ../../components/IconPicker/IconPicker.tsx
13338
13420
  var import_jsx_runtime79 = require("react/jsx-runtime");
@@ -13391,7 +13473,7 @@ function IconPicker({
13391
13473
  type: "button",
13392
13474
  onClick: () => setOpen((current) => !current),
13393
13475
  children: [
13394
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { "aria-hidden": "true", className: IconPicker_default.triggerIcon, children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_react_fontawesome10.FontAwesomeIcon, { icon: selected.icon }) }),
13476
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { "aria-hidden": "true", className: IconPicker_default.triggerIcon, children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_react_fontawesome11.FontAwesomeIcon, { icon: selected.icon }) }),
13395
13477
  /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: IconPicker_default.triggerLabel, children: selected.label })
13396
13478
  ]
13397
13479
  }
@@ -13425,7 +13507,7 @@ function IconPicker({
13425
13507
  setOpen(false);
13426
13508
  setQuery("");
13427
13509
  },
13428
- children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { "aria-hidden": "true", className: IconPicker_default.optionIcon, children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_react_fontawesome10.FontAwesomeIcon, { icon: entry.icon }) })
13510
+ children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { "aria-hidden": "true", className: IconPicker_default.optionIcon, children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_react_fontawesome11.FontAwesomeIcon, { icon: entry.icon }) })
13429
13511
  },
13430
13512
  entry.iconName
13431
13513
  )) : /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("p", { className: IconPicker_default.empty, children: "No icons match your search." }) })