@banyan_cloud/roots 2.0.66 → 2.0.68

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.
Files changed (111) hide show
  1. package/dist/cjs/index.js +299 -236
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/v2/index.js +2775 -403
  4. package/dist/cjs/v2/index.js.map +1 -1
  5. package/dist/esm/components/buttons/baseButton/types/index.d.ts +1 -1
  6. package/dist/esm/components/buttons/button/types/index.d.ts +2 -4
  7. package/dist/esm/components/charts/heatMapChart/HeatMapChartData.d.ts +531 -0
  8. package/dist/esm/components/datePicker/Story/DatePickerDoc.d.ts +2 -0
  9. package/dist/esm/components/datePicker/utils/index.d.ts +2 -1
  10. package/dist/esm/components/docs/icons/index.d.ts +6 -0
  11. package/dist/esm/components/docs/index.d.ts +2 -0
  12. package/dist/esm/components/docs/linkHeader/LinkHeader.d.ts +5 -0
  13. package/dist/esm/components/docs/propsTable/PropsTable.d.ts +5 -0
  14. package/dist/esm/components/input/checkbox/types/index.d.ts +1 -1
  15. package/dist/esm/components/input/dropdown/Dropdown.d.ts +1 -1
  16. package/dist/esm/components/input/radio/Radio.d.ts +1 -0
  17. package/dist/esm/components/input/textField/TextField.d.ts +2 -6
  18. package/dist/esm/components/table/table/tableFilters/TableFilters.d.ts +1 -1
  19. package/dist/esm/components/v2/accordion/Story/AccordionDoc.d.ts +2 -0
  20. package/dist/esm/components/v2/alert/Story/AlertDoc.d.ts +2 -0
  21. package/dist/esm/components/v2/badges/Badge.d.ts +3 -0
  22. package/dist/esm/components/v2/badges/Story/BadgeDoc.d.ts +2 -0
  23. package/dist/esm/components/v2/badges/assets/ArrowLeftIcon.d.ts +8 -0
  24. package/dist/esm/components/v2/badges/assets/ArrowRightIcon.d.ts +8 -0
  25. package/dist/esm/components/v2/badges/assets/ArrowUpIcon.d.ts +8 -0
  26. package/dist/esm/components/v2/badges/assets/CrossIcon/CrossCricleIcon.d.ts +9 -0
  27. package/dist/esm/components/v2/badges/assets/CrossIcon/CrossFilledIcon.d.ts +10 -0
  28. package/dist/esm/components/v2/badges/assets/CrossIcon/CrossIcon.d.ts +8 -0
  29. package/dist/esm/components/v2/badges/assets/DotIcon.d.ts +8 -0
  30. package/dist/esm/components/v2/badges/assets/PlusIcon.d.ts +8 -0
  31. package/dist/esm/components/v2/badges/constants/index.d.ts +3 -0
  32. package/dist/esm/components/v2/badges/types/index.d.ts +19 -0
  33. package/dist/esm/components/v2/breadcrumbs/Story/BreadcrumbDoc.d.ts +2 -0
  34. package/dist/esm/components/v2/buttons/baseButton/Story/BaseButtonDoc.d.ts +2 -0
  35. package/dist/esm/components/v2/buttons/baseButton/types/index.d.ts +1 -1
  36. package/dist/esm/components/v2/buttons/button/Story/ButtonDoc.d.ts +2 -0
  37. package/dist/esm/components/v2/buttons/button/types/index.d.ts +3 -3
  38. package/dist/esm/components/v2/cell/Story/BaseCellDoc.d.ts +2 -0
  39. package/dist/esm/components/v2/checkbox/Story/CheckboxDoc.d.ts +2 -0
  40. package/dist/esm/components/v2/icons/chevron-down/ChevronDownIcon.d.ts +4 -0
  41. package/dist/esm/components/v2/icons/chevron-down/index.d.ts +1 -0
  42. package/dist/esm/components/v2/icons/error/Error.d.ts +1 -0
  43. package/dist/esm/components/v2/icons/help/Help.d.ts +8 -0
  44. package/dist/esm/components/v2/icons/help/index.d.ts +1 -0
  45. package/dist/esm/components/v2/icons/index.d.ts +5 -2
  46. package/dist/esm/components/v2/icons/search/Search.d.ts +5 -0
  47. package/dist/esm/components/v2/icons/search/index.d.ts +1 -0
  48. package/dist/esm/components/v2/icons/warning/Warning.d.ts +1 -0
  49. package/dist/esm/components/v2/index.d.ts +2 -0
  50. package/dist/esm/components/v2/inlineLoader/Story/InlineLoaderDoc.d.ts +2 -0
  51. package/dist/esm/components/v2/input/dropdown/Dropdown.d.ts +4 -0
  52. package/dist/esm/components/v2/input/dropdown/Story/DropdownDoc.d.ts +2 -0
  53. package/dist/esm/components/v2/input/dropdown/index.d.ts +2 -0
  54. package/dist/esm/components/v2/input/dropdown/types/index.d.ts +66 -0
  55. package/dist/esm/components/v2/input/index.d.ts +2 -0
  56. package/dist/esm/components/v2/input/radio/Story/RadioDoc.d.ts +2 -0
  57. package/dist/esm/components/v2/input/textfield/Story/TextFieldDoc.d.ts +2 -0
  58. package/dist/esm/components/v2/input/textfield/TextField.d.ts +4 -0
  59. package/dist/esm/components/v2/input/textfield/index.d.ts +2 -0
  60. package/dist/esm/components/v2/input/textfield/types/index.d.ts +55 -0
  61. package/dist/esm/components/v2/input/toggle/Story/ToggleDoc.d.ts +2 -0
  62. package/dist/esm/components/v2/input/toggle/Toggle.d.ts +1 -11
  63. package/dist/esm/components/v2/input/toggle/types/index.d.ts +12 -0
  64. package/dist/esm/components/v2/link/Story/LinkDoc.d.ts +2 -0
  65. package/dist/esm/components/v2/modal/Story/BaseModalDoc.d.ts +2 -0
  66. package/dist/esm/components/v2/modal/dialogBox/Story/DialogDoc.d.ts +2 -0
  67. package/dist/esm/components/v2/pagination/Pagination.d.ts +7 -39
  68. package/dist/esm/components/v2/pagination/Story/PaginationDoc.d.ts +2 -0
  69. package/dist/esm/components/v2/pagination/types/index.d.ts +39 -0
  70. package/dist/esm/components/v2/skeleton/Skeleton.d.ts +1 -10
  71. package/dist/esm/components/v2/skeleton/Story/SkeletonDoc.d.ts +2 -0
  72. package/dist/esm/components/v2/skeleton/index.d.ts +1 -1
  73. package/dist/esm/components/v2/skeleton/types/index.d.ts +12 -0
  74. package/dist/esm/components/v2/stepper/Story/StepperDocs.d.ts +2 -0
  75. package/dist/esm/components/v2/table/baseTable/Story/BaseTableDoc.d.ts +2 -0
  76. package/dist/esm/components/v2/table/body/Story/TableBodyDoc.d.ts +2 -0
  77. package/dist/esm/components/v2/table/body/TableBody.d.ts +1 -11
  78. package/dist/esm/components/v2/table/body/types/index.d.ts +28 -0
  79. package/dist/esm/components/v2/table/cell/Story/CellDoc.d.ts +2 -0
  80. package/dist/esm/components/v2/table/header/Story/TableHeaderDoc.d.ts +2 -0
  81. package/dist/esm/components/v2/table/row/Story/RowDoc.d.ts +2 -0
  82. package/dist/esm/components/v2/table/table/Story/TableDoc.d.ts +2 -0
  83. package/dist/esm/components/v2/tabs/Story/TabsDoc.d.ts +2 -0
  84. package/dist/esm/components/v2/tags/Story/TagsDoc.d.ts +2 -0
  85. package/dist/esm/components/v2/tags/Tags.d.ts +4 -0
  86. package/dist/esm/components/v2/tags/assets/Indicator/Indicator.d.ts +4 -0
  87. package/dist/esm/components/v2/tags/assets/Indicator/types/index.d.ts +10 -0
  88. package/dist/esm/components/v2/tags/assets/TagCloser/TagCloserLg.d.ts +7 -0
  89. package/dist/esm/components/v2/tags/assets/TagCloser/TagCloserMd.d.ts +7 -0
  90. package/dist/esm/components/v2/tags/assets/TagCloser/TagCloserSm.d.ts +7 -0
  91. package/dist/esm/components/v2/tags/assets/TagCount/TagCountLg.d.ts +8 -0
  92. package/dist/esm/components/v2/tags/assets/TagCount/TagCountMd.d.ts +8 -0
  93. package/dist/esm/components/v2/tags/assets/TagCount/TagCountSm.d.ts +8 -0
  94. package/dist/esm/components/v2/tags/types/index.d.ts +31 -0
  95. package/dist/esm/components/v2/text/Story/TextDoc.d.ts +2 -0
  96. package/dist/esm/components/v2/tooltip/Story/TooltipDoc.d.ts +2 -0
  97. package/dist/esm/components/v2/tooltip/Tooltip.d.ts +3 -0
  98. package/dist/esm/components/v2/tooltip/index.d.ts +1 -0
  99. package/dist/esm/components/v2/tooltip/types/index.d.ts +42 -0
  100. package/dist/esm/components/widget/BaseWidgetStoriesData.d.ts +54 -0
  101. package/dist/esm/index.js +299 -236
  102. package/dist/esm/index.js.map +1 -1
  103. package/dist/esm/v2/index.js +2768 -403
  104. package/dist/esm/v2/index.js.map +1 -1
  105. package/package.json +28 -28
  106. package/src/styles/_responsive.scss +1 -1
  107. package/src/styles/main.css +78 -102
  108. package/dist/esm/components/v2/checkbox/types/Types.d.ts +0 -20
  109. package/src/styles/style-system/ComponentsFormat.stories.mdx +0 -30
  110. package/src/styles/style-system/Design.stories.mdx +0 -19
  111. package/src/styles/style-system/Style.stories.mdx +0 -110
@@ -190,9 +190,9 @@ function inputHelper(event) {
190
190
 
191
191
  var e=[],t=[];function n(n,r){if(n&&"undefined"!=typeof document){var a,s=!0===r.prepend?"prepend":"append",d=!0===r.singleTag,i="string"==typeof r.container?document.querySelector(r.container):document.getElementsByTagName("head")[0];if(d){var u=e.indexOf(i);-1===u&&(u=e.push(i)-1,t[u]={}),a=t[u]&&t[u][s]?t[u][s]:t[u][s]=c();}else a=c();65279===n.charCodeAt(0)&&(n=n.substring(1)),a.styleSheet?a.styleSheet.cssText+=n:a.appendChild(document.createTextNode(n));}function c(){var e=document.createElement("style");if(e.setAttribute("type","text/css"),r.attributes)for(var t=Object.keys(r.attributes),n=0;n<t.length;n++)e.setAttribute(t[n],r.attributes[t[n]]);var a="prepend"===s?"afterbegin":"beforeend";return i.insertAdjacentElement(a,e),e}}
192
192
 
193
- var css$M = ".BaseCell_module_root__e11a03a1 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 0.5rem;\n gap: 0.5rem;\n flex: none;\n height: 3rem;\n background: var(--light-color3);\n max-width: 100%;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1 > [data-elem*=component] {\n display: inline-block;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_sm__e11a03a1 {\n width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_md__e11a03a1 {\n width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_lg__e11a03a1 {\n width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_auto__e11a03a1 {\n width: auto;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusDefault__e11a03a1 {\n border-radius: 0.25rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusRound__e11a03a1 {\n border-radius: 50%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusEllipse__e11a03a1 {\n border-radius: 1.563rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusNone__e11a03a1 {\n border-radius: 0rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1 {\n flex-grow: 1;\n flex-shrink: 1;\n min-width: 3rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_sm__e11a03a1 {\n min-width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_md__e11a03a1 {\n min-width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_lg__e11a03a1 {\n min-width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_centered__e11a03a1 {\n justify-content: center;\n}";
193
+ var css$S = ".BaseCell_module_root__e11a03a1 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 0.5rem;\n gap: 0.5rem;\n flex: none;\n height: 3rem;\n background: var(--light-color3);\n max-width: 100%;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1 > [data-elem*=component] {\n display: inline-block;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_sm__e11a03a1 {\n width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_md__e11a03a1 {\n width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_lg__e11a03a1 {\n width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_auto__e11a03a1 {\n width: auto;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusDefault__e11a03a1 {\n border-radius: 0.25rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusRound__e11a03a1 {\n border-radius: 50%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusEllipse__e11a03a1 {\n border-radius: 1.563rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusNone__e11a03a1 {\n border-radius: 0rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1 {\n flex-grow: 1;\n flex-shrink: 1;\n min-width: 3rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_sm__e11a03a1 {\n min-width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_md__e11a03a1 {\n min-width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_lg__e11a03a1 {\n min-width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_centered__e11a03a1 {\n justify-content: center;\n}";
194
194
  var modules_3af9b74c$1 = {"root":"BaseCell_module_root__e11a03a1","sm":"BaseCell_module_sm__e11a03a1","md":"BaseCell_module_md__e11a03a1","lg":"BaseCell_module_lg__e11a03a1","auto":"BaseCell_module_auto__e11a03a1","border-radius-default":"BaseCell_module_borderRadiusDefault__e11a03a1","border-radius-round":"BaseCell_module_borderRadiusRound__e11a03a1","border-radius-ellipse":"BaseCell_module_borderRadiusEllipse__e11a03a1","border-radius-none":"BaseCell_module_borderRadiusNone__e11a03a1","flexible":"BaseCell_module_flexible__e11a03a1","centered":"BaseCell_module_centered__e11a03a1"};
195
- n(css$M,{});
195
+ n(css$S,{});
196
196
 
197
197
  /**
198
198
  * BaseCell - A flexible container component for displaying up to three components in a structured layout
@@ -258,9 +258,9 @@ var BaseCell$1 = /*#__PURE__*/forwardRef(function (props, ref) {
258
258
  return null;
259
259
  });
260
260
 
261
- var css$L = "button.BaseButton_module_root__eb55429f[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n display: inline-flex;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n border: none;\n background: none;\n padding: 0.5rem 0.75rem;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell]:focus {\n outline: 1px solid var(--primary-color4);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell]:active {\n outline: none;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell]:disabled {\n cursor: not-allowed;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell].BaseButton_module_contained__eb55429f {\n background: var(--text-color);\n color: var(--light-color3);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell].BaseButton_module_outlined__eb55429f {\n color: var(--text-color);\n border: 1px solid var(--text-color);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell].BaseButton_module_text__eb55429f {\n color: var(--text-color);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell] [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell] [data-elem=component2] {\n min-width: 0;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell] [data-elem=title] {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}";
261
+ var css$R = "button.BaseButton_module_root__eb55429f[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n display: inline-flex;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n border: none;\n background: none;\n padding: 0.5rem 0.75rem;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell]:focus {\n outline: 1px solid var(--primary-color4);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell]:active {\n outline: none;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell]:disabled {\n cursor: not-allowed;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell].BaseButton_module_contained__eb55429f {\n background: var(--text-color);\n color: var(--light-color3);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell].BaseButton_module_outlined__eb55429f {\n color: var(--text-color);\n border: 1px solid var(--text-color);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell].BaseButton_module_text__eb55429f {\n color: var(--text-color);\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell] [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell] [data-elem=component2] {\n min-width: 0;\n}\nbutton.BaseButton_module_root__eb55429f[data-elem=base-cell] [data-elem=title] {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}";
262
262
  var modules_ab72627b$1 = {"root":"BaseButton_module_root__eb55429f","contained":"BaseButton_module_contained__eb55429f","outlined":"BaseButton_module_outlined__eb55429f","text":"BaseButton_module_text__eb55429f"};
263
- n(css$L,{});
263
+ n(css$R,{});
264
264
 
265
265
  var BaseButton$1 = /*#__PURE__*/forwardRef(function (props, ref) {
266
266
  var _props$className = props.className,
@@ -310,9 +310,9 @@ var BaseButton$1 = /*#__PURE__*/forwardRef(function (props, ref) {
310
310
  });
311
311
  });
312
312
 
313
- var css$K = "button.Button_module_root__f628f9e2[data-elem=base-cell] {\n transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), border-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), box-shadow 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n display: inline-flex;\n align-items: center;\n justify-content: center;\n border: none;\n cursor: pointer;\n position: relative;\n width: -moz-fit-content;\n width: fit-content;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell] [data-elem=title] {\n font-family: Jakarta, sans-serif;\n font-weight: 600;\n font-size: 14px;\n line-height: 20px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeXs__f628f9e2 {\n height: 32px;\n padding: 0 12px;\n gap: 4px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeSm__f628f9e2 {\n height: 36px;\n padding: 0 14px;\n gap: 4px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeMd__f628f9e2 {\n height: 40px;\n padding: 0 16px;\n gap: 6px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeLg__f628f9e2 {\n height: 44px;\n padding: 0 18px;\n gap: 6px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2 {\n background: #1570ef;\n color: #ffffff;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2:hover:not(:disabled) {\n background: #175cd3;\n box-shadow: 0 2px 5px 0 rgba(46, 144, 250, 0.08), 0 0 0 1px rgba(46, 144, 250, 0.4), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2:active:not(:disabled) {\n background: #1849a9;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2 {\n background: #252b37;\n color: #ffffff;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2:hover:not(:disabled) {\n background: #414651;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2:active:not(:disabled) {\n background: #181d27;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #a4a7ae;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2 {\n background: #fafafa;\n color: #414651;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:not(:disabled) svg {\n color: #414651;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:hover:not(:disabled) {\n background: #f5f5f5;\n color: #252b37;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:active:not(:disabled) {\n background: #f5f5f5;\n color: #252b37;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #a4a7ae;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2 {\n background: transparent;\n color: #414651;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2:hover:not(:disabled) {\n background: #fafafa;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2:active:not(:disabled) {\n background: #f5f5f5;\n box-shadow: 0 0 0 1px #d5d7da;\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #535862;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2 {\n background: transparent;\n color: #414651;\n box-shadow: none;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2:hover:not(:disabled) {\n background: #fafafa;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2:active:not(:disabled) {\n background: #f5f5f5;\n box-shadow: none;\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #a4a7ae;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2 {\n background: #d92d20;\n color: #ffffff;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2:hover:not(:disabled) {\n background: #b42318;\n box-shadow: 0 2px 5px 0 rgba(217, 45, 32, 0.08), 0 0 0 1px rgba(217, 45, 32, 0.4), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2:active:not(:disabled) {\n background: #912018;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f04438;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2 {\n padding: 0 !important;\n aspect-ratio: 1/1;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeXs__f628f9e2 {\n width: 32px;\n height: 32px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeSm__f628f9e2 {\n width: 40px;\n height: 40px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeMd__f628f9e2 {\n width: 44px;\n height: 44px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeLg__f628f9e2 {\n width: 52px;\n height: 52px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell]:disabled {\n transition: background-color 150ms cubic-bezier(0.2, 0, 0.38, 0.9), color 150ms cubic-bezier(0.2, 0, 0.38, 0.9), opacity 150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n background: #f5f5f5;\n color: #a4a7ae;\n cursor: not-allowed;\n box-shadow: none;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell]:disabled [data-elem=title],\nbutton.Button_module_root__f628f9e2[data-elem=base-cell]:disabled svg {\n opacity: 0.6;\n}\n@media (prefers-reduced-motion: reduce) {\n button.Button_module_root__f628f9e2[data-elem=base-cell] {\n transition: none !important;\n }\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_unstyled__f628f9e2 {\n all: unset !important;\n display: inline-flex !important;\n align-items: center !important;\n cursor: pointer !important;\n background: transparent !important;\n padding: 4px !important;\n margin: 0 !important;\n border: none !important;\n box-shadow: none !important;\n border-radius: 4px !important;\n height: auto !important;\n width: auto !important;\n min-width: unset !important;\n font: inherit !important;\n color: inherit !important;\n outline: none !important;\n}\n\n.Button_module_iconXs__f628f9e2 {\n width: 18px !important;\n height: 18px !important;\n flex-shrink: 0;\n}\n\n.Button_module_iconSm__f628f9e2 {\n width: 18px !important;\n height: 18px !important;\n flex-shrink: 0;\n}\n\n.Button_module_iconMd__f628f9e2 {\n width: 18px !important;\n height: 18px !important;\n flex-shrink: 0;\n}\n\n.Button_module_iconLg__f628f9e2 {\n width: 20px !important;\n height: 20px !important;\n flex-shrink: 0;\n}";
313
+ var css$Q = "button.Button_module_root__f628f9e2[data-elem=base-cell] {\n transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), border-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), box-shadow 110ms cubic-bezier(0.2, 0, 0.38, 0.9);\n display: inline-flex;\n align-items: center;\n justify-content: center;\n border: none;\n cursor: pointer;\n position: relative;\n width: -moz-fit-content;\n width: fit-content;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell] [data-elem=title] {\n font-family: Jakarta, sans-serif;\n font-weight: 600;\n font-size: 14px;\n line-height: 20px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeXs__f628f9e2 {\n height: 32px;\n padding: 0 12px;\n gap: 4px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeSm__f628f9e2 {\n height: 36px;\n padding: 0 14px;\n gap: 4px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeMd__f628f9e2 {\n height: 40px;\n padding: 0 16px;\n gap: 6px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_sizeLg__f628f9e2 {\n height: 44px;\n padding: 0 18px;\n gap: 6px;\n border-radius: 6px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2 {\n background: #1570ef;\n color: #ffffff;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2:hover:not(:disabled) {\n background: #175cd3;\n box-shadow: 0 2px 5px 0 rgba(46, 144, 250, 0.08), 0 0 0 1px rgba(46, 144, 250, 0.4), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2:active:not(:disabled) {\n background: #1849a9;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_primary__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2 {\n background: #252b37;\n color: #ffffff;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2:hover:not(:disabled) {\n background: #414651;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2:active:not(:disabled) {\n background: #181d27;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_secondary__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #a4a7ae;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2 {\n background: #fafafa;\n color: #414651;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:not(:disabled) svg {\n color: #414651;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:hover:not(:disabled) {\n background: #f5f5f5;\n color: #252b37;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:active:not(:disabled) {\n background: #f5f5f5;\n color: #252b37;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_soft__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #a4a7ae;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2 {\n background: transparent;\n color: #414651;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2:hover:not(:disabled) {\n background: #fafafa;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2:active:not(:disabled) {\n background: #f5f5f5;\n box-shadow: 0 0 0 1px #d5d7da;\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_outline__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #535862;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2 {\n background: transparent;\n color: #414651;\n box-shadow: none;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2:hover:not(:disabled) {\n background: #fafafa;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2:active:not(:disabled) {\n background: #f5f5f5;\n box-shadow: none;\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_ghost__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #a4a7ae;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2 {\n background: #d92d20;\n color: #ffffff;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2:hover:not(:disabled) {\n background: #b42318;\n box-shadow: 0 2px 5px 0 rgba(217, 45, 32, 0.08), 0 0 0 1px rgba(217, 45, 32, 0.4), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2:active:not(:disabled) {\n background: #912018;\n box-shadow: 0 2px 5px 0 rgba(103, 110, 118, 0.08), 0 0 0 1px rgba(103, 110, 118, 0.16), 0 1px 1px 0 rgba(0, 0, 0, 0.12);\n transition-duration: 70ms;\n transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_critical__f628f9e2:focus-visible:not(:disabled) {\n outline: none;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #f04438;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2 {\n padding: 0 !important;\n aspect-ratio: 1/1;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeXs__f628f9e2 {\n width: 32px;\n height: 32px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeSm__f628f9e2 {\n width: 40px;\n height: 40px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeMd__f628f9e2 {\n width: 44px;\n height: 44px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_iconOnly__f628f9e2.Button_module_sizeLg__f628f9e2 {\n width: 52px;\n height: 52px;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell]:disabled {\n transition: background-color 150ms cubic-bezier(0.2, 0, 0.38, 0.9), color 150ms cubic-bezier(0.2, 0, 0.38, 0.9), opacity 150ms cubic-bezier(0.2, 0, 0.38, 0.9);\n background: #f5f5f5;\n color: #a4a7ae;\n cursor: not-allowed;\n box-shadow: none;\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell]:disabled [data-elem=title],\nbutton.Button_module_root__f628f9e2[data-elem=base-cell]:disabled svg {\n opacity: 0.6;\n}\n@media (prefers-reduced-motion: reduce) {\n button.Button_module_root__f628f9e2[data-elem=base-cell] {\n transition: none !important;\n }\n}\nbutton.Button_module_root__f628f9e2[data-elem=base-cell].Button_module_unstyled__f628f9e2 {\n all: unset !important;\n display: inline-flex !important;\n align-items: center !important;\n cursor: pointer !important;\n background: transparent !important;\n padding: 4px !important;\n margin: 0 !important;\n border: none !important;\n box-shadow: none !important;\n border-radius: 4px !important;\n height: auto !important;\n width: auto !important;\n min-width: unset !important;\n font: inherit !important;\n color: inherit !important;\n outline: none !important;\n}\n\n.Button_module_iconXs__f628f9e2 {\n width: 18px !important;\n height: 18px !important;\n flex-shrink: 0;\n}\n\n.Button_module_iconSm__f628f9e2 {\n width: 18px !important;\n height: 18px !important;\n flex-shrink: 0;\n}\n\n.Button_module_iconMd__f628f9e2 {\n width: 18px !important;\n height: 18px !important;\n flex-shrink: 0;\n}\n\n.Button_module_iconLg__f628f9e2 {\n width: 20px !important;\n height: 20px !important;\n flex-shrink: 0;\n}";
314
314
  var modules_b0070f27$1 = {"root":"Button_module_root__f628f9e2","size-xs":"Button_module_sizeXs__f628f9e2","size-sm":"Button_module_sizeSm__f628f9e2","size-md":"Button_module_sizeMd__f628f9e2","size-lg":"Button_module_sizeLg__f628f9e2","primary":"Button_module_primary__f628f9e2","secondary":"Button_module_secondary__f628f9e2","soft":"Button_module_soft__f628f9e2","outline":"Button_module_outline__f628f9e2","ghost":"Button_module_ghost__f628f9e2","critical":"Button_module_critical__f628f9e2","icon-only":"Button_module_iconOnly__f628f9e2","unstyled":"Button_module_unstyled__f628f9e2","icon-xs":"Button_module_iconXs__f628f9e2","icon-sm":"Button_module_iconSm__f628f9e2","icon-md":"Button_module_iconMd__f628f9e2","icon-lg":"Button_module_iconLg__f628f9e2"};
315
- n(css$K,{});
315
+ n(css$Q,{});
316
316
 
317
317
  var Button$1 = /*#__PURE__*/forwardRef(function (props, ref) {
318
318
  var _props$className = props.className,
@@ -459,8 +459,8 @@ var AlertIcon = {
459
459
  }
460
460
  };
461
461
 
462
- var css$J = ".Arrow_module_right__19f08663 {\n transform: rotate(0deg);\n}\n\n.Arrow_module_left__19f08663 {\n transform: rotate(180deg);\n}\n\n.Arrow_module_bottom__19f08663 {\n transform: rotate(90deg);\n}\n\n.Arrow_module_top__19f08663 {\n transform: rotate(270deg);\n}";
463
- n(css$J,{});
462
+ var css$P = ".Arrow_module_right__19f08663 {\n transform: rotate(0deg);\n}\n\n.Arrow_module_left__19f08663 {\n transform: rotate(180deg);\n}\n\n.Arrow_module_bottom__19f08663 {\n transform: rotate(90deg);\n}\n\n.Arrow_module_top__19f08663 {\n transform: rotate(270deg);\n}";
463
+ n(css$P,{});
464
464
 
465
465
  var Caret = function Caret(props) {
466
466
  var _props$className = props.className,
@@ -586,8 +586,8 @@ var Checked = function Checked(props) {
586
586
  });
587
587
  };
588
588
 
589
- var css$I = ".Chevron_module_left__8b1808eb {\n transform: rotate(0deg);\n}\n\n.Chevron_module_bottom__8b1808eb {\n transform: rotate(90deg);\n}\n\n.Chevron_module_right__8b1808eb {\n transform: rotate(180deg);\n}\n\n.Chevron_module_top__8b1808eb {\n transform: rotate(270deg);\n}";
590
- n(css$I,{});
589
+ var css$O = ".Chevron_module_left__8b1808eb {\n transform: rotate(0deg);\n}\n\n.Chevron_module_bottom__8b1808eb {\n transform: rotate(90deg);\n}\n\n.Chevron_module_right__8b1808eb {\n transform: rotate(180deg);\n}\n\n.Chevron_module_top__8b1808eb {\n transform: rotate(270deg);\n}";
590
+ n(css$O,{});
591
591
 
592
592
  var Cross = function Cross(props) {
593
593
  var className = props.className;
@@ -850,9 +850,9 @@ var ViewPasswordIcon = function ViewPasswordIcon(props) {
850
850
  });
851
851
  };
852
852
 
853
- var css$H = ".Accordion_module_root__3fa1d289 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n width: 100%;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.5rem;\n padding: 0.5rem 1rem;\n cursor: pointer;\n border: 0;\n border: 2px solid transparent;\n border-top: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] svg {\n transition: all 0.3s ease-in-out;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component1], .Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component1] svg, .Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] svg {\n transform: rotate(180deg);\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--text-color);\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] {\n margin-left: auto;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] .Accordion_module_title__3fa1d289 {\n flex: 1 1 auto;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n color: var(--text-color);\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell]:hover {\n border-left-color: #e86a00;\n background: #e4e4e4;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] :focus-visible {\n border-color: #3b82f6;\n}\n.Accordion_module_root__3fa1d289:not(.Accordion_module_open__3fa1d289):not(:has(+ .Accordion_module_root__3fa1d289)) > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-bottom: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-top: 0;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 + .Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-top: 0;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_body__3fa1d289 {\n padding: 0.5rem 2.5rem;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-left-color: #e86a00;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] [data-elem=component3] svg {\n transform: none;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 {\n border-bottom: 1px solid #ededed;\n border-top: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_body__3fa1d289 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_body__3fa1d289 > button[data-elem=base-cell] {\n width: -moz-fit-content;\n width: fit-content;\n align-self: flex-end;\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_body__3fa1d289 > button[data-elem=base-cell] .Accordion_module_expand__3fa1d289 {\n height: 1.5rem;\n width: 1.5rem;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n cursor: not-allowed;\n pointer-events: none;\n background: transparent;\n border-top: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] .Accordion_module_title__3fa1d289 {\n color: #161616;\n opacity: 25%;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] svg {\n opacity: 0.25;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_body__3fa1d289 {\n display: none;\n}";
853
+ var css$N = ".Accordion_module_root__3fa1d289 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n width: 100%;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.5rem;\n padding: 0.5rem 1rem;\n cursor: pointer;\n border: 0;\n border: 2px solid transparent;\n border-top: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] svg {\n transition: all 0.3s ease-in-out;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component1], .Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component1] svg, .Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] svg {\n transform: rotate(180deg);\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--text-color);\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] > [data-elem=component3] {\n margin-left: auto;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] .Accordion_module_title__3fa1d289 {\n flex: 1 1 auto;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n color: var(--text-color);\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell]:hover {\n border-left-color: #e86a00;\n background: #e4e4e4;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] :focus-visible {\n border-color: #3b82f6;\n}\n.Accordion_module_root__3fa1d289:not(.Accordion_module_open__3fa1d289):not(:has(+ .Accordion_module_root__3fa1d289)) > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-bottom: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-top: 0;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 + .Accordion_module_root__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-top: 0;\n}\n.Accordion_module_root__3fa1d289 > .Accordion_module_body__3fa1d289 {\n padding: 0.5rem 2.5rem;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n border-left-color: #e86a00;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] [data-elem=component3] svg {\n transform: none;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 {\n border-bottom: 1px solid #ededed;\n border-top: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_body__3fa1d289 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_body__3fa1d289 > button[data-elem=base-cell] {\n width: -moz-fit-content;\n width: fit-content;\n align-self: flex-end;\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_open__3fa1d289 > .Accordion_module_body__3fa1d289 > button[data-elem=base-cell] .Accordion_module_expand__3fa1d289 {\n height: 1.5rem;\n width: 1.5rem;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] {\n cursor: not-allowed;\n pointer-events: none;\n background: transparent;\n border-top: 1px solid #ededed;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] .Accordion_module_title__3fa1d289 {\n color: #161616;\n opacity: 25%;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_header__3fa1d289[data-elem=base-cell] svg {\n opacity: 0.25;\n}\n.Accordion_module_root__3fa1d289.Accordion_module_disabled__3fa1d289 > .Accordion_module_body__3fa1d289 {\n display: none;\n}";
854
854
  var modules_8207625f = {"root":"Accordion_module_root__3fa1d289","header":"Accordion_module_header__3fa1d289","title":"Accordion_module_title__3fa1d289","open":"Accordion_module_open__3fa1d289","body":"Accordion_module_body__3fa1d289","expand":"Accordion_module_expand__3fa1d289","disabled":"Accordion_module_disabled__3fa1d289"};
855
- n(css$H,{});
855
+ n(css$N,{});
856
856
 
857
857
  /**
858
858
  * Accordion – A simple disclosure component with an optional left and right icon.
@@ -960,10 +960,6 @@ const oppositeSideMap = {
960
960
  bottom: 'top',
961
961
  top: 'bottom'
962
962
  };
963
- const oppositeAlignmentMap = {
964
- start: 'end',
965
- end: 'start'
966
- };
967
963
  function clamp(start, value, end) {
968
964
  return max(start, min(value, end));
969
965
  }
@@ -982,9 +978,9 @@ function getOppositeAxis(axis) {
982
978
  function getAxisLength(axis) {
983
979
  return axis === 'y' ? 'height' : 'width';
984
980
  }
985
- const yAxisSides = /*#__PURE__*/new Set(['top', 'bottom']);
986
981
  function getSideAxis(placement) {
987
- return yAxisSides.has(getSide(placement)) ? 'y' : 'x';
982
+ const firstChar = placement[0];
983
+ return firstChar === 't' || firstChar === 'b' ? 'y' : 'x';
988
984
  }
989
985
  function getAlignmentAxis(placement) {
990
986
  return getOppositeAxis(getSideAxis(placement));
@@ -1007,7 +1003,7 @@ function getExpandedPlacements(placement) {
1007
1003
  return [getOppositeAlignmentPlacement(placement), oppositePlacement, getOppositeAlignmentPlacement(oppositePlacement)];
1008
1004
  }
1009
1005
  function getOppositeAlignmentPlacement(placement) {
1010
- return placement.replace(/start|end/g, alignment => oppositeAlignmentMap[alignment]);
1006
+ return placement.includes('start') ? placement.replace('start', 'end') : placement.replace('end', 'start');
1011
1007
  }
1012
1008
  const lrPlacement = ['left', 'right'];
1013
1009
  const rlPlacement = ['right', 'left'];
@@ -1038,7 +1034,8 @@ function getOppositeAxisPlacements(placement, flipAlignment, direction, rtl) {
1038
1034
  return list;
1039
1035
  }
1040
1036
  function getOppositePlacement(placement) {
1041
- return placement.replace(/left|right|bottom|top/g, side => oppositeSideMap[side]);
1037
+ const side = getSide(placement);
1038
+ return oppositeSideMap[side] + placement.slice(side.length);
1042
1039
  }
1043
1040
  function expandPaddingObject(padding) {
1044
1041
  return {
@@ -1132,6 +1129,74 @@ function computeCoordsFromPlacement(_ref, placement, rtl) {
1132
1129
  return coords;
1133
1130
  }
1134
1131
 
1132
+ /**
1133
+ * Resolves with an object of overflow side offsets that determine how much the
1134
+ * element is overflowing a given clipping boundary on each side.
1135
+ * - positive = overflowing the boundary by that number of pixels
1136
+ * - negative = how many pixels left before it will overflow
1137
+ * - 0 = lies flush with the boundary
1138
+ * @see https://floating-ui.com/docs/detectOverflow
1139
+ */
1140
+ async function detectOverflow(state, options) {
1141
+ var _await$platform$isEle;
1142
+ if (options === void 0) {
1143
+ options = {};
1144
+ }
1145
+ const {
1146
+ x,
1147
+ y,
1148
+ platform,
1149
+ rects,
1150
+ elements,
1151
+ strategy
1152
+ } = state;
1153
+ const {
1154
+ boundary = 'clippingAncestors',
1155
+ rootBoundary = 'viewport',
1156
+ elementContext = 'floating',
1157
+ altBoundary = false,
1158
+ padding = 0
1159
+ } = evaluate(options, state);
1160
+ const paddingObject = getPaddingObject(padding);
1161
+ const altContext = elementContext === 'floating' ? 'reference' : 'floating';
1162
+ const element = elements[altBoundary ? altContext : elementContext];
1163
+ const clippingClientRect = rectToClientRect(await platform.getClippingRect({
1164
+ element: ((_await$platform$isEle = await (platform.isElement == null ? void 0 : platform.isElement(element))) != null ? _await$platform$isEle : true) ? element : element.contextElement || (await (platform.getDocumentElement == null ? void 0 : platform.getDocumentElement(elements.floating))),
1165
+ boundary,
1166
+ rootBoundary,
1167
+ strategy
1168
+ }));
1169
+ const rect = elementContext === 'floating' ? {
1170
+ x,
1171
+ y,
1172
+ width: rects.floating.width,
1173
+ height: rects.floating.height
1174
+ } : rects.reference;
1175
+ const offsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(elements.floating));
1176
+ const offsetScale = (await (platform.isElement == null ? void 0 : platform.isElement(offsetParent))) ? (await (platform.getScale == null ? void 0 : platform.getScale(offsetParent))) || {
1177
+ x: 1,
1178
+ y: 1
1179
+ } : {
1180
+ x: 1,
1181
+ y: 1
1182
+ };
1183
+ const elementClientRect = rectToClientRect(platform.convertOffsetParentRelativeRectToViewportRelativeRect ? await platform.convertOffsetParentRelativeRectToViewportRelativeRect({
1184
+ elements,
1185
+ rect,
1186
+ offsetParent,
1187
+ strategy
1188
+ }) : rect);
1189
+ return {
1190
+ top: (clippingClientRect.top - elementClientRect.top + paddingObject.top) / offsetScale.y,
1191
+ bottom: (elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom) / offsetScale.y,
1192
+ left: (clippingClientRect.left - elementClientRect.left + paddingObject.left) / offsetScale.x,
1193
+ right: (elementClientRect.right - clippingClientRect.right + paddingObject.right) / offsetScale.x
1194
+ };
1195
+ }
1196
+
1197
+ // Maximum number of resets that can occur before bailing to avoid infinite reset loops.
1198
+ const MAX_RESET_COUNT = 50;
1199
+
1135
1200
  /**
1136
1201
  * Computes the `x` and `y` coordinates that will place the floating element
1137
1202
  * next to a given reference element.
@@ -1146,7 +1211,10 @@ const computePosition$1 = async (reference, floating, config) => {
1146
1211
  middleware = [],
1147
1212
  platform
1148
1213
  } = config;
1149
- const validMiddleware = middleware.filter(Boolean);
1214
+ const platformWithDetectOverflow = platform.detectOverflow ? platform : {
1215
+ ...platform,
1216
+ detectOverflow
1217
+ };
1150
1218
  const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(floating));
1151
1219
  let rects = await platform.getElementRects({
1152
1220
  reference,
@@ -1158,13 +1226,17 @@ const computePosition$1 = async (reference, floating, config) => {
1158
1226
  y
1159
1227
  } = computeCoordsFromPlacement(rects, placement, rtl);
1160
1228
  let statefulPlacement = placement;
1161
- let middlewareData = {};
1162
1229
  let resetCount = 0;
1163
- for (let i = 0; i < validMiddleware.length; i++) {
1230
+ const middlewareData = {};
1231
+ for (let i = 0; i < middleware.length; i++) {
1232
+ const currentMiddleware = middleware[i];
1233
+ if (!currentMiddleware) {
1234
+ continue;
1235
+ }
1164
1236
  const {
1165
1237
  name,
1166
1238
  fn
1167
- } = validMiddleware[i];
1239
+ } = currentMiddleware;
1168
1240
  const {
1169
1241
  x: nextX,
1170
1242
  y: nextY,
@@ -1178,7 +1250,7 @@ const computePosition$1 = async (reference, floating, config) => {
1178
1250
  strategy,
1179
1251
  middlewareData,
1180
1252
  rects,
1181
- platform,
1253
+ platform: platformWithDetectOverflow,
1182
1254
  elements: {
1183
1255
  reference,
1184
1256
  floating
@@ -1186,14 +1258,11 @@ const computePosition$1 = async (reference, floating, config) => {
1186
1258
  });
1187
1259
  x = nextX != null ? nextX : x;
1188
1260
  y = nextY != null ? nextY : y;
1189
- middlewareData = {
1190
- ...middlewareData,
1191
- [name]: {
1192
- ...middlewareData[name],
1193
- ...data
1194
- }
1261
+ middlewareData[name] = {
1262
+ ...middlewareData[name],
1263
+ ...data
1195
1264
  };
1196
- if (reset && resetCount <= 50) {
1265
+ if (reset && resetCount < MAX_RESET_COUNT) {
1197
1266
  resetCount++;
1198
1267
  if (typeof reset === 'object') {
1199
1268
  if (reset.placement) {
@@ -1223,71 +1292,6 @@ const computePosition$1 = async (reference, floating, config) => {
1223
1292
  };
1224
1293
  };
1225
1294
 
1226
- /**
1227
- * Resolves with an object of overflow side offsets that determine how much the
1228
- * element is overflowing a given clipping boundary on each side.
1229
- * - positive = overflowing the boundary by that number of pixels
1230
- * - negative = how many pixels left before it will overflow
1231
- * - 0 = lies flush with the boundary
1232
- * @see https://floating-ui.com/docs/detectOverflow
1233
- */
1234
- async function detectOverflow(state, options) {
1235
- var _await$platform$isEle;
1236
- if (options === void 0) {
1237
- options = {};
1238
- }
1239
- const {
1240
- x,
1241
- y,
1242
- platform,
1243
- rects,
1244
- elements,
1245
- strategy
1246
- } = state;
1247
- const {
1248
- boundary = 'clippingAncestors',
1249
- rootBoundary = 'viewport',
1250
- elementContext = 'floating',
1251
- altBoundary = false,
1252
- padding = 0
1253
- } = evaluate(options, state);
1254
- const paddingObject = getPaddingObject(padding);
1255
- const altContext = elementContext === 'floating' ? 'reference' : 'floating';
1256
- const element = elements[altBoundary ? altContext : elementContext];
1257
- const clippingClientRect = rectToClientRect(await platform.getClippingRect({
1258
- element: ((_await$platform$isEle = await (platform.isElement == null ? void 0 : platform.isElement(element))) != null ? _await$platform$isEle : true) ? element : element.contextElement || (await (platform.getDocumentElement == null ? void 0 : platform.getDocumentElement(elements.floating))),
1259
- boundary,
1260
- rootBoundary,
1261
- strategy
1262
- }));
1263
- const rect = elementContext === 'floating' ? {
1264
- x,
1265
- y,
1266
- width: rects.floating.width,
1267
- height: rects.floating.height
1268
- } : rects.reference;
1269
- const offsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(elements.floating));
1270
- const offsetScale = (await (platform.isElement == null ? void 0 : platform.isElement(offsetParent))) ? (await (platform.getScale == null ? void 0 : platform.getScale(offsetParent))) || {
1271
- x: 1,
1272
- y: 1
1273
- } : {
1274
- x: 1,
1275
- y: 1
1276
- };
1277
- const elementClientRect = rectToClientRect(platform.convertOffsetParentRelativeRectToViewportRelativeRect ? await platform.convertOffsetParentRelativeRectToViewportRelativeRect({
1278
- elements,
1279
- rect,
1280
- offsetParent,
1281
- strategy
1282
- }) : rect);
1283
- return {
1284
- top: (clippingClientRect.top - elementClientRect.top + paddingObject.top) / offsetScale.y,
1285
- bottom: (elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom) / offsetScale.y,
1286
- left: (clippingClientRect.left - elementClientRect.left + paddingObject.left) / offsetScale.x,
1287
- right: (elementClientRect.right - clippingClientRect.right + paddingObject.right) / offsetScale.x
1288
- };
1289
- }
1290
-
1291
1295
  /**
1292
1296
  * Provides data to position an inner element of the floating element so that it
1293
1297
  * appears centered to the reference element.
@@ -1420,7 +1424,7 @@ const flip$1 = function (options) {
1420
1424
  fallbackPlacements.push(...getOppositeAxisPlacements(initialPlacement, flipAlignment, fallbackAxisSideDirection, rtl));
1421
1425
  }
1422
1426
  const placements = [initialPlacement, ...fallbackPlacements];
1423
- const overflow = await detectOverflow(state, detectOverflowOptions);
1427
+ const overflow = await platform.detectOverflow(state, detectOverflowOptions);
1424
1428
  const overflows = [];
1425
1429
  let overflowsData = ((_middlewareData$flip = middlewareData.flip) == null ? void 0 : _middlewareData$flip.overflows) || [];
1426
1430
  if (checkMainAxis) {
@@ -1604,7 +1608,8 @@ const shift$1 = function (options) {
1604
1608
  const {
1605
1609
  x,
1606
1610
  y,
1607
- placement
1611
+ placement,
1612
+ platform
1608
1613
  } = state;
1609
1614
  const {
1610
1615
  mainAxis: checkMainAxis = true,
@@ -1627,7 +1632,7 @@ const shift$1 = function (options) {
1627
1632
  x,
1628
1633
  y
1629
1634
  };
1630
- const overflow = await detectOverflow(state, detectOverflowOptions);
1635
+ const overflow = await platform.detectOverflow(state, detectOverflowOptions);
1631
1636
  const crossAxis = getSideAxis(getSide(placement));
1632
1637
  const mainAxis = getOppositeAxis(crossAxis);
1633
1638
  let mainAxisCoord = coords[mainAxis];
@@ -1691,7 +1696,7 @@ const size$1 = function (options) {
1691
1696
  apply = () => {},
1692
1697
  ...detectOverflowOptions
1693
1698
  } = evaluate(options, state);
1694
- const overflow = await detectOverflow(state, detectOverflowOptions);
1699
+ const overflow = await platform.detectOverflow(state, detectOverflowOptions);
1695
1700
  const side = getSide(placement);
1696
1701
  const alignment = getAlignment(placement);
1697
1702
  const isYAxis = getSideAxis(placement) === 'y';
@@ -1794,7 +1799,6 @@ function isShadowRoot(value) {
1794
1799
  }
1795
1800
  return value instanceof ShadowRoot || value instanceof getWindow$1(value).ShadowRoot;
1796
1801
  }
1797
- const invalidOverflowDisplayValues = /*#__PURE__*/new Set(['inline', 'contents']);
1798
1802
  function isOverflowElement(element) {
1799
1803
  const {
1800
1804
  overflow,
@@ -1802,32 +1806,35 @@ function isOverflowElement(element) {
1802
1806
  overflowY,
1803
1807
  display
1804
1808
  } = getComputedStyle$1(element);
1805
- return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !invalidOverflowDisplayValues.has(display);
1809
+ return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && display !== 'inline' && display !== 'contents';
1806
1810
  }
1807
- const tableElements = /*#__PURE__*/new Set(['table', 'td', 'th']);
1808
1811
  function isTableElement(element) {
1809
- return tableElements.has(getNodeName(element));
1812
+ return /^(table|td|th)$/.test(getNodeName(element));
1810
1813
  }
1811
- const topLayerSelectors = [':popover-open', ':modal'];
1812
1814
  function isTopLayer(element) {
1813
- return topLayerSelectors.some(selector => {
1814
- try {
1815
- return element.matches(selector);
1816
- } catch (_e) {
1817
- return false;
1815
+ try {
1816
+ if (element.matches(':popover-open')) {
1817
+ return true;
1818
1818
  }
1819
- });
1819
+ } catch (_e) {
1820
+ // no-op
1821
+ }
1822
+ try {
1823
+ return element.matches(':modal');
1824
+ } catch (_e) {
1825
+ return false;
1826
+ }
1820
1827
  }
1821
- const transformProperties = ['transform', 'translate', 'scale', 'rotate', 'perspective'];
1822
- const willChangeValues = ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'];
1823
- const containValues = ['paint', 'layout', 'strict', 'content'];
1828
+ const willChangeRe = /transform|translate|scale|rotate|perspective|filter/;
1829
+ const containRe = /paint|layout|strict|content/;
1830
+ const isNotNone = value => !!value && value !== 'none';
1831
+ let isWebKitValue;
1824
1832
  function isContainingBlock(elementOrCss) {
1825
- const webkit = isWebKit();
1826
1833
  const css = isElement$1(elementOrCss) ? getComputedStyle$1(elementOrCss) : elementOrCss;
1827
1834
 
1828
1835
  // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block
1829
1836
  // https://drafts.csswg.org/css-transforms-2/#individual-transforms
1830
- return transformProperties.some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || willChangeValues.some(value => (css.willChange || '').includes(value)) || containValues.some(value => (css.contain || '').includes(value));
1837
+ return isNotNone(css.transform) || isNotNone(css.translate) || isNotNone(css.scale) || isNotNone(css.rotate) || isNotNone(css.perspective) || !isWebKit() && (isNotNone(css.backdropFilter) || isNotNone(css.filter)) || willChangeRe.test(css.willChange || '') || containRe.test(css.contain || '');
1831
1838
  }
1832
1839
  function getContainingBlock(element) {
1833
1840
  let currentNode = getParentNode(element);
@@ -1842,12 +1849,13 @@ function getContainingBlock(element) {
1842
1849
  return null;
1843
1850
  }
1844
1851
  function isWebKit() {
1845
- if (typeof CSS === 'undefined' || !CSS.supports) return false;
1846
- return CSS.supports('-webkit-backdrop-filter', 'none');
1852
+ if (isWebKitValue == null) {
1853
+ isWebKitValue = typeof CSS !== 'undefined' && CSS.supports && CSS.supports('-webkit-backdrop-filter', 'none');
1854
+ }
1855
+ return isWebKitValue;
1847
1856
  }
1848
- const lastTraversableNodeNames = /*#__PURE__*/new Set(['html', 'body', '#document']);
1849
1857
  function isLastTraversableNode(node) {
1850
- return lastTraversableNodeNames.has(getNodeName(node));
1858
+ return /^(html|body|#document)$/.test(getNodeName(node));
1851
1859
  }
1852
1860
  function getComputedStyle$1(element) {
1853
1861
  return getWindow$1(element).getComputedStyle(element);
@@ -1903,8 +1911,9 @@ function getOverflowAncestors(node, list, traverseIframes) {
1903
1911
  if (isBody) {
1904
1912
  const frameElement = getFrameElement(win);
1905
1913
  return list.concat(win, win.visualViewport || [], isOverflowElement(scrollableAncestor) ? scrollableAncestor : [], frameElement && traverseIframes ? getOverflowAncestors(frameElement) : []);
1914
+ } else {
1915
+ return list.concat(scrollableAncestor, getOverflowAncestors(scrollableAncestor, [], traverseIframes));
1906
1916
  }
1907
- return list.concat(scrollableAncestor, getOverflowAncestors(scrollableAncestor, [], traverseIframes));
1908
1917
  }
1909
1918
  function getFrameElement(win) {
1910
1919
  return win.parent && Object.getPrototypeOf(win.parent) ? win.frameElement : null;
@@ -2081,7 +2090,7 @@ function convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {
2081
2090
  if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {
2082
2091
  scroll = getNodeScroll(offsetParent);
2083
2092
  }
2084
- if (isHTMLElement$1(offsetParent)) {
2093
+ if (isOffsetParentAnElement) {
2085
2094
  const offsetRect = getBoundingClientRect(offsetParent);
2086
2095
  scale = getScale(offsetParent);
2087
2096
  offsets.x = offsetRect.x + offsetParent.clientLeft;
@@ -2169,7 +2178,6 @@ function getViewportRect(element, strategy) {
2169
2178
  };
2170
2179
  }
2171
2180
 
2172
- const absoluteOrFixed = /*#__PURE__*/new Set(['absolute', 'fixed']);
2173
2181
  // Returns the inner client rect, subtracting scrollbars if present.
2174
2182
  function getInnerBoundingClientRect(element, strategy) {
2175
2183
  const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');
@@ -2234,7 +2242,7 @@ function getClippingElementAncestors(element, cache) {
2234
2242
  if (!currentNodeIsContaining && computedStyle.position === 'fixed') {
2235
2243
  currentContainingBlockComputedStyle = null;
2236
2244
  }
2237
- const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && absoluteOrFixed.has(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
2245
+ const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && (currentContainingBlockComputedStyle.position === 'absolute' || currentContainingBlockComputedStyle.position === 'fixed') || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
2238
2246
  if (shouldDropCurrentNode) {
2239
2247
  // Drop non-containing blocks.
2240
2248
  result = result.filter(ancestor => ancestor !== currentNode);
@@ -2259,20 +2267,23 @@ function getClippingRect(_ref) {
2259
2267
  } = _ref;
2260
2268
  const elementClippingAncestors = boundary === 'clippingAncestors' ? isTopLayer(element) ? [] : getClippingElementAncestors(element, this._c) : [].concat(boundary);
2261
2269
  const clippingAncestors = [...elementClippingAncestors, rootBoundary];
2262
- const firstClippingAncestor = clippingAncestors[0];
2263
- const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {
2264
- const rect = getClientRectFromClippingAncestor(element, clippingAncestor, strategy);
2265
- accRect.top = max(rect.top, accRect.top);
2266
- accRect.right = min(rect.right, accRect.right);
2267
- accRect.bottom = min(rect.bottom, accRect.bottom);
2268
- accRect.left = max(rect.left, accRect.left);
2269
- return accRect;
2270
- }, getClientRectFromClippingAncestor(element, firstClippingAncestor, strategy));
2270
+ const firstRect = getClientRectFromClippingAncestor(element, clippingAncestors[0], strategy);
2271
+ let top = firstRect.top;
2272
+ let right = firstRect.right;
2273
+ let bottom = firstRect.bottom;
2274
+ let left = firstRect.left;
2275
+ for (let i = 1; i < clippingAncestors.length; i++) {
2276
+ const rect = getClientRectFromClippingAncestor(element, clippingAncestors[i], strategy);
2277
+ top = max(rect.top, top);
2278
+ right = min(rect.right, right);
2279
+ bottom = min(rect.bottom, bottom);
2280
+ left = max(rect.left, left);
2281
+ }
2271
2282
  return {
2272
- width: clippingRect.right - clippingRect.left,
2273
- height: clippingRect.bottom - clippingRect.top,
2274
- x: clippingRect.left,
2275
- y: clippingRect.top
2283
+ width: right - left,
2284
+ height: bottom - top,
2285
+ x: left,
2286
+ y: top
2276
2287
  };
2277
2288
  }
2278
2289
 
@@ -2523,7 +2534,7 @@ function autoUpdate(reference, floating, update, options) {
2523
2534
  animationFrame = false
2524
2535
  } = options;
2525
2536
  const referenceEl = unwrapElement(reference);
2526
- const ancestors = ancestorScroll || ancestorResize ? [...(referenceEl ? getOverflowAncestors(referenceEl) : []), ...getOverflowAncestors(floating)] : [];
2537
+ const ancestors = ancestorScroll || ancestorResize ? [...(referenceEl ? getOverflowAncestors(referenceEl) : []), ...(floating ? getOverflowAncestors(floating) : [])] : [];
2527
2538
  ancestors.forEach(ancestor => {
2528
2539
  ancestorScroll && ancestor.addEventListener('scroll', update, {
2529
2540
  passive: true
@@ -2536,7 +2547,7 @@ function autoUpdate(reference, floating, update, options) {
2536
2547
  if (elementResize) {
2537
2548
  resizeObserver = new ResizeObserver(_ref => {
2538
2549
  let [firstEntry] = _ref;
2539
- if (firstEntry && firstEntry.target === referenceEl && resizeObserver) {
2550
+ if (firstEntry && firstEntry.target === referenceEl && resizeObserver && floating) {
2540
2551
  // Prevent update loops when using the `size` middleware.
2541
2552
  // https://github.com/floating-ui/floating-ui/issues/1740
2542
2553
  resizeObserver.unobserve(floating);
@@ -2551,7 +2562,9 @@ function autoUpdate(reference, floating, update, options) {
2551
2562
  if (referenceEl && !animationFrame) {
2552
2563
  resizeObserver.observe(referenceEl);
2553
2564
  }
2554
- resizeObserver.observe(floating);
2565
+ if (floating) {
2566
+ resizeObserver.observe(floating);
2567
+ }
2555
2568
  }
2556
2569
  let frameId;
2557
2570
  let prevRefRect = animationFrame ? getBoundingClientRect(reference) : null;
@@ -5368,9 +5381,9 @@ const useListNavigation = function (_ref, _temp2) {
5368
5381
  }, [activeId, disabledIndicesRef, listRef, enabled, orientation, rtl, virtual, open, activeIndex, nested, selectedIndex, openOnArrowKeyDown, focusItemOnHover, allowEscape, cols, loop, refs, focusItem, onNavigate, onOpenChange]);
5369
5382
  };
5370
5383
 
5371
- var css$G = ".Popper_module_backdrop__9fc51220 {\n position: fixed;\n z-index: 100;\n inset: 0;\n background: rgba(var(--black), 0.4);\n}\n.Popper_module_backdrop__9fc51220.Popper_module_transparent__9fc51220 {\n background: none;\n}\n.Popper_module_backdrop__9fc51220.Popper_module_hideBackdrop__9fc51220 {\n position: static !important;\n}";
5384
+ var css$M = ".Popper_module_backdrop__9fc51220 {\n position: fixed;\n z-index: 100;\n inset: 0;\n background: rgba(var(--black), 0.4);\n}\n.Popper_module_backdrop__9fc51220.Popper_module_transparent__9fc51220 {\n background: none;\n}\n.Popper_module_backdrop__9fc51220.Popper_module_hideBackdrop__9fc51220 {\n position: static !important;\n}";
5372
5385
  var modules_fe46b225 = {"backdrop":"Popper_module_backdrop__9fc51220","transparent":"Popper_module_transparent__9fc51220","hide-backdrop":"Popper_module_hideBackdrop__9fc51220"};
5373
- n(css$G,{});
5386
+ n(css$M,{});
5374
5387
 
5375
5388
  var FloatingOverlay = FloatingOverlay$1;
5376
5389
  var Popper = function Popper(_ref) {
@@ -5413,9 +5426,9 @@ var Popper = function Popper(_ref) {
5413
5426
  });
5414
5427
  };
5415
5428
 
5416
- var css$F = ".Alert_module_root__2ba50dc8 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n position: fixed;\n opacity: 1;\n border-radius: 8px;\n color: #0f172a;\n}\n.Alert_module_root__2ba50dc8.Alert_module_shadow__2ba50dc8 {\n box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionBottomCenter__2ba50dc8 {\n left: 50%;\n bottom: 1rem;\n transform: translateX(-50%);\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionTopRight__2ba50dc8 {\n right: 1rem;\n top: 1rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionBottomRight__2ba50dc8 {\n right: 1rem;\n bottom: 1rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionTopCenter__2ba50dc8 {\n left: 50%;\n top: 1rem;\n transform: translateX(-50%);\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.75rem;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_iconContainer__2ba50dc8 {\n width: 28px;\n height: 28px;\n border-radius: 50%;\n display: grid;\n place-items: center;\n flex-shrink: 0;\n background: rgba(255, 255, 255, 0.12);\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_iconContainer__2ba50dc8 .Alert_module_icon__2ba50dc8 {\n width: 16px;\n height: 16px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 2px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 .Alert_module_title__2ba50dc8 {\n font-size: 1rem;\n font-weight: 600;\n line-height: 20px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 .Alert_module_description__2ba50dc8 {\n font-size: 0.875rem;\n line-height: 18px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 .Alert_module_time__2ba50dc8 {\n font-size: 0.875rem;\n margin-top: 4px;\n}\n.Alert_module_root__2ba50dc8.Alert_module_card__2ba50dc8 .Alert_module_left__2ba50dc8 {\n align-items: flex-start;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_actions__2ba50dc8 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n gap: 0.5rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_inline__2ba50dc8 {\n height: 44px;\n width: 640px;\n padding: 0 1rem;\n align-items: center;\n border: 0.5px solid transparent;\n border-left: 2px solid transparent;\n background: #f8fafc;\n border-radius: 0.5rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_inline__2ba50dc8 .Alert_module_description__2ba50dc8,\n.Alert_module_root__2ba50dc8.Alert_module_inline__2ba50dc8 .Alert_module_time__2ba50dc8 {\n display: none;\n}\n.Alert_module_root__2ba50dc8.Alert_module_card__2ba50dc8 {\n width: 296px;\n padding: 0.5rem 1rem;\n flex-direction: column;\n gap: 0.75rem;\n border-radius: 0.75rem;\n border-left: 2px solid transparent;\n background: #ffffff;\n}\n.Alert_module_root__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #22c55e;\n}\n.Alert_module_root__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #22c55e;\n}\n.Alert_module_root__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #ef4444;\n}\n.Alert_module_root__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_card__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #ef4444;\n}\n.Alert_module_root__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #f59e0b;\n}\n.Alert_module_root__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #f59e0b;\n}\n.Alert_module_root__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #3b82f6;\n}\n.Alert_module_root__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #3b82f6;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8 {\n color: #0f172a;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #ecfdf5;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_card__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #fef2f2;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #fffbeb;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #eff6ff;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_card__2ba50dc8 {\n box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8 .Alert_module_description__2ba50dc8,\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8 .Alert_module_time__2ba50dc8 {\n color: #475569;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 {\n color: #e5e7eb;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #0b0f14;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_card__2ba50dc8 {\n box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_title__2ba50dc8 {\n color: #e5e7eb;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_description__2ba50dc8,\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_time__2ba50dc8 {\n color: #9ca3af;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_iconContainer__2ba50dc8 {\n background: rgba(255, 255, 255, 0.12);\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #22c55e;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #3b82f6;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #f59e0b;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #ef4444;\n}";
5429
+ var css$L = ".Alert_module_root__2ba50dc8 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n position: fixed;\n opacity: 1;\n border-radius: 8px;\n color: #0f172a;\n}\n.Alert_module_root__2ba50dc8.Alert_module_shadow__2ba50dc8 {\n box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionBottomCenter__2ba50dc8 {\n left: 50%;\n bottom: 1rem;\n transform: translateX(-50%);\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionTopRight__2ba50dc8 {\n right: 1rem;\n top: 1rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionBottomRight__2ba50dc8 {\n right: 1rem;\n bottom: 1rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_positionTopCenter__2ba50dc8 {\n left: 50%;\n top: 1rem;\n transform: translateX(-50%);\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.75rem;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_iconContainer__2ba50dc8 {\n width: 28px;\n height: 28px;\n border-radius: 50%;\n display: grid;\n place-items: center;\n flex-shrink: 0;\n background: rgba(255, 255, 255, 0.12);\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_iconContainer__2ba50dc8 .Alert_module_icon__2ba50dc8 {\n width: 16px;\n height: 16px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 2px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 .Alert_module_title__2ba50dc8 {\n font-size: 1rem;\n font-weight: 600;\n line-height: 20px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 .Alert_module_description__2ba50dc8 {\n font-size: 0.875rem;\n line-height: 18px;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_left__2ba50dc8 .Alert_module_content__2ba50dc8 .Alert_module_time__2ba50dc8 {\n font-size: 0.875rem;\n margin-top: 4px;\n}\n.Alert_module_root__2ba50dc8.Alert_module_card__2ba50dc8 .Alert_module_left__2ba50dc8 {\n align-items: flex-start;\n}\n.Alert_module_root__2ba50dc8 .Alert_module_actions__2ba50dc8 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n gap: 0.5rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_inline__2ba50dc8 {\n height: 44px;\n width: 640px;\n padding: 0 1rem;\n align-items: center;\n border: 0.5px solid transparent;\n border-left: 2px solid transparent;\n background: #f8fafc;\n border-radius: 0.5rem;\n}\n.Alert_module_root__2ba50dc8.Alert_module_inline__2ba50dc8 .Alert_module_description__2ba50dc8,\n.Alert_module_root__2ba50dc8.Alert_module_inline__2ba50dc8 .Alert_module_time__2ba50dc8 {\n display: none;\n}\n.Alert_module_root__2ba50dc8.Alert_module_card__2ba50dc8 {\n width: 296px;\n padding: 0.5rem 1rem;\n flex-direction: column;\n gap: 0.75rem;\n border-radius: 0.75rem;\n border-left: 2px solid transparent;\n background: #ffffff;\n}\n.Alert_module_root__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #22c55e;\n}\n.Alert_module_root__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #22c55e;\n}\n.Alert_module_root__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #ef4444;\n}\n.Alert_module_root__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_card__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #ef4444;\n}\n.Alert_module_root__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #f59e0b;\n}\n.Alert_module_root__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #f59e0b;\n}\n.Alert_module_root__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #3b82f6;\n}\n.Alert_module_root__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_card__2ba50dc8 {\n border-color: #3b82f6;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8 {\n color: #0f172a;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #ecfdf5;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_card__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #fef2f2;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #fffbeb;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #eff6ff;\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8.Alert_module_card__2ba50dc8 {\n box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);\n}\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8 .Alert_module_description__2ba50dc8,\n.Alert_module_root__2ba50dc8.Alert_module_light__2ba50dc8 .Alert_module_time__2ba50dc8 {\n color: #475569;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 {\n color: #e5e7eb;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_card__2ba50dc8 {\n background: #0b0f14;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_card__2ba50dc8 {\n box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_title__2ba50dc8 {\n color: #e5e7eb;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_description__2ba50dc8,\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_time__2ba50dc8 {\n color: #9ca3af;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8 .Alert_module_iconContainer__2ba50dc8 {\n background: rgba(255, 255, 255, 0.12);\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_success__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #22c55e;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_info__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #3b82f6;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_warning__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #f59e0b;\n}\n.Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_error__2ba50dc8.Alert_module_inline__2ba50dc8, .Alert_module_root__2ba50dc8.Alert_module_dark__2ba50dc8.Alert_module_danger__2ba50dc8.Alert_module_inline__2ba50dc8 {\n border-color: #ef4444;\n}";
5417
5430
  var modules_3a764ea3 = {"root":"Alert_module_root__2ba50dc8","shadow":"Alert_module_shadow__2ba50dc8","position-bottom-center":"Alert_module_positionBottomCenter__2ba50dc8","position-top-right":"Alert_module_positionTopRight__2ba50dc8","position-bottom-right":"Alert_module_positionBottomRight__2ba50dc8","position-top-center":"Alert_module_positionTopCenter__2ba50dc8","left":"Alert_module_left__2ba50dc8","icon-container":"Alert_module_iconContainer__2ba50dc8","icon":"Alert_module_icon__2ba50dc8","content":"Alert_module_content__2ba50dc8","title":"Alert_module_title__2ba50dc8","description":"Alert_module_description__2ba50dc8","time":"Alert_module_time__2ba50dc8","card":"Alert_module_card__2ba50dc8","actions":"Alert_module_actions__2ba50dc8","inline":"Alert_module_inline__2ba50dc8","success":"Alert_module_success__2ba50dc8","error":"Alert_module_error__2ba50dc8","danger":"Alert_module_danger__2ba50dc8","warning":"Alert_module_warning__2ba50dc8","info":"Alert_module_info__2ba50dc8","light":"Alert_module_light__2ba50dc8","dark":"Alert_module_dark__2ba50dc8"};
5418
- n(css$F,{});
5431
+ n(css$L,{});
5419
5432
 
5420
5433
  var ALERT_DISMISS_TIME = 2000;
5421
5434
  var ANIMATION = {
@@ -5629,9 +5642,9 @@ var Alert = function Alert(_ref, ref) {
5629
5642
  };
5630
5643
  var Alert$1 = /*#__PURE__*/forwardRef(Alert);
5631
5644
 
5632
- var css$E = ".BaseCell_module_root__e11a03a1 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 0.5rem;\n gap: 0.5rem;\n flex: none;\n height: 3rem;\n background: var(--light-color3);\n max-width: 100%;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1 > [data-elem*=component] {\n display: inline-block;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_sm__e11a03a1 {\n width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_md__e11a03a1 {\n width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_lg__e11a03a1 {\n width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_auto__e11a03a1 {\n width: auto;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusDefault__e11a03a1 {\n border-radius: 0.25rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusRound__e11a03a1 {\n border-radius: 50%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusEllipse__e11a03a1 {\n border-radius: 1.563rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusNone__e11a03a1 {\n border-radius: 0rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1 {\n flex-grow: 1;\n flex-shrink: 1;\n min-width: 3rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_sm__e11a03a1 {\n min-width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_md__e11a03a1 {\n min-width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_lg__e11a03a1 {\n min-width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_centered__e11a03a1 {\n justify-content: center;\n}";
5645
+ var css$K = ".BaseCell_module_root__e11a03a1 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 0.5rem;\n gap: 0.5rem;\n flex: none;\n height: 3rem;\n background: var(--light-color3);\n max-width: 100%;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1 > [data-elem*=component] {\n display: inline-block;\n max-height: 100%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_sm__e11a03a1 {\n width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_md__e11a03a1 {\n width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_lg__e11a03a1 {\n width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_auto__e11a03a1 {\n width: auto;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusDefault__e11a03a1 {\n border-radius: 0.25rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusRound__e11a03a1 {\n border-radius: 50%;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusEllipse__e11a03a1 {\n border-radius: 1.563rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_borderRadiusNone__e11a03a1 {\n border-radius: 0rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1 {\n flex-grow: 1;\n flex-shrink: 1;\n min-width: 3rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_sm__e11a03a1 {\n min-width: 9.063rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_md__e11a03a1 {\n min-width: 15.625rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_flexible__e11a03a1.BaseCell_module_lg__e11a03a1 {\n min-width: 21.875rem;\n}\n.BaseCell_module_root__e11a03a1.BaseCell_module_centered__e11a03a1 {\n justify-content: center;\n}";
5633
5646
  var modules_3af9b74c = {"root":"BaseCell_module_root__e11a03a1","sm":"BaseCell_module_sm__e11a03a1","md":"BaseCell_module_md__e11a03a1","lg":"BaseCell_module_lg__e11a03a1","auto":"BaseCell_module_auto__e11a03a1","border-radius-default":"BaseCell_module_borderRadiusDefault__e11a03a1","border-radius-round":"BaseCell_module_borderRadiusRound__e11a03a1","border-radius-ellipse":"BaseCell_module_borderRadiusEllipse__e11a03a1","border-radius-none":"BaseCell_module_borderRadiusNone__e11a03a1","flexible":"BaseCell_module_flexible__e11a03a1","centered":"BaseCell_module_centered__e11a03a1"};
5634
- n(css$E,{});
5647
+ n(css$K,{});
5635
5648
 
5636
5649
  /**
5637
5650
  * BaseCell - A flexible container component for displaying up to three components in a structured layout
@@ -5730,65 +5743,103 @@ var IndeterminateIcon = function IndeterminateIcon() {
5730
5743
 
5731
5744
  var Error$1 = function Error(props) {
5732
5745
  var _props$className = props.className,
5733
- className = _props$className === void 0 ? '' : _props$className;
5734
- return jsxs("svg", {
5746
+ className = _props$className === void 0 ? '' : _props$className,
5747
+ _props$hexagon = props.hexagon,
5748
+ hexagon = _props$hexagon === void 0 ? false : _props$hexagon;
5749
+ if (hexagon) {
5750
+ return jsxs("svg", {
5751
+ width: '16',
5752
+ height: '16',
5753
+ viewBox: '0 0 16 16',
5754
+ fill: 'none',
5755
+ className: className,
5756
+ xmlns: 'http://www.w3.org/2000/svg',
5757
+ children: [jsx("g", {
5758
+ "clip-path": 'url(#clip0_1528_9520)',
5759
+ children: jsx("path", {
5760
+ d: 'M5.00006 0.0500326C4.90631 0.0750332 4.72193 0.143783 4.59381 0.206283C4.36881 0.315658 4.28131 0.396908 2.34068 2.34066C0.396935 4.28128 0.315685 4.36878 0.20631 4.59378C-0.00931499 5.04378 6e-05 4.90003 6e-05 8.00003C6e-05 11.1 -0.00931499 10.9563 0.20631 11.4063C0.315685 11.6313 0.396935 11.7188 2.34068 13.6594C4.28131 15.6032 4.36881 15.6844 4.59381 15.7938C5.04381 16.0094 4.90006 16 8.00006 16C11.1001 16 10.9563 16.0094 11.4063 15.7938C11.6313 15.6844 11.7188 15.6032 13.6594 13.6594C15.6032 11.7188 15.6844 11.6313 15.7938 11.4063C16.0094 10.9563 16.0001 11.1 16.0001 8.00003C16.0001 4.90003 16.0094 5.04378 15.7938 4.59378C15.6844 4.36878 15.6032 4.28128 13.6594 2.34066C11.7188 0.396908 11.6313 0.315658 11.4063 0.206283C10.9563 -0.00934219 11.1032 3.24249e-05 7.98443 0.00315762C5.63756 0.00315762 5.14381 0.0125332 5.00006 0.0500326ZM8.65631 6.32816V8.65628H8.00006H7.34381V6.32816V4.00003H8.00006H8.65631V6.32816ZM8.46256 10.1407C8.64693 10.2407 8.77818 10.375 8.88131 10.5719C8.94068 10.6813 8.95319 10.7532 8.95319 11C8.95319 11.3407 8.90006 11.475 8.68756 11.6875C8.47506 11.9 8.34068 11.9532 8.00006 11.9532C7.75318 11.9532 7.68131 11.9407 7.57193 11.8813C7.24068 11.7063 7.06256 11.4375 7.03756 11.0813C7.02193 10.8125 7.06256 10.6469 7.19693 10.4469C7.30006 10.2907 7.53131 10.1157 7.70006 10.0625C7.75318 10.0469 7.90943 10.0375 8.04694 10.0407C8.25318 10.05 8.32506 10.0657 8.46256 10.1407Z',
5761
+ fill: '#F04438'
5762
+ })
5763
+ }), jsx("defs", {
5764
+ children: jsx("clipPath", {
5765
+ id: 'clip0_1528_9520',
5766
+ children: jsx("rect", {
5767
+ width: '16',
5768
+ height: '16',
5769
+ fill: 'white'
5770
+ })
5771
+ })
5772
+ })]
5773
+ });
5774
+ }
5775
+ return jsx("svg", {
5735
5776
  width: '16',
5736
5777
  height: '16',
5737
5778
  viewBox: '0 0 16 16',
5738
5779
  fill: 'none',
5739
5780
  className: className,
5740
5781
  xmlns: 'http://www.w3.org/2000/svg',
5741
- children: [jsx("g", {
5742
- "clip-path": 'url(#clip0_107_570)',
5743
- children: jsx("path", {
5744
- d: 'M5.00006 0.0500326C4.90631 0.0750332 4.72193 0.143783 4.59381 0.206283C4.36881 0.315658 4.28131 0.396908 2.34068 2.34066C0.396935 4.28128 0.315685 4.36878 0.20631 4.59378C-0.00931499 5.04378 6e-05 4.90003 6e-05 8.00003C6e-05 11.1 -0.00931499 10.9563 0.20631 11.4063C0.315685 11.6313 0.396935 11.7188 2.34068 13.6594C4.28131 15.6032 4.36881 15.6844 4.59381 15.7938C5.04381 16.0094 4.90006 16 8.00006 16C11.1001 16 10.9563 16.0094 11.4063 15.7938C11.6313 15.6844 11.7188 15.6032 13.6594 13.6594C15.6032 11.7188 15.6844 11.6313 15.7938 11.4063C16.0094 10.9563 16.0001 11.1 16.0001 8.00003C16.0001 4.90003 16.0094 5.04378 15.7938 4.59378C15.6844 4.36878 15.6032 4.28128 13.6594 2.34066C11.7188 0.396908 11.6313 0.315658 11.4063 0.206283C10.9563 -0.00934219 11.1032 3.24249e-05 7.98443 0.00315762C5.63756 0.00315762 5.14381 0.0125332 5.00006 0.0500326ZM8.65631 6.32816V8.65628H8.00006H7.34381V6.32816V4.00003H8.00006H8.65631V6.32816ZM8.46256 10.1407C8.64693 10.2407 8.77818 10.375 8.88131 10.5719C8.94068 10.6813 8.95319 10.7532 8.95319 11C8.95319 11.3407 8.90006 11.475 8.68756 11.6875C8.47506 11.9 8.34068 11.9532 8.00006 11.9532C7.75318 11.9532 7.68131 11.9407 7.57193 11.8813C7.24068 11.7063 7.06256 11.4375 7.03756 11.0813C7.02193 10.8125 7.06256 10.6469 7.19693 10.4469C7.30006 10.2907 7.53131 10.1157 7.70006 10.0625C7.75318 10.0469 7.90943 10.0375 8.04694 10.0407C8.25318 10.05 8.32506 10.0657 8.46256 10.1407Z',
5745
- fill: '#D92D20'
5746
- })
5747
- }), jsx("defs", {
5748
- children: jsx("clipPath", {
5749
- id: 'clip0_107_570',
5750
- children: jsx("rect", {
5751
- width: '16',
5752
- height: '16',
5753
- fill: 'white'
5754
- })
5755
- })
5756
- })]
5782
+ children: jsx("path", {
5783
+ d: 'M8 5.33334V8.00001M8 10.6667H8.00667M14.6667 8.00001C14.6667 11.6819 11.6819 14.6667 8 14.6667C4.31811 14.6667 1.33334 11.6819 1.33334 8.00001C1.33334 4.31811 4.31811 1.33334 8 1.33334C11.6819 1.33334 14.6667 4.31811 14.6667 8.00001Z',
5784
+ stroke: '#BD3C45',
5785
+ strokeWidth: '1.33333',
5786
+ strokeLinecap: 'round',
5787
+ strokeLinejoin: 'round'
5788
+ })
5757
5789
  });
5758
5790
  };
5759
5791
 
5760
5792
  var Warning = function Warning(props) {
5761
5793
  var _props$className = props.className,
5762
- className = _props$className === void 0 ? '' : _props$className;
5763
- return jsxs("svg", {
5794
+ className = _props$className === void 0 ? '' : _props$className,
5795
+ _props$hexagon = props.hexagon,
5796
+ hexagon = _props$hexagon === void 0 ? false : _props$hexagon;
5797
+ if (hexagon) {
5798
+ return jsxs("svg", {
5799
+ width: '16',
5800
+ height: '16',
5801
+ viewBox: '0 0 16 16',
5802
+ fill: 'none',
5803
+ className: className,
5804
+ xmlns: 'http://www.w3.org/2000/svg',
5805
+ children: [jsx("g", {
5806
+ "clip-path": 'url(#clip0_1528_9539)',
5807
+ children: jsx("path", {
5808
+ d: 'M5.00006 0.0500326C4.90631 0.0750332 4.72193 0.143783 4.59381 0.206283C4.36881 0.315658 4.28131 0.396908 2.34068 2.34066C0.396935 4.28128 0.315685 4.36878 0.20631 4.59378C-0.00931499 5.04378 6e-05 4.90003 6e-05 8.00003C6e-05 11.1 -0.00931499 10.9563 0.20631 11.4063C0.315685 11.6313 0.396935 11.7188 2.34068 13.6594C4.28131 15.6032 4.36881 15.6844 4.59381 15.7938C5.04381 16.0094 4.90006 16 8.00006 16C11.1001 16 10.9563 16.0094 11.4063 15.7938C11.6313 15.6844 11.7188 15.6032 13.6594 13.6594C15.6032 11.7188 15.6844 11.6313 15.7938 11.4063C16.0094 10.9563 16.0001 11.1 16.0001 8.00003C16.0001 4.90003 16.0094 5.04378 15.7938 4.59378C15.6844 4.36878 15.6032 4.28128 13.6594 2.34066C11.7188 0.396908 11.6313 0.315658 11.4063 0.206283C10.9563 -0.00934219 11.1032 3.24249e-05 7.98443 0.00315762C5.63756 0.00315762 5.14381 0.0125332 5.00006 0.0500326ZM8.65631 6.32816V8.65628H8.00006H7.34381V6.32816V4.00003H8.00006H8.65631V6.32816ZM8.46256 10.1407C8.64693 10.2407 8.77818 10.375 8.88131 10.5719C8.94068 10.6813 8.95319 10.7532 8.95319 11C8.95319 11.3407 8.90006 11.475 8.68756 11.6875C8.47506 11.9 8.34068 11.9532 8.00006 11.9532C7.75318 11.9532 7.68131 11.9407 7.57193 11.8813C7.24068 11.7063 7.06256 11.4375 7.03756 11.0813C7.02193 10.8125 7.06256 10.6469 7.19693 10.4469C7.30006 10.2907 7.53131 10.1157 7.70006 10.0625C7.75318 10.0469 7.90943 10.0375 8.04694 10.0407C8.25318 10.05 8.32506 10.0657 8.46256 10.1407Z',
5809
+ fill: '#F79009'
5810
+ })
5811
+ }), jsx("defs", {
5812
+ children: jsx("clipPath", {
5813
+ id: 'clip0_1528_9539',
5814
+ children: jsx("rect", {
5815
+ width: '16',
5816
+ height: '16',
5817
+ fill: 'white'
5818
+ })
5819
+ })
5820
+ })]
5821
+ });
5822
+ }
5823
+ return jsx("svg", {
5764
5824
  width: '16',
5765
5825
  height: '16',
5766
5826
  viewBox: '0 0 16 16',
5767
5827
  fill: 'none',
5768
5828
  className: className,
5769
5829
  xmlns: 'http://www.w3.org/2000/svg',
5770
- children: [jsx("g", {
5771
- "clip-path": 'url(#clip0_124_824)',
5772
- children: jsx("path", {
5773
- d: 'M5.00006 0.0500021C4.90631 0.0750027 4.72193 0.143752 4.59381 0.206252C4.36881 0.315627 4.28131 0.396877 2.34068 2.34063C0.396935 4.28125 0.315685 4.36875 0.20631 4.59375C-0.00931499 5.04375 6e-05 4.9 6e-05 8C6e-05 11.1 -0.00931499 10.9563 0.20631 11.4063C0.315685 11.6313 0.396935 11.7188 2.34068 13.6594C4.28131 15.6031 4.36881 15.6844 4.59381 15.7938C5.04381 16.0094 4.90006 16 8.00006 16C11.1001 16 10.9563 16.0094 11.4063 15.7938C11.6313 15.6844 11.7188 15.6031 13.6594 13.6594C15.6032 11.7188 15.6844 11.6313 15.7938 11.4063C16.0094 10.9563 16.0001 11.1 16.0001 8C16.0001 4.9 16.0094 5.04375 15.7938 4.59375C15.6844 4.36875 15.6032 4.28125 13.6594 2.34063C11.7188 0.396877 11.6313 0.315627 11.4063 0.206252C10.9563 -0.00937271 11.1032 1.90735e-06 7.98443 0.0031271C5.63756 0.0031271 5.14381 0.0125027 5.00006 0.0500021ZM8.65631 6.32813V8.65625H8.00006H7.34381V6.32813V4H8.00006H8.65631V6.32813ZM8.46256 10.1406C8.64693 10.2406 8.77818 10.375 8.88131 10.5719C8.94068 10.6813 8.95319 10.7531 8.95319 11C8.95319 11.3406 8.90006 11.475 8.68756 11.6875C8.47506 11.9 8.34068 11.9531 8.00006 11.9531C7.75318 11.9531 7.68131 11.9406 7.57193 11.8813C7.24068 11.7063 7.06256 11.4375 7.03756 11.0813C7.02193 10.8125 7.06256 10.6469 7.19693 10.4469C7.30006 10.2906 7.53131 10.1156 7.70006 10.0625C7.75318 10.0469 7.90943 10.0375 8.04694 10.0406C8.25318 10.05 8.32506 10.0656 8.46256 10.1406Z',
5774
- fill: '#F79009'
5775
- })
5776
- }), jsx("defs", {
5777
- children: jsx("clipPath", {
5778
- id: 'clip0_124_824',
5779
- children: jsx("rect", {
5780
- width: '16',
5781
- height: '16',
5782
- fill: 'white'
5783
- })
5784
- })
5785
- })]
5830
+ children: jsx("path", {
5831
+ d: 'M8 5.33334V8.00001M8 10.6667H8.00667M14.6667 8.00001C14.6667 11.6819 11.6819 14.6667 8 14.6667C4.31811 14.6667 1.33334 11.6819 1.33334 8.00001C1.33334 4.31811 4.31811 1.33334 8 1.33334C11.6819 1.33334 14.6667 4.31811 14.6667 8.00001Z',
5832
+ stroke: '#CBA006',
5833
+ strokeWidth: '1.33333',
5834
+ strokeLinecap: 'round',
5835
+ strokeLinejoin: 'round'
5836
+ })
5786
5837
  });
5787
5838
  };
5788
5839
 
5789
- var css$D = ".CheckBox_module_wrapper__efee7a6c {\n display: inline-flex;\n flex-direction: column;\n gap: 8px;\n cursor: pointer;\n user-select: none;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c {\n cursor: not-allowed;\n}\n\n.CheckBox_module_checkboxWrap__efee7a6c {\n display: inline-flex;\n align-items: flex-start;\n gap: 8px;\n}\n\n.CheckBox_module_input__efee7a6c {\n position: absolute;\n opacity: 0;\n width: 0;\n height: 0;\n margin: 0;\n pointer-events: none;\n}\n\n.CheckBox_module_box__efee7a6c {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n margin-top: 2px;\n border-radius: 4px;\n border: 1px solid #d5d7da;\n background: #ffffff;\n transition: background 120ms cubic-bezier(0.2, 0, 0.38, 0.9), border-color 120ms cubic-bezier(0.2, 0, 0.38, 0.9), box-shadow 120ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n.CheckBox_module_box__efee7a6c svg {\n width: 60%;\n height: 60%;\n color: #ffffff;\n}\n\n.CheckBox_module_sm__efee7a6c .CheckBox_module_box__efee7a6c {\n width: 14px;\n height: 14px;\n}\n\n.CheckBox_module_md__efee7a6c .CheckBox_module_box__efee7a6c {\n width: 16px;\n height: 16px;\n}\n\n.CheckBox_module_lg__efee7a6c .CheckBox_module_box__efee7a6c {\n width: 18px;\n height: 18px;\n}\n\n.CheckBox_module_xlg__efee7a6c .CheckBox_module_box__efee7a6c {\n width: 20px;\n height: 20px;\n}\n\n.CheckBox_module_sm__efee7a6c .CheckBox_module_label__efee7a6c,\n.CheckBox_module_md__efee7a6c .CheckBox_module_label__efee7a6c {\n font-size: 14px;\n line-height: 20px;\n}\n.CheckBox_module_sm__efee7a6c .CheckBox_module_subLabel__efee7a6c,\n.CheckBox_module_md__efee7a6c .CheckBox_module_subLabel__efee7a6c {\n font-size: 14px;\n line-height: 20px;\n}\n.CheckBox_module_sm__efee7a6c .CheckBox_module_message__efee7a6c,\n.CheckBox_module_md__efee7a6c .CheckBox_module_message__efee7a6c {\n font-size: 12px;\n line-height: 18px;\n}\n.CheckBox_module_sm__efee7a6c .CheckBox_module_message__efee7a6c svg,\n.CheckBox_module_md__efee7a6c .CheckBox_module_message__efee7a6c svg {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n\n.CheckBox_module_lg__efee7a6c .CheckBox_module_label__efee7a6c,\n.CheckBox_module_xlg__efee7a6c .CheckBox_module_label__efee7a6c {\n font-size: 16px;\n line-height: 24px;\n}\n.CheckBox_module_lg__efee7a6c .CheckBox_module_subLabel__efee7a6c,\n.CheckBox_module_xlg__efee7a6c .CheckBox_module_subLabel__efee7a6c {\n font-size: 16px;\n line-height: 24px;\n}\n.CheckBox_module_lg__efee7a6c .CheckBox_module_message__efee7a6c,\n.CheckBox_module_xlg__efee7a6c .CheckBox_module_message__efee7a6c {\n font-size: 14px;\n line-height: 20px;\n}\n.CheckBox_module_lg__efee7a6c .CheckBox_module_message__efee7a6c svg,\n.CheckBox_module_xlg__efee7a6c .CheckBox_module_message__efee7a6c svg {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n\n.CheckBox_module_labelWrap__efee7a6c {\n display: flex;\n flex-direction: column;\n}\n\n.CheckBox_module_label__efee7a6c {\n font-family: jakarta, sans-serif;\n font-weight: 500;\n color: #252b37;\n}\n\n.CheckBox_module_subLabel__efee7a6c {\n font-family: jakarta, sans-serif;\n font-weight: 400;\n color: #535862;\n}\n\n.CheckBox_module_message__efee7a6c {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n font-family: jakarta, sans-serif;\n font-weight: 500;\n}\n\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c):hover .CheckBox_module_box__efee7a6c {\n border-color: #1570ef;\n background: #ffffff;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c) .CheckBox_module_input__efee7a6c:focus-visible ~ .CheckBox_module_box__efee7a6c {\n border-color: #d5d7da;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c) .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c {\n background: #1570ef;\n border-color: #1570ef;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c) .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c svg {\n color: #ffffff;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c):hover .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c {\n background: #175cd3;\n border-color: #175cd3;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c) .CheckBox_module_input__efee7a6c:checked:focus-visible ~ .CheckBox_module_box__efee7a6c {\n background: #1570ef;\n border-color: #1570ef;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c) .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: #1570ef;\n border-color: #1570ef;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c) .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c svg {\n color: #ffffff;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c):hover .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: #175cd3;\n border-color: #175cd3;\n}\n.CheckBox_module_wrapper__efee7a6c:not(.CheckBox_module_disabled__efee7a6c):not(.CheckBox_module_readOnly__efee7a6c):not(.CheckBox_module_error__efee7a6c):not(.CheckBox_module_warning__efee7a6c) .CheckBox_module_input__efee7a6c:indeterminate:focus-visible ~ .CheckBox_module_box__efee7a6c {\n background: #1570ef;\n border-color: #1570ef;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\n\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c .CheckBox_module_box__efee7a6c {\n background: #f5f5f5;\n border-color: #e9eaeb;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: #f5f5f5;\n border-color: #e9eaeb;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c svg,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c svg {\n color: #a4a7ae;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c .CheckBox_module_label__efee7a6c,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_disabled__efee7a6c .CheckBox_module_subLabel__efee7a6c {\n color: #a4a7ae;\n}\n\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_readOnly__efee7a6c {\n cursor: default;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_readOnly__efee7a6c .CheckBox_module_box__efee7a6c {\n background: #f5f5f5;\n border-color: #d5d7da;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_readOnly__efee7a6c .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_readOnly__efee7a6c .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: #f5f5f5;\n border-color: #d5d7da;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_readOnly__efee7a6c .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c svg,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_readOnly__efee7a6c .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c svg {\n color: #414651;\n}\n\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c .CheckBox_module_box__efee7a6c {\n border-color: #d92d20;\n background: #ffffff;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c:hover .CheckBox_module_box__efee7a6c {\n border-color: #d92d20;\n background: #fef3f2;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c .CheckBox_module_input__efee7a6c:focus-visible ~ .CheckBox_module_box__efee7a6c {\n border-color: #d5d7da;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d92d20;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: #d92d20;\n border-color: #d92d20;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c svg,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c svg {\n color: #ffffff;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c:hover .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c, .CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c:hover .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: rgb(181.443373494, 37.6265060241, 26.756626506);\n border-color: rgb(181.443373494, 37.6265060241, 26.756626506);\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_error__efee7a6c .CheckBox_module_message__efee7a6c {\n color: #d92d20;\n}\n\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c .CheckBox_module_box__efee7a6c {\n border-color: #d5d7da;\n background: #ffffff;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c:hover .CheckBox_module_box__efee7a6c {\n border-color: #1570ef;\n background: #eff8ff;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c .CheckBox_module_input__efee7a6c:focus-visible ~ .CheckBox_module_box__efee7a6c {\n border-color: #d5d7da;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #dc6803;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c input:checked ~ .CheckBox_module_box__efee7a6c,\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: #1570ef;\n border-color: #1570ef;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c:hover .CheckBox_module_input__efee7a6c:checked ~ .CheckBox_module_box__efee7a6c, .CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c:hover .CheckBox_module_input__efee7a6c:indeterminate ~ .CheckBox_module_box__efee7a6c {\n background: #175cd3;\n border-color: #175cd3;\n}\n.CheckBox_module_wrapper__efee7a6c.CheckBox_module_warning__efee7a6c .CheckBox_module_message__efee7a6c {\n color: #dc6803;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .CheckBox_module_box__efee7a6c {\n transition: none !important;\n }\n}";
5790
- var modules_9f91d0e8 = {"wrapper":"CheckBox_module_wrapper__efee7a6c","disabled":"CheckBox_module_disabled__efee7a6c","checkboxWrap":"CheckBox_module_checkboxWrap__efee7a6c","input":"CheckBox_module_input__efee7a6c","box":"CheckBox_module_box__efee7a6c","sm":"CheckBox_module_sm__efee7a6c","md":"CheckBox_module_md__efee7a6c","lg":"CheckBox_module_lg__efee7a6c","xlg":"CheckBox_module_xlg__efee7a6c","label":"CheckBox_module_label__efee7a6c","subLabel":"CheckBox_module_subLabel__efee7a6c","message":"CheckBox_module_message__efee7a6c","labelWrap":"CheckBox_module_labelWrap__efee7a6c","readOnly":"CheckBox_module_readOnly__efee7a6c","error":"CheckBox_module_error__efee7a6c","warning":"CheckBox_module_warning__efee7a6c"};
5791
- n(css$D,{});
5840
+ var css$J = ".CheckBox_module_wrapper__fbe47892 {\n display: inline-flex;\n flex-direction: column;\n gap: 8px;\n cursor: pointer;\n user-select: none;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 {\n cursor: not-allowed;\n}\n\n.CheckBox_module_checkboxWrap__fbe47892 {\n display: inline-flex;\n align-items: flex-start;\n gap: 8px;\n}\n\n.CheckBox_module_input__fbe47892 {\n position: absolute;\n opacity: 0;\n width: 0;\n height: 0;\n margin: 0;\n pointer-events: none;\n}\n\n.CheckBox_module_box__fbe47892 {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n border-radius: 4px;\n border: 1px solid #d5d7da;\n background: #ffffff;\n transition: background 120ms cubic-bezier(0.2, 0, 0.38, 0.9), border-color 120ms cubic-bezier(0.2, 0, 0.38, 0.9), box-shadow 120ms cubic-bezier(0.2, 0, 0.38, 0.9);\n}\n.CheckBox_module_box__fbe47892 svg {\n width: 60%;\n height: 60%;\n color: #ffffff;\n}\n\n.CheckBox_module_sm__fbe47892 .CheckBox_module_box__fbe47892 {\n width: 14px;\n height: 14px;\n}\n\n.CheckBox_module_md__fbe47892 .CheckBox_module_box__fbe47892 {\n width: 16px;\n height: 16px;\n}\n\n.CheckBox_module_lg__fbe47892 .CheckBox_module_box__fbe47892 {\n width: 18px;\n height: 18px;\n}\n\n.CheckBox_module_xlg__fbe47892 .CheckBox_module_box__fbe47892 {\n width: 20px;\n height: 20px;\n}\n\n.CheckBox_module_sm__fbe47892 .CheckBox_module_label__fbe47892,\n.CheckBox_module_md__fbe47892 .CheckBox_module_label__fbe47892 {\n font-size: 14px;\n line-height: 20px;\n}\n.CheckBox_module_sm__fbe47892 .CheckBox_module_subLabel__fbe47892,\n.CheckBox_module_md__fbe47892 .CheckBox_module_subLabel__fbe47892 {\n font-size: 14px;\n line-height: 20px;\n}\n.CheckBox_module_sm__fbe47892 .CheckBox_module_message__fbe47892,\n.CheckBox_module_md__fbe47892 .CheckBox_module_message__fbe47892 {\n font-size: 12px;\n line-height: 18px;\n}\n.CheckBox_module_sm__fbe47892 .CheckBox_module_message__fbe47892 svg,\n.CheckBox_module_md__fbe47892 .CheckBox_module_message__fbe47892 svg {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n\n.CheckBox_module_lg__fbe47892 .CheckBox_module_label__fbe47892,\n.CheckBox_module_xlg__fbe47892 .CheckBox_module_label__fbe47892 {\n font-size: 16px;\n line-height: 24px;\n}\n.CheckBox_module_lg__fbe47892 .CheckBox_module_subLabel__fbe47892,\n.CheckBox_module_xlg__fbe47892 .CheckBox_module_subLabel__fbe47892 {\n font-size: 16px;\n line-height: 24px;\n}\n.CheckBox_module_lg__fbe47892 .CheckBox_module_message__fbe47892,\n.CheckBox_module_xlg__fbe47892 .CheckBox_module_message__fbe47892 {\n font-size: 14px;\n line-height: 20px;\n}\n.CheckBox_module_lg__fbe47892 .CheckBox_module_message__fbe47892 svg,\n.CheckBox_module_xlg__fbe47892 .CheckBox_module_message__fbe47892 svg {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n\n.CheckBox_module_labelWrap__fbe47892 {\n display: flex;\n flex-direction: column;\n}\n\n.CheckBox_module_label__fbe47892 {\n font-family: jakarta, sans-serif;\n font-weight: 500;\n color: #252b37;\n}\n\n.CheckBox_module_subLabel__fbe47892 {\n font-family: jakarta, sans-serif;\n font-weight: 400;\n color: #535862;\n}\n\n.CheckBox_module_message__fbe47892 {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n font-family: jakarta, sans-serif;\n font-weight: 500;\n}\n\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892):hover .CheckBox_module_box__fbe47892 {\n border-color: #1570ef;\n background: #ffffff;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892) .CheckBox_module_input__fbe47892:focus-visible ~ .CheckBox_module_box__fbe47892 {\n border-color: #d5d7da;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892) .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892 {\n background: #1570ef;\n border-color: #1570ef;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892) .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892 svg {\n color: #ffffff;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892):hover .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892 {\n background: #175cd3;\n border-color: #175cd3;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892) .CheckBox_module_input__fbe47892:checked:focus-visible ~ .CheckBox_module_box__fbe47892 {\n background: #1570ef;\n border-color: #1570ef;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892) .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: #1570ef;\n border-color: #1570ef;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892) .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 svg {\n color: #ffffff;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892):hover .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: #175cd3;\n border-color: #175cd3;\n}\n.CheckBox_module_wrapper__fbe47892:not(.CheckBox_module_disabled__fbe47892):not(.CheckBox_module_readOnly__fbe47892):not(.CheckBox_module_error__fbe47892):not(.CheckBox_module_warning__fbe47892) .CheckBox_module_input__fbe47892:indeterminate:focus-visible ~ .CheckBox_module_box__fbe47892 {\n background: #1570ef;\n border-color: #1570ef;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1570ef;\n}\n\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 .CheckBox_module_box__fbe47892 {\n background: #f5f5f5;\n border-color: #e9eaeb;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: #f5f5f5;\n border-color: #e9eaeb;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892 svg,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 svg {\n color: #a4a7ae;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 .CheckBox_module_label__fbe47892,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_disabled__fbe47892 .CheckBox_module_subLabel__fbe47892 {\n color: #a4a7ae;\n}\n\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_readOnly__fbe47892 {\n cursor: default;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_readOnly__fbe47892 .CheckBox_module_box__fbe47892 {\n background: #f5f5f5;\n border-color: #d5d7da;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_readOnly__fbe47892 .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_readOnly__fbe47892 .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: #f5f5f5;\n border-color: #d5d7da;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_readOnly__fbe47892 .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892 svg,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_readOnly__fbe47892 .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 svg {\n color: #414651;\n}\n\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892 .CheckBox_module_box__fbe47892 {\n border-color: #d92d20;\n background: #ffffff;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892:hover .CheckBox_module_box__fbe47892 {\n border-color: #d92d20;\n background: #fef3f2;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892 .CheckBox_module_input__fbe47892:focus-visible ~ .CheckBox_module_box__fbe47892 {\n border-color: #d5d7da;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d92d20;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892 .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892 .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: #d92d20;\n border-color: #d92d20;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892 .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892 svg,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892 .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 svg {\n color: #ffffff;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892:hover .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892, .CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892:hover .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: rgb(181.443373494, 37.6265060241, 26.756626506);\n border-color: rgb(181.443373494, 37.6265060241, 26.756626506);\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_error__fbe47892 .CheckBox_module_message__fbe47892 {\n color: #d92d20;\n}\n\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892 .CheckBox_module_box__fbe47892 {\n border-color: #d5d7da;\n background: #ffffff;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892:hover .CheckBox_module_box__fbe47892 {\n border-color: #1570ef;\n background: #eff8ff;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892 .CheckBox_module_input__fbe47892:focus-visible ~ .CheckBox_module_box__fbe47892 {\n border-color: #d5d7da;\n box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #dc6803;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892 input:checked ~ .CheckBox_module_box__fbe47892,\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892 .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: #1570ef;\n border-color: #1570ef;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892:hover .CheckBox_module_input__fbe47892:checked ~ .CheckBox_module_box__fbe47892, .CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892:hover .CheckBox_module_input__fbe47892:indeterminate ~ .CheckBox_module_box__fbe47892 {\n background: #175cd3;\n border-color: #175cd3;\n}\n.CheckBox_module_wrapper__fbe47892.CheckBox_module_warning__fbe47892 .CheckBox_module_message__fbe47892 {\n color: #dc6803;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .CheckBox_module_box__fbe47892 {\n transition: none !important;\n }\n}";
5841
+ var modules_9f91d0e8 = {"wrapper":"CheckBox_module_wrapper__fbe47892","disabled":"CheckBox_module_disabled__fbe47892","checkboxWrap":"CheckBox_module_checkboxWrap__fbe47892","input":"CheckBox_module_input__fbe47892","box":"CheckBox_module_box__fbe47892","sm":"CheckBox_module_sm__fbe47892","md":"CheckBox_module_md__fbe47892","lg":"CheckBox_module_lg__fbe47892","xlg":"CheckBox_module_xlg__fbe47892","label":"CheckBox_module_label__fbe47892","subLabel":"CheckBox_module_subLabel__fbe47892","message":"CheckBox_module_message__fbe47892","labelWrap":"CheckBox_module_labelWrap__fbe47892","readOnly":"CheckBox_module_readOnly__fbe47892","error":"CheckBox_module_error__fbe47892","warning":"CheckBox_module_warning__fbe47892"};
5842
+ n(css$J,{});
5792
5843
 
5793
5844
  var Checkbox$1 = /*#__PURE__*/forwardRef(function (props, ref) {
5794
5845
  var _props$className = props.className,
@@ -5880,9 +5931,9 @@ var Checkbox$1 = /*#__PURE__*/forwardRef(function (props, ref) {
5880
5931
  });
5881
5932
  Checkbox$1.displayName = 'Checkbox';
5882
5933
 
5883
- var css$C = ":root {\n --white: #ffffff;\n --black: #141920;\n --dark-grey: #333333;\n --dark-grey-o-85: rgba(51, 51, 51, 0.85);\n --grey: #737373;\n --grey1: #888888;\n --grey2: #a6a6a6;\n --grey3: #bbbbbb;\n --grey4: #c4c4c4;\n --grey5: #dddddd;\n --grey6: #e8e8e8;\n --grey7: #eeeeee;\n --grey8: #f2f2f2;\n --grey9: #eff0f0;\n --grey10: #f7f7f7;\n --skeleton: #e0e1e9;\n --highlight: #0f62fe;\n --dark-blue: #001833;\n --background: #d0e2ff;\n --menu-black: #191b1f;\n --banyan-blue: #00037c;\n --banyan-orange: #ff892a;\n --banyan-pink: #ff1597;\n --banyan-gradient: linear-gradient(\n \t84.71deg,\n \tvar(--banyan-pink) 0.48%,\n \tvar(--banyan-orange) 99.57%\n );\n --error: #ff626a;\n --error-bg: #fff1f1;\n --error-outline: rgba(218, 30, 40, 0.08);\n --success: #24a148;\n --success-bg: #defbe6;\n --success-outline: rgba(36, 161, 72, 0.08);\n --warning: #f1c21b;\n --warning-bg: #fff8e1;\n --warning-outline: rgba(203, 160, 6, 0.08);\n --info: #0043ce;\n --info-bg: #edf5ff;\n --info-outline: #2864db98;\n}\n:root[data-theme=light] {\n --primary-color1: #bd3c45;\n --primary-color2: #487349;\n --primary-color3: #cba006;\n --primary-color4: #0043ce;\n --secondary-color1: #0a15f9;\n --secondary-color2: #0f62fe;\n --secondary-color3: #0fa9ff;\n --secondary-color4: #a91aa3;\n --secondary-color5: #ef87f8;\n --secondary-color6: #fcab0f;\n --secondary-color7: #dce01d;\n --background-color1: #ffebec;\n --background-color2: #edffed;\n --background-color3: #fff6d4;\n --background-color4: #e6edff;\n --background-color5: #cfdfff;\n --mono-color1: #71839b;\n --mono-color2: #b7cadb;\n --mono-color3: #d8dfe5;\n --light-color1: #efeff0;\n --light-color2: #f7f7f8;\n --light-color3: #ffffff;\n --text-color: #141920;\n --side-bar-icon1: #97979f;\n --side-bar-icon2: #d5d5db;\n}\n:root[data-theme=dark] {\n --primary-color1: #b33030;\n --primary-color2: #4e9f3d;\n --primary-color3: #ebb700;\n --primary-color4: #0053ff;\n --secondary-color1: #2e37ff;\n --secondary-color2: #2d76ff;\n --secondary-color3: #39b8ff;\n --secondary-color4: #dc00d3;\n --secondary-color5: #f8a4ff;\n --secondary-color6: #ffbf45;\n --secondary-color7: #fbff42;\n --background-color1: #e5d3d4;\n --background-color2: #d6e5d6;\n --background-color3: #e5ddbe;\n --background-color4: #cfd6e5;\n --background-color5: #bac9e5;\n --mono-color1: #4c5869;\n --mono-color2: #8d9ba8;\n --mono-color3: #a8adb2;\n --light-color1: #1b1b1c;\n --light-color2: #151517;\n --light-color3: #141920;\n --text-color: #fafafa;\n --side-bar-icon1: #96969e;\n --side-bar-icon2: #bcbcc2;\n}";
5934
+ var css$I = ":root {\n --white: #ffffff;\n --black: #141920;\n --dark-grey: #333333;\n --dark-grey-o-85: rgba(51, 51, 51, 0.85);\n --grey: #737373;\n --grey1: #888888;\n --grey2: #a6a6a6;\n --grey3: #bbbbbb;\n --grey4: #c4c4c4;\n --grey5: #dddddd;\n --grey6: #e8e8e8;\n --grey7: #eeeeee;\n --grey8: #f2f2f2;\n --grey9: #eff0f0;\n --grey10: #f7f7f7;\n --skeleton: #e0e1e9;\n --highlight: #0f62fe;\n --dark-blue: #001833;\n --background: #d0e2ff;\n --menu-black: #191b1f;\n --banyan-blue: #00037c;\n --banyan-orange: #ff892a;\n --banyan-pink: #ff1597;\n --banyan-gradient: linear-gradient(\n \t84.71deg,\n \tvar(--banyan-pink) 0.48%,\n \tvar(--banyan-orange) 99.57%\n );\n --error: #ff626a;\n --error-bg: #fff1f1;\n --error-outline: rgba(218, 30, 40, 0.08);\n --success: #24a148;\n --success-bg: #defbe6;\n --success-outline: rgba(36, 161, 72, 0.08);\n --warning: #f1c21b;\n --warning-bg: #fff8e1;\n --warning-outline: rgba(203, 160, 6, 0.08);\n --info: #0043ce;\n --info-bg: #edf5ff;\n --info-outline: #2864db98;\n}\n:root[data-theme=light] {\n --primary-color1: #bd3c45;\n --primary-color2: #487349;\n --primary-color3: #cba006;\n --primary-color4: #0043ce;\n --secondary-color1: #0a15f9;\n --secondary-color2: #0f62fe;\n --secondary-color3: #0fa9ff;\n --secondary-color4: #a91aa3;\n --secondary-color5: #ef87f8;\n --secondary-color6: #fcab0f;\n --secondary-color7: #dce01d;\n --background-color1: #ffebec;\n --background-color2: #edffed;\n --background-color3: #fff6d4;\n --background-color4: #e6edff;\n --background-color5: #cfdfff;\n --mono-color1: #71839b;\n --mono-color2: #b7cadb;\n --mono-color3: #d8dfe5;\n --light-color1: #efeff0;\n --light-color2: #f7f7f8;\n --light-color3: #ffffff;\n --text-color: #141920;\n --side-bar-icon1: #97979f;\n --side-bar-icon2: #d5d5db;\n}\n:root[data-theme=dark] {\n --primary-color1: #b33030;\n --primary-color2: #4e9f3d;\n --primary-color3: #ebb700;\n --primary-color4: #0053ff;\n --secondary-color1: #2e37ff;\n --secondary-color2: #2d76ff;\n --secondary-color3: #39b8ff;\n --secondary-color4: #dc00d3;\n --secondary-color5: #f8a4ff;\n --secondary-color6: #ffbf45;\n --secondary-color7: #fbff42;\n --background-color1: #e5d3d4;\n --background-color2: #d6e5d6;\n --background-color3: #e5ddbe;\n --background-color4: #cfd6e5;\n --background-color5: #bac9e5;\n --mono-color1: #4c5869;\n --mono-color2: #8d9ba8;\n --mono-color3: #a8adb2;\n --light-color1: #1b1b1c;\n --light-color2: #151517;\n --light-color3: #141920;\n --text-color: #fafafa;\n --side-bar-icon1: #96969e;\n --side-bar-icon2: #bcbcc2;\n}";
5884
5935
  var modules_1722b0e5 = {"white":"--white","black":"--black","menu-black":"--menu-black","dark-grey":"--dark-grey","dark-grey-o-85":"--dark-grey-o-85","grey":"--grey","grey1":"--grey1","grey2":"--grey2","grey3":"--grey3","grey4":"--grey4","grey5":"--grey5","grey6":"--grey6","grey7":"--grey7","grey8":"--grey8","grey9":"--grey9","grey10":"--grey10","highlight":"--highlight","dark-blue":"--dark-blue","background":"--background","banyan-blue":"--banyan-blue","banyan-orange":"--banyan-orange","banyan-pink":"--banyan-pink","banyan-gradient":"--banyan-gradient","error":"--error","error-bg":"--error-bg","error-outline":"--error-outline","success":"--success","success-bg":"--success-bg","success-outline":"--success-outline","warning":"--warning","warning-bg":"--warning-bg","warning-outline":"--warning-outline","info":"--info","info-bg":"--info-bg","info-outline":"--info-outline","theme-light-primary-color1":"#bd3c45","theme-light-primary-color2":"#487349","theme-light-primary-color3":"#cba006","theme-light-primary-color4":"#0043ce","theme-light-secondary-color1":"#0a15f9","theme-light-secondary-color2":"#0f62fe","theme-light-secondary-color3":"#0fa9ff","theme-light-secondary-color4":"#a91aa3","theme-light-secondary-color5":"#ef87f8","theme-light-secondary-color6":"#fcab0f","theme-light-secondary-color7":"#dce01d","theme-light-background-color1":"#ffebec","theme-light-background-color2":"#edffed","theme-light-background-color3":"#fff6d4","theme-light-background-color4":"#e6edff","theme-light-background-color5":"#cfdfff","theme-light-mono-color1":"#71839b","theme-light-mono-color2":"#b7cadb","theme-light-mono-color3":"#d8dfe5","theme-light-light-color1":"#efeff0","theme-light-light-color2":"#f7f7f8","theme-light-light-color3":"#ffffff","theme-light-side-bar-icon1":"#97979f","theme-light-side-bar-icon2":"#d5d5db","theme-light-text-color":"#141920","theme-dark-primary-color1":"#b33030","theme-dark-primary-color2":"#4e9f3d","theme-dark-primary-color3":"#ebb700","theme-dark-primary-color4":"#0053ff","theme-dark-secondary-color1":"#2e37ff","theme-dark-secondary-color2":"#2d76ff","theme-dark-secondary-color3":"#39b8ff","theme-dark-secondary-color4":"#dc00d3","theme-dark-secondary-color5":"#f8a4ff","theme-dark-secondary-color6":"#ffbf45","theme-dark-secondary-color7":"#fbff42","theme-dark-background-color1":"#e5d3d4","theme-dark-background-color2":"#d6e5d6","theme-dark-background-color3":"#e5ddbe","theme-dark-background-color4":"#cfd6e5","theme-dark-background-color5":"#bac9e5","theme-dark-mono-color1":"#4c5869","theme-dark-mono-color2":"#8d9ba8","theme-dark-mono-color3":"#a8adb2","theme-dark-light-color1":"#000000","theme-dark-light-color2":"#151517","theme-dark-light-color3":"#1b1b1c","theme-dark-side-bar-icon1":"#96969e","theme-dark-side-bar-icon2":"#bcbcc2","theme-dark-text-color":"#fafafa"};
5885
- n(css$C,{});
5936
+ n(css$I,{});
5886
5937
 
5887
5938
  var COLORS = Object.keys(modules_1722b0e5).reduce(function (acc, curr) {
5888
5939
  if (curr.includes('theme')) {
@@ -5894,9 +5945,9 @@ var COLORS = Object.keys(modules_1722b0e5).reduce(function (acc, curr) {
5894
5945
  return acc;
5895
5946
  }, {});
5896
5947
 
5897
- var css$B = "button.BaseButton_module_root__b27f9450[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell]:focus {\n outline: 1px solid var(--primary-color4);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] {\n display: inline-flex;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n border: none;\n background: none;\n padding: 0.5rem 0.75rem;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell]:active {\n outline: none;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell]:disabled {\n cursor: not-allowed;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell].BaseButton_module_contained__b27f9450 {\n background: var(--text-color);\n color: var(--light-color3);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell].BaseButton_module_outlined__b27f9450 {\n color: var(--text-color);\n border: 1px solid var(--text-color);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell].BaseButton_module_text__b27f9450 {\n color: var(--text-color);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] [data-elem=component2] {\n min-width: 0;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] [data-elem=title] {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}";
5948
+ var css$H = "button.BaseButton_module_root__b27f9450[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell]:focus {\n outline: 1px solid var(--primary-color4);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] {\n display: inline-flex;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n border: none;\n background: none;\n padding: 0.5rem 0.75rem;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell]:active {\n outline: none;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell]:disabled {\n cursor: not-allowed;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell].BaseButton_module_contained__b27f9450 {\n background: var(--text-color);\n color: var(--light-color3);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell].BaseButton_module_outlined__b27f9450 {\n color: var(--text-color);\n border: 1px solid var(--text-color);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell].BaseButton_module_text__b27f9450 {\n color: var(--text-color);\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] [data-elem=component2] {\n min-width: 0;\n}\nbutton.BaseButton_module_root__b27f9450[data-elem=base-cell] [data-elem=title] {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}";
5898
5949
  var modules_ab72627b = {"root":"BaseButton_module_root__b27f9450","contained":"BaseButton_module_contained__b27f9450","outlined":"BaseButton_module_outlined__b27f9450","text":"BaseButton_module_text__b27f9450"};
5899
- n(css$B,{});
5950
+ n(css$H,{});
5900
5951
 
5901
5952
  var BaseButton = /*#__PURE__*/forwardRef(function (props, ref) {
5902
5953
  var _props$className = props.className,
@@ -5949,9 +6000,9 @@ var BaseButton = /*#__PURE__*/forwardRef(function (props, ref) {
5949
6000
  });
5950
6001
  });
5951
6002
 
5952
- var css$A = ".Button_module_root__cb319292[data-elem=base-cell] {\n cursor: pointer;\n}\n.Button_module_root__cb319292[data-elem=base-cell] [data-elem=component2] [data-elem=title] {\n font-weight: 500;\n font-size: 0.875rem;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_contained__cb319292 {\n background-color: var(--secondary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_text__cb319292 {\n color: var(--secondary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--secondary-color2);\n color: var(--secondary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--secondary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_contained__cb319292 {\n background-color: var(--primary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--primary-color2);\n color: var(--primary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--primary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_text__cb319292 {\n color: var(--primary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_contained__cb319292 {\n background-color: var(--primary-color1);\n color: var(--light-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--primary-color1);\n color: var(--primary-color1);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--primary-color1);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_text__cb319292 {\n color: var(--primary-color1);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_contained__cb319292 {\n background-color: var(--primary-color3);\n color: var(--light-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--primary-color3);\n color: var(--primary-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--primary-color3);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_text__cb319292 {\n color: var(--primary-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_contained__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_contained__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_contained__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_contained__cb319292 {\n background-color: var(--mono-color3);\n color: var(--mono-color1);\n}\n.Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--grey);\n}\n.Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_text__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_text__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_text__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_text__cb319292 {\n color: var(--grey);\n}";
6003
+ var css$G = ".Button_module_root__cb319292[data-elem=base-cell] {\n cursor: pointer;\n}\n.Button_module_root__cb319292[data-elem=base-cell] [data-elem=component2] [data-elem=title] {\n font-weight: 500;\n font-size: 0.875rem;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_contained__cb319292 {\n background-color: var(--secondary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_text__cb319292 {\n color: var(--secondary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--secondary-color2);\n color: var(--secondary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--secondary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_primary__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_contained__cb319292 {\n background-color: var(--primary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--primary-color2);\n color: var(--primary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--primary-color2);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_success__cb319292.Button_module_text__cb319292 {\n color: var(--primary-color2);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_contained__cb319292 {\n background-color: var(--primary-color1);\n color: var(--light-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--primary-color1);\n color: var(--primary-color1);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--primary-color1);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_danger__cb319292.Button_module_text__cb319292 {\n color: var(--primary-color1);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_contained__cb319292 {\n background-color: var(--primary-color3);\n color: var(--light-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_contained__cb319292:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--primary-color3);\n color: var(--primary-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_outlined__cb319292:hover {\n background-color: var(--primary-color3);\n color: var(--white);\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_outlined__cb319292:hover:hover {\n opacity: 0.85;\n}\n.Button_module_root__cb319292[data-elem=base-cell].Button_module_warning__cb319292.Button_module_text__cb319292 {\n color: var(--primary-color3);\n}\n.Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_contained__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_contained__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_contained__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_contained__cb319292 {\n background-color: var(--mono-color3);\n color: var(--mono-color1);\n}\n.Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_outlined__cb319292 {\n background-color: transparent;\n border-color: var(--grey);\n}\n.Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_primary__cb319292.Button_module_text__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_success__cb319292.Button_module_text__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_danger__cb319292.Button_module_text__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_outlined__cb319292, .Button_module_root__cb319292[data-elem=base-cell]:disabled.Button_module_warning__cb319292.Button_module_text__cb319292 {\n color: var(--grey);\n}";
5953
6004
  var modules_b0070f27 = {"root":"Button_module_root__cb319292","primary":"Button_module_primary__cb319292","contained":"Button_module_contained__cb319292","text":"Button_module_text__cb319292","outlined":"Button_module_outlined__cb319292","success":"Button_module_success__cb319292","danger":"Button_module_danger__cb319292","warning":"Button_module_warning__cb319292"};
5954
- n(css$A,{});
6005
+ n(css$G,{});
5955
6006
 
5956
6007
  var Button = /*#__PURE__*/forwardRef(function (props, ref) {
5957
6008
  var _props$className = props.className,
@@ -5995,12 +6046,12 @@ var Button = /*#__PURE__*/forwardRef(function (props, ref) {
5995
6046
  });
5996
6047
  });
5997
6048
 
5998
- var css$z = ".Chip_module_root__9718bcd4[data-elem=base-cell] {\n position: relative;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell] [data-elem=component2] [data-elem=title] {\n font-weight: 500;\n font-size: 0.875rem;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_sm__9718bcd4 {\n height: 2rem;\n padding: 0.188rem 0.5rem;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_md__9718bcd4 {\n height: 2.25rem;\n padding: 0.563rem 1rem;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_success__9718bcd4 {\n background-color: var(--success-bg);\n color: var(--success);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_info__9718bcd4 {\n background-color: var(--info-bg);\n color: var(--primary-color4);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_danger__9718bcd4 {\n background-color: var(--error-bg);\n color: var(--primary-color1);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_warning__9718bcd4 {\n background-color: var(--warning-bg);\n color: var(--warning);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_default__9718bcd4 {\n background-color: var(--grey5);\n color: var(--grey);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4:hover {\n box-shadow: 0px 8px 20px rgba(24, 24, 24, 0.08);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4 {\n border-width: 1px;\n border-style: solid;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_success__9718bcd4 {\n background-color: var(--success-bg);\n color: var(--success);\n border-color: var(--success-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_success__9718bcd4:hover {\n background-color: var(--success-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_info__9718bcd4 {\n background-color: var(--info-bg);\n color: var(--primary-color4);\n border-color: var(--info-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_info__9718bcd4:hover {\n background-color: var(--info-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_danger__9718bcd4 {\n background-color: var(--error-bg);\n color: var(--primary-color1);\n border-color: var(--error-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_danger__9718bcd4:hover {\n background-color: var(--error-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_warning__9718bcd4 {\n background-color: var(--warning-bg);\n color: var(--warning);\n border-color: var(--warning-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_warning__9718bcd4:hover {\n background-color: var(--warning-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_default__9718bcd4 {\n background-color: var(--grey8);\n color: var(--grey);\n border-color: var(--grey6);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_default__9718bcd4:hover {\n background-color: var(--grey6);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4, .Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4 {\n filter: grayscale(1);\n border-color: var(--grey4);\n background-color: var(--grey5);\n color: var(--grey2);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4 [data-elem=component1],\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4 [data-elem=component3], .Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4 [data-elem=component1],\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4 [data-elem=component3] {\n opacity: 0.5;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4:hover, .Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4:hover {\n box-shadow: none;\n background-color: var(--grey5);\n}";
5999
- n(css$z,{});
6049
+ var css$F = ".Chip_module_root__9718bcd4[data-elem=base-cell] {\n position: relative;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell] [data-elem=component2] [data-elem=title] {\n font-weight: 500;\n font-size: 0.875rem;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_sm__9718bcd4 {\n height: 2rem;\n padding: 0.188rem 0.5rem;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_md__9718bcd4 {\n height: 2.25rem;\n padding: 0.563rem 1rem;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_success__9718bcd4 {\n background-color: var(--success-bg);\n color: var(--success);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_info__9718bcd4 {\n background-color: var(--info-bg);\n color: var(--primary-color4);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_danger__9718bcd4 {\n background-color: var(--error-bg);\n color: var(--primary-color1);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_warning__9718bcd4 {\n background-color: var(--warning-bg);\n color: var(--warning);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4.Chip_module_default__9718bcd4 {\n background-color: var(--grey5);\n color: var(--grey);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_status__9718bcd4:hover {\n box-shadow: 0px 8px 20px rgba(24, 24, 24, 0.08);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4 {\n border-width: 1px;\n border-style: solid;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_success__9718bcd4 {\n background-color: var(--success-bg);\n color: var(--success);\n border-color: var(--success-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_success__9718bcd4:hover {\n background-color: var(--success-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_info__9718bcd4 {\n background-color: var(--info-bg);\n color: var(--primary-color4);\n border-color: var(--info-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_info__9718bcd4:hover {\n background-color: var(--info-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_danger__9718bcd4 {\n background-color: var(--error-bg);\n color: var(--primary-color1);\n border-color: var(--error-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_danger__9718bcd4:hover {\n background-color: var(--error-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_warning__9718bcd4 {\n background-color: var(--warning-bg);\n color: var(--warning);\n border-color: var(--warning-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_warning__9718bcd4:hover {\n background-color: var(--warning-outline);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_default__9718bcd4 {\n background-color: var(--grey8);\n color: var(--grey);\n border-color: var(--grey6);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell].Chip_module_input__9718bcd4.Chip_module_default__9718bcd4:hover {\n background-color: var(--grey6);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4, .Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4 {\n filter: grayscale(1);\n border-color: var(--grey4);\n background-color: var(--grey5);\n color: var(--grey2);\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4 [data-elem=component1],\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4 [data-elem=component3], .Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4 [data-elem=component1],\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4 [data-elem=component3] {\n opacity: 0.5;\n}\n.Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_status__9718bcd4:hover, .Chip_module_root__9718bcd4[data-elem=base-cell]:disabled.Chip_module_input__9718bcd4:hover {\n box-shadow: none;\n background-color: var(--grey5);\n}";
6050
+ n(css$F,{});
6000
6051
 
6001
- var css$y = ".Toggle_module_root__7230d352 {\n width: -moz-fit-content;\n width: fit-content;\n border: 0px !important;\n font-weight: 500;\n padding: 0.3125rem;\n background: transparent !important;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n position: relative;\n gap: 0.3375rem;\n height: 100%;\n background: var(--light-color2);\n border-radius: 0.25rem;\n padding: 0.2188rem 0.1875rem;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 {\n position: relative;\n z-index: 2;\n background: transparent;\n min-width: 5rem;\n width: auto;\n height: auto;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--black);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--mono-color1);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_secondary__7230d352:hover {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_secondary__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--secondary-color2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352 {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_highlight__7230d352 {\n background-color: var(--mono-color1);\n border-radius: 0.25rem;\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_highlight__7230d352.Toggle_module_secondary__7230d352 {\n opacity: 1;\n border-radius: 0.25rem;\n background-color: var(--light-color3);\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--white);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_secondary__7230d352 {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_secondary__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--secondary-color2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_disabled__7230d352 {\n cursor: not-allowed;\n opacity: 0.5;\n background-color: transparent;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_disabled__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--side-bar-icon2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352 {\n background-color: var(--mono-color1);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--white);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352.Toggle_module_secondary__7230d352 {\n background-color: var(--light-color1);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352.Toggle_module_secondary__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--secondary-color2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 .Toggle_module_slider__7230d352 {\n position: absolute;\n bottom: 0.1875rem;\n left: 0;\n height: 85%;\n font-weight: 500;\n background: var(--mono-color1);\n border-radius: 0.25rem;\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 .Toggle_module_slider__7230d352.Toggle_module_secondary__7230d352 {\n border-radius: 0.25rem;\n background-color: var(--light-color3);\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.251);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 .Toggle_module_slider__7230d352.Toggle_module_smooth__7230d352 {\n transition: left 0.2s ease-in-out, width 0.2s ease-in-out;\n}\n.Toggle_module_root__7230d352 {\n background: var(--mono-color3);\n border: 1px solid var(--mono-color2);\n}";
6052
+ var css$E = ".Toggle_module_root__7230d352 {\n width: -moz-fit-content;\n width: fit-content;\n border: 0px !important;\n font-weight: 500;\n padding: 0.3125rem;\n background: transparent !important;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n position: relative;\n gap: 0.3375rem;\n height: 100%;\n background: var(--light-color2);\n border-radius: 0.25rem;\n padding: 0.2188rem 0.1875rem;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 {\n position: relative;\n z-index: 2;\n background: transparent;\n min-width: 5rem;\n width: auto;\n height: auto;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--black);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--mono-color1);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_secondary__7230d352:hover {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_secondary__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--secondary-color2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352 {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_highlight__7230d352 {\n background-color: var(--mono-color1);\n border-radius: 0.25rem;\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_highlight__7230d352.Toggle_module_secondary__7230d352 {\n opacity: 1;\n border-radius: 0.25rem;\n background-color: var(--light-color3);\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--white);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_secondary__7230d352 {\n opacity: 1;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_active__7230d352.Toggle_module_secondary__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--secondary-color2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_disabled__7230d352 {\n cursor: not-allowed;\n opacity: 0.5;\n background-color: transparent;\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_disabled__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--side-bar-icon2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352 {\n background-color: var(--mono-color1);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--white);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352.Toggle_module_secondary__7230d352 {\n background-color: var(--light-color1);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 > button[data-elem=base-cell].Toggle_module_toggleButton__7230d352.Toggle_module_allSelect__7230d352.Toggle_module_secondary__7230d352 > [data-elem=component2] > [data-elem=title] {\n color: var(--secondary-color2);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 .Toggle_module_slider__7230d352 {\n position: absolute;\n bottom: 0.1875rem;\n left: 0;\n height: 85%;\n font-weight: 500;\n background: var(--mono-color1);\n border-radius: 0.25rem;\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 .Toggle_module_slider__7230d352.Toggle_module_secondary__7230d352 {\n border-radius: 0.25rem;\n background-color: var(--light-color3);\n box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.251);\n}\n.Toggle_module_root__7230d352 .Toggle_module_toggle__7230d352 .Toggle_module_slider__7230d352.Toggle_module_smooth__7230d352 {\n transition: left 0.2s ease-in-out, width 0.2s ease-in-out;\n}\n.Toggle_module_root__7230d352 {\n background: var(--mono-color3);\n border: 1px solid var(--mono-color2);\n}";
6002
6053
  var modules_a2cdc77c$1 = {"root":"Toggle_module_root__7230d352","toggle":"Toggle_module_toggle__7230d352","toggle-button":"Toggle_module_toggleButton__7230d352","secondary":"Toggle_module_secondary__7230d352","active":"Toggle_module_active__7230d352","highlight":"Toggle_module_highlight__7230d352","disabled":"Toggle_module_disabled__7230d352","all-select":"Toggle_module_allSelect__7230d352","slider":"Toggle_module_slider__7230d352","smooth":"Toggle_module_smooth__7230d352"};
6003
- n(css$y,{});
6054
+ n(css$E,{});
6004
6055
 
6005
6056
  var Toggle$1 = function Toggle(_ref) {
6006
6057
  var _ref$options = _ref.options,
@@ -6187,27 +6238,2394 @@ var ArrowIcon = function ArrowIcon(props) {
6187
6238
  });
6188
6239
  };
6189
6240
 
6190
- var TickIcon = function TickIcon(props) {
6241
+ var ChevronDownIcon = function ChevronDownIcon(props) {
6191
6242
  var _props$className = props.className,
6192
6243
  className = _props$className === void 0 ? '' : _props$className;
6193
6244
  return jsx("svg", {
6194
- width: '4',
6195
- height: '3',
6196
- viewBox: '0 0 4 3',
6197
- fill: 'none',
6198
6245
  xmlns: 'http://www.w3.org/2000/svg',
6246
+ width: '16',
6247
+ height: '16',
6248
+ viewBox: '0 0 16 16',
6249
+ className: className,
6250
+ fill: 'currentColor',
6199
6251
  children: jsx("path", {
6200
- d: 'M0.176777 1.21846L1.42678 2.46846L3.71844 0.176788',
6201
- stroke: '#24A148',
6202
- strokeWidth: '0.5',
6203
- className: className
6204
- })
6252
+ d: 'M12 6L8 10L4 6',
6253
+ stroke: 'currentColor',
6254
+ strokeWidth: '1.5',
6255
+ strokeLinecap: 'round',
6256
+ strokeLinejoin: 'round',
6257
+ fill: 'none'
6258
+ })
6259
+ });
6260
+ };
6261
+
6262
+ var Help = function Help(_ref) {
6263
+ var className = _ref.className,
6264
+ _ref$width = _ref.width,
6265
+ width = _ref$width === void 0 ? 14 : _ref$width,
6266
+ _ref$height = _ref.height,
6267
+ height = _ref$height === void 0 ? 14 : _ref$height;
6268
+ return jsxs("svg", {
6269
+ width: width,
6270
+ height: height,
6271
+ viewBox: '0 0 14 14',
6272
+ fill: 'none',
6273
+ xmlns: 'http://www.w3.org/2000/svg',
6274
+ className: className,
6275
+ children: [jsx("circle", {
6276
+ cx: '6.66667',
6277
+ cy: '6.66667',
6278
+ r: '6.16667',
6279
+ stroke: '#A4A7AE'
6280
+ }), jsx("path", {
6281
+ d: 'M6.04784 8.32665V8.16798C6.04784 7.8942 6.09139 7.65154 6.1785 7.43998C6.27184 7.22842 6.38695 7.03865 6.52384 6.87065C6.66695 6.69642 6.81317 6.53776 6.9625 6.39465C7.17406 6.19554 7.36073 6.00265 7.5225 5.81598C7.6905 5.62931 7.7745 5.41154 7.7745 5.16265C7.7745 5.00709 7.73717 4.86709 7.6625 4.74265C7.58784 4.61198 7.47584 4.50931 7.3265 4.43465C7.18339 4.35376 7.00606 4.31331 6.7945 4.31331C6.50206 4.31331 6.25006 4.40354 6.0385 4.58398C5.83317 4.7582 5.7025 4.99465 5.6465 5.29331L4.6665 5.05998C4.7225 4.71776 4.84695 4.41909 5.03984 4.16398C5.23895 3.90265 5.48784 3.70042 5.7865 3.55731C6.09139 3.40798 6.43362 3.33331 6.81317 3.33331C7.2425 3.33331 7.60962 3.42042 7.9145 3.59465C8.22562 3.76265 8.46206 3.98354 8.62384 4.25731C8.78561 4.53109 8.8665 4.82665 8.8665 5.14398C8.8665 5.39909 8.81362 5.62931 8.70784 5.83465C8.60828 6.03376 8.47762 6.21731 8.31584 6.38531C8.16028 6.55331 7.9985 6.7182 7.8305 6.87998C7.63139 7.07287 7.45406 7.27509 7.2985 7.48665C7.14917 7.69198 7.0745 7.93465 7.0745 8.21465V8.32665H6.04784ZM6.04784 10.3986V9.18531H7.12117V10.3986H6.04784Z',
6282
+ fill: '#A4A7AE'
6283
+ })]
6284
+ });
6285
+ };
6286
+
6287
+ var Search = function Search(_ref) {
6288
+ var _ref$className = _ref.className,
6289
+ className = _ref$className === void 0 ? '' : _ref$className,
6290
+ _ref$color = _ref.color,
6291
+ color = _ref$color === void 0 ? '#A4A7AE' : _ref$color;
6292
+ return jsxs("svg", {
6293
+ className: className,
6294
+ width: '20',
6295
+ height: '20',
6296
+ viewBox: '0 0 20 20',
6297
+ fill: 'none',
6298
+ xmlns: 'http://www.w3.org/2000/svg',
6299
+ children: [jsx("circle", {
6300
+ cx: '9.45759',
6301
+ cy: '9.62556',
6302
+ r: '6.95759',
6303
+ stroke: color,
6304
+ "stroke-width": '1.67'
6305
+ }), jsx("path", {
6306
+ d: 'M14.5049 14.3367L17.5001 17.3319',
6307
+ stroke: color,
6308
+ "stroke-width": '1.6',
6309
+ "stroke-linecap": 'round',
6310
+ "stroke-linejoin": 'round'
6311
+ })]
6312
+ });
6313
+ };
6314
+
6315
+ var TickIcon = function TickIcon(props) {
6316
+ var _props$className = props.className,
6317
+ className = _props$className === void 0 ? '' : _props$className;
6318
+ return jsx("svg", {
6319
+ width: '4',
6320
+ height: '3',
6321
+ viewBox: '0 0 4 3',
6322
+ fill: 'none',
6323
+ xmlns: 'http://www.w3.org/2000/svg',
6324
+ children: jsx("path", {
6325
+ d: 'M0.176777 1.21846L1.42678 2.46846L3.71844 0.176788',
6326
+ stroke: '#24A148',
6327
+ strokeWidth: '0.5',
6328
+ className: className
6329
+ })
6330
+ });
6331
+ };
6332
+
6333
+ var css$D = ".Popover_module_root__fa26af22 {\n padding: 0.5rem;\n border-radius: 0.25rem;\n border: 1px solid var(--grey);\n z-index: 10;\n}\n.Popover_module_root__fa26af22.Popover_module_darkTheme__fa26af22 {\n box-shadow: 0px dark 20px rgba(24, 24, 24, 0.08);\n background-color: var(--dark-grey);\n color: var(--white);\n border-color: var(--grey);\n}\n.Popover_module_root__fa26af22.Popover_module_lightTheme__fa26af22 {\n box-shadow: 0px light 20px rgba(24, 24, 24, 0.08);\n background-color: var(--white);\n color: var(--dark-grey);\n border-color: var(--grey4);\n}";
6334
+ var modules_dfc4608f = {"root":"Popover_module_root__fa26af22","dark-theme":"Popover_module_darkTheme__fa26af22","light-theme":"Popover_module_lightTheme__fa26af22"};
6335
+ n(css$D,{});
6336
+
6337
+ var resolveOffset = function resolveOffset(user) {
6338
+ if (user == null) return {
6339
+ mainAxis: 5
6340
+ };
6341
+ if (typeof user === 'number' || typeof user === 'function') return user;
6342
+ return _objectSpread2({
6343
+ mainAxis: 5
6344
+ }, user);
6345
+ };
6346
+ var Popover = function Popover(_ref) {
6347
+ var children = _ref.children,
6348
+ anchorEl = _ref.anchorEl,
6349
+ open = _ref.open,
6350
+ setOpen = _ref.setOpen,
6351
+ className = _ref.className,
6352
+ _ref$transparent = _ref.transparent,
6353
+ transparent = _ref$transparent === void 0 ? true : _ref$transparent,
6354
+ onClose = _ref.onClose,
6355
+ _ref$placement = _ref.placement,
6356
+ placement = _ref$placement === void 0 ? 'bottom' : _ref$placement,
6357
+ _ref$theme = _ref.theme,
6358
+ theme = _ref$theme === void 0 ? 'light' : _ref$theme,
6359
+ middlewareOptions = _ref.middlewareOptions,
6360
+ lockScroll = _ref.lockScroll,
6361
+ _ref$withOverlay = _ref.withOverlay,
6362
+ withOverlay = _ref$withOverlay === void 0 ? true : _ref$withOverlay;
6363
+ var offsetArg = resolveOffset(middlewareOptions === null || middlewareOptions === void 0 ? void 0 : middlewareOptions.offset);
6364
+ var flipArg = _objectSpread2({
6365
+ padding: 8
6366
+ }, middlewareOptions !== null && middlewareOptions !== void 0 && middlewareOptions.flip && _typeof(middlewareOptions.flip) === 'object' ? _objectSpread2({}, middlewareOptions.flip) : {});
6367
+ var _useFloating = useFloating(_objectSpread2(_objectSpread2(_objectSpread2({}, open && {
6368
+ open: open
6369
+ }), setOpen && {
6370
+ onOpenChange: setOpen
6371
+ }), {}, {
6372
+ placement: placement,
6373
+ whileElementsMounted: autoUpdate,
6374
+ middleware: [offset(offsetArg), shift(middlewareOptions === null || middlewareOptions === void 0 ? void 0 : middlewareOptions.shift), flip(flipArg), size({
6375
+ apply: function apply(_ref2) {
6376
+ var rects = _ref2.rects,
6377
+ availableHeight = _ref2.availableHeight,
6378
+ elements = _ref2.elements;
6379
+ Object.assign(elements.floating.style, {
6380
+ width: "".concat(rects.reference.width.toString(), "px"),
6381
+ minWidth: 'fit-content',
6382
+ maxHeight: "".concat(availableHeight.toString(), "px")
6383
+ });
6384
+ },
6385
+ padding: 8
6386
+ })]
6387
+ })),
6388
+ x = _useFloating.x,
6389
+ y = _useFloating.y,
6390
+ reference = _useFloating.reference,
6391
+ floating = _useFloating.floating,
6392
+ strategy = _useFloating.strategy,
6393
+ context = _useFloating.context;
6394
+ var _useInteractions = useInteractions([useDismiss(context)]),
6395
+ getFloatingProps = _useInteractions.getFloatingProps;
6396
+ useEffect(function () {
6397
+ if (!open) onClose === null || onClose === void 0 || onClose();
6398
+ }, [open, onClose]);
6399
+ useLayoutEffect(function () {
6400
+ reference(anchorEl);
6401
+ }, [anchorEl, reference]);
6402
+ return jsx(Popper, {
6403
+ open: open,
6404
+ wrapperId: 'popover',
6405
+ transparent: transparent,
6406
+ lockScroll: lockScroll,
6407
+ withOverlay: withOverlay,
6408
+ children: jsx("div", _objectSpread2(_objectSpread2({}, getFloatingProps({
6409
+ ref: floating,
6410
+ style: {
6411
+ position: strategy,
6412
+ top: y !== null && y !== void 0 ? y : 0,
6413
+ left: x !== null && x !== void 0 ? x : 0
6414
+ },
6415
+ className: classes(modules_dfc4608f.root, modules_dfc4608f["".concat(theme, "-theme")], className)
6416
+ })), {}, {
6417
+ children: children
6418
+ }))
6419
+ });
6420
+ };
6421
+
6422
+ var ArrowLeftIcon = function ArrowLeftIcon(_ref) {
6423
+ var _ref$size = _ref.size,
6424
+ size = _ref$size === void 0 ? 12 : _ref$size,
6425
+ _ref$color = _ref.color,
6426
+ color = _ref$color === void 0 ? '#717680' : _ref$color,
6427
+ className = _ref.className;
6428
+ return jsx("svg", {
6429
+ xmlns: 'http://www.w3.org/2000/svg',
6430
+ width: size,
6431
+ height: size,
6432
+ viewBox: '0 0 12 12',
6433
+ fill: 'none',
6434
+ className: className,
6435
+ children: jsx("path", {
6436
+ d: 'M9.5 6H2.5M2.5 6L5.96982 2.53018M2.5 6L5.96982 9.46983',
6437
+ stroke: color,
6438
+ strokeWidth: 1.5,
6439
+ strokeLinecap: 'round',
6440
+ strokeLinejoin: 'round'
6441
+ })
6442
+ });
6443
+ };
6444
+
6445
+ var ArrowRightIcon = function ArrowRightIcon(_ref) {
6446
+ var _ref$size = _ref.size,
6447
+ size = _ref$size === void 0 ? 12 : _ref$size,
6448
+ _ref$color = _ref.color,
6449
+ color = _ref$color === void 0 ? '#717680' : _ref$color,
6450
+ className = _ref.className;
6451
+ return jsx("svg", {
6452
+ xmlns: 'http://www.w3.org/2000/svg',
6453
+ width: size,
6454
+ height: size,
6455
+ viewBox: '0 0 12 12',
6456
+ fill: 'none',
6457
+ className: className,
6458
+ children: jsx("path", {
6459
+ d: 'M2.5 6H9.5M9.5 6L6.03018 2.53018M9.5 6L6.03018 9.46983',
6460
+ stroke: color,
6461
+ strokeWidth: 1.5,
6462
+ strokeLinecap: 'round',
6463
+ strokeLinejoin: 'round'
6464
+ })
6465
+ });
6466
+ };
6467
+
6468
+ var ArrowUpIcon = function ArrowUpIcon(_ref) {
6469
+ var _ref$size = _ref.size,
6470
+ size = _ref$size === void 0 ? 12 : _ref$size,
6471
+ _ref$color = _ref.color,
6472
+ color = _ref$color === void 0 ? '#717680' : _ref$color,
6473
+ className = _ref.className;
6474
+ return jsx("svg", {
6475
+ xmlns: 'http://www.w3.org/2000/svg',
6476
+ width: size,
6477
+ height: size,
6478
+ viewBox: '0 0 12 12',
6479
+ fill: 'none',
6480
+ className: className,
6481
+ children: jsx("path", {
6482
+ d: 'M6 9.5L6 2.5M6 2.5L2.53017 5.96982M6 2.5L9.46982 5.96982',
6483
+ stroke: color,
6484
+ strokeWidth: 1.5,
6485
+ strokeLinecap: 'round',
6486
+ strokeLinejoin: 'round'
6487
+ })
6488
+ });
6489
+ };
6490
+
6491
+ var DotIcon = function DotIcon(_ref) {
6492
+ var _ref$size = _ref.size,
6493
+ size = _ref$size === void 0 ? 8 : _ref$size,
6494
+ _ref$color = _ref.color,
6495
+ color = _ref$color === void 0 ? '#717680' : _ref$color,
6496
+ className = _ref.className;
6497
+ return jsx("svg", {
6498
+ xmlns: 'http://www.w3.org/2000/svg',
6499
+ width: size,
6500
+ height: size,
6501
+ viewBox: '0 0 8 8',
6502
+ fill: 'none',
6503
+ className: className,
6504
+ children: jsx("circle", {
6505
+ cx: '4',
6506
+ cy: '4',
6507
+ r: '3',
6508
+ fill: color
6509
+ })
6510
+ });
6511
+ };
6512
+
6513
+ var PlusIcon = function PlusIcon(_ref) {
6514
+ var _ref$size = _ref.size,
6515
+ size = _ref$size === void 0 ? 12 : _ref$size,
6516
+ _ref$color = _ref.color,
6517
+ color = _ref$color === void 0 ? '#717680' : _ref$color,
6518
+ className = _ref.className;
6519
+ return jsxs("svg", {
6520
+ xmlns: 'http://www.w3.org/2000/svg',
6521
+ width: size,
6522
+ height: size,
6523
+ viewBox: '0 0 12 12',
6524
+ fill: 'none',
6525
+ className: className,
6526
+ children: [jsx("path", {
6527
+ d: 'M6 2.5V9.5',
6528
+ stroke: color,
6529
+ strokeWidth: 1.5,
6530
+ strokeLinecap: 'round',
6531
+ strokeLinejoin: 'round'
6532
+ }), jsx("path", {
6533
+ d: 'M2.5 6L9.5 6',
6534
+ stroke: color,
6535
+ strokeWidth: 1.5,
6536
+ strokeLinecap: 'round',
6537
+ strokeLinejoin: 'round'
6538
+ })]
6539
+ });
6540
+ };
6541
+
6542
+ var ICON_SIZE = {
6543
+ sm: 16,
6544
+ md: 16,
6545
+ lg: 16
6546
+ };
6547
+ var DOT_SIZE = {
6548
+ sm: 8,
6549
+ md: 8,
6550
+ lg: 8
6551
+ };
6552
+
6553
+ var _excluded$6 = ["size", "color"];
6554
+ var TagCloserSm = function TagCloserSm(_ref) {
6555
+ var _ref$size = _ref.size,
6556
+ size = _ref$size === void 0 ? 12 : _ref$size,
6557
+ _ref$color = _ref.color,
6558
+ color = _ref$color === void 0 ? '#A4A7AE' : _ref$color,
6559
+ props = _objectWithoutProperties(_ref, _excluded$6);
6560
+ return jsx("svg", _objectSpread2(_objectSpread2({
6561
+ width: size,
6562
+ height: size,
6563
+ viewBox: '0 0 12 12',
6564
+ fill: 'none',
6565
+ xmlns: 'http://www.w3.org/2000/svg'
6566
+ }, props), {}, {
6567
+ children: jsx("path", {
6568
+ d: 'M9 3L3 9M3 3L9 9',
6569
+ stroke: color,
6570
+ strokeWidth: '1.5',
6571
+ strokeLinecap: 'round',
6572
+ strokeLinejoin: 'round'
6573
+ })
6574
+ }));
6575
+ };
6576
+
6577
+ var css$C = ".Text_module_root__d10e5305 {\n color: var(--text-color);\n}\n.Text_module_root__d10e5305.Text_module_h1__d10e5305 {\n font-size: 2.25rem;\n line-height: 2.75rem;\n}\n.Text_module_root__d10e5305.Text_module_h2__d10e5305 {\n font-size: 1.375rem;\n line-height: 1.688rem;\n}\n.Text_module_root__d10e5305.Text_module_b1__d10e5305 {\n font-size: 1rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b2__d10e5305 {\n font-size: 0.875rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b3__d10e5305 {\n font-size: 0.75rem;\n line-height: 1.063rem;\n}\n.Text_module_root__d10e5305.Text_module_regularStroke__d10e5305 {\n font-weight: 400;\n}\n.Text_module_root__d10e5305.Text_module_mediumStroke__d10e5305 {\n font-weight: 500;\n}\n.Text_module_root__d10e5305.Text_module_semiboldStroke__d10e5305 {\n font-weight: 600;\n}\n.Text_module_root__d10e5305.Text_module_boldStroke__d10e5305 {\n font-weight: 800;\n}";
6578
+ var modules_22fa3f10$1 = {"root":"Text_module_root__d10e5305","h1":"Text_module_h1__d10e5305","h2":"Text_module_h2__d10e5305","b1":"Text_module_b1__d10e5305","b2":"Text_module_b2__d10e5305","b3":"Text_module_b3__d10e5305","regular-stroke":"Text_module_regularStroke__d10e5305","medium-stroke":"Text_module_mediumStroke__d10e5305","semibold-stroke":"Text_module_semiboldStroke__d10e5305","bold-stroke":"Text_module_boldStroke__d10e5305"};
6579
+ n(css$C,{});
6580
+
6581
+ var Text$1 = /*#__PURE__*/forwardRef(function (props, ref) {
6582
+ var _props$variant = props.variant,
6583
+ variant = _props$variant === void 0 ? 'b2' : _props$variant,
6584
+ _props$component = props.component,
6585
+ component = _props$component === void 0 ? 'span' : _props$component,
6586
+ _props$stroke = props.stroke,
6587
+ stroke = _props$stroke === void 0 ? 'regular' : _props$stroke,
6588
+ weight = props.weight,
6589
+ italic = props.italic,
6590
+ underline = props.underline,
6591
+ children = props.children,
6592
+ _props$className = props.className,
6593
+ className = _props$className === void 0 ? '' : _props$className,
6594
+ _props$attrs = props.attrs,
6595
+ attrs = _props$attrs === void 0 ? {} : _props$attrs;
6596
+ var TextDOM = /*#__PURE__*/createElement(component, _objectSpread2({
6597
+ ref: ref,
6598
+ style: _objectSpread2(_objectSpread2(_objectSpread2({}, italic && {
6599
+ fontStyle: 'italic'
6600
+ }), underline && {
6601
+ textDecoration: 'underline'
6602
+ }), weight && {
6603
+ fontWeight: weight
6604
+ }),
6605
+ className: classes(modules_22fa3f10$1.root, modules_22fa3f10$1[variant], modules_22fa3f10$1["".concat(stroke, "-stroke")], className)
6606
+ }, attrs), children);
6607
+ if (/*#__PURE__*/isValidElement(TextDOM)) {
6608
+ return TextDOM;
6609
+ }
6610
+ return null;
6611
+ });
6612
+
6613
+ var css$B = ".Badge_module_badge__dbbe5f66 {\n display: inline-flex;\n align-items: center;\n box-sizing: border-box;\n white-space: nowrap;\n border: 1px solid transparent;\n font-family: Jakarta Sans, sans-serif;\n}\n.Badge_module_badge__icon__dbbe5f66 {\n display: block;\n flex-shrink: 0;\n}\n.Badge_module_badge__label__dbbe5f66 {\n display: inline-block;\n font-weight: 500;\n font-family: inherit;\n}\n.Badge_module_badge__closer__dbbe5f66 {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n padding: 0;\n background: transparent;\n border: none;\n cursor: pointer;\n color: inherit;\n opacity: 0.45;\n transition: opacity 0.15s ease;\n width: 16px;\n height: 16px;\n}\n.Badge_module_badge__closer__dbbe5f66:hover {\n opacity: 1;\n}\n.Badge_module_badge__closer__dbbe5f66:focus-visible {\n outline: 2px solid currentColor;\n outline-offset: 1px;\n border-radius: 2px;\n}\n.Badge_module_badge_Sm__dbbe5f66 {\n padding: 2px 8px;\n gap: 4px;\n}\n.Badge_module_badge_Sm__dbbe5f66 .Badge_module_badge__label__dbbe5f66 {\n font-size: 12px;\n line-height: 16px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 2px 3px 2px 8px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 2px 6px 2px 8px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 2px 3px 2px 8px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 2px 6px 2px 8px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 2px 3px 2px 8px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n gap: 4px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 2px 6px 2px 8px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 2px 8px 2px 6px;\n gap: 2px;\n height: 20px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-left: 4px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-left: 4px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-right: 4px;\n}\n.Badge_module_badge_Sm__dbbe5f66.Badge_module_badge_HasPlus__dbbe5f66 {\n padding: 5px;\n}\n.Badge_module_badge_Md__dbbe5f66 {\n padding: 2px 10px;\n gap: 4px;\n}\n.Badge_module_badge_Md__dbbe5f66 .Badge_module_badge__label__dbbe5f66 {\n font-size: 14px;\n line-height: 20px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 2px 4px 2px 10px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 6px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 2px 6px 2px 10px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 2px 4px 2px 10px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 6px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 2px 8px 2px 10px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 2px 4px 2px 10px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 6px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 2px 8px 2px 10px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 2px 10px 2px 8px;\n gap: 2px;\n height: 24px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-left: 6px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-left: 6px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-right: 6px;\n}\n.Badge_module_badge_Md__dbbe5f66.Badge_module_badge_HasPlus__dbbe5f66 {\n padding: 6px;\n}\n.Badge_module_badge_Lg__dbbe5f66 {\n padding: 4px 12px;\n gap: 4px;\n}\n.Badge_module_badge_Lg__dbbe5f66 .Badge_module_badge__label__dbbe5f66 {\n font-size: 14px;\n line-height: 20px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 4px 6px 4px 12px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 4px 10px 4px 12px;\n gap: 6px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 4px 6px 4px 12px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Pill__dbbe5f66.Badge_module_badge_HasLead__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 4px 6px 4px 12px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 6px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 4px 10px 4px 12px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Badge__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasCloser__dbbe5f66 {\n padding: 4px 6px 4px 12px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 6px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66 {\n padding: 4px 10px 4px 12px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_Modern__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66 {\n padding: 4px 12px 4px 10px;\n gap: 2px;\n height: 28px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_HasDot__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-left: 8px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_HasUpArrow__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-left: 8px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_HasArrow__dbbe5f66:not(.Badge_module_badge_Pill__dbbe5f66) {\n padding-right: 8px;\n}\n.Badge_module_badge_Lg__dbbe5f66.Badge_module_badge_HasPlus__dbbe5f66 {\n padding: 8px;\n}\n.Badge_module_badge_Pill__dbbe5f66 {\n border-radius: 999px;\n background-color: #fafafa;\n border-color: #e9eaeb;\n color: #414651;\n}\n.Badge_module_badge_Badge__dbbe5f66 {\n border-radius: 6px;\n background-color: #fafafa;\n border-color: #e9eaeb;\n color: #414651;\n}\n.Badge_module_badge_Modern__dbbe5f66 {\n border-radius: 6px;\n background-color: #ffffff;\n border-color: #d5d7da;\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.04), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);\n color: #414651;\n}";
6614
+ var modules_c87a512f = {"badge":"Badge_module_badge__dbbe5f66","badge__icon":"Badge_module_badge__icon__dbbe5f66","badge__label":"Badge_module_badge__label__dbbe5f66","badge__closer":"Badge_module_badge__closer__dbbe5f66","badge--sm":"Badge_module_badge_Sm__dbbe5f66","badge--pill":"Badge_module_badge_Pill__dbbe5f66","badge--has-closer":"Badge_module_badge_HasCloser__dbbe5f66","badge--has-dot":"Badge_module_badge_HasDot__dbbe5f66","badge--has-arrow":"Badge_module_badge_HasArrow__dbbe5f66","badge--has-up-arrow":"Badge_module_badge_HasUpArrow__dbbe5f66","badge--modern":"Badge_module_badge_Modern__dbbe5f66","badge--has-lead":"Badge_module_badge_HasLead__dbbe5f66","badge--badge":"Badge_module_badge_Badge__dbbe5f66","badge--has-plus":"Badge_module_badge_HasPlus__dbbe5f66","badge--md":"Badge_module_badge_Md__dbbe5f66","badge--lg":"Badge_module_badge_Lg__dbbe5f66"};
6615
+ n(css$B,{});
6616
+
6617
+ var Badge = /*#__PURE__*/forwardRef(function (_ref, ref) {
6618
+ var label = _ref.label,
6619
+ _ref$variant = _ref.variant,
6620
+ variant = _ref$variant === void 0 ? 'pill' : _ref$variant,
6621
+ _ref$size = _ref.size,
6622
+ size = _ref$size === void 0 ? 'sm' : _ref$size,
6623
+ onClose = _ref.onClose,
6624
+ _ref$dot = _ref.dot,
6625
+ dot = _ref$dot === void 0 ? false : _ref$dot,
6626
+ _ref$dotColor = _ref.dotColor,
6627
+ dotColor = _ref$dotColor === void 0 ? '#717680' : _ref$dotColor,
6628
+ _ref$arrow = _ref.arrow,
6629
+ arrow = _ref$arrow === void 0 ? false : _ref$arrow,
6630
+ _ref$arrowColor = _ref.arrowColor,
6631
+ arrowColor = _ref$arrowColor === void 0 ? '#717680' : _ref$arrowColor,
6632
+ _ref$arrowLead = _ref.arrowLead,
6633
+ arrowLead = _ref$arrowLead === void 0 ? false : _ref$arrowLead,
6634
+ _ref$arrowLeadColor = _ref.arrowLeadColor,
6635
+ arrowLeadColor = _ref$arrowLeadColor === void 0 ? '#717680' : _ref$arrowLeadColor,
6636
+ _ref$upArrow = _ref.upArrow,
6637
+ upArrow = _ref$upArrow === void 0 ? false : _ref$upArrow,
6638
+ _ref$upArrowColor = _ref.upArrowColor,
6639
+ upArrowColor = _ref$upArrowColor === void 0 ? '#717680' : _ref$upArrowColor,
6640
+ _ref$plus = _ref.plus,
6641
+ plus = _ref$plus === void 0 ? false : _ref$plus,
6642
+ _ref$plusColor = _ref.plusColor,
6643
+ plusColor = _ref$plusColor === void 0 ? '#717680' : _ref$plusColor,
6644
+ className = _ref.className;
6645
+ var classNames = classes(modules_c87a512f.badge, modules_c87a512f["badge--".concat(size)], modules_c87a512f["badge--".concat(variant)], dot && modules_c87a512f['badge--has-dot'], arrow && modules_c87a512f['badge--has-arrow'], arrowLead && modules_c87a512f['badge--has-lead'], upArrow && modules_c87a512f['badge--has-up-arrow'], plus && modules_c87a512f['badge--has-plus'], onClose && modules_c87a512f['badge--has-closer'], className);
6646
+ return jsxs("span", {
6647
+ ref: ref,
6648
+ className: classNames,
6649
+ children: [dot && jsx(DotIcon, {
6650
+ size: DOT_SIZE[size],
6651
+ color: dotColor,
6652
+ className: modules_c87a512f.badge__icon
6653
+ }), arrowLead && jsx(ArrowLeftIcon, {
6654
+ size: ICON_SIZE[size],
6655
+ color: arrowLeadColor,
6656
+ className: modules_c87a512f.badge__icon
6657
+ }), upArrow && jsx(ArrowUpIcon, {
6658
+ size: ICON_SIZE[size],
6659
+ color: upArrowColor,
6660
+ className: modules_c87a512f.badge__icon
6661
+ }), plus && jsx(PlusIcon, {
6662
+ size: ICON_SIZE[size],
6663
+ color: plusColor,
6664
+ className: modules_c87a512f.badge__icon
6665
+ }), label && jsx(Text$1, {
6666
+ component: 'span',
6667
+ className: modules_c87a512f.badge__label,
6668
+ children: label
6669
+ }), arrow && jsx(ArrowRightIcon, {
6670
+ size: ICON_SIZE[size],
6671
+ color: arrowColor,
6672
+ className: modules_c87a512f.badge__icon
6673
+ }), onClose && jsx(Button$1, {
6674
+ type: 'button',
6675
+ variant: 'unstyled',
6676
+ className: modules_c87a512f.badge__closer,
6677
+ onClick: onClose,
6678
+ title: jsx(TagCloserSm, {
6679
+ size: ICON_SIZE[size]
6680
+ })
6681
+ })]
6682
+ });
6683
+ });
6684
+ Badge.displayName = 'Badge';
6685
+
6686
+ function o(f){return r=>{f.forEach(n=>{typeof n=="function"?n(r):n!=null&&(n.current=r);});}}
6687
+
6688
+ var css$A = ".Tooltip_module_tooltip__1e01533d {\n position: relative;\n background-color: #1c1c1c; /* Deep dark rich grey from the Canva spec */\n color: #ffffff;\n padding: 8px 12px;\n border-radius: 6px;\n box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15), 0 0 1px rgba(255, 255, 255, 0.1);\n max-width: 320px;\n pointer-events: none; /* By default allow mouse to click straight through into the app */\n will-change: transform, opacity;\n box-sizing: border-box;\n}\n\n.Tooltip_module_tooltip__1e01533d.Tooltip_module_interactive__1e01533d {\n pointer-events: auto; /* Required exclusively if they want to click links inside */\n}\n\n/* Enforce the text styling purely for the component text */\n.Tooltip_module_textContent__1e01533d {\n font-size: 13px !important;\n font-weight: 600 !important;\n line-height: 1.4 !important;\n color: inherit !important;\n font-family: Jakarta Sans, sans-serif;\n}\n\n.Tooltip_module_arrow__1e01533d {\n position: absolute;\n width: 8px;\n height: 8px;\n background-color: #1c1c1c;\n transform: rotate(45deg);\n border-radius: 1px;\n}";
6689
+ var modules_e4619b04$1 = {"tooltip":"Tooltip_module_tooltip__1e01533d","interactive":"Tooltip_module_interactive__1e01533d","textContent":"Tooltip_module_textContent__1e01533d","arrow":"Tooltip_module_arrow__1e01533d"};
6690
+ n(css$A,{});
6691
+
6692
+ var POINTER_EDGE_OFFSET = '12px';
6693
+ var POINTER_SIZE = '8px';
6694
+ var getPointerStyle = function getPointerStyle(_ref) {
6695
+ var side = _ref.side,
6696
+ pointerPosition = _ref.pointerPosition,
6697
+ arrowX = _ref.arrowX,
6698
+ arrowY = _ref.arrowY;
6699
+ if (pointerPosition === 'center') {
6700
+ return {
6701
+ left: arrowX != null ? "".concat(arrowX, "px") : undefined,
6702
+ top: arrowY != null ? "".concat(arrowY, "px") : undefined
6703
+ };
6704
+ }
6705
+ var isHorizontalSide = side === 'top' || side === 'bottom';
6706
+ var edgeValue = pointerPosition === 'start' ? POINTER_EDGE_OFFSET : "calc(100% - ".concat(POINTER_EDGE_OFFSET, " - ").concat(POINTER_SIZE, ")");
6707
+ return isHorizontalSide ? {
6708
+ left: edgeValue,
6709
+ top: undefined
6710
+ } : {
6711
+ left: undefined,
6712
+ top: edgeValue
6713
+ };
6714
+ };
6715
+ var Tooltip$1 = /*#__PURE__*/forwardRef(function (props, propRef) {
6716
+ var _middlewareData$arrow, _middlewareData$arrow2;
6717
+ var children = props.children,
6718
+ _props$position = props.position,
6719
+ position = _props$position === void 0 ? 'top' : _props$position,
6720
+ _props$pointerPositio = props.pointerPosition,
6721
+ pointerPosition = _props$pointerPositio === void 0 ? 'center' : _props$pointerPositio,
6722
+ content = props.content,
6723
+ _props$interactive = props.interactive,
6724
+ interactive = _props$interactive === void 0 ? false : _props$interactive,
6725
+ _props$className = props.className,
6726
+ className = _props$className === void 0 ? '' : _props$className,
6727
+ _props$showPointer = props.showPointer,
6728
+ showPointer = _props$showPointer === void 0 ? true : _props$showPointer;
6729
+ var arrowEl = useRef(null);
6730
+ var _useState = useState(false),
6731
+ _useState2 = _slicedToArray(_useState, 2),
6732
+ open = _useState2[0],
6733
+ setOpen = _useState2[1];
6734
+ var _useFloating = useFloating({
6735
+ open: open,
6736
+ onOpenChange: setOpen,
6737
+ placement: position,
6738
+ whileElementsMounted: autoUpdate,
6739
+ middleware: [offset(showPointer ? 12 : 8), flip(), shift({
6740
+ padding: 8
6741
+ }), arrow({
6742
+ element: arrowEl
6743
+ })]
6744
+ }),
6745
+ x = _useFloating.x,
6746
+ y = _useFloating.y,
6747
+ reference = _useFloating.reference,
6748
+ floating = _useFloating.floating,
6749
+ strategy = _useFloating.strategy,
6750
+ context = _useFloating.context,
6751
+ middlewareData = _useFloating.middlewareData,
6752
+ placement = _useFloating.placement;
6753
+ // Adding a slight delay on close if interactive makes bridging the arrow gap much easier for the mouse cursor natively.
6754
+ var hover = useHover(context, {
6755
+ move: true,
6756
+ delay: {
6757
+ open: 0,
6758
+ close: interactive ? 150 : 0
6759
+ }
6760
+ });
6761
+ var focus = useFocus(context);
6762
+ var dismiss = useDismiss(context);
6763
+ var role = useRole(context, {
6764
+ role: 'tooltip'
6765
+ });
6766
+ var _useInteractions = useInteractions([hover, focus, dismiss, role]),
6767
+ getReferenceProps = _useInteractions.getReferenceProps,
6768
+ getFloatingProps = _useInteractions.getFloatingProps;
6769
+ var typedChildren = children;
6770
+ var childrenRef = typedChildren.ref;
6771
+ var ref = React__default.useMemo(function () {
6772
+ return o([reference, childrenRef, propRef]);
6773
+ }, [reference, childrenRef, propRef]);
6774
+ var clonedChildren = /*#__PURE__*/cloneElement(children, getReferenceProps(_objectSpread2({
6775
+ ref: ref
6776
+ }, typedChildren.props)));
6777
+ var side = (placement || position).split('-')[0];
6778
+ var staticSideMapping = {
6779
+ top: 'bottom',
6780
+ right: 'left',
6781
+ bottom: 'top',
6782
+ left: 'right'
6783
+ };
6784
+ var staticSide = staticSideMapping[side];
6785
+ return jsxs(Fragment, {
6786
+ children: [clonedChildren, jsx(Popper, {
6787
+ open: open && content != null,
6788
+ backdrop: false,
6789
+ lockScroll: false,
6790
+ wrapperId: "v2-tooltip-portal",
6791
+ children: jsx(AnimatePresence, {
6792
+ children: open && content != null && jsxs(motion.div, _objectSpread2(_objectSpread2({}, getFloatingProps({
6793
+ ref: floating,
6794
+ className: classes(modules_e4619b04$1.tooltip, interactive ? modules_e4619b04$1.interactive : '', className),
6795
+ style: {
6796
+ position: strategy,
6797
+ top: y !== null && y !== void 0 ? y : 0,
6798
+ left: x !== null && x !== void 0 ? x : 0,
6799
+ zIndex: 1050
6800
+ }
6801
+ })), {}, {
6802
+ initial: {
6803
+ opacity: 0,
6804
+ scale: 0.95
6805
+ },
6806
+ animate: {
6807
+ opacity: 1,
6808
+ scale: 1
6809
+ },
6810
+ exit: {
6811
+ opacity: 0,
6812
+ scale: 0.95
6813
+ },
6814
+ transition: {
6815
+ duration: 0.15,
6816
+ ease: "easeOut"
6817
+ },
6818
+ children: [showPointer && jsx("div", {
6819
+ className: modules_e4619b04$1.arrow,
6820
+ ref: arrowEl,
6821
+ style: _objectSpread2(_objectSpread2({}, getPointerStyle({
6822
+ side: side,
6823
+ pointerPosition: pointerPosition,
6824
+ arrowX: (_middlewareData$arrow = middlewareData.arrow) === null || _middlewareData$arrow === void 0 ? void 0 : _middlewareData$arrow.x,
6825
+ arrowY: (_middlewareData$arrow2 = middlewareData.arrow) === null || _middlewareData$arrow2 === void 0 ? void 0 : _middlewareData$arrow2.y
6826
+ })), {}, _defineProperty({
6827
+ right: undefined,
6828
+ bottom: undefined
6829
+ }, staticSide, '-4px'))
6830
+ }), typeof content === 'string' ? jsx(Text$1, {
6831
+ className: modules_e4619b04$1.textContent,
6832
+ children: content
6833
+ }) : content]
6834
+ }))
6835
+ })
6836
+ })]
6837
+ });
6838
+ });
6839
+ Tooltip$1.displayName = 'Tooltip';
6840
+
6841
+ var css$z = ".TextField_module_textField__15d88237 {\n display: flex;\n flex-direction: column;\n gap: 6px;\n width: 100%;\n min-width: 320px;\n}\n\n.TextField_module_labelContainer__15d88237 {\n display: flex;\n gap: 2px;\n align-items: center;\n}\n.TextField_module_labelContainer__15d88237 .TextField_module_label__15d88237 {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 14px;\n line-height: 20px;\n color: #414651;\n}\n.TextField_module_labelContainer__15d88237 .TextField_module_required__15d88237 {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 14px;\n line-height: 20px;\n color: #175cd3;\n}\n.TextField_module_labelContainer__15d88237 .TextField_module_helpIcon__15d88237 {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n.TextField_module_labelContainer__15d88237 .TextField_module_helpIcon__15d88237 svg {\n width: 100%;\n height: 100%;\n color: #535862;\n}\n\n.TextField_module_inputContainer__15d88237 {\n position: relative;\n display: flex;\n flex-direction: row;\n align-items: stretch;\n border-radius: 6px;\n transition: all 0.2s ease-in-out;\n overflow: hidden;\n}\n.TextField_module_inputContainer__15d88237.TextField_module_sm__15d88237 {\n height: 40px;\n padding: 0;\n}\n.TextField_module_inputContainer__15d88237.TextField_module_md__15d88237 {\n height: 44px;\n padding: 0;\n}\n.TextField_module_inputContainer__15d88237.TextField_module_inputContainerWithLeadingDropdown__15d88237 .TextField_module_inputInner__15d88237, .TextField_module_inputContainer__15d88237.TextField_module_inputContainerWithTrailingDropdown__15d88237 .TextField_module_inputInner__15d88237 {\n padding: 0px;\n}\n\n.TextField_module_inputInner__15d88237 {\n display: flex;\n align-items: center;\n gap: 8px;\n flex: 1;\n min-width: 0;\n height: 100%;\n padding: 10px 12px;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_activeTyping__15d88237 .TextField_module_inputInner__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_activeTyping__15d88237 .TextField_module_inputInner__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 .TextField_module_inputInner__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 .TextField_module_inputInner__15d88237 {\n padding: 9.5px 11.5px;\n}\n\n.TextField_module_inputInnerWithLeadingText__15d88237 {\n padding-left: 12px;\n}\n\n.TextField_module_inputInnerWithLeadingDropdown__15d88237 {\n padding-left: 12px;\n flex: 1;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_activeTyping__15d88237 .TextField_module_inputInnerWithLeadingText__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_activeTyping__15d88237 .TextField_module_inputInnerWithLeadingText__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 .TextField_module_inputInnerWithLeadingText__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 .TextField_module_inputInnerWithLeadingText__15d88237 {\n padding-left: 11.5px;\n}\n\n.TextField_module_contentArea__15d88237 {\n display: flex;\n align-items: center;\n gap: 8px;\n flex: 1;\n min-width: 0;\n position: relative;\n}\n\n.TextField_module_trailingArea__15d88237 {\n display: flex;\n align-items: center;\n gap: 12px;\n flex-shrink: 0;\n}\n\n.TextField_module_leadingIcon__15d88237 {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n.TextField_module_leadingIcon__15d88237 svg {\n width: 100%;\n height: 100%;\n}\n\n.TextField_module_leadingText__15d88237 {\n display: flex;\n align-items: center;\n height: 100%;\n padding: 0 12px;\n border-right: 1px solid #d5d7da;\n flex-shrink: 0;\n}\n.TextField_module_leadingText__15d88237 .TextField_module_leadingTextContent__15d88237 {\n font-family: Jakarta;\n font-weight: 400;\n font-size: 16px;\n line-height: 24px;\n color: #535862;\n white-space: nowrap;\n}\n\n.TextField_module_leadingDropdownWrapper__15d88237 {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n height: 100%;\n padding-left: 12px;\n}\n\n.TextField_module_inputFieldArea__15d88237 {\n display: flex;\n flex: 1;\n min-width: 0;\n height: 40px;\n align-items: center;\n padding: 10px 12px;\n gap: 8px;\n}\n.TextField_module_inputFieldArea__15d88237.TextField_module_inputFieldAreaWithLeadingDropdown__15d88237 {\n padding-left: 12px;\n}\n.TextField_module_inputFieldArea__15d88237.TextField_module_inputFieldAreaWithLeadingText__15d88237 {\n padding-left: 8px;\n}\n\n.TextField_module_inputContent__15d88237 {\n display: flex;\n align-items: center;\n gap: 8px;\n flex: 1;\n min-width: 0;\n}\n\n.TextField_module_trailingDropdown__15d88237 {\n display: flex;\n align-items: center;\n height: 100%;\n flex-shrink: 0;\n}\n.TextField_module_trailingDropdown__15d88237 .TextField_module_dropdownContainer__15d88237 {\n padding: 0 12px !important;\n}\n\n.TextField_module_inlineDropdown__15d88237 {\n gap: 0;\n min-width: fit-content;\n width: fit-content;\n}\n.TextField_module_inlineDropdown__15d88237 .TextField_module_labelContainer__15d88237,\n.TextField_module_inlineDropdown__15d88237 .TextField_module_helperText__15d88237 {\n display: none;\n}\n.TextField_module_inlineDropdown__15d88237 div > button > span > span > div > span {\n font-size: 16px !important;\n line-height: 24px !important;\n color: #535862 !important;\n font-weight: 400 !important;\n white-space: nowrap !important;\n}\n.TextField_module_inlineDropdown__15d88237 div > button {\n min-width: fit-content !important;\n width: fit-content !important;\n max-width: none !important;\n height: 40px !important;\n padding: 10px 12px !important;\n}\n.TextField_module_inlineDropdown__15d88237 div > button > span > span > div:first-child {\n gap: 1px !important;\n flex-shrink: 0 !important;\n}\n.TextField_module_inlineDropdown__15d88237 div > button > span > span[data-elem=title] {\n gap: 1px !important;\n flex-shrink: 0 !important;\n}\n.TextField_module_inlineDropdown__15d88237 div > button > span > span[data-elem=title] div svg {\n width: 16px !important;\n height: 16px !important;\n}\n\n.TextField_module_leadingDropdownPopover__15d88237 {\n transform: translateX(-12px);\n}\n\n.TextField_module_trailingDropdownPopover__15d88237 {\n transform: translateX(-24px);\n}\n\n.TextField_module_trailingArea__15d88237 .TextField_module_helpIcon__15d88237,\n.TextField_module_trailingArea__15d88237 .TextField_module_rightIcon__15d88237,\n.TextField_module_trailingArea__15d88237 .TextField_module_statusIcon__15d88237 {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n.TextField_module_trailingArea__15d88237 .TextField_module_helpIcon__15d88237 svg,\n.TextField_module_trailingArea__15d88237 .TextField_module_rightIcon__15d88237 svg,\n.TextField_module_trailingArea__15d88237 .TextField_module_statusIcon__15d88237 svg {\n width: 100%;\n height: 100%;\n}\n.TextField_module_trailingArea__15d88237 .TextField_module_helpIcon__15d88237 .TextField_module_iconComponent__15d88237,\n.TextField_module_trailingArea__15d88237 .TextField_module_rightIcon__15d88237 .TextField_module_iconComponent__15d88237,\n.TextField_module_trailingArea__15d88237 .TextField_module_statusIcon__15d88237 .TextField_module_iconComponent__15d88237 {\n width: 100%;\n height: 100%;\n}\n\n.TextField_module_inputText__15d88237 {\n font-family: Jakarta;\n font-weight: 400;\n font-size: 16px;\n line-height: 24px;\n white-space: pre;\n overflow: hidden;\n text-overflow: ellipsis;\n flex: 1;\n min-width: 0;\n}\n.TextField_module_inputText__15d88237.TextField_module_textPrimary__15d88237 {\n color: #181d27;\n}\n.TextField_module_inputText__15d88237.TextField_module_textPlaceholder__15d88237 {\n color: #a4a7ae;\n}\n.TextField_module_inputText__15d88237.TextField_module_textDisabled__15d88237 {\n color: #a4a7ae;\n}\n\n.TextField_module_mainInput__15d88237 {\n flex: 1;\n min-width: 0;\n border: none;\n outline: none;\n background: transparent;\n cursor: inherit;\n font-size: 16px;\n font-family: Jakarta;\n font-weight: 400;\n line-height: 24px;\n color: #181d27;\n white-space: pre;\n caret-color: #181d27;\n}\n.TextField_module_mainInput__15d88237::placeholder {\n color: #a4a7ae;\n}\n.TextField_module_mainInput__15d88237:disabled {\n color: #a4a7ae;\n cursor: not-allowed;\n caret-color: #a4a7ae;\n}\n.TextField_module_mainInput__15d88237::selection {\n background: #175cd3;\n color: white;\n}\n.TextField_module_mainInput__15d88237:focus {\n outline: none;\n caret-color: #181d27;\n}\n\n.TextField_module_hiddenInput__15d88237 {\n position: absolute;\n inset: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n border: none;\n outline: none;\n background: transparent;\n cursor: inherit;\n font-size: 16px;\n font-family: Jakarta;\n font-weight: 400;\n line-height: 24px;\n color: #181d27;\n}\n.TextField_module_hiddenInput__15d88237.TextField_module_visibleInput__15d88237 {\n opacity: 1;\n color: #181d27;\n}\n\n.TextField_module_blinkingCursor__15d88237 {\n color: #181d27;\n font-weight: 400;\n animation: TextField_module_blink__15d88237 1s infinite;\n margin-left: 0;\n user-select: none;\n}\n\n@keyframes TextField_module_blink__15d88237 {\n 0%, 50% {\n opacity: 1;\n }\n 51%, 100% {\n opacity: 0;\n }\n}\n.TextField_module_helperText__15d88237 {\n font-family: Jakarta;\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n}\n.TextField_module_helperText__15d88237.TextField_module_helperDefault__15d88237 {\n color: #535862;\n}\n.TextField_module_helperText__15d88237.TextField_module_helperError__15d88237 {\n color: #d92d20;\n}\n.TextField_module_helperText__15d88237.TextField_module_helperWarning__15d88237 {\n color: #dc6803;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_default__15d88237 {\n background: white;\n border: 1px solid #d5d7da;\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.04), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);\n}\n.TextField_module_inputContainer__15d88237.TextField_module_default__15d88237:hover {\n border-color: #b2b5bb;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_filled__15d88237 {\n background: white;\n border: 1px solid #d5d7da;\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.04), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);\n}\n.TextField_module_inputContainer__15d88237.TextField_module_filled__15d88237:hover {\n border-color: #b2b5bb;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_activeTyping__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_activeTyping__15d88237 {\n background: white;\n border: 1.5px solid #2e90fa;\n box-shadow: none;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_filledFocus__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_filledFocus__15d88237 {\n background: white;\n border: 1px solid #d5d7da;\n box-shadow: 0px 0px 0px 2px white, 0px 0px 0px 4px #1570ef;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_errorFocus__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_errorFocus__15d88237 {\n background: white;\n border: 1px solid #d5d7da;\n box-shadow: 0px 0px 0px 2px white, 0px 0px 0px 4px #f04438;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 {\n background: white;\n border: 1.5px solid #f04438;\n box-shadow: none;\n}\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 .TextField_module_statusIcon__15d88237 svg,\n.TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 .TextField_module_statusIcon__15d88237 svg {\n color: #f04438;\n fill: #f04438;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_warning__15d88237 {\n background: white;\n border: 1px solid #d5d7da;\n box-shadow: none;\n}\n.TextField_module_inputContainer__15d88237.TextField_module_warning__15d88237 .TextField_module_statusIcon__15d88237 svg {\n color: #dc6803;\n fill: #dc6803;\n}\n\n.TextField_module_inputContainer__15d88237.TextField_module_disable__15d88237 {\n background: #fafafa;\n border: 1px solid #d5d7da;\n box-shadow: none;\n cursor: not-allowed;\n}\n.TextField_module_inputContainer__15d88237.TextField_module_disable__15d88237 .TextField_module_leadingIcon__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_disable__15d88237 .TextField_module_trailingArea__15d88237 .TextField_module_helpIcon__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_disable__15d88237 .TextField_module_trailingArea__15d88237 .TextField_module_rightIcon__15d88237,\n.TextField_module_inputContainer__15d88237.TextField_module_disable__15d88237 .TextField_module_trailingArea__15d88237 .TextField_module_statusIcon__15d88237 {\n opacity: 0.5;\n}\n.TextField_module_inputContainer__15d88237.TextField_module_disable__15d88237 .TextField_module_hiddenInput__15d88237 {\n cursor: not-allowed;\n}\n\n@media (max-width: 768px) {\n .TextField_module_textField__15d88237 {\n max-width: 100%;\n }\n .TextField_module_inputText__15d88237 {\n font-size: 16px;\n }\n}\n.TextField_module_inputWrapper__15d88237 {\n display: flex;\n width: 100%;\n border-radius: 6px;\n}\n\n.TextField_module_inputWrapperWithTrailingButton__15d88237 .TextField_module_inputContainer__15d88237 {\n flex: 1;\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n border-right: none;\n}\n.TextField_module_inputWrapperWithTrailingButton__15d88237 .TextField_module_inputContainer__15d88237.TextField_module_filledFocus__15d88237,\n.TextField_module_inputWrapperWithTrailingButton__15d88237 .TextField_module_inputContainer__15d88237.TextField_module_errorFocus__15d88237 {\n border: 1px solid #d5d7da !important;\n border-right: none !important;\n box-shadow: none !important;\n}\n.TextField_module_inputWrapperWithTrailingButton__15d88237 .TextField_module_inputContainer__15d88237.TextField_module_activeTyping__15d88237 + .TextField_module_trailingButton__15d88237 {\n border-top: 1.5px solid #2e90fa !important;\n border-right: 1.5px solid #2e90fa !important;\n border-bottom: 1.5px solid #2e90fa !important;\n border-left: 1px solid #d5d7da !important;\n padding: 9.5px 11.5px !important;\n transition: all 0.2s ease-in-out !important;\n}\n.TextField_module_inputWrapperWithTrailingButton__15d88237 .TextField_module_inputContainer__15d88237.TextField_module_errorFilled__15d88237 + .TextField_module_trailingButton__15d88237 {\n border-top: 1.5px solid #f04438 !important;\n border-right: 1.5px solid #f04438 !important;\n border-bottom: 1.5px solid #f04438 !important;\n border-left: 1px solid #d5d7da !important;\n}\n.TextField_module_inputWrapperWithTrailingButton__15d88237.TextField_module_wrapperFilledFocus__15d88237 {\n border-radius: 6px;\n box-shadow: 0px 0px 0px 2px white, 0px 0px 0px 4px #1570ef;\n transition: box-shadow 0.2s ease-in-out;\n}\n.TextField_module_inputWrapperWithTrailingButton__15d88237.TextField_module_wrapperErrorFocus__15d88237 {\n border-radius: 6px;\n box-shadow: 0px 0px 0px 2px white, 0px 0px 0px 4px #f04438;\n transition: box-shadow 0.2s ease-in-out;\n}\n\n.TextField_module_trailingButton__15d88237 {\n display: flex !important;\n align-items: center !important;\n gap: 6px !important;\n padding: 10px 12px !important;\n border-top-left-radius: 0 !important;\n border-bottom-left-radius: 0 !important;\n border-top-right-radius: 6px !important;\n border-bottom-right-radius: 6px !important;\n border: 1px solid #d5d7da !important;\n border-left: 1px solid #d5d7da !important;\n background: white !important;\n cursor: pointer !important;\n transition: all 0.2s ease-in-out !important;\n height: 44px !important;\n flex-shrink: 0 !important;\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.04), 0px 1px 2px 0px rgba(0, 0, 0, 0.06) !important;\n font-family: Jakarta !important;\n font-weight: 500 !important;\n font-size: 14px !important;\n line-height: 20px !important;\n color: #535862 !important;\n text-decoration: none !important;\n min-width: unset !important;\n max-width: unset !important;\n width: auto !important;\n}\n.TextField_module_trailingButton__15d88237:hover {\n background: #f8f9fa !important;\n border-color: #b2b5bb !important;\n border-left-color: #d5d7da !important;\n color: #535862 !important;\n text-decoration: none !important;\n}\n.TextField_module_trailingButton__15d88237:focus {\n outline: none !important;\n text-decoration: none !important;\n}\n.TextField_module_trailingButton__15d88237:active {\n text-decoration: none !important;\n}\n.TextField_module_trailingButton__15d88237 svg {\n width: 20px !important;\n height: 20px !important;\n color: #535862 !important;\n flex-shrink: 0 !important;\n}\n.TextField_module_trailingButton__15d88237.TextField_module_sm__15d88237 {\n height: 40px !important;\n}\n.TextField_module_trailingButton__15d88237.TextField_module_md__15d88237 {\n height: 44px !important;\n}\n\n.TextField_module_trailingButtonIcon__15d88237 {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n.TextField_module_trailingButtonIcon__15d88237 svg {\n width: 100%;\n height: 100%;\n color: #535862;\n}\n\n.TextField_module_trailingButtonText__15d88237 {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 14px;\n line-height: 20px;\n color: #535862;\n white-space: nowrap;\n}\n\n.TextField_module_disableTrailingButton__15d88237 {\n background: #fafafa !important;\n border-color: #d5d7da !important;\n border-left-color: #d5d7da !important;\n box-shadow: none !important;\n cursor: not-allowed !important;\n color: #535862 !important;\n opacity: 0.5 !important;\n}\n.TextField_module_disableTrailingButton__15d88237:hover {\n background: #fafafa !important;\n border-color: #d5d7da !important;\n border-left-color: #d5d7da !important;\n cursor: not-allowed !important;\n}\n.TextField_module_disableTrailingButton__15d88237 svg {\n opacity: 0.5 !important;\n}\n\n.TextField_module_errorFilledTrailingButton__15d88237,\n.TextField_module_errorFilledTrailingButton__15d88237 {\n border: 1.5px solid #f04438;\n border-left: 1px solid #d5d7da;\n box-shadow: none;\n}\n\n.TextField_module_warningTrailingButton__15d88237 {\n border-color: #d5d7da;\n box-shadow: none;\n}\n\n.TextField_module_disableTrailingButton__15d88237 {\n background: #fafafa;\n border-color: #d5d7da;\n box-shadow: none;\n cursor: not-allowed;\n}\n.TextField_module_disableTrailingButton__15d88237 .TextField_module_trailingButtonIcon__15d88237,\n.TextField_module_disableTrailingButton__15d88237 .TextField_module_trailingButtonText__15d88237 {\n opacity: 0.5;\n}";
6842
+ var modules_555c3abf = {"textField":"TextField_module_textField__15d88237","labelContainer":"TextField_module_labelContainer__15d88237","label":"TextField_module_label__15d88237","required":"TextField_module_required__15d88237","helpIcon":"TextField_module_helpIcon__15d88237","inputContainer":"TextField_module_inputContainer__15d88237","sm":"TextField_module_sm__15d88237","md":"TextField_module_md__15d88237","inputContainerWithLeadingDropdown":"TextField_module_inputContainerWithLeadingDropdown__15d88237","inputInner":"TextField_module_inputInner__15d88237","inputContainerWithTrailingDropdown":"TextField_module_inputContainerWithTrailingDropdown__15d88237","activeTyping":"TextField_module_activeTyping__15d88237","active-typing":"TextField_module_activeTyping__15d88237","errorFilled":"TextField_module_errorFilled__15d88237","error-filled":"TextField_module_errorFilled__15d88237","inputInnerWithLeadingText":"TextField_module_inputInnerWithLeadingText__15d88237","inputInnerWithLeadingDropdown":"TextField_module_inputInnerWithLeadingDropdown__15d88237","contentArea":"TextField_module_contentArea__15d88237","trailingArea":"TextField_module_trailingArea__15d88237","leadingIcon":"TextField_module_leadingIcon__15d88237","leadingText":"TextField_module_leadingText__15d88237","leadingTextContent":"TextField_module_leadingTextContent__15d88237","leadingDropdownWrapper":"TextField_module_leadingDropdownWrapper__15d88237","inputFieldArea":"TextField_module_inputFieldArea__15d88237","inputFieldAreaWithLeadingDropdown":"TextField_module_inputFieldAreaWithLeadingDropdown__15d88237","inputFieldAreaWithLeadingText":"TextField_module_inputFieldAreaWithLeadingText__15d88237","inputContent":"TextField_module_inputContent__15d88237","trailingDropdown":"TextField_module_trailingDropdown__15d88237","dropdownContainer":"TextField_module_dropdownContainer__15d88237","inlineDropdown":"TextField_module_inlineDropdown__15d88237","helperText":"TextField_module_helperText__15d88237","leadingDropdownPopover":"TextField_module_leadingDropdownPopover__15d88237","trailingDropdownPopover":"TextField_module_trailingDropdownPopover__15d88237","rightIcon":"TextField_module_rightIcon__15d88237","statusIcon":"TextField_module_statusIcon__15d88237","iconComponent":"TextField_module_iconComponent__15d88237","inputText":"TextField_module_inputText__15d88237","textPrimary":"TextField_module_textPrimary__15d88237","textPlaceholder":"TextField_module_textPlaceholder__15d88237","textDisabled":"TextField_module_textDisabled__15d88237","mainInput":"TextField_module_mainInput__15d88237","hiddenInput":"TextField_module_hiddenInput__15d88237","visibleInput":"TextField_module_visibleInput__15d88237","blinkingCursor":"TextField_module_blinkingCursor__15d88237","blink":"TextField_module_blink__15d88237","helperDefault":"TextField_module_helperDefault__15d88237","helperError":"TextField_module_helperError__15d88237","helperWarning":"TextField_module_helperWarning__15d88237","default":"TextField_module_default__15d88237","filled":"TextField_module_filled__15d88237","filledFocus":"TextField_module_filledFocus__15d88237","filled-focus":"TextField_module_filledFocus__15d88237","errorFocus":"TextField_module_errorFocus__15d88237","error-focus":"TextField_module_errorFocus__15d88237","warning":"TextField_module_warning__15d88237","disable":"TextField_module_disable__15d88237","inputWrapper":"TextField_module_inputWrapper__15d88237","inputWrapperWithTrailingButton":"TextField_module_inputWrapperWithTrailingButton__15d88237","trailingButton":"TextField_module_trailingButton__15d88237","wrapperFilledFocus":"TextField_module_wrapperFilledFocus__15d88237","wrapperErrorFocus":"TextField_module_wrapperErrorFocus__15d88237","trailingButtonIcon":"TextField_module_trailingButtonIcon__15d88237","trailingButtonText":"TextField_module_trailingButtonText__15d88237","disableTrailingButton":"TextField_module_disableTrailingButton__15d88237","errorFilledTrailingButton":"TextField_module_errorFilledTrailingButton__15d88237","error-filledTrailingButton":"TextField_module_errorFilledTrailingButton__15d88237","warningTrailingButton":"TextField_module_warningTrailingButton__15d88237"};
6843
+ n(css$z,{});
6844
+
6845
+ var _excluded$5 = ["label", "placeholder", "helperText", "value", "defaultValue", "state", "size", "type", "required", "disabled", "leadingIcon", "leadingIconComponent", "leadingText", "trailingButton", "trailingButtonText", "trailingButtonIcon", "trailingButtonIconComponent", "trailingButtonOnClick", "helpIcon", "helpText", "rightIcon", "leadingDropdown", "leadingDropdownOptions", "leadingDropdownValue", "leadingDropdownDefaultValue", "leadingDropdownPlaceholder", "trailingDropdown", "trailingDropdownOptions", "trailingDropdownValue", "trailingDropdownDefaultValue", "trailingDropdownPlaceholder", "onChange", "onFocus", "onBlur", "onLeadingDropdownChange", "onTrailingDropdownChange", "className", "id", "name", "autoComplete", "autoFocus", "readOnly", "unstyled"];
6846
+ var TextField$1 = /*#__PURE__*/forwardRef(function (_ref, ref) {
6847
+ var label = _ref.label,
6848
+ _ref$placeholder = _ref.placeholder,
6849
+ placeholder = _ref$placeholder === void 0 ? 'Optional placeholder text' : _ref$placeholder,
6850
+ _ref$helperText = _ref.helperText,
6851
+ helperText = _ref$helperText === void 0 ? 'Helper text' : _ref$helperText,
6852
+ value = _ref.value,
6853
+ defaultValue = _ref.defaultValue,
6854
+ _ref$state = _ref.state,
6855
+ state = _ref$state === void 0 ? 'default' : _ref$state,
6856
+ _ref$size = _ref.size,
6857
+ size = _ref$size === void 0 ? 'sm' : _ref$size;
6858
+ _ref.type;
6859
+ var _ref$required = _ref.required,
6860
+ required = _ref$required === void 0 ? true : _ref$required,
6861
+ _ref$disabled = _ref.disabled,
6862
+ disabled = _ref$disabled === void 0 ? false : _ref$disabled,
6863
+ _ref$leadingIcon = _ref.leadingIcon,
6864
+ leadingIcon = _ref$leadingIcon === void 0 ? true : _ref$leadingIcon,
6865
+ LeadingIconComponent = _ref.leadingIconComponent,
6866
+ leadingText = _ref.leadingText,
6867
+ trailingButton = _ref.trailingButton,
6868
+ _ref$trailingButtonTe = _ref.trailingButtonText,
6869
+ trailingButtonText = _ref$trailingButtonTe === void 0 ? 'Copy' : _ref$trailingButtonTe,
6870
+ trailingButtonIcon = _ref.trailingButtonIcon,
6871
+ TrailingButtonIconComponent = _ref.trailingButtonIconComponent,
6872
+ trailingButtonOnClick = _ref.trailingButtonOnClick,
6873
+ _ref$helpIcon = _ref.helpIcon,
6874
+ helpIcon = _ref$helpIcon === void 0 ? true : _ref$helpIcon,
6875
+ helpText = _ref.helpText,
6876
+ rightIcon = _ref.rightIcon,
6877
+ leadingDropdown = _ref.leadingDropdown,
6878
+ _ref$leadingDropdownO = _ref.leadingDropdownOptions,
6879
+ leadingDropdownOptions = _ref$leadingDropdownO === void 0 ? [] : _ref$leadingDropdownO,
6880
+ leadingDropdownValue = _ref.leadingDropdownValue,
6881
+ leadingDropdownDefaultValue = _ref.leadingDropdownDefaultValue,
6882
+ _ref$leadingDropdownP = _ref.leadingDropdownPlaceholder,
6883
+ leadingDropdownPlaceholder = _ref$leadingDropdownP === void 0 ? 'Select' : _ref$leadingDropdownP,
6884
+ trailingDropdown = _ref.trailingDropdown,
6885
+ _ref$trailingDropdown = _ref.trailingDropdownOptions,
6886
+ trailingDropdownOptions = _ref$trailingDropdown === void 0 ? [] : _ref$trailingDropdown,
6887
+ trailingDropdownValue = _ref.trailingDropdownValue,
6888
+ trailingDropdownDefaultValue = _ref.trailingDropdownDefaultValue,
6889
+ _ref$trailingDropdown2 = _ref.trailingDropdownPlaceholder,
6890
+ trailingDropdownPlaceholder = _ref$trailingDropdown2 === void 0 ? 'Select' : _ref$trailingDropdown2,
6891
+ onChange = _ref.onChange,
6892
+ onFocus = _ref.onFocus,
6893
+ onBlur = _ref.onBlur,
6894
+ onLeadingDropdownChange = _ref.onLeadingDropdownChange,
6895
+ onTrailingDropdownChange = _ref.onTrailingDropdownChange,
6896
+ className = _ref.className,
6897
+ id = _ref.id,
6898
+ name = _ref.name,
6899
+ autoComplete = _ref.autoComplete,
6900
+ autoFocus = _ref.autoFocus,
6901
+ readOnly = _ref.readOnly,
6902
+ _ref$unstyled = _ref.unstyled,
6903
+ unstyled = _ref$unstyled === void 0 ? false : _ref$unstyled,
6904
+ props = _objectWithoutProperties(_ref, _excluded$5);
6905
+ var _useState = useState(defaultValue || ''),
6906
+ _useState2 = _slicedToArray(_useState, 2),
6907
+ internalValue = _useState2[0],
6908
+ setInternalValue = _useState2[1];
6909
+ var _useState3 = useState(false),
6910
+ _useState4 = _slicedToArray(_useState3, 2),
6911
+ isFocused = _useState4[0],
6912
+ setIsFocused = _useState4[1];
6913
+ // Dropdown state management
6914
+ var _useState5 = useState(leadingDropdownDefaultValue || ''),
6915
+ _useState6 = _slicedToArray(_useState5, 2),
6916
+ internalLeadingDropdownValue = _useState6[0],
6917
+ setInternalLeadingDropdownValue = _useState6[1];
6918
+ var _useState7 = useState(trailingDropdownDefaultValue || ''),
6919
+ _useState8 = _slicedToArray(_useState7, 2),
6920
+ internalTrailingDropdownValue = _useState8[0],
6921
+ setInternalTrailingDropdownValue = _useState8[1];
6922
+ // Determine current display values
6923
+ var displayValue = value !== undefined ? value : internalValue;
6924
+ var displayLeadingDropdownValue = leadingDropdownValue !== undefined ? leadingDropdownValue : internalLeadingDropdownValue;
6925
+ var displayTrailingDropdownValue = trailingDropdownValue !== undefined ? trailingDropdownValue : internalTrailingDropdownValue;
6926
+ // Determine actual state based on props and internal state
6927
+ var getActualState = function getActualState() {
6928
+ if (disabled) return 'disable';
6929
+ if (state !== 'default') return state;
6930
+ // Auto-determine state based on content and focus
6931
+ if (isFocused && displayValue) return 'filled-focus';
6932
+ if (isFocused && !displayValue) return 'active-typing';
6933
+ if (!isFocused && displayValue) return 'filled';
6934
+ return 'default';
6935
+ };
6936
+ var actualState = getActualState();
6937
+ // Determine helper text color
6938
+ var getHelperTextClass = function getHelperTextClass() {
6939
+ switch (actualState) {
6940
+ case 'error-focus':
6941
+ case 'error-filled':
6942
+ return modules_555c3abf.helperError;
6943
+ case 'warning':
6944
+ return modules_555c3abf.helperWarning;
6945
+ default:
6946
+ return modules_555c3abf.helperDefault;
6947
+ }
6948
+ };
6949
+ // Show status icon (error/warning)
6950
+ var showStatusIcon = function showStatusIcon() {
6951
+ return actualState === 'error-filled' || actualState === 'warning';
6952
+ };
6953
+ // Get appropriate status icon
6954
+ var getStatusIcon = function getStatusIcon() {
6955
+ switch (actualState) {
6956
+ case 'error-filled':
6957
+ case 'error-focus':
6958
+ return jsx(Error$1, {
6959
+ hexagon: true
6960
+ });
6961
+ case 'warning':
6962
+ return jsx(Warning, {
6963
+ hexagon: true
6964
+ });
6965
+ default:
6966
+ return null;
6967
+ }
6968
+ };
6969
+ // Handle input change
6970
+ var handleChange = function handleChange(e) {
6971
+ var newValue = e.target.value;
6972
+ if (value === undefined) {
6973
+ setInternalValue(newValue);
6974
+ }
6975
+ onChange === null || onChange === void 0 || onChange(e);
6976
+ };
6977
+ // Handle focus
6978
+ var handleFocus = function handleFocus(e) {
6979
+ setIsFocused(true);
6980
+ // Position cursor at the end of existing text to prevent text clearing
6981
+ setTimeout(function () {
6982
+ if (e.target && displayValue) {
6983
+ e.target.setSelectionRange(displayValue.length, displayValue.length);
6984
+ }
6985
+ }, 0);
6986
+ onFocus === null || onFocus === void 0 || onFocus(e);
6987
+ };
6988
+ // Handle blur
6989
+ var handleBlur = function handleBlur(e) {
6990
+ setIsFocused(false);
6991
+ onBlur === null || onBlur === void 0 || onBlur(e);
6992
+ };
6993
+ // Handle dropdown changes
6994
+ var handleLeadingDropdownChange = function handleLeadingDropdownChange(dropdownValue) {
6995
+ if (leadingDropdownValue === undefined) {
6996
+ setInternalLeadingDropdownValue(dropdownValue);
6997
+ }
6998
+ onLeadingDropdownChange === null || onLeadingDropdownChange === void 0 || onLeadingDropdownChange(dropdownValue);
6999
+ };
7000
+ var handleTrailingDropdownChange = function handleTrailingDropdownChange(dropdownValue) {
7001
+ if (trailingDropdownValue === undefined) {
7002
+ setInternalTrailingDropdownValue(dropdownValue);
7003
+ }
7004
+ onTrailingDropdownChange === null || onTrailingDropdownChange === void 0 || onTrailingDropdownChange(dropdownValue);
7005
+ };
7006
+ // Return unstyled input if requested
7007
+ if (unstyled) {
7008
+ return jsx("input", _objectSpread2({
7009
+ ref: ref,
7010
+ type: 'text',
7011
+ value: displayValue,
7012
+ placeholder: placeholder,
7013
+ onChange: handleChange,
7014
+ onFocus: handleFocus,
7015
+ onBlur: handleBlur,
7016
+ disabled: disabled,
7017
+ readOnly: readOnly,
7018
+ className: className,
7019
+ id: id,
7020
+ name: name,
7021
+ autoComplete: autoComplete,
7022
+ autoFocus: autoFocus
7023
+ }, props));
7024
+ }
7025
+ return jsxs("div", {
7026
+ className: classes(modules_555c3abf.textField, className),
7027
+ children: [label && jsxs("div", {
7028
+ className: modules_555c3abf.labelContainer,
7029
+ children: [jsx("span", {
7030
+ className: modules_555c3abf.label,
7031
+ children: label
7032
+ }), required && jsx("span", {
7033
+ className: modules_555c3abf.required,
7034
+ children: "*"
7035
+ }), helpIcon && jsx(Tooltip$1, {
7036
+ content: helpText || 'Additional information about this field',
7037
+ position: 'top',
7038
+ children: jsx("div", {
7039
+ className: modules_555c3abf.helpIcon,
7040
+ children: jsx(Help, {})
7041
+ })
7042
+ })]
7043
+ }), jsxs("div", {
7044
+ className: classes(modules_555c3abf.inputWrapper, trailingButton && modules_555c3abf.inputWrapperWithTrailingButton, trailingButton && actualState === 'filled-focus' && modules_555c3abf.wrapperFilledFocus, trailingButton && actualState === 'error-focus' && modules_555c3abf.wrapperErrorFocus),
7045
+ children: [jsxs("div", {
7046
+ className: classes(modules_555c3abf.inputContainer, modules_555c3abf[actualState], modules_555c3abf[size], trailingButton && modules_555c3abf.inputContainerWithTrailingButton),
7047
+ children: [leadingDropdown && jsx("div", {
7048
+ className: modules_555c3abf.leadingDropdownWrapper,
7049
+ children: jsx(Dropdown$1, {
7050
+ options: leadingDropdownOptions,
7051
+ value: displayLeadingDropdownValue,
7052
+ placeholder: leadingDropdownPlaceholder,
7053
+ onChange: handleLeadingDropdownChange,
7054
+ variant: 'borderless',
7055
+ size: size,
7056
+ state: actualState === 'disable' ? 'disabled' : 'default',
7057
+ disabled: disabled,
7058
+ readOnly: readOnly,
7059
+ helpIcon: false,
7060
+ label: '',
7061
+ helperText: '',
7062
+ className: modules_555c3abf.inlineDropdown,
7063
+ popoverClassName: modules_555c3abf.leadingDropdownPopover
7064
+ })
7065
+ }), leadingText && jsx("div", {
7066
+ className: modules_555c3abf.leadingText,
7067
+ children: jsx("span", {
7068
+ className: modules_555c3abf.leadingTextContent,
7069
+ children: leadingText
7070
+ })
7071
+ }), jsxs("div", {
7072
+ className: classes(modules_555c3abf.inputFieldArea, leadingDropdown && modules_555c3abf.inputFieldAreaWithLeadingDropdown, leadingText && modules_555c3abf.inputFieldAreaWithLeadingText),
7073
+ children: [jsxs("div", {
7074
+ className: modules_555c3abf.inputContent,
7075
+ children: [!leadingText && !leadingDropdown && leadingIcon && LeadingIconComponent && jsx("div", {
7076
+ className: modules_555c3abf.leadingIcon,
7077
+ children: jsx(LeadingIconComponent, {})
7078
+ }), jsx("input", _objectSpread2({
7079
+ ref: ref,
7080
+ type: 'text',
7081
+ value: displayValue,
7082
+ placeholder: placeholder,
7083
+ onChange: handleChange,
7084
+ onFocus: handleFocus,
7085
+ onBlur: handleBlur,
7086
+ disabled: disabled,
7087
+ readOnly: readOnly,
7088
+ className: modules_555c3abf.mainInput,
7089
+ id: id,
7090
+ name: name,
7091
+ autoComplete: autoComplete,
7092
+ autoFocus: autoFocus
7093
+ }, props))]
7094
+ }), jsxs("div", {
7095
+ className: modules_555c3abf.trailingArea,
7096
+ children: [showStatusIcon() && jsx("div", {
7097
+ className: modules_555c3abf.statusIcon,
7098
+ children: getStatusIcon()
7099
+ }), rightIcon && jsx("div", {
7100
+ className: modules_555c3abf.rightIcon,
7101
+ children: /*#__PURE__*/React__default.createElement(rightIcon, {
7102
+ className: modules_555c3abf.iconComponent
7103
+ })
7104
+ }), trailingDropdown && jsx("div", {
7105
+ className: modules_555c3abf.trailingDropdown,
7106
+ children: jsx(Dropdown$1, {
7107
+ options: trailingDropdownOptions,
7108
+ value: displayTrailingDropdownValue,
7109
+ placeholder: trailingDropdownPlaceholder,
7110
+ onChange: handleTrailingDropdownChange,
7111
+ variant: 'borderless',
7112
+ size: size,
7113
+ state: actualState === 'disable' ? 'disabled' : 'default',
7114
+ disabled: disabled,
7115
+ readOnly: readOnly,
7116
+ helpIcon: false,
7117
+ label: '',
7118
+ helperText: '',
7119
+ className: modules_555c3abf.inlineDropdown,
7120
+ popoverClassName: modules_555c3abf.trailingDropdownPopover
7121
+ })
7122
+ })]
7123
+ })]
7124
+ })]
7125
+ }), trailingButton && jsx(Button$1, {
7126
+ title: trailingButtonText,
7127
+ leftComponent: trailingButtonIcon && TrailingButtonIconComponent ? TrailingButtonIconComponent : undefined,
7128
+ onClick: trailingButtonOnClick,
7129
+ type: 'button',
7130
+ variant: 'ghost',
7131
+ size: size === 'sm' ? 'sm' : 'md',
7132
+ className: classes(modules_555c3abf.trailingButton, modules_555c3abf[actualState + 'TrailingButton'], modules_555c3abf[size], disabled && modules_555c3abf.disableTrailingButton),
7133
+ disabled: disabled
7134
+ })]
7135
+ }), helperText && jsx("div", {
7136
+ className: classes(modules_555c3abf.helperText, getHelperTextClass()),
7137
+ children: helperText
7138
+ })]
7139
+ });
7140
+ });
7141
+ TextField$1.displayName = 'TextField';
7142
+
7143
+ var _excluded$4 = ["type", "size"];
7144
+ var statusStyles = {
7145
+ warning: {
7146
+ fill: '#F79009',
7147
+ stroke: '#FEF0C7'
7148
+ },
7149
+ error: {
7150
+ fill: '#D92D20',
7151
+ stroke: '#FEE4E2'
7152
+ },
7153
+ success: {
7154
+ fill: '#039855',
7155
+ stroke: '#D1FADF'
7156
+ }
7157
+ };
7158
+ var Indicator = function Indicator(_ref) {
7159
+ var type = _ref.type,
7160
+ _ref$size = _ref.size,
7161
+ size = _ref$size === void 0 ? 8 : _ref$size,
7162
+ props = _objectWithoutProperties(_ref, _excluded$4);
7163
+ var colors = statusStyles[type];
7164
+ return jsxs("svg", _objectSpread2(_objectSpread2({
7165
+ width: size,
7166
+ height: size,
7167
+ viewBox: '0 0 8 8',
7168
+ fill: 'none',
7169
+ xmlns: 'http://www.w3.org/2000/svg',
7170
+ style: {
7171
+ aspectRatio: '1 / 1',
7172
+ display: 'block'
7173
+ }
7174
+ }, props), {}, {
7175
+ children: [jsx("g", {
7176
+ clipPath: 'url(#indicator_clip)',
7177
+ children: jsx("circle", {
7178
+ cx: '4',
7179
+ cy: '4',
7180
+ r: '3.25',
7181
+ fill: colors.fill,
7182
+ stroke: colors.stroke,
7183
+ strokeWidth: '1.5'
7184
+ })
7185
+ }), jsx("defs", {
7186
+ children: jsx("clipPath", {
7187
+ id: 'indicator_clip',
7188
+ children: jsx("rect", {
7189
+ width: '8',
7190
+ height: '8',
7191
+ fill: 'white'
7192
+ })
7193
+ })
7194
+ })]
7195
+ }));
7196
+ };
7197
+
7198
+ var _excluded$3 = ["size", "color"];
7199
+ var TagCloserLg = function TagCloserLg(_ref) {
7200
+ var _ref$size = _ref.size,
7201
+ size = _ref$size === void 0 ? 20 : _ref$size,
7202
+ _ref$color = _ref.color,
7203
+ color = _ref$color === void 0 ? '#A4A7AE' : _ref$color,
7204
+ props = _objectWithoutProperties(_ref, _excluded$3);
7205
+ return jsxs("svg", _objectSpread2(_objectSpread2({
7206
+ width: size,
7207
+ height: size,
7208
+ viewBox: '0 0 20 20',
7209
+ fill: 'none',
7210
+ xmlns: 'http://www.w3.org/2000/svg'
7211
+ }, props), {}, {
7212
+ children: [jsx("path", {
7213
+ d: 'M6.5 6.5L13.5 13.5',
7214
+ stroke: color,
7215
+ strokeWidth: '1.6',
7216
+ strokeLinecap: 'round'
7217
+ }), jsx("path", {
7218
+ d: 'M6.5 13.5L13.5 6.5',
7219
+ stroke: color,
7220
+ strokeWidth: '1.6',
7221
+ strokeLinecap: 'round'
7222
+ })]
7223
+ }));
7224
+ };
7225
+
7226
+ var _excluded$2 = ["size", "color"];
7227
+ var TagCloserMd = function TagCloserMd(_ref) {
7228
+ var _ref$size = _ref.size,
7229
+ size = _ref$size === void 0 ? 16 : _ref$size,
7230
+ _ref$color = _ref.color,
7231
+ color = _ref$color === void 0 ? '#A4A7AE' : _ref$color,
7232
+ props = _objectWithoutProperties(_ref, _excluded$2);
7233
+ return jsxs("svg", _objectSpread2(_objectSpread2({
7234
+ width: size,
7235
+ height: size,
7236
+ viewBox: '0 0 16 16',
7237
+ fill: 'none',
7238
+ xmlns: 'http://www.w3.org/2000/svg'
7239
+ }, props), {}, {
7240
+ children: [jsx("path", {
7241
+ d: 'M5 5L11 11',
7242
+ stroke: color,
7243
+ strokeWidth: '1.5',
7244
+ strokeLinecap: 'round'
7245
+ }), jsx("path", {
7246
+ d: 'M5 11L11 5',
7247
+ stroke: color,
7248
+ strokeWidth: '1.5',
7249
+ strokeLinecap: 'round'
7250
+ })]
7251
+ }));
7252
+ };
7253
+
7254
+ var TagCountLg = function TagCountLg(_ref) {
7255
+ var _ref$count = _ref.count,
7256
+ count = _ref$count === void 0 ? 0 : _ref$count,
7257
+ _ref$bgColor = _ref.bgColor,
7258
+ bgColor = _ref$bgColor === void 0 ? '#F5F5F5' : _ref$bgColor,
7259
+ _ref$textColor = _ref.textColor,
7260
+ textColor = _ref$textColor === void 0 ? '#414651' : _ref$textColor;
7261
+ var containerStyle = {
7262
+ display: 'inline-flex',
7263
+ height: '20px',
7264
+ padding: '0 6px',
7265
+ flexDirection: 'row',
7266
+ justifyContent: 'center',
7267
+ alignItems: 'center',
7268
+ borderRadius: '3px',
7269
+ background: bgColor,
7270
+ color: textColor,
7271
+ fontSize: '12px',
7272
+ fontWeight: 500,
7273
+ lineHeight: '20px',
7274
+ whiteSpace: 'nowrap'
7275
+ };
7276
+ return jsx("div", {
7277
+ style: containerStyle,
7278
+ children: count
6205
7279
  });
6206
7280
  };
6207
7281
 
6208
- var css$x = ".Toggle_module_root__aac55eed {\n display: inline-flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--spacing-03, 8px);\n cursor: pointer;\n position: relative;\n}\n.Toggle_module_root__aac55eed input {\n position: absolute;\n opacity: 0;\n width: 1px;\n height: 1px;\n}\n.Toggle_module_root__aac55eed [data-elem=label] {\n color: var(--text-text-secondary, #484848);\n font-family: var(--font-font-family, Poppins);\n font-size: var(--font-font-size-12, 12px);\n font-weight: var(--font-font-weight-Regular, 400);\n line-height: var(--font-font-height-16, 16px);\n letter-spacing: var(--font-font-spacing-large, 0.32px);\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed {\n width: 48px;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed .Toggle_module_pill__aac55eed {\n width: 48px;\n height: 24px;\n border-radius: 20px;\n background: var(--Miscellaneous-toggle-off, #bfbfbf);\n position: relative;\n transition: background 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed .Toggle_module_pill__aac55eed::before {\n content: \"\";\n position: absolute;\n width: 18px;\n height: 18px;\n border-radius: 18px;\n background: var(--icon-icon-on-color, #fff);\n top: 3px;\n left: 3px;\n transition: transform 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed input:checked + .Toggle_module_pill__aac55eed {\n background: var(--support-support-success, #24a148);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed input:checked + .Toggle_module_pill__aac55eed::before {\n transform: translateX(24px);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed {\n width: 34px;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed {\n width: 32px;\n height: 16px;\n border-radius: 20px;\n background: var(--Miscellaneous-toggle-off, #bfbfbf);\n position: relative;\n transition: background 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed::before {\n content: \"\";\n position: absolute;\n width: 10px;\n height: 10px;\n border-radius: 10px;\n background: var(--icon-icon-on-color, #fff);\n top: 3px;\n left: 3px;\n transition: transform 0.2s ease;\n z-index: 1;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed .Toggle_module_tick__aac55eed {\n position: absolute;\n width: 10px;\n height: 10px;\n top: 3px;\n left: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n z-index: 2;\n pointer-events: none;\n transition: transform 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed .Toggle_module_tick__aac55eed.Toggle_module_hideTick__aac55eed {\n visibility: hidden !important;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed input:checked + .Toggle_module_pill__aac55eed {\n background: var(--support-support-success, #24a148);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed input:checked + .Toggle_module_pill__aac55eed::before {\n transform: translateX(16px);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed input:checked + .Toggle_module_pill__aac55eed .Toggle_module_tick__aac55eed {\n transform: translateX(16px);\n}\n.Toggle_module_root__aac55eed.Toggle_module_readonly__aac55eed {\n cursor: not-allowed;\n}\n.Toggle_module_root__aac55eed.Toggle_module_readonly__aac55eed .Toggle_module_pill__aac55eed {\n background: transparent;\n border: 1px solid var(--border-border-subtle, #ededed);\n}\n.Toggle_module_root__aac55eed.Toggle_module_readonly__aac55eed .Toggle_module_pill__aac55eed::before {\n top: 2px;\n left: 2px;\n background: var(--icon-icon-primary, #161616);\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed {\n cursor: not-allowed;\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed [data-elem=label] {\n color: var(--text-text-disabled, #161616);\n font-family: var(--font-font-family, Poppins);\n font-size: var(--font-font-size-12, 12px);\n font-style: normal;\n font-weight: var(--font-font-weight-Regular, 400);\n line-height: var(--font-font-height-16, 16px);\n letter-spacing: var(--font-font-spacing-large, 0.32px);\n opacity: 0.25;\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed [data-elem=label] {\n color: var(--text-text-disabled, #161616);\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed .Toggle_module_pill__aac55eed {\n background: var(--button-button-disabled, #dcdcdc);\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed .Toggle_module_pill__aac55eed::before {\n background: var(--icon-icon-on-color-disable, #828282);\n}\n.Toggle_module_root__aac55eed input:focus-visible + .Toggle_module_pill__aac55eed {\n box-shadow: 0 0 0 0.5px #fff, 0 0 0 2px var(--focus-focus-primary, #3b82f6);\n}";
7282
+ var TagCountMd = function TagCountMd(_ref) {
7283
+ var _ref$count = _ref.count,
7284
+ count = _ref$count === void 0 ? 0 : _ref$count,
7285
+ _ref$bgColor = _ref.bgColor,
7286
+ bgColor = _ref$bgColor === void 0 ? '#F5F5F5' : _ref$bgColor,
7287
+ _ref$textColor = _ref.textColor,
7288
+ textColor = _ref$textColor === void 0 ? '#414651' : _ref$textColor;
7289
+ var containerStyle = {
7290
+ display: 'inline-flex',
7291
+ height: '18px',
7292
+ padding: '0 5px',
7293
+ flexDirection: 'row',
7294
+ justifyContent: 'center',
7295
+ alignItems: 'center',
7296
+ borderRadius: '3px',
7297
+ background: bgColor,
7298
+ color: textColor,
7299
+ fontSize: '12px',
7300
+ fontWeight: 500,
7301
+ lineHeight: '18px',
7302
+ whiteSpace: 'nowrap'
7303
+ };
7304
+ return jsx("div", {
7305
+ style: containerStyle,
7306
+ children: count
7307
+ });
7308
+ };
7309
+
7310
+ var TagCountSm = function TagCountSm(_ref) {
7311
+ var _ref$count = _ref.count,
7312
+ count = _ref$count === void 0 ? 0 : _ref$count,
7313
+ _ref$bgColor = _ref.bgColor,
7314
+ bgColor = _ref$bgColor === void 0 ? '#F5F5F5' : _ref$bgColor,
7315
+ _ref$textColor = _ref.textColor,
7316
+ textColor = _ref$textColor === void 0 ? '#414651' : _ref$textColor;
7317
+ var containerStyle = {
7318
+ display: 'inline-flex',
7319
+ height: '16px',
7320
+ padding: '0 4px',
7321
+ flexDirection: 'row',
7322
+ gap: '10px',
7323
+ justifyContent: 'center',
7324
+ alignItems: 'center',
7325
+ borderRadius: '3px',
7326
+ background: bgColor,
7327
+ color: textColor,
7328
+ fontSize: '10px',
7329
+ fontWeight: 500,
7330
+ lineHeight: '16px',
7331
+ whiteSpace: 'nowrap'
7332
+ };
7333
+ return jsx("div", {
7334
+ style: containerStyle,
7335
+ children: count
7336
+ });
7337
+ };
7338
+
7339
+ var css$y = ".Tags_module_tag__0f57c67e {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n width: max-content;\n white-space: nowrap;\n box-sizing: border-box;\n cursor: default;\n transition: all 0.2s ease;\n border-radius: var(--radius-sm, 6px);\n border: 1px solid var(--bordercolor-border-primary, #d5d7da);\n background: var(--backgroundcolor-bg-primary, #fff);\n color: var(--textcolor-text-secondary, #414651);\n font-style: normal;\n font-weight: var(--font-weight-medium, 500);\n}\n.Tags_module_tag__indicator__0f57c67e {\n flex-shrink: 0;\n display: block;\n margin-right: 0;\n}\n.Tags_module_tag__indicator_ClosableSm__0f57c67e {\n margin-right: 4px;\n}\n.Tags_module_tag__indicator_ClosableMd__0f57c67e {\n margin-right: 5px;\n}\n.Tags_module_tag__indicator_ClosableLg__0f57c67e {\n margin-right: 6px;\n}\n.Tags_module_tag__indicator_CheckboxClosableSm__0f57c67e {\n margin-left: 4px;\n margin-right: 4px;\n}\n.Tags_module_tag__indicator_CheckboxClosableMd__0f57c67e {\n margin-left: 5px;\n margin-right: 5px;\n}\n.Tags_module_tag__indicator_CheckboxClosableLg__0f57c67e {\n margin-left: 6px;\n margin-right: 6px;\n}\n.Tags_module_tag__logo__0f57c67e {\n flex-shrink: 0;\n display: block;\n}\n.Tags_module_tag__logo__0f57c67e svg {\n width: 100%;\n height: 100%;\n display: block;\n}\n.Tags_module_tag__logo_ClosableSm__0f57c67e {\n margin-right: 4px;\n}\n.Tags_module_tag__logo_ClosableMd__0f57c67e {\n margin-right: 5px;\n}\n.Tags_module_tag__logo_ClosableLg__0f57c67e {\n margin-right: 6px;\n}\n.Tags_module_tag__logo_CheckboxClosableSm__0f57c67e {\n margin-left: 4px;\n margin-right: 4px;\n}\n.Tags_module_tag__logo_CheckboxClosableMd__0f57c67e {\n margin-left: 5px;\n margin-right: 5px;\n}\n.Tags_module_tag__logo_CheckboxClosableLg__0f57c67e {\n margin-left: 6px;\n margin-right: 6px;\n}\n.Tags_module_tag__closer__0f57c67e {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.Tags_module_tag__closer__0f57c67e:hover {\n color: #717680;\n}\n.Tags_module_tag__closer__0f57c67e:hover svg * {\n stroke: #717680;\n fill: #717680;\n}\n.Tags_module_tag__closer_Sm__0f57c67e {\n margin-left: 3px;\n}\n.Tags_module_tag__closer_Md__0f57c67e {\n margin-left: 3px;\n}\n.Tags_module_tag__closer_Lg__0f57c67e {\n margin-left: 3px;\n}\n.Tags_module_tag__closer_CheckboxIndicatorSm__0f57c67e {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n margin-left: 3px;\n cursor: pointer;\n}\n.Tags_module_tag__closer_CheckboxIndicatorSm__0f57c67e:hover {\n color: #717680;\n}\n.Tags_module_tag__closer_CheckboxIndicatorSm__0f57c67e:hover svg * {\n stroke: #717680;\n fill: #717680;\n}\n.Tags_module_tag__closer_CheckboxIndicatorMd__0f57c67e {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n margin-left: 3px;\n cursor: pointer;\n}\n.Tags_module_tag__closer_CheckboxIndicatorMd__0f57c67e:hover {\n color: #717680;\n}\n.Tags_module_tag__closer_CheckboxIndicatorMd__0f57c67e:hover svg * {\n stroke: #717680;\n fill: #717680;\n}\n.Tags_module_tag__closer_CheckboxIndicatorLg__0f57c67e {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n margin-left: 3px;\n cursor: pointer;\n}\n.Tags_module_tag__closer_CheckboxIndicatorLg__0f57c67e:hover {\n color: #717680;\n}\n.Tags_module_tag__closer_CheckboxIndicatorLg__0f57c67e:hover svg * {\n stroke: #717680;\n fill: #717680;\n}\n.Tags_module_tag__count__0f57c67e {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n}\n.Tags_module_tag__count_Sm__0f57c67e {\n margin-left: 4px;\n}\n.Tags_module_tag__count_Md__0f57c67e {\n margin-left: 5px;\n}\n.Tags_module_tag__count_Lg__0f57c67e {\n margin-left: 6px;\n}\n.Tags_module_tag__count_CheckboxIndicatorSm__0f57c67e {\n margin-left: 4px;\n}\n.Tags_module_tag__count_CheckboxIndicatorMd__0f57c67e {\n margin-left: 5px;\n}\n.Tags_module_tag__count_CheckboxIndicatorLg__0f57c67e {\n margin-left: 6px;\n}\n.Tags_module_tag__count_CountSm__0f57c67e {\n margin-left: 3px;\n}\n.Tags_module_tag__count_CountMd__0f57c67e {\n margin-left: 3px;\n}\n.Tags_module_tag__count_CountLg__0f57c67e {\n margin-left: 3px;\n}\n.Tags_module_tag__count_CheckboxSm__0f57c67e {\n margin-left: 4px;\n}\n.Tags_module_tag__count_CheckboxMd__0f57c67e {\n margin-left: 5px;\n}\n.Tags_module_tag__count_CheckboxLg__0f57c67e {\n margin-left: 6px;\n}\n.Tags_module_tag__input__0f57c67e {\n flex: 1;\n min-width: 0;\n border: none;\n outline: none;\n background: transparent;\n padding: 0;\n margin: 0;\n color: var(--Textcolor-Text-Secondary, #414651);\n font-style: normal;\n font-weight: var(--font-weight-Medium, 500);\n font-family: inherit;\n line-height: inherit;\n}\n.Tags_module_tag__input__0f57c67e::placeholder {\n color: var(--Textcolor-Text-Placeholder, #9aa0ab);\n}\n.Tags_module_tag__input_Sm__0f57c67e {\n font-size: var(--font-size-12, 12px);\n line-height: var(--Line-height-16, 16px);\n}\n.Tags_module_tag__input_Md__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__input_Lg__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__textfield_sizer__0f57c67e {\n position: absolute;\n visibility: hidden;\n white-space: pre;\n font-style: normal;\n font-weight: var(--font-weight-Medium, 500);\n font-family: Jakarta Sans, sans-serif;\n pointer-events: none;\n top: -9999px;\n left: -9999px;\n max-width: none;\n width: auto;\n}\n.Tags_module_tag__textfield_sizer_Sm__0f57c67e {\n font-size: var(--font-size-12, 12px);\n line-height: var(--Line-height-16, 16px);\n}\n.Tags_module_tag__textfield_sizer_Md__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__textfield_sizer_Lg__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__textfield_label__0f57c67e {\n flex-shrink: 0;\n white-space: nowrap;\n color: var(--textcolor-text-quanternary, #717680);\n font-style: normal;\n font-weight: var(--font-weight-medium, 500);\n font-family: Jakarta Sans, sans-serif;\n}\n.Tags_module_tag__textfield_label_Sm__0f57c67e {\n font-size: var(--font-size-12, 12px);\n line-height: var(--Line-height-16, 16px);\n}\n.Tags_module_tag__textfield_label_Md__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__textfield_label_Lg__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__textfield_input__0f57c67e {\n min-width: 20px;\n width: 20px;\n flex: 0 0 auto;\n border: none;\n outline: none;\n background: transparent;\n padding: 0;\n margin: 0;\n color: var(--textcolor-text-secondary, #414651);\n font-style: normal;\n font-weight: var(--font-weight-medium, 500);\n font-family: Jakarta Sans, sans-serif;\n}\n.Tags_module_tag__textfield_input__0f57c67e::placeholder {\n color: var(--Textcolor-Text-Placeholder, #9aa0ab);\n}\n.Tags_module_tag__textfield_input_Sm__0f57c67e {\n font-size: var(--font-size-12, 12px);\n line-height: var(--Line-height-16, 16px);\n}\n.Tags_module_tag__textfield_input_Md__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__textfield_input_Lg__0f57c67e {\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag__textfield_closer__0f57c67e {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.Tags_module_tag__textfield_closer__0f57c67e:hover {\n color: #717680;\n}\n.Tags_module_tag__textfield_closer__0f57c67e:hover svg * {\n stroke: #717680;\n fill: #717680;\n}\n.Tags_module_tag_Sm__0f57c67e {\n height: 24px;\n padding: 0 8px;\n font-size: var(--font-size-12, 12px);\n line-height: var(--Line-height-16, 16px);\n}\n.Tags_module_tag_Sm_Closable__0f57c67e {\n padding: 0 4px 0 8px;\n gap: 3px;\n}\n.Tags_module_tag_Sm_Checkbox__0f57c67e {\n padding: 0 8px 0 5px;\n gap: 4px;\n}\n.Tags_module_tag_Sm_Checkbox__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Sm_Checkbox__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Sm_CheckboxClosable__0f57c67e {\n padding: 0 4px 0 5px;\n gap: 4px;\n}\n.Tags_module_tag_Sm_CheckboxClosable__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Sm_CheckboxClosable__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Sm_Indicator__0f57c67e {\n padding: 0 8px 0 6px;\n gap: 4px;\n}\n.Tags_module_tag_Sm_IndicatorClosable__0f57c67e {\n padding: 0 4px 0 6px;\n}\n.Tags_module_tag_Sm_IndicatorCount__0f57c67e {\n padding: 0 4px 0 6px;\n gap: 4px;\n}\n.Tags_module_tag_Sm_CheckboxIndicator__0f57c67e {\n padding: 0 8px 0 5px;\n gap: 4px;\n}\n.Tags_module_tag_Sm_CheckboxIndicator__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Sm_CheckboxIndicator__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Sm_CheckboxIndicatorClosable__0f57c67e {\n padding: 0 4px 0 5px;\n}\n.Tags_module_tag_Sm_CheckboxIndicatorClosable__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Sm_CheckboxIndicatorClosable__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Sm_CheckboxIndicatorCount__0f57c67e {\n padding: 0 4px 0 5px;\n gap: 4px;\n}\n.Tags_module_tag_Sm_CheckboxIndicatorCount__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Sm_CheckboxIndicatorCount__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Sm_Count__0f57c67e {\n padding: 0 4px 0 8px;\n}\n.Tags_module_tag_Sm_CheckboxCount__0f57c67e {\n padding: 0 4px 0 5px;\n gap: 4px;\n}\n.Tags_module_tag_Sm_CheckboxCount__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Sm_CheckboxCount__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Sm_Textfield__0f57c67e {\n padding: 0 4px 0 8px;\n gap: 3px;\n cursor: text;\n width: max-content;\n height: 24px;\n /* Consistent styling regardless of focus state */\n border: 1px solid var(--bordercolor-border-primary, #d5d7da);\n background: var(--backgroundcolor-bg-primary, #fff);\n}\n.Tags_module_tag_Sm_TextfieldReadonly__0f57c67e {\n cursor: default;\n /* Readonly state looks exactly like Figma static design */\n border: 1px solid var(--bordercolor-border-primary, #d5d7da);\n background: var(--backgroundcolor-bg-primary, #fff);\n}\n.Tags_module_tag_Sm_TextfieldReadonly__0f57c67e .Tags_module_tag__textfield_input__0f57c67e {\n pointer-events: none;\n cursor: default;\n color: var(--textcolor-text-secondary, #414651) !important;\n}\n.Tags_module_tag_Md__0f57c67e {\n height: 24px;\n padding: 0 9px;\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag_Md_Closable__0f57c67e {\n padding: 0 4px 0 9px;\n gap: 3px;\n}\n.Tags_module_tag_Md_Checkbox__0f57c67e {\n padding: 0 9px 0 4px;\n gap: 5px;\n}\n.Tags_module_tag_Md_Checkbox__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Md_Checkbox__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Md_CheckboxClosable__0f57c67e {\n padding: 0 4px 0 4px;\n gap: 5px;\n}\n.Tags_module_tag_Md_CheckboxClosable__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Md_CheckboxClosable__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Md_Indicator__0f57c67e {\n padding: 0 9px 0 7px;\n gap: 5px;\n}\n.Tags_module_tag_Md_IndicatorClosable__0f57c67e {\n padding: 0 4px 0 7px;\n}\n.Tags_module_tag_Md_IndicatorCount__0f57c67e {\n padding: 0 3px 0 7px;\n gap: 5px;\n}\n.Tags_module_tag_Md_CheckboxIndicator__0f57c67e {\n padding: 0 9px 0 4px;\n gap: 5px;\n}\n.Tags_module_tag_Md_CheckboxIndicator__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Md_CheckboxIndicator__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Md_CheckboxIndicatorClosable__0f57c67e {\n padding: 0 4px 0 4px;\n}\n.Tags_module_tag_Md_CheckboxIndicatorClosable__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Md_CheckboxIndicatorClosable__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Md_CheckboxIndicatorCount__0f57c67e {\n padding: 0 3px 0 4px;\n gap: 5px;\n}\n.Tags_module_tag_Md_CheckboxIndicatorCount__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Md_CheckboxIndicatorCount__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Md_Count__0f57c67e {\n padding: 0 4px 0 9px;\n}\n.Tags_module_tag_Md_CheckboxCount__0f57c67e {\n padding: 0 3px 0 4px;\n gap: 5px;\n}\n.Tags_module_tag_Md_CheckboxCount__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Md_CheckboxCount__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Md_Textfield__0f57c67e {\n padding: 0 4px 0 9px;\n gap: 3px;\n cursor: text;\n width: max-content;\n}\n.Tags_module_tag_Md_Textfield__0f57c67e:focus-within {\n border-color: var(--Bordercolor-border-focus, #84adff);\n box-shadow: 0 0 0 2px rgba(132, 173, 255, 0.2);\n}\n.Tags_module_tag_Lg__0f57c67e {\n height: 28px;\n padding: 0 10px;\n font-size: var(--font-size-14, 14px);\n line-height: var(--Line-height-20, 20px);\n}\n.Tags_module_tag_Lg_Closable__0f57c67e {\n padding: 0 4px 0 10px;\n gap: 3px;\n}\n.Tags_module_tag_Lg_Checkbox__0f57c67e {\n padding: 0 10px 0 5px;\n gap: 6px;\n}\n.Tags_module_tag_Lg_Checkbox__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Lg_Checkbox__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Lg_CheckboxClosable__0f57c67e {\n padding: 0 4px 0 5px;\n gap: 6px;\n}\n.Tags_module_tag_Lg_CheckboxClosable__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Lg_CheckboxClosable__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Lg_Indicator__0f57c67e {\n padding: 0 10px 0 9px;\n gap: 6px;\n}\n.Tags_module_tag_Lg_IndicatorClosable__0f57c67e {\n padding: 0 4px 0 9px;\n}\n.Tags_module_tag_Lg_IndicatorCount__0f57c67e {\n padding: 0 4px 0 9px;\n gap: 6px;\n}\n.Tags_module_tag_Lg_CheckboxIndicator__0f57c67e {\n padding: 0 10px 0 5px;\n gap: 6px;\n}\n.Tags_module_tag_Lg_CheckboxIndicator__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Lg_CheckboxIndicator__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Lg_CheckboxIndicatorClosable__0f57c67e {\n padding: 0 4px 0 5px;\n}\n.Tags_module_tag_Lg_CheckboxIndicatorClosable__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Lg_CheckboxIndicatorClosable__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Lg_CheckboxIndicatorCount__0f57c67e {\n padding: 0 4px 0 5px;\n gap: 6px;\n}\n.Tags_module_tag_Lg_CheckboxIndicatorCount__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Lg_CheckboxIndicatorCount__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Lg_Count__0f57c67e {\n padding: 0 5px 0 10px;\n}\n.Tags_module_tag_Lg_CheckboxCount__0f57c67e {\n padding: 0 4px 0 5px;\n gap: 6px;\n}\n.Tags_module_tag_Lg_CheckboxCount__0f57c67e > :first-child {\n flex-shrink: 0;\n}\n.Tags_module_tag_Lg_CheckboxCount__0f57c67e > :first-child .Tags_module_box__0f57c67e {\n margin-top: 0;\n}\n.Tags_module_tag_Lg_Textfield__0f57c67e {\n padding: 0 4px 0 10px;\n gap: 3px;\n cursor: text;\n width: max-content;\n}\n.Tags_module_tag_Lg_Textfield__0f57c67e:focus-within {\n border-color: var(--Bordercolor-border-focus, #84adff);\n box-shadow: 0 0 0 2px rgba(132, 173, 255, 0.2);\n}";
7340
+ var modules_1c17c20f = {"tag":"Tags_module_tag__0f57c67e","tag__indicator":"Tags_module_tag__indicator__0f57c67e","tag__indicator--closable-sm":"Tags_module_tag__indicator_ClosableSm__0f57c67e","tag__indicator--closable-md":"Tags_module_tag__indicator_ClosableMd__0f57c67e","tag__indicator--closable-lg":"Tags_module_tag__indicator_ClosableLg__0f57c67e","tag__indicator--checkbox-closable-sm":"Tags_module_tag__indicator_CheckboxClosableSm__0f57c67e","tag__indicator--checkbox-closable-md":"Tags_module_tag__indicator_CheckboxClosableMd__0f57c67e","tag__indicator--checkbox-closable-lg":"Tags_module_tag__indicator_CheckboxClosableLg__0f57c67e","tag__logo":"Tags_module_tag__logo__0f57c67e","tag__logo--closable-sm":"Tags_module_tag__logo_ClosableSm__0f57c67e","tag__logo--closable-md":"Tags_module_tag__logo_ClosableMd__0f57c67e","tag__logo--closable-lg":"Tags_module_tag__logo_ClosableLg__0f57c67e","tag__logo--checkbox-closable-sm":"Tags_module_tag__logo_CheckboxClosableSm__0f57c67e","tag__logo--checkbox-closable-md":"Tags_module_tag__logo_CheckboxClosableMd__0f57c67e","tag__logo--checkbox-closable-lg":"Tags_module_tag__logo_CheckboxClosableLg__0f57c67e","tag__closer":"Tags_module_tag__closer__0f57c67e","tag__closer--sm":"Tags_module_tag__closer_Sm__0f57c67e","tag__closer--md":"Tags_module_tag__closer_Md__0f57c67e","tag__closer--lg":"Tags_module_tag__closer_Lg__0f57c67e","tag__closer--checkbox-indicator-sm":"Tags_module_tag__closer_CheckboxIndicatorSm__0f57c67e","tag__closer--checkbox-indicator-md":"Tags_module_tag__closer_CheckboxIndicatorMd__0f57c67e","tag__closer--checkbox-indicator-lg":"Tags_module_tag__closer_CheckboxIndicatorLg__0f57c67e","tag__count":"Tags_module_tag__count__0f57c67e","tag__count--sm":"Tags_module_tag__count_Sm__0f57c67e","tag__count--md":"Tags_module_tag__count_Md__0f57c67e","tag__count--lg":"Tags_module_tag__count_Lg__0f57c67e","tag__count--checkbox-indicator-sm":"Tags_module_tag__count_CheckboxIndicatorSm__0f57c67e","tag__count--checkbox-indicator-md":"Tags_module_tag__count_CheckboxIndicatorMd__0f57c67e","tag__count--checkbox-indicator-lg":"Tags_module_tag__count_CheckboxIndicatorLg__0f57c67e","tag__count--count-sm":"Tags_module_tag__count_CountSm__0f57c67e","tag__count--count-md":"Tags_module_tag__count_CountMd__0f57c67e","tag__count--count-lg":"Tags_module_tag__count_CountLg__0f57c67e","tag__count--checkbox-sm":"Tags_module_tag__count_CheckboxSm__0f57c67e","tag__count--checkbox-md":"Tags_module_tag__count_CheckboxMd__0f57c67e","tag__count--checkbox-lg":"Tags_module_tag__count_CheckboxLg__0f57c67e","tag__input":"Tags_module_tag__input__0f57c67e","tag__input--sm":"Tags_module_tag__input_Sm__0f57c67e","tag__input--md":"Tags_module_tag__input_Md__0f57c67e","tag__input--lg":"Tags_module_tag__input_Lg__0f57c67e","tag__textfield_sizer":"Tags_module_tag__textfield_sizer__0f57c67e","tag__textfield_sizer--sm":"Tags_module_tag__textfield_sizer_Sm__0f57c67e","tag__textfield_sizer--md":"Tags_module_tag__textfield_sizer_Md__0f57c67e","tag__textfield_sizer--lg":"Tags_module_tag__textfield_sizer_Lg__0f57c67e","tag__textfield_label":"Tags_module_tag__textfield_label__0f57c67e","tag__textfield_label--sm":"Tags_module_tag__textfield_label_Sm__0f57c67e","tag__textfield_label--md":"Tags_module_tag__textfield_label_Md__0f57c67e","tag__textfield_label--lg":"Tags_module_tag__textfield_label_Lg__0f57c67e","tag__textfield_input":"Tags_module_tag__textfield_input__0f57c67e","tag__textfield_input--sm":"Tags_module_tag__textfield_input_Sm__0f57c67e","tag__textfield_input--md":"Tags_module_tag__textfield_input_Md__0f57c67e","tag__textfield_input--lg":"Tags_module_tag__textfield_input_Lg__0f57c67e","tag__textfield_closer":"Tags_module_tag__textfield_closer__0f57c67e","tag--sm":"Tags_module_tag_Sm__0f57c67e","tag--sm--closable":"Tags_module_tag_Sm_Closable__0f57c67e","tag--sm--checkbox":"Tags_module_tag_Sm_Checkbox__0f57c67e","box":"Tags_module_box__0f57c67e","tag--sm--checkbox-closable":"Tags_module_tag_Sm_CheckboxClosable__0f57c67e","tag--sm--indicator":"Tags_module_tag_Sm_Indicator__0f57c67e","tag--sm--indicator-closable":"Tags_module_tag_Sm_IndicatorClosable__0f57c67e","tag--sm--indicator-count":"Tags_module_tag_Sm_IndicatorCount__0f57c67e","tag--sm--checkbox-indicator":"Tags_module_tag_Sm_CheckboxIndicator__0f57c67e","tag--sm--checkbox-indicator-closable":"Tags_module_tag_Sm_CheckboxIndicatorClosable__0f57c67e","tag--sm--checkbox-indicator-count":"Tags_module_tag_Sm_CheckboxIndicatorCount__0f57c67e","tag--sm--count":"Tags_module_tag_Sm_Count__0f57c67e","tag--sm--checkbox-count":"Tags_module_tag_Sm_CheckboxCount__0f57c67e","tag--sm--textfield":"Tags_module_tag_Sm_Textfield__0f57c67e","tag--sm--textfield-readonly":"Tags_module_tag_Sm_TextfieldReadonly__0f57c67e","tag--md":"Tags_module_tag_Md__0f57c67e","tag--md--closable":"Tags_module_tag_Md_Closable__0f57c67e","tag--md--checkbox":"Tags_module_tag_Md_Checkbox__0f57c67e","tag--md--checkbox-closable":"Tags_module_tag_Md_CheckboxClosable__0f57c67e","tag--md--indicator":"Tags_module_tag_Md_Indicator__0f57c67e","tag--md--indicator-closable":"Tags_module_tag_Md_IndicatorClosable__0f57c67e","tag--md--indicator-count":"Tags_module_tag_Md_IndicatorCount__0f57c67e","tag--md--checkbox-indicator":"Tags_module_tag_Md_CheckboxIndicator__0f57c67e","tag--md--checkbox-indicator-closable":"Tags_module_tag_Md_CheckboxIndicatorClosable__0f57c67e","tag--md--checkbox-indicator-count":"Tags_module_tag_Md_CheckboxIndicatorCount__0f57c67e","tag--md--count":"Tags_module_tag_Md_Count__0f57c67e","tag--md--checkbox-count":"Tags_module_tag_Md_CheckboxCount__0f57c67e","tag--md--textfield":"Tags_module_tag_Md_Textfield__0f57c67e","tag--lg":"Tags_module_tag_Lg__0f57c67e","tag--lg--closable":"Tags_module_tag_Lg_Closable__0f57c67e","tag--lg--checkbox":"Tags_module_tag_Lg_Checkbox__0f57c67e","tag--lg--checkbox-closable":"Tags_module_tag_Lg_CheckboxClosable__0f57c67e","tag--lg--indicator":"Tags_module_tag_Lg_Indicator__0f57c67e","tag--lg--indicator-closable":"Tags_module_tag_Lg_IndicatorClosable__0f57c67e","tag--lg--indicator-count":"Tags_module_tag_Lg_IndicatorCount__0f57c67e","tag--lg--checkbox-indicator":"Tags_module_tag_Lg_CheckboxIndicator__0f57c67e","tag--lg--checkbox-indicator-closable":"Tags_module_tag_Lg_CheckboxIndicatorClosable__0f57c67e","tag--lg--checkbox-indicator-count":"Tags_module_tag_Lg_CheckboxIndicatorCount__0f57c67e","tag--lg--count":"Tags_module_tag_Lg_Count__0f57c67e","tag--lg--checkbox-count":"Tags_module_tag_Lg_CheckboxCount__0f57c67e","tag--lg--textfield":"Tags_module_tag_Lg_Textfield__0f57c67e"};
7341
+ n(css$y,{});
7342
+
7343
+ var INDICATOR_SIZE = {
7344
+ sm: 8,
7345
+ md: 8,
7346
+ lg: 10
7347
+ };
7348
+ var CLOSER_MAP = {
7349
+ sm: jsx(TagCloserSm, {}),
7350
+ md: jsx(TagCloserMd, {}),
7351
+ lg: jsx(TagCloserLg, {})
7352
+ };
7353
+ var COUNT_MAP = function COUNT_MAP(count) {
7354
+ return {
7355
+ sm: jsx(TagCountSm, {
7356
+ count: count
7357
+ }),
7358
+ md: jsx(TagCountMd, {
7359
+ count: count
7360
+ }),
7361
+ lg: jsx(TagCountLg, {
7362
+ count: count
7363
+ })
7364
+ };
7365
+ };
7366
+ var Tag = /*#__PURE__*/forwardRef(function (_ref, ref) {
7367
+ var _ref$label = _ref.label,
7368
+ label = _ref$label === void 0 ? 'Label' : _ref$label,
7369
+ _ref$size = _ref.size,
7370
+ size = _ref$size === void 0 ? 'sm' : _ref$size,
7371
+ _ref$closable = _ref.closable,
7372
+ closable = _ref$closable === void 0 ? false : _ref$closable,
7373
+ _ref$checkbox = _ref.checkbox,
7374
+ checkbox = _ref$checkbox === void 0 ? false : _ref$checkbox,
7375
+ _ref$indicator = _ref.indicator,
7376
+ indicator = _ref$indicator === void 0 ? false : _ref$indicator,
7377
+ _ref$indicatorType = _ref.indicatorType,
7378
+ indicatorType = _ref$indicatorType === void 0 ? 'success' : _ref$indicatorType,
7379
+ count = _ref.count,
7380
+ _ref$checkboxIndicato = _ref.checkboxIndicator,
7381
+ checkboxIndicator = _ref$checkboxIndicato === void 0 ? false : _ref$checkboxIndicato,
7382
+ _ref$checkboxIndicato2 = _ref.checkboxIndicatorClosable,
7383
+ checkboxIndicatorClosable = _ref$checkboxIndicato2 === void 0 ? false : _ref$checkboxIndicato2,
7384
+ _ref$checkboxIndicato3 = _ref.checkboxIndicatorCount,
7385
+ checkboxIndicatorCount = _ref$checkboxIndicato3 === void 0 ? false : _ref$checkboxIndicato3,
7386
+ _ref$onlyCount = _ref.onlyCount,
7387
+ onlyCount = _ref$onlyCount === void 0 ? false : _ref$onlyCount,
7388
+ _ref$checkboxCloser = _ref.checkboxCloser,
7389
+ checkboxCloser = _ref$checkboxCloser === void 0 ? false : _ref$checkboxCloser,
7390
+ _ref$checkboxCount = _ref.checkboxCount,
7391
+ checkboxCount = _ref$checkboxCount === void 0 ? false : _ref$checkboxCount,
7392
+ _ref$logo = _ref.logo,
7393
+ logo = _ref$logo === void 0 ? false : _ref$logo,
7394
+ _ref$checkboxLogo = _ref.checkboxLogo,
7395
+ checkboxLogo = _ref$checkboxLogo === void 0 ? false : _ref$checkboxLogo,
7396
+ _ref$checkboxLogoClos = _ref.checkboxLogoClosable,
7397
+ checkboxLogoClosable = _ref$checkboxLogoClos === void 0 ? false : _ref$checkboxLogoClos,
7398
+ _ref$checkboxLogoCoun = _ref.checkboxLogoCount,
7399
+ checkboxLogoCount = _ref$checkboxLogoCoun === void 0 ? false : _ref$checkboxLogoCoun,
7400
+ _ref$textField = _ref.textField,
7401
+ textField = _ref$textField === void 0 ? false : _ref$textField,
7402
+ _ref$readOnly = _ref.readOnly,
7403
+ readOnly = _ref$readOnly === void 0 ? false : _ref$readOnly,
7404
+ inputValue = _ref.inputValue,
7405
+ onInputChange = _ref.onInputChange,
7406
+ onInputBlur = _ref.onInputBlur,
7407
+ onInputEnter = _ref.onInputEnter,
7408
+ _ref$defaultInputValu = _ref.defaultInputValue,
7409
+ defaultInputValue = _ref$defaultInputValu === void 0 ? '' : _ref$defaultInputValu,
7410
+ _ref$inputPlaceholder = _ref.inputPlaceholder,
7411
+ inputPlaceholder = _ref$inputPlaceholder === void 0 ? '' : _ref$inputPlaceholder,
7412
+ onClick = _ref.onClick,
7413
+ onInputClear = _ref.onInputClear;
7414
+ var isCheckboxClosable = checkbox && closable;
7415
+ var isIndicatorClosable = indicator && closable;
7416
+ var isIndicatorCount = indicator && count !== undefined;
7417
+ var isLogoClosable = logo && closable;
7418
+ var isLogoCount = logo && count !== undefined;
7419
+ var isControlled = inputValue !== undefined;
7420
+ var _useState = useState(defaultInputValue),
7421
+ _useState2 = _slicedToArray(_useState, 2),
7422
+ internalValue = _useState2[0],
7423
+ setInternalValue = _useState2[1];
7424
+ var resolvedValue = isControlled ? inputValue : internalValue;
7425
+ var internalInputRef = useRef(null);
7426
+ var resolvedRef = ref !== null && ref !== void 0 ? ref : internalInputRef;
7427
+ var sizerRef = useRef(null);
7428
+ var focusInput = function focusInput() {
7429
+ var _resolvedRef$current;
7430
+ (_resolvedRef$current = resolvedRef.current) === null || _resolvedRef$current === void 0 || _resolvedRef$current.focus();
7431
+ };
7432
+ useEffect(function () {
7433
+ var updateWidth = function updateWidth() {
7434
+ var _sizerRef$current, _sizerRef$current2, _sizerRef$current3;
7435
+ // Since TextField doesn't properly forward refs, find the input element directly
7436
+ var inputElement = resolvedRef.current || ((_sizerRef$current = sizerRef.current) === null || _sizerRef$current === void 0 || (_sizerRef$current = _sizerRef$current.parentElement) === null || _sizerRef$current === void 0 ? void 0 : _sizerRef$current.querySelector('input[type="text"]')) || ((_sizerRef$current2 = sizerRef.current) === null || _sizerRef$current2 === void 0 || (_sizerRef$current2 = _sizerRef$current2.parentElement) === null || _sizerRef$current2 === void 0 ? void 0 : _sizerRef$current2.querySelector('input')) || ((_sizerRef$current3 = sizerRef.current) === null || _sizerRef$current3 === void 0 || (_sizerRef$current3 = _sizerRef$current3.nextElementSibling) === null || _sizerRef$current3 === void 0 ? void 0 : _sizerRef$current3.querySelector('input'));
7437
+ if (sizerRef.current && inputElement) {
7438
+ // Force reflow to ensure accurate measurements
7439
+ sizerRef.current.offsetHeight;
7440
+ var sizerWidth = sizerRef.current.offsetWidth;
7441
+ var buffer = size === 'sm' ? 4 : size === 'md' ? 4 : 6; // Minimal buffer for cursor space
7442
+ var minWidth = size === 'sm' ? 10 : size === 'md' ? 35 : 40;
7443
+ // Calculate available space in container, leaving room for close button
7444
+ var tagContainer = inputElement.closest('[class*="tag--"][class*="textfield"]');
7445
+ var maxInputWidth = 120; // Conservative maximum for input field
7446
+ if (tagContainer) {
7447
+ // Get all elements in the tag to calculate reserved space
7448
+ var closeButton = tagContainer.querySelector('[class*="textfield_closer"]');
7449
+ var _label = tagContainer.querySelector('[class*="textfield_label"]');
7450
+ // Calculate space used by other elements (more conservative)
7451
+ var reservedSpace = 16; // padding and gaps
7452
+ if (_label) {
7453
+ reservedSpace += _label.getBoundingClientRect().width + 4; // label + gap
7454
+ }
7455
+ if (closeButton) {
7456
+ reservedSpace += closeButton.getBoundingClientRect().width + 4; // close button + gap
7457
+ }
7458
+ // Don't let tags get too wide - reasonable maximum
7459
+ var maxTagWidth = 180;
7460
+ maxInputWidth = Math.max(maxTagWidth - reservedSpace, minWidth);
7461
+ // Further constrain if current container is smaller
7462
+ var currentContainerWidth = tagContainer.getBoundingClientRect().width;
7463
+ if (currentContainerWidth > 0) {
7464
+ maxInputWidth = Math.min(maxInputWidth, currentContainerWidth - reservedSpace);
7465
+ }
7466
+ }
7467
+ var idealWidth = Math.max(sizerWidth + buffer, minWidth);
7468
+ var finalWidth = Math.min(idealWidth, maxInputWidth);
7469
+ // Apply constrained width to input
7470
+ inputElement.style.setProperty('width', "".concat(finalWidth, "px"), 'important');
7471
+ inputElement.style.setProperty('max-width', "".concat(finalWidth, "px"), 'important');
7472
+ inputElement.style.setProperty('min-width', "".concat(minWidth, "px"), 'important');
7473
+ // Update tag container to fit content but with strict bounds
7474
+ if (tagContainer) {
7475
+ tagContainer.style.setProperty('width', 'auto', 'important');
7476
+ tagContainer.style.setProperty('max-width', '180px', 'important');
7477
+ tagContainer.style.setProperty('min-width', 'max-content', 'important');
7478
+ tagContainer.style.setProperty('overflow', 'hidden', 'important');
7479
+ }
7480
+ }
7481
+ };
7482
+ // Run with delays to handle complex DOM updates
7483
+ updateWidth();
7484
+ var timeout1 = setTimeout(updateWidth, 10);
7485
+ var timeout2 = setTimeout(updateWidth, 50);
7486
+ var timeout3 = setTimeout(updateWidth, 100);
7487
+ return function () {
7488
+ clearTimeout(timeout1);
7489
+ clearTimeout(timeout2);
7490
+ clearTimeout(timeout3);
7491
+ };
7492
+ }, [resolvedValue, inputPlaceholder, size]);
7493
+ var handleChange = function handleChange(e) {
7494
+ var next = e.target.value;
7495
+ if (!isControlled) setInternalValue(next);
7496
+ onInputChange === null || onInputChange === void 0 || onInputChange(next, e);
7497
+ };
7498
+ var handleKeyDown = function handleKeyDown(e) {
7499
+ if (e.key === 'Enter' || e.key === 'Tab') {
7500
+ e.preventDefault();
7501
+ onInputEnter === null || onInputEnter === void 0 || onInputEnter();
7502
+ } else if (e.key === 'Backspace' && resolvedValue === '') {
7503
+ e.preventDefault();
7504
+ onInputClear === null || onInputClear === void 0 || onInputClear();
7505
+ }
7506
+ };
7507
+ var handleBlur = function handleBlur() {
7508
+ onInputBlur === null || onInputBlur === void 0 || onInputBlur();
7509
+ };
7510
+ var handleClear = function handleClear() {
7511
+ if (!isControlled) setInternalValue('');
7512
+ onInputClear === null || onInputClear === void 0 || onInputClear();
7513
+ };
7514
+ // Map TagSize to TextField size (v2 only supports sm/md)
7515
+ var getTextFieldSize = function getTextFieldSize(tagSize) {
7516
+ return tagSize === 'lg' ? 'md' : tagSize;
7517
+ };
7518
+ var CloserSpan = function CloserSpan(_ref2) {
7519
+ var extraClass = _ref2.extraClass;
7520
+ return jsx("span", {
7521
+ className: [modules_1c17c20f.tag__closer, modules_1c17c20f["tag__closer--".concat(size)], extraClass].filter(Boolean).join(' '),
7522
+ children: CLOSER_MAP[size]
7523
+ });
7524
+ };
7525
+ var CheckboxIndicatorCloserSpan = function CheckboxIndicatorCloserSpan() {
7526
+ return jsx("span", {
7527
+ className: [modules_1c17c20f.tag__closer, modules_1c17c20f["tag__closer--checkbox-indicator-".concat(size)]].join(' '),
7528
+ children: CLOSER_MAP[size]
7529
+ });
7530
+ };
7531
+ if (textField) {
7532
+ return jsxs("span", {
7533
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--textfield")], readOnly && modules_1c17c20f["tag--".concat(size, "--textfield-readonly")]].filter(Boolean).join(' '),
7534
+ onClick: readOnly ? function () {
7535
+ // Handle click for readonly tags
7536
+ onClick === null || onClick === void 0 || onClick();
7537
+ } : focusInput,
7538
+ children: [jsx("span", {
7539
+ className: "".concat(modules_1c17c20f.tag__textfield_label, " ").concat(modules_1c17c20f["tag__textfield_label--".concat(size)]),
7540
+ children: label
7541
+ }), jsx("span", {
7542
+ ref: sizerRef,
7543
+ "aria-hidden": true,
7544
+ className: "".concat(modules_1c17c20f.tag__textfield_sizer, " ").concat(modules_1c17c20f["tag__textfield_sizer--".concat(size)]),
7545
+ children: resolvedValue || inputPlaceholder || "\u200B"
7546
+ }), jsx(TextField$1, _objectSpread2({
7547
+ ref: resolvedRef,
7548
+ unstyled: true,
7549
+ size: getTextFieldSize(size),
7550
+ value: resolvedValue,
7551
+ onChange: readOnly ? undefined : handleChange,
7552
+ onBlur: readOnly ? undefined : handleBlur,
7553
+ readOnly: readOnly,
7554
+ placeholder: inputPlaceholder,
7555
+ disabled: readOnly,
7556
+ className: [modules_1c17c20f.tag__textfield_input, modules_1c17c20f["tag__textfield_input--".concat(size)]].filter(Boolean).join(' ')
7557
+ }, {
7558
+ onKeyDown: handleKeyDown
7559
+ })), closable && jsx("span", {
7560
+ className: modules_1c17c20f.tag__textfield_closer,
7561
+ onClick: function onClick(e) {
7562
+ e.stopPropagation();
7563
+ handleClear();
7564
+ focusInput();
7565
+ },
7566
+ children: CLOSER_MAP[size]
7567
+ })]
7568
+ });
7569
+ }
7570
+ if (onlyCount && count !== undefined) {
7571
+ return jsxs("span", {
7572
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--count")]].join(' '),
7573
+ children: [label, jsx("span", {
7574
+ className: [modules_1c17c20f.tag__count, modules_1c17c20f["tag__count--".concat(size)]].join(' '),
7575
+ children: COUNT_MAP(count)[size]
7576
+ })]
7577
+ });
7578
+ }
7579
+ if (checkboxCloser) {
7580
+ return jsxs("span", {
7581
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-closable")]].join(' '),
7582
+ children: [jsx(Checkbox$1, {
7583
+ size: size
7584
+ }), label, jsx(CloserSpan, {})]
7585
+ });
7586
+ }
7587
+ if (checkboxCount && count !== undefined) {
7588
+ return jsxs("span", {
7589
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-count")]].join(' '),
7590
+ children: [jsx(Checkbox$1, {
7591
+ size: size
7592
+ }), label, jsx("span", {
7593
+ className: [modules_1c17c20f.tag__count, modules_1c17c20f["tag__count--checkbox-".concat(size)]].join(' '),
7594
+ children: COUNT_MAP(count)[size]
7595
+ })]
7596
+ });
7597
+ }
7598
+ if (checkboxLogoCount && count !== undefined) {
7599
+ return jsxs("span", {
7600
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-indicator-count")]].join(' '),
7601
+ children: [jsx(Checkbox$1, {
7602
+ size: size
7603
+ }), jsx(Email, {
7604
+ className: [modules_1c17c20f.tag__logo, modules_1c17c20f["tag__logo--checkbox-count-".concat(size)]].filter(Boolean).join(' ')
7605
+ }), label, jsx("span", {
7606
+ className: [modules_1c17c20f.tag__count, modules_1c17c20f["tag__count--checkbox-indicator-".concat(size)]].join(' '),
7607
+ children: COUNT_MAP(count)[size]
7608
+ })]
7609
+ });
7610
+ }
7611
+ if (checkboxLogoClosable) {
7612
+ return jsxs("span", {
7613
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-indicator-closable")]].join(' '),
7614
+ children: [jsx(Checkbox$1, {
7615
+ size: size
7616
+ }), jsx(Email, {
7617
+ className: [modules_1c17c20f.tag__logo, modules_1c17c20f["tag__logo--checkbox-closable-".concat(size)]].filter(Boolean).join(' ')
7618
+ }), label, jsx(CheckboxIndicatorCloserSpan, {})]
7619
+ });
7620
+ }
7621
+ if (checkboxLogo) {
7622
+ return jsxs("span", {
7623
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-indicator")]].join(' '),
7624
+ children: [jsx(Checkbox$1, {
7625
+ size: size
7626
+ }), jsx(Email, {
7627
+ className: [modules_1c17c20f.tag__logo, modules_1c17c20f["tag__logo--checkbox-".concat(size)]].filter(Boolean).join(' ')
7628
+ }), label]
7629
+ });
7630
+ }
7631
+ if (isLogoCount) {
7632
+ return jsxs("span", {
7633
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--indicator-count")]].join(' '),
7634
+ children: [jsx(Email, {
7635
+ className: [modules_1c17c20f.tag__logo, modules_1c17c20f["tag__logo--count-".concat(size)]].filter(Boolean).join(' ')
7636
+ }), label, jsx("span", {
7637
+ className: [modules_1c17c20f.tag__count, modules_1c17c20f["tag__count--".concat(size)]].join(' '),
7638
+ children: COUNT_MAP(count)[size]
7639
+ })]
7640
+ });
7641
+ }
7642
+ if (isLogoClosable) {
7643
+ return jsxs("span", {
7644
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--indicator-closable")]].join(' '),
7645
+ children: [jsx(Email, {
7646
+ className: [modules_1c17c20f.tag__logo, modules_1c17c20f["tag__logo--closable-".concat(size)]].filter(Boolean).join(' ')
7647
+ }), label, jsx(CloserSpan, {})]
7648
+ });
7649
+ }
7650
+ if (logo) {
7651
+ return jsxs("span", {
7652
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--indicator")]].join(' '),
7653
+ children: [jsx(Email, {
7654
+ className: modules_1c17c20f.tag__logo
7655
+ }), label]
7656
+ });
7657
+ }
7658
+ if (checkboxIndicatorCount && count !== undefined) {
7659
+ return jsxs("span", {
7660
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-indicator-count")]].join(' '),
7661
+ children: [jsx(Checkbox$1, {
7662
+ size: size
7663
+ }), jsx(Indicator, {
7664
+ type: indicatorType,
7665
+ size: INDICATOR_SIZE[size],
7666
+ className: [modules_1c17c20f.tag__indicator, modules_1c17c20f["tag__indicator--checkbox-count-".concat(size)]].filter(Boolean).join(' ')
7667
+ }), label, jsx("span", {
7668
+ className: [modules_1c17c20f.tag__count, modules_1c17c20f["tag__count--checkbox-indicator-".concat(size)]].join(' '),
7669
+ children: COUNT_MAP(count)[size]
7670
+ })]
7671
+ });
7672
+ }
7673
+ if (checkboxIndicatorClosable) {
7674
+ return jsxs("span", {
7675
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-indicator-closable")]].join(' '),
7676
+ children: [jsx(Checkbox$1, {
7677
+ size: size
7678
+ }), jsx(Indicator, {
7679
+ type: indicatorType,
7680
+ size: INDICATOR_SIZE[size],
7681
+ className: [modules_1c17c20f.tag__indicator, modules_1c17c20f["tag__indicator--checkbox-closable-".concat(size)]].filter(Boolean).join(' ')
7682
+ }), label, jsx(CheckboxIndicatorCloserSpan, {})]
7683
+ });
7684
+ }
7685
+ if (checkboxIndicator) {
7686
+ return jsxs("span", {
7687
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--checkbox-indicator")]].join(' '),
7688
+ children: [jsx(Checkbox$1, {
7689
+ size: size
7690
+ }), jsx(Indicator, {
7691
+ type: indicatorType,
7692
+ size: INDICATOR_SIZE[size],
7693
+ className: [modules_1c17c20f.tag__indicator, modules_1c17c20f["tag__indicator--checkbox-".concat(size)]].filter(Boolean).join(' ')
7694
+ }), label]
7695
+ });
7696
+ }
7697
+ if (isIndicatorCount) {
7698
+ return jsxs("span", {
7699
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--indicator-count")]].join(' '),
7700
+ children: [jsx(Indicator, {
7701
+ type: indicatorType,
7702
+ size: INDICATOR_SIZE[size],
7703
+ className: modules_1c17c20f.tag__indicator
7704
+ }), label, jsx("span", {
7705
+ className: [modules_1c17c20f.tag__count, modules_1c17c20f["tag__count--".concat(size)]].join(' '),
7706
+ children: COUNT_MAP(count)[size]
7707
+ })]
7708
+ });
7709
+ }
7710
+ if (isIndicatorClosable) {
7711
+ return jsxs("span", {
7712
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--indicator-closable")]].join(' '),
7713
+ children: [jsx(Indicator, {
7714
+ type: indicatorType,
7715
+ size: INDICATOR_SIZE[size],
7716
+ className: [modules_1c17c20f.tag__indicator, modules_1c17c20f["tag__indicator--closable-".concat(size)]].filter(Boolean).join(' ')
7717
+ }), label, jsx(CloserSpan, {})]
7718
+ });
7719
+ }
7720
+ if (indicator) {
7721
+ return jsxs("span", {
7722
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], modules_1c17c20f["tag--".concat(size, "--indicator")]].join(' '),
7723
+ children: [jsx(Indicator, {
7724
+ type: indicatorType,
7725
+ size: INDICATOR_SIZE[size],
7726
+ className: modules_1c17c20f.tag__indicator
7727
+ }), label]
7728
+ });
7729
+ }
7730
+ return jsxs("span", {
7731
+ className: [modules_1c17c20f.tag, modules_1c17c20f["tag--".concat(size)], isCheckboxClosable ? modules_1c17c20f["tag--".concat(size, "--checkbox-closable")] : closable ? modules_1c17c20f["tag--".concat(size, "--closable")] : '', !isCheckboxClosable && checkbox ? modules_1c17c20f["tag--".concat(size, "--checkbox")] : ''].filter(Boolean).join(' '),
7732
+ children: [checkbox && jsx(Checkbox$1, {
7733
+ size: size
7734
+ }), label, closable && jsx(CloserSpan, {})]
7735
+ });
7736
+ });
7737
+
7738
+ var css$x = ".Dropdown_module_dropdown__9126ab7b {\n display: flex;\n flex-direction: column;\n gap: 6px;\n width: 100%;\n min-width: 297px;\n}\n\n.Dropdown_module_labelContainer__9126ab7b {\n display: flex;\n gap: 2px;\n align-items: center;\n}\n.Dropdown_module_labelContainer__9126ab7b .Dropdown_module_label__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 14px;\n line-height: 20px;\n color: #414651;\n}\n.Dropdown_module_labelContainer__9126ab7b .Dropdown_module_required__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 14px;\n line-height: 20px;\n color: #175cd3;\n}\n\n.Dropdown_module_helpIcon__9126ab7b {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n.Dropdown_module_helpIcon__9126ab7b svg {\n width: 100%;\n height: 100%;\n color: #535862;\n}\n\n.Dropdown_module_buttonWrapper__9126ab7b {\n display: contents;\n outline: none;\n}\n.Dropdown_module_buttonWrapper__9126ab7b:focus {\n outline: none;\n}\n.Dropdown_module_buttonWrapper__9126ab7b:focus-visible {\n outline: none;\n}\n\n.Dropdown_module_dropdownContainer__9126ab7b {\n position: relative !important;\n display: flex !important;\n align-items: center !important;\n justify-content: flex-start !important;\n gap: 0px !important;\n padding: 8px 12px !important;\n border-radius: 8px !important;\n border: 1px solid #d5d7da !important;\n background: white !important;\n cursor: pointer !important;\n transition: all 0.2s ease-in-out !important;\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.04), 0px 1px 2px 0px rgba(0, 0, 0, 0.06) !important;\n text-decoration: none !important;\n text-align: left !important;\n width: 100% !important;\n min-width: unset !important;\n max-width: unset !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b [data-elem=component2] {\n display: flex !important;\n align-items: center !important;\n justify-content: space-between !important;\n width: 100% !important;\n gap: 8px !important;\n flex: 1 !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b [data-elem=component2] [data-elem=title] {\n display: flex !important;\n align-items: center !important;\n justify-content: space-between !important;\n width: 100% !important;\n gap: 8px;\n flex: 1 !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b:focus {\n outline: none !important;\n text-decoration: none !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b:focus-visible {\n outline: none !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b:focus:not(.Dropdown_module_focus__9126ab7b) {\n outline: none !important;\n border: 1px solid #d5d7da !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b:hover {\n text-decoration: none !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b:active {\n text-decoration: none !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_sm__9126ab7b {\n height: 40px !important;\n padding: 8px 12px !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_md__9126ab7b {\n height: 44px !important;\n padding: 8px 12px !important;\n}\n\n.Dropdown_module_contentArea__9126ab7b {\n display: flex !important;\n align-items: center !important;\n gap: 8px !important;\n flex: 1 !important;\n min-width: 0 !important;\n position: relative !important;\n}\n\n.Dropdown_module_leadingIcon__9126ab7b {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n.Dropdown_module_leadingIcon__9126ab7b svg {\n width: 100%;\n height: 100%;\n}\n\n.Dropdown_module_trailingArea__9126ab7b {\n display: flex !important;\n align-items: center !important;\n gap: 8px !important;\n flex-shrink: 0 !important;\n}\n\n.Dropdown_module_dropdownText__9126ab7b {\n flex: 1 !important;\n font-family: Jakarta !important;\n font-weight: 500 !important;\n font-size: 16px !important;\n line-height: 24px !important;\n color: #181d27 !important;\n white-space: nowrap !important;\n overflow: hidden !important;\n text-overflow: ellipsis !important;\n text-align: left !important;\n text-decoration: none !important;\n}\n.Dropdown_module_dropdownText__9126ab7b.Dropdown_module_placeholder__9126ab7b {\n font-weight: 400 !important;\n color: #a4a7ae !important;\n}\n\n.Dropdown_module_statusIcon__9126ab7b {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n.Dropdown_module_statusIcon__9126ab7b svg {\n width: 100%;\n height: 100%;\n}\n\n.Dropdown_module_dropdownIcon__9126ab7b {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n.Dropdown_module_dropdownIcon__9126ab7b svg {\n width: 100%;\n height: 100%;\n color: #a4a7ae;\n transition: color 0.2s ease-in-out;\n}\n\n.Dropdown_module_helperText__9126ab7b {\n font-family: Jakarta;\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n}\n\n.Dropdown_module_helperDefault__9126ab7b {\n color: #535862;\n}\n\n.Dropdown_module_helperError__9126ab7b {\n color: #d92d20;\n}\n\n.Dropdown_module_helperWarning__9126ab7b {\n color: #dc6803;\n}\n\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_default__9126ab7b {\n border: 1px solid #d5d7da !important;\n background: white !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_default__9126ab7b:hover {\n border-color: #b2b5bb !important;\n text-decoration: none !important;\n}\n\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_selected__9126ab7b {\n border: 1px solid #d5d7da !important;\n background: white !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_selected__9126ab7b:hover {\n border-color: #b2b5bb !important;\n text-decoration: none !important;\n}\n\n.Dropdown_module_dropdown__9126ab7b .Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b {\n background: white !important;\n border: 2px solid #2e90fa !important;\n padding: 7px 11px !important;\n box-shadow: none !important;\n outline: none !important;\n}\n.Dropdown_module_dropdown__9126ab7b .Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b:hover,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b:hover {\n text-decoration: none !important;\n border: 2px solid #2e90fa !important;\n}\n.Dropdown_module_dropdown__9126ab7b .Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b:focus,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b:focus {\n outline: none !important;\n border: 2px solid #2e90fa !important;\n}\n.Dropdown_module_dropdown__9126ab7b .Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b:focus-visible,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b:focus-visible {\n outline: none !important;\n border: 2px solid #2e90fa !important;\n}\n.Dropdown_module_dropdown__9126ab7b .Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_sm__9126ab7b,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_sm__9126ab7b {\n padding: 7px 11px !important;\n}\n.Dropdown_module_dropdown__9126ab7b .Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_md__9126ab7b,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_md__9126ab7b {\n padding: 7px 11px !important;\n}\n\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_disabled__9126ab7b {\n background: #fafafa !important;\n border: 1px solid #d5d7da !important;\n cursor: not-allowed !important;\n box-shadow: none !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_disabled__9126ab7b .Dropdown_module_dropdownText__9126ab7b {\n color: #a4a7ae !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_disabled__9126ab7b .Dropdown_module_dropdownIcon__9126ab7b svg {\n color: #a4a7ae !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_disabled__9126ab7b:hover {\n background: #fafafa !important;\n border-color: #d5d7da !important;\n cursor: not-allowed !important;\n text-decoration: none !important;\n}\n\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_error__9126ab7b {\n background: white !important;\n border: 2px solid #f04438 !important;\n padding: 7px 11px !important;\n box-shadow: none !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_error__9126ab7b .Dropdown_module_statusIcon__9126ab7b svg {\n color: #f04438 !important;\n fill: #f04438 !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_error__9126ab7b:hover {\n text-decoration: none !important;\n}\n\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_warning__9126ab7b {\n background: white !important;\n border: 1px solid #d5d7da !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_warning__9126ab7b .Dropdown_module_statusIcon__9126ab7b svg {\n color: #dc6803 !important;\n fill: #dc6803 !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_warning__9126ab7b:hover {\n border-color: #b2b5bb !important;\n text-decoration: none !important;\n}\n\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_readOnly__9126ab7b,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_readOnly__9126ab7b {\n background: white !important;\n border: 1px solid #f5f5f5 !important;\n cursor: default !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_readOnly__9126ab7b .Dropdown_module_dropdownIcon__9126ab7b svg,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_readOnly__9126ab7b .Dropdown_module_dropdownIcon__9126ab7b svg {\n color: #a4a7ae !important;\n}\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_readOnly__9126ab7b:hover,\n.Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_readOnly__9126ab7b:hover {\n background: white !important;\n border-color: #f5f5f5 !important;\n cursor: default !important;\n text-decoration: none !important;\n}\n\n@media (max-width: 768px) {\n .Dropdown_module_dropdown__9126ab7b {\n min-width: 100%;\n max-width: 100%;\n }\n}\n.Dropdown_module_borderless__9126ab7b {\n border: 0 !important;\n border-width: 0 !important;\n border-style: none !important;\n border-color: transparent !important;\n background: none !important;\n box-shadow: none !important;\n padding: 0 !important;\n}\n.Dropdown_module_borderless__9126ab7b:hover, .Dropdown_module_borderless__9126ab7b:focus, .Dropdown_module_borderless__9126ab7b.Dropdown_module_focus__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_selected__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_default__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_filled__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_activeTyping__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_activeTyping__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_filledFocus__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_filledFocus__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_errorFocus__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_errorFocus__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_errorFilled__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_errorFilled__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_warning__9126ab7b, .Dropdown_module_borderless__9126ab7b.Dropdown_module_disabled__9126ab7b {\n border: 0 !important;\n border-width: 0 !important;\n border-style: none !important;\n border-color: transparent !important;\n background: none !important;\n box-shadow: none !important;\n padding: 0 !important;\n}\n.Dropdown_module_borderless__9126ab7b.Dropdown_module_focus__9126ab7b {\n padding: 0 !important;\n}\n.Dropdown_module_borderless__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_sm__9126ab7b {\n padding: 0 !important;\n}\n.Dropdown_module_borderless__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_md__9126ab7b {\n padding: 0 !important;\n}\n\n.Dropdown_module_dropdown__9126ab7b .Dropdown_module_dropdownContainer__9126ab7b.Dropdown_module_borderless__9126ab7b.Dropdown_module_focus__9126ab7b {\n border: 0 !important;\n border-width: 0 !important;\n border-style: none !important;\n border-color: transparent !important;\n background: none !important;\n box-shadow: none !important;\n padding: 0 !important;\n}\n\n.Dropdown_module_dropdownMenuPopover__9126ab7b {\n background: none !important;\n box-shadow: none !important;\n border: none !important;\n padding: 0 !important;\n}\n\n.Dropdown_module_dropdownMenu__9126ab7b {\n background: white;\n border: 1px solid #e9eaeb;\n border-radius: 8px;\n padding-top: 4px;\n box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.06);\n width: 100%;\n max-height: 300px;\n overflow-y: auto;\n}\n\n.Dropdown_module_dropdownMenuItem__9126ab7b {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 1px 6px;\n width: 100%;\n}\n.Dropdown_module_dropdownMenuItem__9126ab7b .Dropdown_module_dropdownMenuItemInner__9126ab7b {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding: 8px 8px 8px 8px;\n border-radius: 6px;\n cursor: pointer;\n transition: background-color 0.2s ease-in-out;\n gap: 8px;\n width: 100%;\n background: white;\n}\n.Dropdown_module_dropdownMenuItem__9126ab7b .Dropdown_module_dropdownMenuItemInner__9126ab7b:hover {\n background: #fafafa;\n}\n.Dropdown_module_dropdownMenuItem__9126ab7b .Dropdown_module_dropdownMenuItemInner__9126ab7b:active {\n background: #f5f5f5;\n}\n.Dropdown_module_dropdownMenuItem__9126ab7b.Dropdown_module_dropdownMenuItemSelected__9126ab7b .Dropdown_module_dropdownMenuItemInner__9126ab7b {\n background: #fafafa;\n}\n\n.Dropdown_module_dropdownMenuItemContent__9126ab7b {\n display: flex;\n align-items: center;\n gap: 8px;\n flex: 1;\n min-width: 0;\n}\n\n.Dropdown_module_dropdownMenuItemIcon__9126ab7b {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n.Dropdown_module_dropdownMenuItemIcon__9126ab7b svg {\n width: 100%;\n height: 100%;\n}\n\n.Dropdown_module_dropdownMenuItemText__9126ab7b {\n flex: 1;\n font-family: Jakarta;\n font-weight: 500;\n font-size: 16px;\n line-height: 24px;\n color: #414651;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.Dropdown_module_dropdownMenuItemSelected__9126ab7b .Dropdown_module_dropdownMenuItemText__9126ab7b {\n color: #181d27;\n}\n\n.Dropdown_module_dropdownMenuItemCheckbox__9126ab7b {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n\n.Dropdown_module_dropdownMenuItemCheck__9126ab7b {\n width: 16px;\n height: 16px;\n flex-shrink: 0;\n}\n.Dropdown_module_dropdownMenuItemCheck__9126ab7b svg {\n width: 100%;\n height: 100%;\n}\n.Dropdown_module_dropdownMenuItemCheck__9126ab7b svg > path {\n stroke: #2e90fa !important;\n}\n\n.Dropdown_module_filtersDropdown__9126ab7b {\n background: white;\n border: 1px solid #e2e8f0;\n border-radius: 8px;\n padding: 0;\n box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);\n min-width: 200px;\n max-height: 300px;\n overflow: hidden;\n}\n\n.Dropdown_module_filtersHeader__9126ab7b {\n padding: 8px 14px;\n}\n.Dropdown_module_filtersHeader__9126ab7b .Dropdown_module_filtersTitle__9126ab7b {\n font-family: Jakarta;\n font-size: 12px;\n line-height: 16px;\n font-weight: 600;\n color: #717680;\n white-space: nowrap;\n}\n\n.Dropdown_module_filtersOptions__9126ab7b {\n max-height: 240px;\n overflow-y: auto;\n}\n\n.Dropdown_module_filterOption__9126ab7b {\n display: flex;\n align-items: center;\n width: 100%;\n padding: 8px 16px;\n background: none;\n border: none;\n text-align: left;\n cursor: pointer;\n transition: background-color 0.2s ease-in-out;\n}\n.Dropdown_module_filterOption__9126ab7b .Dropdown_module_filterLabel__9126ab7b {\n font-family: Jakarta;\n font-size: 14px;\n line-height: 20px;\n font-weight: 500;\n color: #374151;\n}\n.Dropdown_module_filterOption__9126ab7b:hover {\n background: #f9fafb;\n}\n.Dropdown_module_filterOption__9126ab7b:hover .Dropdown_module_filterLabel__9126ab7b {\n color: #1f2937;\n}\n.Dropdown_module_filterOption__9126ab7b:active {\n background: #f3f4f6;\n}\n\n.Dropdown_module_countBadge__9126ab7b {\n background-color: #0a0d12 !important;\n border-radius: 4px !important;\n border-color: transparent !important;\n}\n.Dropdown_module_countBadge__9126ab7b > span {\n color: #ffffff !important;\n font-weight: 500 !important;\n font-size: 14px !important;\n line-height: 20px !important;\n}\n.Dropdown_module_countBadge__9126ab7b > button {\n color: #ffffff !important;\n opacity: 0.7 !important;\n}\n.Dropdown_module_countBadge__9126ab7b > button:hover {\n opacity: 1 !important;\n background-color: rgba(255, 255, 255, 0.1) !important;\n}\n.Dropdown_module_countBadge__9126ab7b > button svg {\n color: #ffffff !important;\n fill: #ffffff !important;\n}\n\n.Dropdown_module_countBadgeDisabled__9126ab7b {\n background-color: #ffffff !important;\n border: 1px solid #d5d7da !important;\n border-radius: 4px !important;\n}\n.Dropdown_module_countBadgeDisabled__9126ab7b > span {\n color: #a4a7ae !important;\n font-weight: 500 !important;\n font-size: 14px !important;\n line-height: 20px !important;\n}\n.Dropdown_module_countBadgeDisabled__9126ab7b > button {\n color: #a4a7ae !important;\n opacity: 0.7 !important;\n cursor: not-allowed !important;\n pointer-events: none !important;\n}\n.Dropdown_module_countBadgeDisabled__9126ab7b > button:hover {\n opacity: 0.7 !important;\n background-color: transparent !important;\n}\n.Dropdown_module_countBadgeDisabled__9126ab7b > button svg {\n color: #a4a7ae !important;\n fill: #a4a7ae !important;\n}\n\n.Dropdown_module_selectedText__9126ab7b {\n margin-left: 8px !important;\n}\n\n.Dropdown_module_dropdownMenuItemCheckbox__9126ab7b {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n\n.Dropdown_module_shortcutHint__9126ab7b {\n display: flex;\n align-items: center;\n justify-content: center;\n background: white;\n color: #a4a7ae;\n font-family: Jakarta;\n font-size: 12px;\n font-weight: 500;\n border: 1px solid #e9eaeb;\n border-radius: 4px;\n padding: 1px 4px;\n user-select: none;\n line-height: 16px;\n height: 20px;\n min-width: 20px;\n}\n\n.Dropdown_module_searchContainer__9126ab7b {\n display: flex;\n align-items: center;\n gap: 8px;\n padding: 10px 12px;\n background: white;\n border: 1px solid #d5d7da;\n border-radius: 8px;\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.04), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);\n transition: all 0.2s ease-in-out;\n width: 100%;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_sm__9126ab7b {\n height: 40px;\n padding: 10px 12px;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_md__9126ab7b {\n height: 44px;\n padding: 10px 12px;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_focus__9126ab7b {\n border: 2px solid #2e90fa;\n padding: 9px 11px;\n box-shadow: none;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_sm__9126ab7b {\n padding: 9px 11px;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_focus__9126ab7b.Dropdown_module_md__9126ab7b {\n padding: 9px 11px;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_disabled__9126ab7b {\n background: #fafafa;\n border: 1px solid #d5d7da;\n cursor: not-allowed;\n box-shadow: none;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_disabled__9126ab7b .Dropdown_module_searchInput__9126ab7b {\n background: transparent;\n color: #a4a7ae;\n cursor: not-allowed;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_disabled__9126ab7b .Dropdown_module_searchIcon__9126ab7b svg {\n color: #a4a7ae;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_error__9126ab7b {\n border: 1px solid #f04438;\n background: white;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_error__9126ab7b:hover {\n border-color: #d92d20;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_warning__9126ab7b {\n border: 1px solid #f79009;\n background: white;\n}\n.Dropdown_module_searchContainer__9126ab7b.Dropdown_module_warning__9126ab7b:hover {\n border-color: #dc6803;\n}\n\n.Dropdown_module_searchIcon__9126ab7b {\n width: 20px;\n height: 20px;\n flex-shrink: 0;\n}\n.Dropdown_module_searchIcon__9126ab7b svg {\n width: 100%;\n height: 100%;\n color: #535862;\n transition: color 0.2s ease-in-out;\n}\n\n.Dropdown_module_searchInput__9126ab7b {\n flex-shrink: 0;\n border: none;\n outline: none;\n background: transparent;\n font-family: Jakarta;\n font-weight: 400;\n font-size: 16px;\n line-height: 24px;\n color: #181d27;\n min-width: 120px;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_textField__9126ab7b {\n display: contents !important;\n gap: 0 !important;\n width: auto !important;\n min-width: 0 !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_labelContainer__9126ab7b {\n display: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b {\n display: contents !important;\n border: none !important;\n border-radius: 0 !important;\n padding: 0 !important;\n height: auto !important;\n background: transparent !important;\n box-shadow: none !important;\n transition: none !important;\n overflow: visible !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b:focus, .Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b:focus-within, .Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b.Dropdown_module_focus__9126ab7b, .Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b.Dropdown_module_activeTyping__9126ab7b, .Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b.Dropdown_module_activeTyping__9126ab7b, .Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b.Dropdown_module_filledFocus__9126ab7b, .Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputContainer__9126ab7b.Dropdown_module_filledFocus__9126ab7b {\n border: none !important;\n box-shadow: none !important;\n outline: none !important;\n background: transparent !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_inputInner__9126ab7b {\n display: contents !important;\n padding: 0 !important;\n gap: 0 !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_contentArea__9126ab7b {\n display: contents !important;\n gap: 0 !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_trailingArea__9126ab7b {\n display: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_mainInput__9126ab7b {\n flex: 1 !important;\n border: none !important;\n outline: none !important;\n background: transparent !important;\n font-family: Jakarta !important;\n font-weight: 400 !important;\n font-size: 16px !important;\n line-height: 24px !important;\n color: #181d27 !important;\n min-width: 120px !important;\n padding: 0 !important;\n margin: 0 !important;\n box-shadow: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_mainInput__9126ab7b::placeholder {\n color: #a4a7ae !important;\n font-weight: 400 !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_mainInput__9126ab7b:focus {\n outline: none !important;\n border: none !important;\n box-shadow: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_mainInput__9126ab7b:focus-visible {\n outline: none !important;\n border: none !important;\n box-shadow: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_mainInput__9126ab7b:hover {\n border: none !important;\n box-shadow: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_mainInput__9126ab7b:active {\n border: none !important;\n box-shadow: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b input {\n border: none !important;\n outline: none !important;\n box-shadow: none !important;\n background: transparent !important;\n}\n.Dropdown_module_searchInput__9126ab7b input:focus, .Dropdown_module_searchInput__9126ab7b input:focus-visible, .Dropdown_module_searchInput__9126ab7b input:hover, .Dropdown_module_searchInput__9126ab7b input:active {\n border: none !important;\n outline: none !important;\n box-shadow: none !important;\n background: transparent !important;\n}\n.Dropdown_module_searchInput__9126ab7b > div {\n display: flex;\n align-items: center;\n width: 100%;\n height: 20px;\n max-height: 20px;\n overflow: hidden;\n}\n.Dropdown_module_searchInput__9126ab7b.Dropdown_module_sm__9126ab7b > div {\n height: 20px;\n max-height: 20px;\n}\n.Dropdown_module_searchInput__9126ab7b.Dropdown_module_md__9126ab7b > div {\n height: 24px;\n max-height: 24px;\n}\n.Dropdown_module_searchInput__9126ab7b * {\n border: none !important;\n border-radius: 0 !important;\n outline: none !important;\n box-shadow: none !important;\n padding-inline: 0 !important;\n}\n.Dropdown_module_searchInput__9126ab7b *:focus, .Dropdown_module_searchInput__9126ab7b *:focus-visible, .Dropdown_module_searchInput__9126ab7b *:focus-within {\n border: none !important;\n outline: none !important;\n box-shadow: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b .Dropdown_module_helperText__9126ab7b {\n display: none !important;\n}\n.Dropdown_module_searchInput__9126ab7b.Dropdown_module_searchInputFilled__9126ab7b .Dropdown_module_mainInput__9126ab7b {\n font-weight: 400 !important;\n color: #181d27 !important;\n}\n\n.Dropdown_module_shortcutDisplay__9126ab7b {\n display: flex;\n align-items: center;\n justify-content: center;\n background: white;\n border: 1px solid #e9eaeb;\n border-radius: 4px;\n padding: 1px 4px;\n user-select: none;\n flex-shrink: 0;\n}\n\n.Dropdown_module_shortcutText__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 12px;\n line-height: 16px;\n color: #a4a7ae;\n white-space: nowrap;\n}\n\n.Dropdown_module_searchTagsContainer__9126ab7b {\n display: flex;\n align-items: center;\n gap: 8px;\n flex: 1;\n overflow-x: auto;\n overflow-y: hidden;\n scrollbar-width: none;\n -ms-overflow-style: none;\n /* Hide scrollbar */\n}\n.Dropdown_module_searchTagsContainer__9126ab7b::-webkit-scrollbar {\n display: none;\n}\n.Dropdown_module_searchTagsContainer__9126ab7b {\n /* All children (tags and search input) don't shrink */\n}\n.Dropdown_module_searchTagsContainer__9126ab7b > * {\n flex-shrink: 0;\n}\n\n.Dropdown_module_searchTag__9126ab7b {\n display: flex;\n align-items: center;\n gap: 3px;\n background: white;\n border: 1px solid #d5d7da;\n border-radius: 6px;\n padding: 4px 8px 4px 8px;\n height: 24px;\n font-size: 12px;\n line-height: 16px;\n flex-shrink: 0;\n white-space: nowrap;\n}\n\n.Dropdown_module_tagKey__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 12px;\n line-height: 16px;\n color: #717680;\n white-space: nowrap;\n}\n\n.Dropdown_module_tagValue__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 12px;\n line-height: 16px;\n color: #414651;\n white-space: nowrap;\n}\n\n.Dropdown_module_tagValueInput__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 12px;\n line-height: 16px;\n color: #414651;\n background: transparent;\n border: none;\n outline: none;\n padding: 0;\n margin: 0;\n width: auto;\n min-width: 20px;\n max-width: 100px;\n}\n.Dropdown_module_tagValueInput__9126ab7b::placeholder {\n color: #a4a7ae;\n font-weight: 400;\n}\n\n.Dropdown_module_tagClose__9126ab7b {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 14px;\n height: 14px;\n background: none;\n border: none;\n cursor: pointer;\n color: #717680;\n font-size: 10px;\n line-height: 1;\n padding: 0;\n}\n.Dropdown_module_tagClose__9126ab7b:hover {\n color: #414651;\n background-color: rgba(0, 0, 0, 0.05);\n border-radius: 2px;\n}\n\n.Dropdown_module_tagKey__9126ab7b {\n font-family: Jakarta;\n font-weight: 400;\n color: #717680;\n white-space: nowrap;\n}\n\n.Dropdown_module_tagValue__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n color: #414651;\n cursor: pointer;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n min-width: 20px;\n}\n.Dropdown_module_tagValue__9126ab7b:hover {\n background: rgba(46, 144, 250, 0.1);\n border-radius: 3px;\n padding: 1px 2px;\n margin: -1px -2px;\n}\n\n.Dropdown_module_tagInput__9126ab7b {\n border: none;\n outline: none;\n background: transparent;\n font-family: Jakarta;\n font-weight: 500;\n font-size: 12px;\n line-height: 16px;\n color: #414651;\n min-width: 20px;\n width: auto;\n padding: 0;\n margin: 0;\n}\n.Dropdown_module_tagInput__9126ab7b::placeholder {\n color: #a4a7ae;\n font-weight: 400;\n}\n.Dropdown_module_tagInput__9126ab7b:focus {\n outline: none;\n}\n\n.Dropdown_module_filterKeyTag__9126ab7b {\n background: white;\n border: 1px solid #d5d7da;\n border-radius: 6px;\n padding: 4px 8px;\n display: flex;\n align-items: center;\n justify-content: center;\n height: 24px;\n flex-shrink: 0;\n}\n\n.Dropdown_module_filterKeyLabel__9126ab7b {\n font-family: Jakarta;\n font-weight: 500;\n font-size: 12px;\n line-height: 16px;\n color: #414651;\n white-space: nowrap;\n}";
7739
+ var modules_5709697d = {"dropdown":"Dropdown_module_dropdown__9126ab7b","labelContainer":"Dropdown_module_labelContainer__9126ab7b","label":"Dropdown_module_label__9126ab7b","required":"Dropdown_module_required__9126ab7b","helpIcon":"Dropdown_module_helpIcon__9126ab7b","buttonWrapper":"Dropdown_module_buttonWrapper__9126ab7b","dropdownContainer":"Dropdown_module_dropdownContainer__9126ab7b","focus":"Dropdown_module_focus__9126ab7b","sm":"Dropdown_module_sm__9126ab7b","md":"Dropdown_module_md__9126ab7b","contentArea":"Dropdown_module_contentArea__9126ab7b","leadingIcon":"Dropdown_module_leadingIcon__9126ab7b","trailingArea":"Dropdown_module_trailingArea__9126ab7b","dropdownText":"Dropdown_module_dropdownText__9126ab7b","placeholder":"Dropdown_module_placeholder__9126ab7b","statusIcon":"Dropdown_module_statusIcon__9126ab7b","dropdownIcon":"Dropdown_module_dropdownIcon__9126ab7b","helperText":"Dropdown_module_helperText__9126ab7b","helperDefault":"Dropdown_module_helperDefault__9126ab7b","helperError":"Dropdown_module_helperError__9126ab7b","helperWarning":"Dropdown_module_helperWarning__9126ab7b","default":"Dropdown_module_default__9126ab7b","selected":"Dropdown_module_selected__9126ab7b","disabled":"Dropdown_module_disabled__9126ab7b","error":"Dropdown_module_error__9126ab7b","warning":"Dropdown_module_warning__9126ab7b","readOnly":"Dropdown_module_readOnly__9126ab7b","read-only":"Dropdown_module_readOnly__9126ab7b","borderless":"Dropdown_module_borderless__9126ab7b","filled":"Dropdown_module_filled__9126ab7b","activeTyping":"Dropdown_module_activeTyping__9126ab7b","active-typing":"Dropdown_module_activeTyping__9126ab7b","filledFocus":"Dropdown_module_filledFocus__9126ab7b","filled-focus":"Dropdown_module_filledFocus__9126ab7b","errorFocus":"Dropdown_module_errorFocus__9126ab7b","error-focus":"Dropdown_module_errorFocus__9126ab7b","errorFilled":"Dropdown_module_errorFilled__9126ab7b","error-filled":"Dropdown_module_errorFilled__9126ab7b","dropdownMenuPopover":"Dropdown_module_dropdownMenuPopover__9126ab7b","dropdownMenu":"Dropdown_module_dropdownMenu__9126ab7b","dropdownMenuItem":"Dropdown_module_dropdownMenuItem__9126ab7b","dropdownMenuItemInner":"Dropdown_module_dropdownMenuItemInner__9126ab7b","dropdownMenuItemSelected":"Dropdown_module_dropdownMenuItemSelected__9126ab7b","dropdownMenuItemContent":"Dropdown_module_dropdownMenuItemContent__9126ab7b","dropdownMenuItemIcon":"Dropdown_module_dropdownMenuItemIcon__9126ab7b","dropdownMenuItemText":"Dropdown_module_dropdownMenuItemText__9126ab7b","dropdownMenuItemCheckbox":"Dropdown_module_dropdownMenuItemCheckbox__9126ab7b","dropdownMenuItemCheck":"Dropdown_module_dropdownMenuItemCheck__9126ab7b","filtersDropdown":"Dropdown_module_filtersDropdown__9126ab7b","filtersHeader":"Dropdown_module_filtersHeader__9126ab7b","filtersTitle":"Dropdown_module_filtersTitle__9126ab7b","filtersOptions":"Dropdown_module_filtersOptions__9126ab7b","filterOption":"Dropdown_module_filterOption__9126ab7b","filterLabel":"Dropdown_module_filterLabel__9126ab7b","countBadge":"Dropdown_module_countBadge__9126ab7b","countBadgeDisabled":"Dropdown_module_countBadgeDisabled__9126ab7b","selectedText":"Dropdown_module_selectedText__9126ab7b","shortcutHint":"Dropdown_module_shortcutHint__9126ab7b","searchContainer":"Dropdown_module_searchContainer__9126ab7b","searchInput":"Dropdown_module_searchInput__9126ab7b","searchIcon":"Dropdown_module_searchIcon__9126ab7b","textField":"Dropdown_module_textField__9126ab7b","inputContainer":"Dropdown_module_inputContainer__9126ab7b","inputInner":"Dropdown_module_inputInner__9126ab7b","mainInput":"Dropdown_module_mainInput__9126ab7b","searchInputFilled":"Dropdown_module_searchInputFilled__9126ab7b","shortcutDisplay":"Dropdown_module_shortcutDisplay__9126ab7b","shortcutText":"Dropdown_module_shortcutText__9126ab7b","searchTagsContainer":"Dropdown_module_searchTagsContainer__9126ab7b","searchTag":"Dropdown_module_searchTag__9126ab7b","tagKey":"Dropdown_module_tagKey__9126ab7b","tagValue":"Dropdown_module_tagValue__9126ab7b","tagValueInput":"Dropdown_module_tagValueInput__9126ab7b","tagClose":"Dropdown_module_tagClose__9126ab7b","tagInput":"Dropdown_module_tagInput__9126ab7b","filterKeyTag":"Dropdown_module_filterKeyTag__9126ab7b","filterKeyLabel":"Dropdown_module_filterKeyLabel__9126ab7b"};
7740
+ n(css$x,{});
7741
+
7742
+ var _excluded$1 = ["label", "placeholder", "helperText", "value", "defaultValue", "selectedValues", "defaultSelectedValues", "options", "dataLabel", "customAllLabel", "state", "size", "variant", "required", "disabled", "readOnly", "helpIcon", "helpText", "errorIcon", "warningIcon", "icon", "searchIcon", "shortcut", "onShortcut", "enableAdvancedSearch", "searchTags", "defaultSearchTags", "availableKeys", "onAdvancedSearchChange", "tagOptionsEnabled", "tagOptions", "onChange", "onMultiSelectChange", "onSearchChange", "onFocus", "onBlur", "popoverOffset", "popoverClassName", "className", "id", "name"];
7743
+ var Dropdown$1 = /*#__PURE__*/forwardRef(function (_ref, ref) {
7744
+ var label = _ref.label,
7745
+ _ref$placeholder = _ref.placeholder,
7746
+ placeholder = _ref$placeholder === void 0 ? 'Select the option' : _ref$placeholder,
7747
+ _ref$helperText = _ref.helperText,
7748
+ helperText = _ref$helperText === void 0 ? 'This is a hint text to help user.' : _ref$helperText,
7749
+ value = _ref.value,
7750
+ defaultValue = _ref.defaultValue,
7751
+ selectedValues = _ref.selectedValues,
7752
+ defaultSelectedValues = _ref.defaultSelectedValues,
7753
+ _ref$options = _ref.options,
7754
+ options = _ref$options === void 0 ? [] : _ref$options,
7755
+ _ref$dataLabel = _ref.dataLabel,
7756
+ dataLabel = _ref$dataLabel === void 0 ? 'option' : _ref$dataLabel,
7757
+ _ref$customAllLabel = _ref.customAllLabel,
7758
+ customAllLabel = _ref$customAllLabel === void 0 ? 'All' : _ref$customAllLabel,
7759
+ _ref$state = _ref.state,
7760
+ state = _ref$state === void 0 ? 'default' : _ref$state,
7761
+ _ref$size = _ref.size,
7762
+ size = _ref$size === void 0 ? 'sm' : _ref$size,
7763
+ _ref$variant = _ref.variant,
7764
+ variant = _ref$variant === void 0 ? 'simple' : _ref$variant,
7765
+ _ref$required = _ref.required,
7766
+ required = _ref$required === void 0 ? true : _ref$required,
7767
+ _ref$disabled = _ref.disabled,
7768
+ disabled = _ref$disabled === void 0 ? false : _ref$disabled,
7769
+ _ref$readOnly = _ref.readOnly,
7770
+ readOnly = _ref$readOnly === void 0 ? false : _ref$readOnly,
7771
+ _ref$helpIcon = _ref.helpIcon,
7772
+ helpIcon = _ref$helpIcon === void 0 ? true : _ref$helpIcon,
7773
+ helpText = _ref.helpText,
7774
+ _ref$errorIcon = _ref.errorIcon,
7775
+ errorIcon = _ref$errorIcon === void 0 ? true : _ref$errorIcon,
7776
+ _ref$warningIcon = _ref.warningIcon,
7777
+ warningIcon = _ref$warningIcon === void 0 ? true : _ref$warningIcon,
7778
+ icon = _ref.icon,
7779
+ searchIcon = _ref.searchIcon,
7780
+ shortcut = _ref.shortcut,
7781
+ onShortcut = _ref.onShortcut,
7782
+ _ref$enableAdvancedSe = _ref.enableAdvancedSearch,
7783
+ enableAdvancedSearch = _ref$enableAdvancedSe === void 0 ? false : _ref$enableAdvancedSe,
7784
+ searchTags = _ref.searchTags,
7785
+ defaultSearchTags = _ref.defaultSearchTags,
7786
+ _ref$availableKeys = _ref.availableKeys,
7787
+ availableKeys = _ref$availableKeys === void 0 ? [] : _ref$availableKeys,
7788
+ onAdvancedSearchChange = _ref.onAdvancedSearchChange,
7789
+ _ref$tagOptionsEnable = _ref.tagOptionsEnabled,
7790
+ tagOptionsEnabled = _ref$tagOptionsEnable === void 0 ? false : _ref$tagOptionsEnable,
7791
+ _ref$tagOptions = _ref.tagOptions,
7792
+ tagOptions = _ref$tagOptions === void 0 ? [] : _ref$tagOptions,
7793
+ onChange = _ref.onChange,
7794
+ onMultiSelectChange = _ref.onMultiSelectChange,
7795
+ onSearchChange = _ref.onSearchChange,
7796
+ onFocus = _ref.onFocus,
7797
+ onBlur = _ref.onBlur,
7798
+ popoverOffset = _ref.popoverOffset,
7799
+ popoverClassName = _ref.popoverClassName,
7800
+ className = _ref.className,
7801
+ id = _ref.id,
7802
+ name = _ref.name,
7803
+ props = _objectWithoutProperties(_ref, _excluded$1);
7804
+ // Internal state for uncontrolled component
7805
+ // setInternalValue will be used when dropdown menu selection is implemented
7806
+ var _useState = useState(defaultValue || ''),
7807
+ _useState2 = _slicedToArray(_useState, 2),
7808
+ internalValue = _useState2[0],
7809
+ setInternalValue = _useState2[1];
7810
+ var _useState3 = useState(defaultSelectedValues || []),
7811
+ _useState4 = _slicedToArray(_useState3, 2),
7812
+ internalSelectedValues = _useState4[0],
7813
+ setInternalSelectedValues = _useState4[1];
7814
+ var _useState5 = useState(false),
7815
+ _useState6 = _slicedToArray(_useState5, 2),
7816
+ isFocused = _useState6[0],
7817
+ setIsFocused = _useState6[1];
7818
+ var _useState7 = useState(false),
7819
+ _useState8 = _slicedToArray(_useState7, 2),
7820
+ isOpen = _useState8[0],
7821
+ setIsOpen = _useState8[1];
7822
+ var _useState9 = useState(''),
7823
+ _useState0 = _slicedToArray(_useState9, 2),
7824
+ searchValue = _useState0[0],
7825
+ setSearchValue = _useState0[1]; // For search variant
7826
+ // Advanced search state - simplified
7827
+ var _useState1 = useState(defaultSearchTags || []),
7828
+ _useState10 = _slicedToArray(_useState1, 2),
7829
+ internalSearchTags = _useState10[0],
7830
+ setInternalSearchTags = _useState10[1];
7831
+ var dropdownButtonRef = useRef(null);
7832
+ var searchInputRef = useRef(null); // For search variant
7833
+ var dropdownContainerRef = useRef(null); // For popover anchoring
7834
+ var searchContainerRef = useRef(null); // For search variant anchoring
7835
+ var searchTagsContainerRef = useRef(null); // For tags scrolling behavior
7836
+ // Tag options state
7837
+ var _useState11 = useState(null),
7838
+ _useState12 = _slicedToArray(_useState11, 2),
7839
+ focusedTagId = _useState12[0],
7840
+ setFocusedTagId = _useState12[1]; // Track which tag should show options
7841
+ var _useState13 = useState(false),
7842
+ _useState14 = _slicedToArray(_useState13, 2),
7843
+ tagOptionsOpen = _useState14[0],
7844
+ setTagOptionsOpen = _useState14[1]; // Track tag options dropdown visibility
7845
+ var focusedTagRef = useRef(null); // Reference to focused tag input
7846
+ // Expose focus method via ref
7847
+ useImperativeHandle(ref, function () {
7848
+ return {
7849
+ focus: function focus() {
7850
+ if (variant === 'search' && searchInputRef.current && !disabled && !readOnly) {
7851
+ searchInputRef.current.focus();
7852
+ setIsOpen(true);
7853
+ setIsFocused(true);
7854
+ } else if (dropdownButtonRef.current && !disabled && !readOnly) {
7855
+ dropdownButtonRef.current.focus();
7856
+ setIsOpen(true); // Open the dropdown to show options
7857
+ setIsFocused(true);
7858
+ }
7859
+ }
7860
+ };
7861
+ });
7862
+ // Keyboard shortcut support for search variant
7863
+ useEffect(function () {
7864
+ if (variant !== 'search' || !shortcut) return;
7865
+ var handleKeyDown = function handleKeyDown(e) {
7866
+ // Parse shortcut (e.g., '⌘T' -> Cmd+T)
7867
+ var isCtrlOrCmd = e.metaKey || e.ctrlKey;
7868
+ var shortcutKey = shortcut.replace('⌘', '').toLowerCase();
7869
+ if (isCtrlOrCmd && e.key.toLowerCase() === shortcutKey) {
7870
+ e.preventDefault();
7871
+ onShortcut === null || onShortcut === void 0 || onShortcut();
7872
+ // Focus the search input
7873
+ if (searchInputRef.current && !disabled && !readOnly) {
7874
+ searchInputRef.current.focus();
7875
+ setIsOpen(true);
7876
+ setIsFocused(true);
7877
+ }
7878
+ }
7879
+ };
7880
+ window.addEventListener('keydown', handleKeyDown);
7881
+ return function () {
7882
+ return window.removeEventListener('keydown', handleKeyDown);
7883
+ };
7884
+ }, [variant, shortcut, onShortcut, disabled, readOnly]);
7885
+ // Advanced search helper functions - simplified
7886
+ var currentSearchTags = searchTags !== undefined ? searchTags : internalSearchTags;
7887
+ var generateTagId = function generateTagId() {
7888
+ return "tag-".concat(Date.now(), "-").concat(Math.random().toString(36).substr(2, 9));
7889
+ };
7890
+ var emitAdvancedSearchChange = function emitAdvancedSearchChange(tags, searchText) {
7891
+ if (!onAdvancedSearchChange) return;
7892
+ var result = {
7893
+ tags: tags.map(function (_ref2) {
7894
+ var key = _ref2.key,
7895
+ value = _ref2.value;
7896
+ return {
7897
+ key: key,
7898
+ value: value
7899
+ };
7900
+ }),
7901
+ defaultSearch: searchText
7902
+ };
7903
+ onAdvancedSearchChange(result);
7904
+ };
7905
+ // Handle key selection from dropdown
7906
+ var handleKeySelect = function handleKeySelect(keyLabel) {
7907
+ var newTag = {
7908
+ id: generateTagId(),
7909
+ key: keyLabel,
7910
+ value: '',
7911
+ isEditingValue: true
7912
+ };
7913
+ var updatedTags = [].concat(_toConsumableArray(currentSearchTags), [newTag]);
7914
+ if (searchTags === undefined) {
7915
+ setInternalSearchTags(updatedTags);
7916
+ }
7917
+ // Clear main search and close dropdown
7918
+ setSearchValue('');
7919
+ setIsOpen(false);
7920
+ emitAdvancedSearchChange(updatedTags, '');
7921
+ // Focus will be managed by the Tag component's ref callback
7922
+ };
7923
+ // Handle tag value updates
7924
+ var handleTagValueUpdate = function handleTagValueUpdate(tagId, newValue) {
7925
+ var finalize = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
7926
+ var updatedTags = currentSearchTags.map(function (tag) {
7927
+ return tag.id === tagId ? _objectSpread2(_objectSpread2({}, tag), {}, {
7928
+ value: newValue,
7929
+ isEditingValue: !finalize
7930
+ }) : tag;
7931
+ });
7932
+ // Update internal state immediately for controlled components
7933
+ if (searchTags === undefined) {
7934
+ setInternalSearchTags(updatedTags);
7935
+ }
7936
+ // Always emit the change for external consumers
7937
+ emitAdvancedSearchChange(updatedTags, searchValue);
7938
+ // Close tag options popover when finalizing
7939
+ if (finalize && tagOptionsEnabled && focusedTagId === tagId) {
7940
+ handleTagOptionsPopoverClose();
7941
+ }
7942
+ // Focus main input after finalizing tag edit
7943
+ if (finalize && searchInputRef.current) {
7944
+ setTimeout(function () {
7945
+ var _searchInputRef$curre;
7946
+ (_searchInputRef$curre = searchInputRef.current) === null || _searchInputRef$curre === void 0 || _searchInputRef$curre.focus();
7947
+ setIsOpen(true); // Reopen dropdown for continued searching
7948
+ }, 100);
7949
+ }
7950
+ };
7951
+ // Handle tag removal
7952
+ var handleTagRemove = function handleTagRemove(tagId) {
7953
+ var updatedTags = currentSearchTags.filter(function (tag) {
7954
+ return tag.id !== tagId;
7955
+ });
7956
+ if (searchTags === undefined) {
7957
+ setInternalSearchTags(updatedTags);
7958
+ }
7959
+ emitAdvancedSearchChange(updatedTags, searchValue);
7960
+ // Focus main input after removal
7961
+ if (searchInputRef.current) {
7962
+ setTimeout(function () {
7963
+ var _searchInputRef$curre2;
7964
+ return (_searchInputRef$curre2 = searchInputRef.current) === null || _searchInputRef$curre2 === void 0 ? void 0 : _searchInputRef$curre2.focus();
7965
+ }, 50);
7966
+ }
7967
+ };
7968
+ // Handle tag options focus
7969
+ var handleTagOptionsFocus = function handleTagOptionsFocus(tagId, inputElement) {
7970
+ if (tagOptionsEnabled && tagOptions.length > 0) {
7971
+ setFocusedTagId(tagId);
7972
+ focusedTagRef.current = inputElement;
7973
+ setTagOptionsOpen(true);
7974
+ }
7975
+ };
7976
+ // Handle tag option selection
7977
+ var handleTagOptionSelect = function handleTagOptionSelect(optionValue) {
7978
+ if (focusedTagId) {
7979
+ // Update the focused tag's value and close the popover
7980
+ handleTagValueUpdate(focusedTagId, optionValue, true); // Auto-finalize
7981
+ // Delay closing the popover slightly to ensure value update completes
7982
+ setTimeout(function () {
7983
+ handleTagOptionsPopoverClose();
7984
+ }, 50);
7985
+ }
7986
+ };
7987
+ // Handle tag options popover close
7988
+ var handleTagOptionsPopoverClose = function handleTagOptionsPopoverClose() {
7989
+ setTagOptionsOpen(false);
7990
+ setFocusedTagId(null);
7991
+ focusedTagRef.current = null;
7992
+ };
7993
+ // Get filtered keys based on search input
7994
+ var getFilteredKeys = function getFilteredKeys() {
7995
+ if (!enableAdvancedSearch || !availableKeys) return [];
7996
+ // If no search value, show all available keys for advanced search
7997
+ if (!searchValue) return availableKeys;
7998
+ // Filter keys based on search input
7999
+ return availableKeys.filter(function (key) {
8000
+ return key.label.toLowerCase().includes(searchValue.toLowerCase());
8001
+ });
8002
+ };
8003
+ var filteredKeys = getFilteredKeys();
8004
+ // Check if multi-select mode
8005
+ var isMultiSelect = variant === 'multi-select';
8006
+ // Create enhanced options with "All" option for multi-select
8007
+ var enhancedOptions = isMultiSelect ? [{
8008
+ value: '__all__',
8009
+ label: customAllLabel
8010
+ }].concat(_toConsumableArray(options)) : options;
8011
+ // Get actual options (excluding "All" option) for value filtering
8012
+ var actualOptions = options;
8013
+ // Determine current display value and selection
8014
+ var displayValue = value !== undefined ? value : internalValue;
8015
+ var currentSelectedValues = selectedValues !== undefined ? selectedValues : internalSelectedValues;
8016
+ // For single select
8017
+ var selectedOption = actualOptions.find(function (opt) {
8018
+ return opt.value === displayValue;
8019
+ });
8020
+ var isSelected = isMultiSelect ? currentSelectedValues.length > 0 : !!selectedOption;
8021
+ // Check if "All" is selected (all actual options are selected)
8022
+ var isAllSelected = isMultiSelect && actualOptions.length > 0 && actualOptions.every(function (option) {
8023
+ return currentSelectedValues.includes(option.value);
8024
+ });
8025
+ // Generate display text based on mode and dataLabel
8026
+ var getDisplayText = function getDisplayText() {
8027
+ if (isMultiSelect) {
8028
+ if (currentSelectedValues.length === 0) {
8029
+ return placeholder;
8030
+ }
8031
+ if (!dataLabel) {
8032
+ return "".concat(currentSelectedValues.length, " selected");
8033
+ }
8034
+ // Handle dataLabel (string or object with singular/plural)
8035
+ if (typeof dataLabel === 'string') {
8036
+ return "Selected ".concat(dataLabel);
8037
+ }
8038
+ // Handle object with singular/plural
8039
+ var labelText = currentSelectedValues.length === 1 ? dataLabel.singular : dataLabel.plural;
8040
+ return "Selected ".concat(labelText);
8041
+ }
8042
+ return (selectedOption === null || selectedOption === void 0 ? void 0 : selectedOption.label) || placeholder;
8043
+ };
8044
+ var displayText = getDisplayText();
8045
+ // Determine actual state based on props and internal state
8046
+ var getActualState = function getActualState() {
8047
+ if (disabled) return 'disabled';
8048
+ if (readOnly) return 'read-only';
8049
+ if (state !== 'default') return state;
8050
+ // Auto-determine state based on focus and interaction
8051
+ if (isFocused || isOpen) return 'focus';
8052
+ if (isSelected) return 'selected';
8053
+ return 'default';
8054
+ };
8055
+ var actualState = getActualState();
8056
+ // Determine helper text color
8057
+ var getHelperTextClass = function getHelperTextClass() {
8058
+ switch (actualState) {
8059
+ case 'error':
8060
+ return modules_5709697d.helperError;
8061
+ case 'warning':
8062
+ return modules_5709697d.helperWarning;
8063
+ default:
8064
+ return modules_5709697d.helperDefault;
8065
+ }
8066
+ };
8067
+ // Show status icon (error/warning)
8068
+ var showStatusIcon = function showStatusIcon() {
8069
+ return actualState === 'error' && errorIcon || actualState === 'warning' && warningIcon;
8070
+ };
8071
+ // Get appropriate status icon
8072
+ var getStatusIcon = function getStatusIcon() {
8073
+ switch (actualState) {
8074
+ case 'error':
8075
+ return jsx(Error$1, {
8076
+ hexagon: true
8077
+ });
8078
+ case 'warning':
8079
+ return jsx(Warning, {
8080
+ hexagon: true
8081
+ });
8082
+ default:
8083
+ return null;
8084
+ }
8085
+ };
8086
+ // Handle dropdown toggle
8087
+ var handleToggle = function handleToggle() {
8088
+ if (disabled || readOnly) return;
8089
+ var newIsOpen = !isOpen;
8090
+ setIsOpen(newIsOpen);
8091
+ // Set focus when opening, clear when closing
8092
+ if (newIsOpen) {
8093
+ setIsFocused(true);
8094
+ }
8095
+ };
8096
+ // Handle button focus
8097
+ var handleButtonFocus = function handleButtonFocus(e) {
8098
+ setIsFocused(true);
8099
+ onFocus === null || onFocus === void 0 || onFocus(e);
8100
+ };
8101
+ // Handle button blur
8102
+ var handleButtonBlur = function handleButtonBlur(e) {
8103
+ // Only blur if not clicking inside the popover
8104
+ var relatedTarget = e.relatedTarget;
8105
+ if (relatedTarget && relatedTarget.closest('[data-dropdown-menu]')) {
8106
+ return; // Don't blur if clicking inside dropdown menu
8107
+ }
8108
+ // Delay blur slightly to allow click events on menu items
8109
+ setTimeout(function () {
8110
+ if (!isOpen) {
8111
+ setIsFocused(false);
8112
+ onBlur === null || onBlur === void 0 || onBlur(e);
8113
+ }
8114
+ }, 100);
8115
+ };
8116
+ // Handle popover close
8117
+ var handlePopoverClose = function handlePopoverClose() {
8118
+ setIsOpen(false);
8119
+ setIsFocused(false);
8120
+ };
8121
+ // Handle multi-select option toggle
8122
+ var handleMultiSelectToggle = function handleMultiSelectToggle(optionValue) {
8123
+ if (disabled || readOnly) return;
8124
+ var newValues;
8125
+ if (optionValue === '__all__') {
8126
+ // Handle "All" option
8127
+ if (isAllSelected) {
8128
+ // Unselect all
8129
+ newValues = [];
8130
+ } else {
8131
+ // Select all actual options (excluding "All")
8132
+ newValues = actualOptions.map(function (option) {
8133
+ return option.value;
8134
+ });
8135
+ }
8136
+ } else {
8137
+ // Handle individual option
8138
+ if (currentSelectedValues.includes(optionValue)) {
8139
+ // Remove from selection
8140
+ newValues = currentSelectedValues.filter(function (val) {
8141
+ return val !== optionValue;
8142
+ });
8143
+ } else {
8144
+ // Add to selection
8145
+ newValues = [].concat(_toConsumableArray(currentSelectedValues), [optionValue]);
8146
+ }
8147
+ }
8148
+ // Update state
8149
+ if (selectedValues === undefined) {
8150
+ setInternalSelectedValues(newValues);
8151
+ }
8152
+ // Always exclude "All" option from onChange callback - only pass actual option values
8153
+ onMultiSelectChange === null || onMultiSelectChange === void 0 || onMultiSelectChange(newValues);
8154
+ };
8155
+ // Handle clear all selections
8156
+ var handleClearAll = function handleClearAll(e) {
8157
+ e.stopPropagation();
8158
+ if (disabled || readOnly) return;
8159
+ if (selectedValues === undefined) {
8160
+ setInternalSelectedValues([]);
8161
+ }
8162
+ onMultiSelectChange === null || onMultiSelectChange === void 0 || onMultiSelectChange([]);
8163
+ };
8164
+ // Handle search input change
8165
+ var handleSearchChange = function handleSearchChange(e) {
8166
+ var newValue = e.target.value;
8167
+ setSearchValue(newValue);
8168
+ onSearchChange === null || onSearchChange === void 0 || onSearchChange(newValue);
8169
+ // Emit advanced search change for real-time updates
8170
+ if (enableAdvancedSearch) {
8171
+ emitAdvancedSearchChange(currentSearchTags, newValue);
8172
+ }
8173
+ // Open/close dropdown based on whether we have matching keys or regular options
8174
+ if (enableAdvancedSearch) {
8175
+ var hasMatchingKeys = availableKeys.some(function (key) {
8176
+ return key.label.toLowerCase().includes(newValue.toLowerCase());
8177
+ });
8178
+ setIsOpen(hasMatchingKeys || newValue.length > 0);
8179
+ } else {
8180
+ var hasMatchingOptions = actualOptions.length > 0;
8181
+ setIsOpen(hasMatchingOptions && newValue.length > 0);
8182
+ }
8183
+ };
8184
+ // Handle search input focus
8185
+ var handleSearchFocus = function handleSearchFocus(e) {
8186
+ setIsFocused(true);
8187
+ setIsOpen(true);
8188
+ onFocus === null || onFocus === void 0 || onFocus(e);
8189
+ };
8190
+ // Handle search input blur
8191
+ var handleSearchBlur = function handleSearchBlur(e) {
8192
+ // Only blur if not clicking inside the popover
8193
+ var relatedTarget = e.relatedTarget;
8194
+ if (relatedTarget && relatedTarget.closest('[data-dropdown-menu]')) {
8195
+ return; // Don't blur if clicking inside dropdown menu
8196
+ }
8197
+ // Delay blur slightly to allow click events on menu items
8198
+ setTimeout(function () {
8199
+ if (!isOpen) {
8200
+ setIsFocused(false);
8201
+ // Reset scroll position to show the beginning of tags/search
8202
+ if (searchTagsContainerRef.current) {
8203
+ searchTagsContainerRef.current.scrollLeft = 0;
8204
+ }
8205
+ onBlur === null || onBlur === void 0 || onBlur(e);
8206
+ }
8207
+ }, 100);
8208
+ };
8209
+ // Determine the icon to use
8210
+ var resolvedIcon = icon;
8211
+ // Shortcut Component
8212
+ var ShortcutDisplay = function ShortcutDisplay() {
8213
+ if (!shortcut) return null;
8214
+ return jsx("div", {
8215
+ className: modules_5709697d.shortcutDisplay,
8216
+ children: jsx("span", {
8217
+ className: modules_5709697d.shortcutText,
8218
+ children: shortcut
8219
+ })
8220
+ });
8221
+ };
8222
+ return jsxs("div", _objectSpread2(_objectSpread2({
8223
+ ref: dropdownContainerRef,
8224
+ className: classes(modules_5709697d.dropdown, className)
8225
+ }, props), {}, {
8226
+ children: [label && jsxs("div", {
8227
+ className: modules_5709697d.labelContainer,
8228
+ children: [jsx("span", {
8229
+ className: modules_5709697d.label,
8230
+ children: label
8231
+ }), required && jsx("span", {
8232
+ className: modules_5709697d.required,
8233
+ children: "*"
8234
+ }), helpIcon && jsx(Tooltip$1, {
8235
+ content: helpText || 'Additional information about this field',
8236
+ position: 'top',
8237
+ children: jsx("div", {
8238
+ className: modules_5709697d.helpIcon,
8239
+ children: jsx(Help, {})
8240
+ })
8241
+ })]
8242
+ }), variant === 'search' ? (/* Search Variant Container */
8243
+ jsxs("div", {
8244
+ ref: searchContainerRef,
8245
+ className: classes(modules_5709697d.searchContainer, modules_5709697d[actualState], modules_5709697d[size], disabled && modules_5709697d.disabled),
8246
+ children: [jsx("div", {
8247
+ className: modules_5709697d.searchIcon,
8248
+ children: searchIcon ? /*#__PURE__*/React__default.createElement(searchIcon) : jsx(Search, {})
8249
+ }), jsxs("div", {
8250
+ ref: searchTagsContainerRef,
8251
+ className: modules_5709697d.searchTagsContainer,
8252
+ children: [enableAdvancedSearch && currentSearchTags.map(function (tag) {
8253
+ var _tag$value;
8254
+ return jsx(Tag, {
8255
+ label: "".concat(tag.key, ":"),
8256
+ size: 'sm',
8257
+ closable: true,
8258
+ textField: true,
8259
+ inputValue: tag.isEditingValue ? (_tag$value = tag.value) !== null && _tag$value !== void 0 ? _tag$value : '' // When editing, show actual value
8260
+ : tag.value || '' // When readonly, show value or "Search" placeholder
8261
+ ,
8262
+ inputPlaceholder: '',
8263
+ readOnly: !tag.isEditingValue,
8264
+ onClick: !tag.isEditingValue ? function () {
8265
+ // Start editing when clicking readonly tag
8266
+ var updatedTags = currentSearchTags.map(function (t) {
8267
+ return t.id === tag.id ? _objectSpread2(_objectSpread2({}, t), {}, {
8268
+ isEditingValue: true
8269
+ }) : t;
8270
+ });
8271
+ if (searchTags === undefined) {
8272
+ setInternalSearchTags(updatedTags);
8273
+ }
8274
+ emitAdvancedSearchChange(updatedTags, searchValue);
8275
+ } : undefined,
8276
+ onInputChange: function onInputChange(value) {
8277
+ // Only handle changes when editing
8278
+ if (tag.isEditingValue) {
8279
+ handleTagValueUpdate(tag.id, value);
8280
+ }
8281
+ },
8282
+ onInputBlur: function onInputBlur() {
8283
+ var _tag$value2;
8284
+ // Handle tag options blur - delay to allow click events on popover
8285
+ if (tagOptionsEnabled && tag.isEditingValue) ;
8286
+ // Reset scroll position to show the beginning when losing focus
8287
+ if (searchTagsContainerRef.current) {
8288
+ searchTagsContainerRef.current.scrollLeft = 0;
8289
+ }
8290
+ // Only finalize if there's a value, otherwise remove tag
8291
+ var currentValue = ((_tag$value2 = tag.value) === null || _tag$value2 === void 0 ? void 0 : _tag$value2.trim()) || '';
8292
+ if (currentValue) {
8293
+ handleTagValueUpdate(tag.id, currentValue, true);
8294
+ } else {
8295
+ // Remove empty tag on blur
8296
+ handleTagRemove(tag.id);
8297
+ }
8298
+ },
8299
+ onInputEnter: function onInputEnter() {
8300
+ var _tag$value3;
8301
+ // Only finalize if there's a value, otherwise stay focused
8302
+ var currentValue = ((_tag$value3 = tag.value) === null || _tag$value3 === void 0 ? void 0 : _tag$value3.trim()) || '';
8303
+ if (currentValue) {
8304
+ handleTagValueUpdate(tag.id, currentValue, true);
8305
+ }
8306
+ // If empty, do nothing - stay in edit mode
8307
+ },
8308
+ onInputClear: function onInputClear() {
8309
+ return handleTagRemove(tag.id);
8310
+ },
8311
+ ref: tag.isEditingValue ? function (node) {
8312
+ if (node && !disabled && !readOnly) {
8313
+ // Focus without selecting text to fix typing issue
8314
+ setTimeout(function () {
8315
+ try {
8316
+ node.focus();
8317
+ // Position cursor at end instead of selecting all
8318
+ node.setSelectionRange(node.value.length, node.value.length);
8319
+ // Handle tag options focus if enabled
8320
+ if (tagOptionsEnabled) {
8321
+ // Add event listeners for tag options
8322
+ var handleFocus = function handleFocus() {
8323
+ return handleTagOptionsFocus(tag.id, node);
8324
+ };
8325
+ // Add keyboard event handler for tag options
8326
+ var handleKeyDown = function handleKeyDown(e) {
8327
+ if (e.key === 'Enter' || e.key === 'Tab' || e.key === 'Backspace') {
8328
+ // Close tag options popover on these keys
8329
+ handleTagOptionsPopoverClose();
8330
+ }
8331
+ };
8332
+ node.addEventListener('focus', handleFocus);
8333
+ node.addEventListener('keydown', handleKeyDown);
8334
+ // Trigger focus handler immediately
8335
+ handleTagOptionsFocus(tag.id, node);
8336
+ // Cleanup function to remove event listeners
8337
+ return function () {
8338
+ node.removeEventListener('focus', handleFocus);
8339
+ node.removeEventListener('keydown', handleKeyDown);
8340
+ };
8341
+ }
8342
+ } catch (e) {
8343
+ // Focus might fail, ignore silently
8344
+ }
8345
+ }, 150);
8346
+ }
8347
+ } : undefined
8348
+ }, tag.id);
8349
+ }), jsx(TextField$1, _objectSpread2({
8350
+ ref: searchInputRef,
8351
+ value: searchValue,
8352
+ placeholder: placeholder,
8353
+ onChange: function onChange(e) {
8354
+ return handleSearchChange(e);
8355
+ },
8356
+ onFocus: function onFocus(e) {
8357
+ return handleSearchFocus(e);
8358
+ },
8359
+ onBlur: function onBlur(e) {
8360
+ return handleSearchBlur(e);
8361
+ },
8362
+ disabled: disabled,
8363
+ readOnly: readOnly,
8364
+ type: 'default',
8365
+ size: 'sm',
8366
+ leadingIcon: false,
8367
+ helpIcon: false,
8368
+ label: '',
8369
+ helperText: '',
8370
+ required: false,
8371
+ className: classes(modules_5709697d.searchInput, searchValue && modules_5709697d.searchInputFilled),
8372
+ id: id,
8373
+ name: name
8374
+ }, {
8375
+ onKeyDown: function onKeyDown(e) {
8376
+ if (e.key === 'Enter') {
8377
+ e.preventDefault();
8378
+ // For advanced search - trigger search without creating tags on Enter
8379
+ if (enableAdvancedSearch && searchValue) {
8380
+ emitAdvancedSearchChange(currentSearchTags, searchValue);
8381
+ }
8382
+ // Toggle dropdown
8383
+ setIsOpen(!isOpen);
8384
+ }
8385
+ if (e.key === 'Escape') {
8386
+ var _searchInputRef$curre3;
8387
+ setIsOpen(false);
8388
+ (_searchInputRef$curre3 = searchInputRef.current) === null || _searchInputRef$curre3 === void 0 || _searchInputRef$curre3.blur();
8389
+ }
8390
+ // Backspace handling for tag removal
8391
+ if (e.key === 'Backspace' && enableAdvancedSearch && !searchValue && currentSearchTags.length > 0) {
8392
+ e.preventDefault();
8393
+ // Remove the last tag
8394
+ var lastTag = currentSearchTags[currentSearchTags.length - 1];
8395
+ if (lastTag) {
8396
+ handleTagRemove(lastTag.id);
8397
+ }
8398
+ }
8399
+ }
8400
+ }))]
8401
+ }), showStatusIcon() && jsx("div", {
8402
+ className: modules_5709697d.statusIcon,
8403
+ children: getStatusIcon()
8404
+ }), jsx(ShortcutDisplay, {})]
8405
+ })) : (/* Regular Button Variant Container */
8406
+ jsx("div", {
8407
+ tabIndex: disabled ? -1 : 0,
8408
+ onFocus: handleButtonFocus,
8409
+ onBlur: handleButtonBlur,
8410
+ onKeyDown: function onKeyDown(e) {
8411
+ if (e.key === 'Enter' || e.key === ' ') {
8412
+ e.preventDefault();
8413
+ handleToggle();
8414
+ }
8415
+ },
8416
+ className: modules_5709697d.buttonWrapper,
8417
+ children: jsx(Button$1, {
8418
+ ref: dropdownButtonRef,
8419
+ type: 'button',
8420
+ variant: 'ghost',
8421
+ size: size === 'sm' ? 'sm' : 'md',
8422
+ title: jsxs(Fragment, {
8423
+ children: [jsxs("div", {
8424
+ className: modules_5709697d.contentArea,
8425
+ children: [resolvedIcon && jsx("div", {
8426
+ className: modules_5709697d.leadingIcon,
8427
+ children: /*#__PURE__*/React__default.createElement(resolvedIcon)
8428
+ }), isMultiSelect && currentSelectedValues.length > 0 ? jsxs(Fragment, {
8429
+ children: [jsx(Badge, {
8430
+ label: currentSelectedValues.length.toString(),
8431
+ variant: 'badge',
8432
+ size: 'sm',
8433
+ className: classes(modules_5709697d.countBadge, (disabled || readOnly) && modules_5709697d.countBadgeDisabled),
8434
+ onClose: disabled || readOnly ? function () {} // Show button but make it non-functional when disabled
8435
+ : handleClearAll
8436
+ }), jsx("span", {
8437
+ className: classes(modules_5709697d.dropdownText, modules_5709697d.selectedText),
8438
+ children: displayText
8439
+ })]
8440
+ }) : jsx("span", {
8441
+ className: classes(modules_5709697d.dropdownText, !isSelected && modules_5709697d.placeholder),
8442
+ children: displayText
8443
+ })]
8444
+ }), jsxs("div", {
8445
+ className: modules_5709697d.trailingArea,
8446
+ children: [showStatusIcon() && jsx("div", {
8447
+ className: modules_5709697d.statusIcon,
8448
+ children: getStatusIcon()
8449
+ }), jsx("div", {
8450
+ className: modules_5709697d.dropdownIcon,
8451
+ children: jsx(ChevronDownIcon, {})
8452
+ })]
8453
+ })]
8454
+ }),
8455
+ onClick: handleToggle,
8456
+ disabled: disabled,
8457
+ className: classes(modules_5709697d.dropdownContainer, modules_5709697d[actualState], modules_5709697d[size], variant === 'borderless' && modules_5709697d.borderless),
8458
+ id: id
8459
+ })
8460
+ })), jsx(Popover, {
8461
+ anchorEl: variant === 'search' ? searchContainerRef.current : dropdownButtonRef.current,
8462
+ open: isOpen && (enableAdvancedSearch ? filteredKeys.length > 0 : enhancedOptions.length > 0),
8463
+ setOpen: handlePopoverClose,
8464
+ placement: 'bottom-start',
8465
+ theme: 'light',
8466
+ withOverlay: false,
8467
+ className: classes(modules_5709697d.dropdownMenuPopover, popoverClassName),
8468
+ middlewareOptions: {
8469
+ offset: popoverOffset !== null && popoverOffset !== void 0 ? popoverOffset : 4,
8470
+ shift: {
8471
+ padding: 8
8472
+ },
8473
+ flip: {
8474
+ padding: 8
8475
+ }
8476
+ },
8477
+ children: jsx("div", {
8478
+ className: modules_5709697d.dropdownMenu,
8479
+ "data-dropdown-menu": true,
8480
+ children: enableAdvancedSearch ? jsxs(Fragment, {
8481
+ children: [jsx("div", {
8482
+ className: modules_5709697d.filtersHeader,
8483
+ children: jsx("div", {
8484
+ className: modules_5709697d.filtersTitle,
8485
+ children: "Filters"
8486
+ })
8487
+ }), filteredKeys.map(function (keyOption) {
8488
+ return jsx("div", {
8489
+ className: modules_5709697d.dropdownMenuItem,
8490
+ onClick: function onClick() {
8491
+ if (disabled || readOnly) return;
8492
+ handleKeySelect(keyOption.label);
8493
+ },
8494
+ children: jsx("div", {
8495
+ className: modules_5709697d.dropdownMenuItemInner,
8496
+ children: jsx("div", {
8497
+ className: modules_5709697d.dropdownMenuItemContent,
8498
+ children: jsx(Badge, {
8499
+ variant: 'modern',
8500
+ size: 'sm',
8501
+ label: "".concat(keyOption.label, ":")
8502
+ })
8503
+ })
8504
+ })
8505
+ }, keyOption.value);
8506
+ })]
8507
+ }) : (/* Regular Options */
8508
+ enhancedOptions.map(function (option) {
8509
+ // For "All" option, determine its state (checked/indeterminate/unchecked)
8510
+ var isOptionSelected = option.value === '__all__' ? isAllSelected : isMultiSelect ? currentSelectedValues.includes(option.value) : option.value === displayValue;
8511
+ // For "All" option, show indeterminate state when some (but not all) items are selected
8512
+ var isIndeterminate = option.value === '__all__' && currentSelectedValues.length > 0 && !isAllSelected;
8513
+ return jsx("div", {
8514
+ className: classes(modules_5709697d.dropdownMenuItem, isOptionSelected && modules_5709697d.dropdownMenuItemSelected, isMultiSelect && modules_5709697d.dropdownMenuItemMultiSelect),
8515
+ onClick: function onClick() {
8516
+ if (disabled || readOnly) return;
8517
+ if (isMultiSelect) {
8518
+ handleMultiSelectToggle(option.value);
8519
+ // Don't close dropdown for multi-select
8520
+ } else {
8521
+ // Single select behavior
8522
+ var newValue = option.value;
8523
+ if (value === undefined) {
8524
+ setInternalValue(newValue);
8525
+ }
8526
+ // Update search input for search variant
8527
+ if (variant === 'search') {
8528
+ setSearchValue(option.label);
8529
+ }
8530
+ onChange === null || onChange === void 0 || onChange(newValue);
8531
+ // Close dropdown and clear focus after selection
8532
+ setIsOpen(false);
8533
+ setIsFocused(false);
8534
+ }
8535
+ },
8536
+ children: jsxs("div", {
8537
+ className: modules_5709697d.dropdownMenuItemInner,
8538
+ children: [jsxs("div", {
8539
+ className: modules_5709697d.dropdownMenuItemContent,
8540
+ children: [isMultiSelect && jsx("div", {
8541
+ className: modules_5709697d.dropdownMenuItemCheckbox,
8542
+ children: jsx(Checkbox$1, {
8543
+ size: size === 'sm' ? 'sm' : 'md',
8544
+ checked: isOptionSelected,
8545
+ indeterminate: isIndeterminate,
8546
+ onChange: function onChange() {},
8547
+ disabled: disabled || readOnly
8548
+ })
8549
+ }), option.icon && !isMultiSelect && option.value !== '__all__' && jsx("div", {
8550
+ className: modules_5709697d.dropdownMenuItemIcon,
8551
+ children: /*#__PURE__*/React__default.createElement(option.icon)
8552
+ }), jsx("span", {
8553
+ className: modules_5709697d.dropdownMenuItemText,
8554
+ children: option.label
8555
+ })]
8556
+ }), !isMultiSelect && isOptionSelected && jsx("div", {
8557
+ className: modules_5709697d.dropdownMenuItemCheck,
8558
+ children: jsx(TickIcon, {})
8559
+ })]
8560
+ })
8561
+ }, option.value);
8562
+ }))
8563
+ })
8564
+ }), tagOptionsEnabled && tagOptions.length > 0 && jsx(Popover, {
8565
+ anchorEl: searchContainerRef.current,
8566
+ open: tagOptionsOpen && focusedTagId !== null,
8567
+ setOpen: handleTagOptionsPopoverClose,
8568
+ placement: 'bottom-start',
8569
+ theme: 'light',
8570
+ withOverlay: false,
8571
+ className: classes(modules_5709697d.dropdownMenuPopover, popoverClassName),
8572
+ middlewareOptions: {
8573
+ offset: popoverOffset !== null && popoverOffset !== void 0 ? popoverOffset : 4,
8574
+ shift: {
8575
+ padding: 8
8576
+ },
8577
+ flip: {
8578
+ padding: 8
8579
+ }
8580
+ },
8581
+ children: jsxs("div", {
8582
+ className: modules_5709697d.dropdownMenu,
8583
+ "data-tag-options-menu": true,
8584
+ children: [jsx("div", {
8585
+ className: modules_5709697d.filtersHeader,
8586
+ children: jsx("div", {
8587
+ className: modules_5709697d.filtersTitle,
8588
+ children: "Options"
8589
+ })
8590
+ }), tagOptions.map(function (option) {
8591
+ return jsx("div", {
8592
+ className: modules_5709697d.dropdownMenuItem,
8593
+ onMouseDown: function onMouseDown(e) {
8594
+ // Prevent input blur when clicking on option
8595
+ e.preventDefault();
8596
+ },
8597
+ onClick: function onClick(e) {
8598
+ if (disabled || readOnly) return;
8599
+ e.stopPropagation(); // Prevent event bubbling
8600
+ handleTagOptionSelect(option.value);
8601
+ },
8602
+ children: jsx("div", {
8603
+ className: modules_5709697d.dropdownMenuItemInner,
8604
+ children: jsxs("div", {
8605
+ className: modules_5709697d.dropdownMenuItemContent,
8606
+ children: [option.icon && jsx("div", {
8607
+ className: modules_5709697d.dropdownMenuItemIcon,
8608
+ children: /*#__PURE__*/React__default.createElement(option.icon)
8609
+ }), jsx("span", {
8610
+ className: modules_5709697d.dropdownMenuItemText,
8611
+ children: option.label
8612
+ })]
8613
+ })
8614
+ })
8615
+ }, option.value);
8616
+ })]
8617
+ })
8618
+ }), helperText && jsx("div", {
8619
+ className: classes(modules_5709697d.helperText, getHelperTextClass()),
8620
+ children: helperText
8621
+ })]
8622
+ }));
8623
+ });
8624
+ Dropdown$1.displayName = 'Dropdown';
8625
+
8626
+ var css$w = ".Toggle_module_root__aac55eed {\n display: inline-flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--spacing-03, 8px);\n cursor: pointer;\n position: relative;\n}\n.Toggle_module_root__aac55eed input {\n position: absolute;\n opacity: 0;\n width: 1px;\n height: 1px;\n}\n.Toggle_module_root__aac55eed [data-elem=label] {\n color: var(--text-text-secondary, #484848);\n font-family: var(--font-font-family, Poppins);\n font-size: var(--font-font-size-12, 12px);\n font-weight: var(--font-font-weight-Regular, 400);\n line-height: var(--font-font-height-16, 16px);\n letter-spacing: var(--font-font-spacing-large, 0.32px);\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed {\n width: 48px;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed .Toggle_module_pill__aac55eed {\n width: 48px;\n height: 24px;\n border-radius: 20px;\n background: var(--Miscellaneous-toggle-off, #bfbfbf);\n position: relative;\n transition: background 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed .Toggle_module_pill__aac55eed::before {\n content: \"\";\n position: absolute;\n width: 18px;\n height: 18px;\n border-radius: 18px;\n background: var(--icon-icon-on-color, #fff);\n top: 3px;\n left: 3px;\n transition: transform 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed input:checked + .Toggle_module_pill__aac55eed {\n background: var(--support-support-success, #24a148);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeL__aac55eed input:checked + .Toggle_module_pill__aac55eed::before {\n transform: translateX(24px);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed {\n width: 34px;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed {\n width: 32px;\n height: 16px;\n border-radius: 20px;\n background: var(--Miscellaneous-toggle-off, #bfbfbf);\n position: relative;\n transition: background 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed::before {\n content: \"\";\n position: absolute;\n width: 10px;\n height: 10px;\n border-radius: 10px;\n background: var(--icon-icon-on-color, #fff);\n top: 3px;\n left: 3px;\n transition: transform 0.2s ease;\n z-index: 1;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed .Toggle_module_tick__aac55eed {\n position: absolute;\n width: 10px;\n height: 10px;\n top: 3px;\n left: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n z-index: 2;\n pointer-events: none;\n transition: transform 0.2s ease;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed .Toggle_module_pill__aac55eed .Toggle_module_tick__aac55eed.Toggle_module_hideTick__aac55eed {\n visibility: hidden !important;\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed input:checked + .Toggle_module_pill__aac55eed {\n background: var(--support-support-success, #24a148);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed input:checked + .Toggle_module_pill__aac55eed::before {\n transform: translateX(16px);\n}\n.Toggle_module_root__aac55eed.Toggle_module_sizeS__aac55eed input:checked + .Toggle_module_pill__aac55eed .Toggle_module_tick__aac55eed {\n transform: translateX(16px);\n}\n.Toggle_module_root__aac55eed.Toggle_module_readonly__aac55eed {\n cursor: not-allowed;\n}\n.Toggle_module_root__aac55eed.Toggle_module_readonly__aac55eed .Toggle_module_pill__aac55eed {\n background: transparent;\n border: 1px solid var(--border-border-subtle, #ededed);\n}\n.Toggle_module_root__aac55eed.Toggle_module_readonly__aac55eed .Toggle_module_pill__aac55eed::before {\n top: 2px;\n left: 2px;\n background: var(--icon-icon-primary, #161616);\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed {\n cursor: not-allowed;\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed [data-elem=label] {\n color: var(--text-text-disabled, #161616);\n font-family: var(--font-font-family, Poppins);\n font-size: var(--font-font-size-12, 12px);\n font-style: normal;\n font-weight: var(--font-font-weight-Regular, 400);\n line-height: var(--font-font-height-16, 16px);\n letter-spacing: var(--font-font-spacing-large, 0.32px);\n opacity: 0.25;\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed [data-elem=label] {\n color: var(--text-text-disabled, #161616);\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed .Toggle_module_pill__aac55eed {\n background: var(--button-button-disabled, #dcdcdc);\n}\n.Toggle_module_root__aac55eed.Toggle_module_disabled__aac55eed .Toggle_module_pill__aac55eed::before {\n background: var(--icon-icon-on-color-disable, #828282);\n}\n.Toggle_module_root__aac55eed input:focus-visible + .Toggle_module_pill__aac55eed {\n box-shadow: 0 0 0 0.5px #fff, 0 0 0 2px var(--focus-focus-primary, #3b82f6);\n}";
6209
8627
  var modules_a2cdc77c = {"root":"Toggle_module_root__aac55eed","size-l":"Toggle_module_sizeL__aac55eed","pill":"Toggle_module_pill__aac55eed","size-s":"Toggle_module_sizeS__aac55eed","tick":"Toggle_module_tick__aac55eed","hide-tick":"Toggle_module_hideTick__aac55eed","readonly":"Toggle_module_readonly__aac55eed","disabled":"Toggle_module_disabled__aac55eed"};
6210
- n(css$x,{});
8628
+ n(css$w,{});
6211
8629
 
6212
8630
  var Toggle = function Toggle(props) {
6213
8631
  var label = props.label,
@@ -6219,10 +8637,8 @@ var Toggle = function Toggle(props) {
6219
8637
  _props$size = props.size,
6220
8638
  size = _props$size === void 0 ? 's' : _props$size,
6221
8639
  readonly = props.readonly;
6222
- // Freeze controlled vs uncontrolled mode on first render
6223
8640
  var _useRef = useRef(checked !== undefined),
6224
8641
  isControlled = _useRef.current;
6225
- // Uncontrolled state
6226
8642
  var _useState = useState(defaultChecked),
6227
8643
  _useState2 = _slicedToArray(_useState, 2),
6228
8644
  uncontrolledChecked = _useState2[0],
@@ -6233,7 +8649,6 @@ var Toggle = function Toggle(props) {
6233
8649
  event.preventDefault();
6234
8650
  return;
6235
8651
  }
6236
- // Safely extract fieldValue; fall back to event.target.checked
6237
8652
  var helperResult = inputHelper === null || inputHelper === void 0 ? void 0 : inputHelper(event);
6238
8653
  var fieldValue = (_helperResult$fieldVa = helperResult === null || helperResult === void 0 ? void 0 : helperResult.fieldValue) !== null && _helperResult$fieldVa !== void 0 ? _helperResult$fieldVa : event.target.checked;
6239
8654
  if (isControlled) {
@@ -6263,11 +8678,11 @@ var Toggle = function Toggle(props) {
6263
8678
  });
6264
8679
  };
6265
8680
 
6266
- var css$w = ".Text_module_root__d10e5305 {\n color: var(--text-color);\n}\n.Text_module_root__d10e5305.Text_module_h1__d10e5305 {\n font-size: 2.25rem;\n line-height: 2.75rem;\n}\n.Text_module_root__d10e5305.Text_module_h2__d10e5305 {\n font-size: 1.375rem;\n line-height: 1.688rem;\n}\n.Text_module_root__d10e5305.Text_module_b1__d10e5305 {\n font-size: 1rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b2__d10e5305 {\n font-size: 0.875rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b3__d10e5305 {\n font-size: 0.75rem;\n line-height: 1.063rem;\n}\n.Text_module_root__d10e5305.Text_module_regularStroke__d10e5305 {\n font-weight: 400;\n}\n.Text_module_root__d10e5305.Text_module_mediumStroke__d10e5305 {\n font-weight: 500;\n}\n.Text_module_root__d10e5305.Text_module_semiboldStroke__d10e5305 {\n font-weight: 600;\n}\n.Text_module_root__d10e5305.Text_module_boldStroke__d10e5305 {\n font-weight: 800;\n}";
6267
- var modules_22fa3f10$1 = {"root":"Text_module_root__d10e5305","h1":"Text_module_h1__d10e5305","h2":"Text_module_h2__d10e5305","b1":"Text_module_b1__d10e5305","b2":"Text_module_b2__d10e5305","b3":"Text_module_b3__d10e5305","regular-stroke":"Text_module_regularStroke__d10e5305","medium-stroke":"Text_module_mediumStroke__d10e5305","semibold-stroke":"Text_module_semiboldStroke__d10e5305","bold-stroke":"Text_module_boldStroke__d10e5305"};
6268
- n(css$w,{});
8681
+ var css$v = ".Text_module_root__d10e5305 {\n color: var(--text-color);\n}\n.Text_module_root__d10e5305.Text_module_h1__d10e5305 {\n font-size: 2.25rem;\n line-height: 2.75rem;\n}\n.Text_module_root__d10e5305.Text_module_h2__d10e5305 {\n font-size: 1.375rem;\n line-height: 1.688rem;\n}\n.Text_module_root__d10e5305.Text_module_b1__d10e5305 {\n font-size: 1rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b2__d10e5305 {\n font-size: 0.875rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b3__d10e5305 {\n font-size: 0.75rem;\n line-height: 1.063rem;\n}\n.Text_module_root__d10e5305.Text_module_regularStroke__d10e5305 {\n font-weight: 400;\n}\n.Text_module_root__d10e5305.Text_module_mediumStroke__d10e5305 {\n font-weight: 500;\n}\n.Text_module_root__d10e5305.Text_module_semiboldStroke__d10e5305 {\n font-weight: 600;\n}\n.Text_module_root__d10e5305.Text_module_boldStroke__d10e5305 {\n font-weight: 800;\n}";
8682
+ var modules_22fa3f10 = {"root":"Text_module_root__d10e5305","h1":"Text_module_h1__d10e5305","h2":"Text_module_h2__d10e5305","b1":"Text_module_b1__d10e5305","b2":"Text_module_b2__d10e5305","b3":"Text_module_b3__d10e5305","regular-stroke":"Text_module_regularStroke__d10e5305","medium-stroke":"Text_module_mediumStroke__d10e5305","semibold-stroke":"Text_module_semiboldStroke__d10e5305","bold-stroke":"Text_module_boldStroke__d10e5305"};
8683
+ n(css$v,{});
6269
8684
 
6270
- var Text$1 = /*#__PURE__*/forwardRef(function (props, ref) {
8685
+ var Text = /*#__PURE__*/forwardRef(function (props, ref) {
6271
8686
  var _props$variant = props.variant,
6272
8687
  variant = _props$variant === void 0 ? 'b2' : _props$variant,
6273
8688
  _props$component = props.component,
@@ -6291,7 +8706,7 @@ var Text$1 = /*#__PURE__*/forwardRef(function (props, ref) {
6291
8706
  }), weight && {
6292
8707
  fontWeight: weight
6293
8708
  }),
6294
- className: classes(modules_22fa3f10$1.root, modules_22fa3f10$1[variant], modules_22fa3f10$1["".concat(stroke, "-stroke")], className)
8709
+ className: classes(modules_22fa3f10.root, modules_22fa3f10[variant], modules_22fa3f10["".concat(stroke, "-stroke")], className)
6295
8710
  }, attrs), children);
6296
8711
  if (/*#__PURE__*/isValidElement(TextDOM)) {
6297
8712
  return TextDOM;
@@ -6299,9 +8714,9 @@ var Text$1 = /*#__PURE__*/forwardRef(function (props, ref) {
6299
8714
  return null;
6300
8715
  });
6301
8716
 
6302
- var css$v = ".Link_module_wrapper__4b6879a4 {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n border: 1px solid transparent;\n padding: 1px;\n border-radius: 2px;\n box-sizing: border-box;\n}\n.Link_module_wrapper__4b6879a4:active {\n border-color: var(--link-link-primary, #1f5fcc);\n}\n.Link_module_wrapper__4b6879a4:has(.Link_module_link__4b6879a4:focus-visible) {\n border-color: var(--link-link-primary, #1f5fcc);\n}\n.Link_module_wrapper__4b6879a4.Link_module_sizeSm__4b6879a4 .Link_module_link__4b6879a4 {\n font-size: 12px;\n line-height: 16px;\n letter-spacing: 0.32px;\n gap: 8px;\n}\n.Link_module_wrapper__4b6879a4.Link_module_sizeMd__4b6879a4 .Link_module_link__4b6879a4 {\n font-size: 14px;\n line-height: 18px;\n letter-spacing: 0.16px;\n gap: 10px;\n}\n.Link_module_wrapper__4b6879a4.Link_module_sizeLg__4b6879a4 .Link_module_link__4b6879a4 {\n font-size: 16px;\n line-height: 22px;\n gap: 10px;\n}\n.Link_module_wrapper__4b6879a4.Link_module_disabled__4b6879a4 {\n opacity: 0.25;\n pointer-events: none;\n}\n.Link_module_wrapper__4b6879a4.Link_module_disabled__4b6879a4 .Link_module_link__4b6879a4 {\n color: var(--text-text-disabled, #161616);\n}\n.Link_module_wrapper__4b6879a4.Link_module_disabled__4b6879a4 .Link_module_icon__4b6879a4 {\n stroke: var(--icon-icon-disabled, #161616);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4 {\n display: inline-flex;\n align-items: center;\n gap: var(--spacing-03, 8px);\n text-decoration: none;\n cursor: pointer;\n color: var(--link-link-primary, #1f5fcc);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:focus-visible {\n outline: none;\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:hover {\n color: var(--link-link-primary-hover, #1b55b5);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:hover .Link_module_icon__4b6879a4 {\n stroke: var(--link-link-primary-hover, #1b55b5);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:visited {\n color: var(--link-Link-visited, #8a3ffc);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:visited .Link_module_icon__4b6879a4 {\n stroke: var(--link-Link-visited, #8a3ffc);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:active {\n color: var(--icon-icon-primary, #161616);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:active .Link_module_icon__4b6879a4 {\n stroke: var(--icon-icon-primary, #161616);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_icon__4b6879a4 {\n stroke-width: 1.2px;\n stroke: var(--link-link-primary, #1f5fcc);\n width: 16px;\n height: 16px;\n}\n.Link_module_wrapper__4b6879a4 .Link_module_sizeLg__4b6879a4 .Link_module_icon__4b6879a4 {\n width: 20px;\n height: 20px;\n}\n\n.Link_module_unstyled__4b6879a4 {\n all: unset;\n display: inline-flex;\n align-items: center;\n cursor: pointer;\n background: transparent;\n border: none;\n box-shadow: none;\n outline: none;\n padding: 0;\n margin: 0;\n text-decoration: none;\n color: inherit;\n font: inherit;\n}\n.Link_module_unstyled__4b6879a4:focus-visible {\n outline: none;\n}\n.Link_module_unstyled__4b6879a4:disabled {\n opacity: 0.25;\n pointer-events: none;\n cursor: not-allowed;\n}";
8717
+ var css$u = ".Link_module_wrapper__4b6879a4 {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n border: 1px solid transparent;\n padding: 1px;\n border-radius: 2px;\n box-sizing: border-box;\n}\n.Link_module_wrapper__4b6879a4:active {\n border-color: var(--link-link-primary, #1f5fcc);\n}\n.Link_module_wrapper__4b6879a4:has(.Link_module_link__4b6879a4:focus-visible) {\n border-color: var(--link-link-primary, #1f5fcc);\n}\n.Link_module_wrapper__4b6879a4.Link_module_sizeSm__4b6879a4 .Link_module_link__4b6879a4 {\n font-size: 12px;\n line-height: 16px;\n letter-spacing: 0.32px;\n gap: 8px;\n}\n.Link_module_wrapper__4b6879a4.Link_module_sizeMd__4b6879a4 .Link_module_link__4b6879a4 {\n font-size: 14px;\n line-height: 18px;\n letter-spacing: 0.16px;\n gap: 10px;\n}\n.Link_module_wrapper__4b6879a4.Link_module_sizeLg__4b6879a4 .Link_module_link__4b6879a4 {\n font-size: 16px;\n line-height: 22px;\n gap: 10px;\n}\n.Link_module_wrapper__4b6879a4.Link_module_disabled__4b6879a4 {\n opacity: 0.25;\n pointer-events: none;\n}\n.Link_module_wrapper__4b6879a4.Link_module_disabled__4b6879a4 .Link_module_link__4b6879a4 {\n color: var(--text-text-disabled, #161616);\n}\n.Link_module_wrapper__4b6879a4.Link_module_disabled__4b6879a4 .Link_module_icon__4b6879a4 {\n stroke: var(--icon-icon-disabled, #161616);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4 {\n display: inline-flex;\n align-items: center;\n gap: var(--spacing-03, 8px);\n text-decoration: none;\n cursor: pointer;\n color: var(--link-link-primary, #1f5fcc);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:focus-visible {\n outline: none;\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:hover {\n color: var(--link-link-primary-hover, #1b55b5);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:hover .Link_module_icon__4b6879a4 {\n stroke: var(--link-link-primary-hover, #1b55b5);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:visited {\n color: var(--link-Link-visited, #8a3ffc);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:visited .Link_module_icon__4b6879a4 {\n stroke: var(--link-Link-visited, #8a3ffc);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:active {\n color: var(--icon-icon-primary, #161616);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_link__4b6879a4:active .Link_module_icon__4b6879a4 {\n stroke: var(--icon-icon-primary, #161616);\n}\n.Link_module_wrapper__4b6879a4 .Link_module_icon__4b6879a4 {\n stroke-width: 1.2px;\n stroke: var(--link-link-primary, #1f5fcc);\n width: 16px;\n height: 16px;\n}\n.Link_module_wrapper__4b6879a4 .Link_module_sizeLg__4b6879a4 .Link_module_icon__4b6879a4 {\n width: 20px;\n height: 20px;\n}\n\n.Link_module_unstyled__4b6879a4 {\n all: unset;\n display: inline-flex;\n align-items: center;\n cursor: pointer;\n background: transparent;\n border: none;\n box-shadow: none;\n outline: none;\n padding: 0;\n margin: 0;\n text-decoration: none;\n color: inherit;\n font: inherit;\n}\n.Link_module_unstyled__4b6879a4:focus-visible {\n outline: none;\n}\n.Link_module_unstyled__4b6879a4:disabled {\n opacity: 0.25;\n pointer-events: none;\n cursor: not-allowed;\n}";
6303
8718
  var modules_e20967e9 = {"wrapper":"Link_module_wrapper__4b6879a4","link":"Link_module_link__4b6879a4","size-sm":"Link_module_sizeSm__4b6879a4","size-md":"Link_module_sizeMd__4b6879a4","size-lg":"Link_module_sizeLg__4b6879a4","disabled":"Link_module_disabled__4b6879a4","icon":"Link_module_icon__4b6879a4","unstyled":"Link_module_unstyled__4b6879a4"};
6304
- n(css$v,{});
8719
+ n(css$u,{});
6305
8720
 
6306
8721
  var Link = /*#__PURE__*/forwardRef(function (props, ref) {
6307
8722
  var children = props.children,
@@ -6343,7 +8758,7 @@ var Link = /*#__PURE__*/forwardRef(function (props, ref) {
6343
8758
  }
6344
8759
  return jsx("div", {
6345
8760
  className: classes(modules_e20967e9.wrapper, modules_e20967e9["size-".concat(size)], disabled && modules_e20967e9.disabled),
6346
- children: jsxs(Text$1, {
8761
+ children: jsxs(Text, {
6347
8762
  ref: ref,
6348
8763
  component: 'a',
6349
8764
  variant: 'b2',
@@ -6365,9 +8780,9 @@ var Link = /*#__PURE__*/forwardRef(function (props, ref) {
6365
8780
  });
6366
8781
  });
6367
8782
 
6368
- var css$u = ".BaseModal_module_root__7069ed2d {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n height: 43.75rem;\n max-height: 100%;\n background: var(--light-color3);\n box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.13);\n border-radius: 8px;\n outline: none;\n width: 96%;\n}\n@media (min-width: 768px) {\n .BaseModal_module_root__7069ed2d {\n width: 72%;\n }\n}\n@media (min-width: 1024px) {\n .BaseModal_module_root__7069ed2d {\n width: 60%;\n max-width: 84%;\n }\n}\n@media (min-width: 1280px) {\n .BaseModal_module_root__7069ed2d {\n width: 48%;\n max-width: 62.5rem;\n }\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_body__7069ed2d {\n overflow-y: scroll;\n padding: 1rem;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_body__7069ed2d::-webkit-scrollbar {\n display: none;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_body__7069ed2d {\n -ms-overflow-style: none;\n scrollbar-width: none;\n color: var(--text-color);\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_header__7069ed2d,\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d {\n padding: 1rem;\n color: var(--text-color);\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_header__7069ed2d {\n font-weight: 500;\n font-size: 1.375rem;\n box-shadow: 0px 0.1px 2px rgba(24, 24, 24, 0.08);\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d {\n margin-top: auto;\n border-radius: 0 0 8px 8px;\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n gap: 1rem;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d button.BaseModal_module_dismiss__7069ed2d[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: stretch;\n color: var(--mono-color1);\n background-color: var(--light-color2);\n border-radius: 0.25rem;\n outline: 1px solid var(--light-color2) !important;\n border: none;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d button.BaseModal_module_dismiss__7069ed2d[data-elem=base-cell]:hover {\n background-color: var(--light-color1);\n}\n.BaseModal_module_root__7069ed2d button.BaseModal_module_close__7069ed2d[data-elem=base-cell] {\n position: absolute;\n right: 1rem;\n top: 1rem;\n padding: 0.25rem;\n height: auto;\n background: var(--light-color3);\n}\n.BaseModal_module_root__7069ed2d button.BaseModal_module_close__7069ed2d[data-elem=base-cell] .BaseModal_module_icon__7069ed2d {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--text-color);\n}";
8783
+ var css$t = ".BaseModal_module_root__7069ed2d {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n height: 43.75rem;\n max-height: 100%;\n background: var(--light-color3);\n box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.13);\n border-radius: 8px;\n outline: none;\n width: 96%;\n}\n@media (min-width: 768px) {\n .BaseModal_module_root__7069ed2d {\n width: 72%;\n }\n}\n@media (min-width: 1024px) {\n .BaseModal_module_root__7069ed2d {\n width: 60%;\n max-width: 84%;\n }\n}\n@media (min-width: 1280px) {\n .BaseModal_module_root__7069ed2d {\n width: 48%;\n max-width: 62.5rem;\n }\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_body__7069ed2d {\n overflow-y: scroll;\n padding: 1rem;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_body__7069ed2d::-webkit-scrollbar {\n display: none;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_body__7069ed2d {\n -ms-overflow-style: none;\n scrollbar-width: none;\n color: var(--text-color);\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_header__7069ed2d,\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d {\n padding: 1rem;\n color: var(--text-color);\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_header__7069ed2d {\n font-weight: 500;\n font-size: 1.375rem;\n box-shadow: 0px 0.1px 2px rgba(24, 24, 24, 0.08);\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d {\n margin-top: auto;\n border-radius: 0 0 8px 8px;\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n gap: 1rem;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d button.BaseModal_module_dismiss__7069ed2d[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: stretch;\n color: var(--mono-color1);\n background-color: var(--light-color2);\n border-radius: 0.25rem;\n outline: 1px solid var(--light-color2) !important;\n border: none;\n}\n.BaseModal_module_root__7069ed2d .BaseModal_module_footer__7069ed2d button.BaseModal_module_dismiss__7069ed2d[data-elem=base-cell]:hover {\n background-color: var(--light-color1);\n}\n.BaseModal_module_root__7069ed2d button.BaseModal_module_close__7069ed2d[data-elem=base-cell] {\n position: absolute;\n right: 1rem;\n top: 1rem;\n padding: 0.25rem;\n height: auto;\n background: var(--light-color3);\n}\n.BaseModal_module_root__7069ed2d button.BaseModal_module_close__7069ed2d[data-elem=base-cell] .BaseModal_module_icon__7069ed2d {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--text-color);\n}";
6369
8784
  var modules_f23ae002$1 = {"root":"BaseModal_module_root__7069ed2d","body":"BaseModal_module_body__7069ed2d","header":"BaseModal_module_header__7069ed2d","footer":"BaseModal_module_footer__7069ed2d","dismiss":"BaseModal_module_dismiss__7069ed2d","close":"BaseModal_module_close__7069ed2d","icon":"BaseModal_module_icon__7069ed2d"};
6370
- n(css$u,{});
8785
+ n(css$t,{});
6371
8786
 
6372
8787
  var MotionFooter$1 = motion.footer;
6373
8788
  var footerAnimations$1 = {
@@ -6387,12 +8802,12 @@ var ModalHeader$1 = function ModalHeader(_ref) {
6387
8802
  var title = _ref.title,
6388
8803
  description = _ref.description;
6389
8804
  return jsxs(Fragment, {
6390
- children: [jsx(Text$1, {
8805
+ children: [jsx(Text, {
6391
8806
  component: 'h2',
6392
8807
  variant: 'h2',
6393
8808
  weight: 600,
6394
8809
  children: title
6395
- }), jsx(Text$1, {
8810
+ }), jsx(Text, {
6396
8811
  component: 'span',
6397
8812
  variant: 'b1',
6398
8813
  weight: 400,
@@ -6551,9 +8966,9 @@ var BaseModal$1 = function BaseModal(props) {
6551
8966
  });
6552
8967
  };
6553
8968
 
6554
- var css$t = ".CheckBox_module_root__6c6c7d85 {\n cursor: pointer;\n gap: 10px;\n color: var(--mono-color1);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_positionLeft__6c6c7d85 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_positionRight__6c6c7d85 {\n display: flex;\n flex-direction: row-reverse;\n justify-content: flex-end;\n align-items: center;\n}\n.CheckBox_module_root__6c6c7d85 input[type=checkbox] {\n opacity: 0;\n z-index: 1;\n position: absolute;\n width: 1px;\n height: 1px;\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 {\n cursor: default;\n color: var(--mono-color2);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(1) {\n fill: var(--grey10);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(2) {\n stroke: var(--grey5);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 .CheckBox_module_icon__6c6c7d85 path {\n stroke: var(--grey5);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_selected__6c6c7d85 {\n color: var(--text-color);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) {\n color: var(--text-color);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(1) {\n fill: var(--background-color5);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(2) {\n stroke: var(--secondary-color2);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) .CheckBox_module_icon__6c6c7d85 path {\n stroke: var(--secondary-color2);\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85 {\n display: inline-block;\n border-radius: 0.2rem;\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85.CheckBox_module_iconSm__6c6c7d85 {\n width: 1rem;\n height: 1rem;\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85.CheckBox_module_iconMd__6c6c7d85 {\n width: 1.25rem;\n height: 1.25rem;\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85.CheckBox_module_iconLg__6c6c7d85 {\n width: 1.5rem;\n height: 1.5rem;\n}\n.CheckBox_module_root__6c6c7d85 input:focus + .CheckBox_module_icon__6c6c7d85 {\n box-shadow: 0px 0px 0px 0.25rem rgba(15, 98, 254, 0.125);\n}\n.CheckBox_module_root__6c6c7d85 [data-elem=label] {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}";
8969
+ var css$s = ".CheckBox_module_root__6c6c7d85 {\n cursor: pointer;\n gap: 10px;\n color: var(--mono-color1);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_positionLeft__6c6c7d85 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_positionRight__6c6c7d85 {\n display: flex;\n flex-direction: row-reverse;\n justify-content: flex-end;\n align-items: center;\n}\n.CheckBox_module_root__6c6c7d85 input[type=checkbox] {\n opacity: 0;\n z-index: 1;\n position: absolute;\n width: 1px;\n height: 1px;\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 {\n cursor: default;\n color: var(--mono-color2);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(1) {\n fill: var(--grey10);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(2) {\n stroke: var(--grey5);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_disabled__6c6c7d85 .CheckBox_module_icon__6c6c7d85 path {\n stroke: var(--grey5);\n}\n.CheckBox_module_root__6c6c7d85.CheckBox_module_selected__6c6c7d85 {\n color: var(--text-color);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) {\n color: var(--text-color);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(1) {\n fill: var(--background-color5);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) .CheckBox_module_icon__6c6c7d85 rect:nth-of-type(2) {\n stroke: var(--secondary-color2);\n}\n.CheckBox_module_root__6c6c7d85:hover:not(.CheckBox_module_disabled__6c6c7d85) .CheckBox_module_icon__6c6c7d85 path {\n stroke: var(--secondary-color2);\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85 {\n display: inline-block;\n border-radius: 0.2rem;\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85.CheckBox_module_iconSm__6c6c7d85 {\n width: 1rem;\n height: 1rem;\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85.CheckBox_module_iconMd__6c6c7d85 {\n width: 1.25rem;\n height: 1.25rem;\n}\n.CheckBox_module_root__6c6c7d85 .CheckBox_module_icon__6c6c7d85.CheckBox_module_iconLg__6c6c7d85 {\n width: 1.5rem;\n height: 1.5rem;\n}\n.CheckBox_module_root__6c6c7d85 input:focus + .CheckBox_module_icon__6c6c7d85 {\n box-shadow: 0px 0px 0px 0.25rem rgba(15, 98, 254, 0.125);\n}\n.CheckBox_module_root__6c6c7d85 [data-elem=label] {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}";
6555
8970
  var modules_066398a2 = {"root":"CheckBox_module_root__6c6c7d85","position-left":"CheckBox_module_positionLeft__6c6c7d85","position-right":"CheckBox_module_positionRight__6c6c7d85","disabled":"CheckBox_module_disabled__6c6c7d85","icon":"CheckBox_module_icon__6c6c7d85","selected":"CheckBox_module_selected__6c6c7d85","icon-sm":"CheckBox_module_iconSm__6c6c7d85","icon-md":"CheckBox_module_iconMd__6c6c7d85","icon-lg":"CheckBox_module_iconLg__6c6c7d85"};
6556
- n(css$t,{});
8971
+ n(css$s,{});
6557
8972
 
6558
8973
  var getIcon = function getIcon(checked, intermediate) {
6559
8974
  if (checked) {
@@ -6575,7 +8990,8 @@ var Checkbox = function Checkbox(props) {
6575
8990
  className = _props$className === void 0 ? '' : _props$className,
6576
8991
  disabled = props.disabled,
6577
8992
  disabledAsChild = props.disabledAsChild,
6578
- intermediate = props.intermediate;
8993
+ intermediate = props.intermediate,
8994
+ dataTestId = props.dataTestId;
6579
8995
  // Track controlled/uncontrolled mode once on first render
6580
8996
  var _useRef = useRef(checked !== undefined),
6581
8997
  isControlled = _useRef.current;
@@ -6602,6 +9018,7 @@ var Checkbox = function Checkbox(props) {
6602
9018
  children: [jsx("input", _objectSpread2(_objectSpread2({
6603
9019
  disabled: disabled,
6604
9020
  type: 'checkbox',
9021
+ "data-testid": dataTestId !== null && dataTestId !== void 0 ? dataTestId : label ? "checkbox-input-".concat(label, "-cb-test") : 'checkbox-input-cb-test',
6605
9022
  defaultChecked: defaultChecked
6606
9023
  }, isControlled ? {
6607
9024
  checked: !!checked
@@ -6631,11 +9048,9 @@ var SelectAll = function SelectAll(props) {
6631
9048
  });
6632
9049
  };
6633
9050
 
6634
- function o(f){return r=>{f.forEach(n=>{typeof n=="function"?n(r):n!=null&&(n.current=r);});}}
6635
-
6636
- var css$s = ".Tooltip_module_tooltip__9cc6de6d {\n text-align: center;\n border-radius: 0.25rem;\n min-width: 1rem;\n max-width: auto;\n padding: 0.5rem 0.75rem;\n font-size: 0.875rem;\n line-height: 1.3125rem;\n color: var(--light-color3);\n background-color: var(--text-color);\n}\n.Tooltip_module_tooltip__9cc6de6d.Tooltip_module_light__9cc6de6d {\n background-color: var(--black);\n color: var(--white);\n}\n.Tooltip_module_tooltip__9cc6de6d.Tooltip_module_dark__9cc6de6d {\n background-color: var(--white);\n color: var(--black);\n}\n.Tooltip_module_tooltip__9cc6de6d .Tooltip_module_arrow__9cc6de6d {\n position: absolute;\n width: 0.65rem;\n height: 0.65rem;\n z-index: -1;\n pointer-events: none;\n transform: rotate(45deg);\n background: var(--text-color);\n}";
9051
+ var css$r = ".Tooltip_module_tooltip__9cc6de6d {\n text-align: center;\n border-radius: 0.25rem;\n min-width: 1rem;\n max-width: auto;\n padding: 0.5rem 0.75rem;\n font-size: 0.875rem;\n line-height: 1.3125rem;\n color: var(--light-color3);\n background-color: var(--text-color);\n}\n.Tooltip_module_tooltip__9cc6de6d.Tooltip_module_light__9cc6de6d {\n background-color: var(--black);\n color: var(--white);\n}\n.Tooltip_module_tooltip__9cc6de6d.Tooltip_module_dark__9cc6de6d {\n background-color: var(--white);\n color: var(--black);\n}\n.Tooltip_module_tooltip__9cc6de6d .Tooltip_module_arrow__9cc6de6d {\n position: absolute;\n width: 0.65rem;\n height: 0.65rem;\n z-index: -1;\n pointer-events: none;\n transform: rotate(45deg);\n background: var(--text-color);\n}";
6637
9052
  var modules_e4619b04 = {"tooltip":"Tooltip_module_tooltip__9cc6de6d","light":"Tooltip_module_light__9cc6de6d","dark":"Tooltip_module_dark__9cc6de6d","arrow":"Tooltip_module_arrow__9cc6de6d"};
6638
- n(css$s,{});
9053
+ n(css$r,{});
6639
9054
 
6640
9055
  /**
6641
9056
  * Tooltip - A tooltip component to be used as a wrapper to show the customised tooltip for the component
@@ -6776,95 +9191,6 @@ var Tooltip = /*#__PURE__*/forwardRef(function (props, propRef) {
6776
9191
  });
6777
9192
  });
6778
9193
 
6779
- var css$r = ".Popover_module_root__fa26af22 {\n padding: 0.5rem;\n border-radius: 0.25rem;\n border: 1px solid var(--grey);\n z-index: 10;\n}\n.Popover_module_root__fa26af22.Popover_module_darkTheme__fa26af22 {\n box-shadow: 0px dark 20px rgba(24, 24, 24, 0.08);\n background-color: var(--dark-grey);\n color: var(--white);\n border-color: var(--grey);\n}\n.Popover_module_root__fa26af22.Popover_module_lightTheme__fa26af22 {\n box-shadow: 0px light 20px rgba(24, 24, 24, 0.08);\n background-color: var(--white);\n color: var(--dark-grey);\n border-color: var(--grey4);\n}";
6780
- var modules_dfc4608f = {"root":"Popover_module_root__fa26af22","dark-theme":"Popover_module_darkTheme__fa26af22","light-theme":"Popover_module_lightTheme__fa26af22"};
6781
- n(css$r,{});
6782
-
6783
- var resolveOffset = function resolveOffset(user) {
6784
- if (user == null) return {
6785
- mainAxis: 5
6786
- };
6787
- if (typeof user === 'number' || typeof user === 'function') return user;
6788
- return _objectSpread2({
6789
- mainAxis: 5
6790
- }, user);
6791
- };
6792
- var Popover = function Popover(_ref) {
6793
- var children = _ref.children,
6794
- anchorEl = _ref.anchorEl,
6795
- open = _ref.open,
6796
- setOpen = _ref.setOpen,
6797
- className = _ref.className,
6798
- _ref$transparent = _ref.transparent,
6799
- transparent = _ref$transparent === void 0 ? true : _ref$transparent,
6800
- onClose = _ref.onClose,
6801
- _ref$placement = _ref.placement,
6802
- placement = _ref$placement === void 0 ? 'bottom' : _ref$placement,
6803
- _ref$theme = _ref.theme,
6804
- theme = _ref$theme === void 0 ? 'light' : _ref$theme,
6805
- middlewareOptions = _ref.middlewareOptions,
6806
- lockScroll = _ref.lockScroll,
6807
- _ref$withOverlay = _ref.withOverlay,
6808
- withOverlay = _ref$withOverlay === void 0 ? true : _ref$withOverlay;
6809
- var offsetArg = resolveOffset(middlewareOptions === null || middlewareOptions === void 0 ? void 0 : middlewareOptions.offset);
6810
- var flipArg = _objectSpread2({
6811
- padding: 8
6812
- }, middlewareOptions !== null && middlewareOptions !== void 0 && middlewareOptions.flip && _typeof(middlewareOptions.flip) === 'object' ? _objectSpread2({}, middlewareOptions.flip) : {});
6813
- var _useFloating = useFloating(_objectSpread2(_objectSpread2(_objectSpread2({}, open && {
6814
- open: open
6815
- }), setOpen && {
6816
- onOpenChange: setOpen
6817
- }), {}, {
6818
- placement: placement,
6819
- whileElementsMounted: autoUpdate,
6820
- middleware: [offset(offsetArg), shift(middlewareOptions === null || middlewareOptions === void 0 ? void 0 : middlewareOptions.shift), flip(flipArg), size({
6821
- apply: function apply(_ref2) {
6822
- var rects = _ref2.rects,
6823
- availableHeight = _ref2.availableHeight,
6824
- elements = _ref2.elements;
6825
- Object.assign(elements.floating.style, {
6826
- width: "".concat(rects.reference.width.toString(), "px"),
6827
- minWidth: 'fit-content',
6828
- maxHeight: "".concat(availableHeight.toString(), "px")
6829
- });
6830
- },
6831
- padding: 8
6832
- })]
6833
- })),
6834
- x = _useFloating.x,
6835
- y = _useFloating.y,
6836
- reference = _useFloating.reference,
6837
- floating = _useFloating.floating,
6838
- strategy = _useFloating.strategy,
6839
- context = _useFloating.context;
6840
- var _useInteractions = useInteractions([useDismiss(context)]),
6841
- getFloatingProps = _useInteractions.getFloatingProps;
6842
- useEffect(function () {
6843
- if (!open) onClose === null || onClose === void 0 || onClose();
6844
- }, [open, onClose]);
6845
- useLayoutEffect(function () {
6846
- reference(anchorEl);
6847
- }, [anchorEl, reference]);
6848
- return jsx(Popper, {
6849
- open: open,
6850
- wrapperId: 'popover',
6851
- transparent: transparent,
6852
- lockScroll: lockScroll,
6853
- withOverlay: withOverlay,
6854
- children: jsx("div", _objectSpread2(_objectSpread2({}, getFloatingProps({
6855
- ref: floating,
6856
- style: {
6857
- position: strategy,
6858
- top: y !== null && y !== void 0 ? y : 0,
6859
- left: x !== null && x !== void 0 ? x : 0
6860
- },
6861
- className: classes(modules_dfc4608f.root, modules_dfc4608f["".concat(theme, "-theme")], className)
6862
- })), {}, {
6863
- children: children
6864
- }))
6865
- });
6866
- };
6867
-
6868
9194
  var css$q = ".TextField_module_root__9f23fe8b {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n gap: 0.5rem;\n}\n.TextField_module_root__9f23fe8b label {\n width: 100%;\n max-width: 100%;\n font-weight: 400;\n font-size: 0.75rem;\n letter-spacing: 0.02rem;\n color: var(--text-color);\n letter-spacing: 0.3199999928px;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 0.5rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_required__9f23fe8b::after {\n content: \" *\";\n color: var(--primary-color1);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n gap: 0.625rem;\n padding: 0.75rem;\n height: auto;\n max-width: 100%;\n width: 100%;\n border-radius: 0.25rem;\n box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b:focus-within {\n outline: 1px solid var(--secondary-color2);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b .TextField_module_icon__9f23fe8b {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component1] > svg {\n width: 1.5rem;\n height: 1.5rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component1] > svg.TextField_module_error__9f23fe8b path {\n stroke: var(--primary-color1);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] {\n flex: 1;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b {\n -moz-appearance: textfield;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b::-webkit-outer-spin-button, .TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b {\n flex: 1;\n background-color: var(--light-color3) !important;\n border: none;\n font-weight: 400;\n color: var(--text-color);\n font-size: 0.875rem;\n line-height: 1.125rem;\n letter-spacing: 0.01rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:focus {\n outline: none;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:disabled {\n background: var(--grey9);\n color: var(--grey3);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b.TextField_module_error__9f23fe8b {\n color: var(--primary-color1);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b.TextField_module_sm__9f23fe8b {\n padding: 0rem 0.5rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b.TextField_module_md__9f23fe8b {\n padding: 0rem 0.5rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b.TextField_module_lg__9f23fe8b {\n padding: 0rem 0.5rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b::-moz-placeholder {\n font-size: 0.875rem;\n font-weight: 400;\n line-height: 1.125rem;\n letter-spacing: 0.01rem;\n color: var(--mono-color2);\n opacity: 1;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b::placeholder {\n font-size: 0.875rem;\n font-weight: 400;\n line-height: 1.125rem;\n letter-spacing: 0.01rem;\n color: var(--mono-color2);\n opacity: 1;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b::-moz-placeholder {\n font-size: 0.875rem;\n font-weight: 400;\n line-height: 1.125rem;\n letter-spacing: 0.01rem;\n color: var(--mono-color2);\n opacity: 1;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:-webkit-autofill, .TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:-webkit-autofill:hover, .TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:-webkit-autofill:focus, .TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:-webkit-autofill:active {\n -webkit-box-shadow: 0 0 0 30px var(--light-color3) inset !important;\n -webkit-text-fill-color: initial !important;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:autofill, .TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:autofill:hover, .TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:autofill:focus, .TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b:autofill:active {\n box-shadow: 0 0 0 30px var(--light-color3) inset !important;\n -moz-text-fill-color: initial !important;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component3] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 0.75rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component3] button[data-elem=base-cell].TextField_module_button__9f23fe8b[type=button] {\n width: auto;\n height: -moz-fit-content;\n height: fit-content;\n padding: 0;\n background-color: transparent;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component3] button[data-elem=base-cell].TextField_module_button__9f23fe8b[type=button].TextField_module_error__9f23fe8b > [data-elem=component1] .TextField_module_icon__9f23fe8b.TextField_module_error__9f23fe8b.TextField_module_error__9f23fe8b path {\n stroke: var(--primary-color1);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component3] .TextField_module_span__9f23fe8b .TextField_module_icon__9f23fe8b {\n width: 1rem;\n height: 1rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b > [data-elem=component3] .TextField_module_span__9f23fe8b .TextField_module_icon__9f23fe8b.TextField_module_error__9f23fe8b.TextField_module_error__9f23fe8b path {\n stroke: var(--primary-color1);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_typeTextarea__9f23fe8b {\n padding: 0;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_typeTextarea__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b {\n resize: vertical;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_typeTextarea__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b.TextField_module_md__9f23fe8b {\n padding: 0.313rem 0.75rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_typeTextarea__9f23fe8b > [data-elem=component2] .TextField_module_input__9f23fe8b.TextField_module_lg__9f23fe8b {\n padding: 0.5rem 1rem;\n font-size: 1rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_feedbackError__9f23fe8b {\n box-shadow: 0px 0px 2px 0px var(--primary-color1);\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_borderDefault__9f23fe8b {\n border-width: 0.063rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_borderBottom__9f23fe8b {\n border-width: 0rem 0rem 0.063rem 0rem;\n}\n.TextField_module_root__9f23fe8b label .TextField_module_inputWrapper__9f23fe8b.TextField_module_borderNone__9f23fe8b {\n border-width: 0rem;\n}";
6869
9195
  var modules_c1d23762 = {"root":"TextField_module_root__9f23fe8b","required":"TextField_module_required__9f23fe8b","input-wrapper":"TextField_module_inputWrapper__9f23fe8b","icon":"TextField_module_icon__9f23fe8b","error":"TextField_module_error__9f23fe8b","input":"TextField_module_input__9f23fe8b","sm":"TextField_module_sm__9f23fe8b","md":"TextField_module_md__9f23fe8b","lg":"TextField_module_lg__9f23fe8b","button":"TextField_module_button__9f23fe8b","span":"TextField_module_span__9f23fe8b","type-textarea":"TextField_module_typeTextarea__9f23fe8b","feedback-error":"TextField_module_feedbackError__9f23fe8b","border-default":"TextField_module_borderDefault__9f23fe8b","border-bottom":"TextField_module_borderBottom__9f23fe8b","border-none":"TextField_module_borderNone__9f23fe8b"};
6870
9196
  n(css$q,{});
@@ -6897,7 +9223,9 @@ var TextField = /*#__PURE__*/forwardRef(function (props, inputRef) {
6897
9223
  feedback = props.feedback,
6898
9224
  maxLength = props.maxLength,
6899
9225
  onKeyDown = props.onKeyDown,
6900
- autocompleteOptions = props.autocompleteOptions;
9226
+ autocompleteOptions = props.autocompleteOptions,
9227
+ _props$unstyled = props.unstyled,
9228
+ unstyled = _props$unstyled === void 0 ? false : _props$unstyled;
6901
9229
  var _useRef = useRef(value !== undefined),
6902
9230
  isControlled = _useRef.current;
6903
9231
  var _useState = useState(defaultValue),
@@ -7021,7 +9349,7 @@ var TextField = /*#__PURE__*/forwardRef(function (props, inputRef) {
7021
9349
  ref: o([inputRef]),
7022
9350
  value: inputValue,
7023
9351
  onChange: handleChange,
7024
- className: classes(modules_c1d23762[size], modules_c1d23762.input, feedback !== null && feedback !== void 0 && feedback.error ? modules_c1d23762.error : '')
9352
+ className: unstyled ? classes(modules_c1d23762.unstyled, className) : classes(modules_c1d23762[size], modules_c1d23762.input, feedback !== null && feedback !== void 0 && feedback.error ? modules_c1d23762.error : '')
7025
9353
  }, typeof maxLength === 'number' ? {
7026
9354
  maxLength: maxLength
7027
9355
  } : {});
@@ -7029,6 +9357,11 @@ var TextField = /*#__PURE__*/forwardRef(function (props, inputRef) {
7029
9357
  type: inputType,
7030
9358
  defaultValue: defaultValue
7031
9359
  }, inputProps));
9360
+ // ── Unstyled Return Path ─────────────────────────────────────────────
9361
+ if (unstyled) {
9362
+ return Input;
9363
+ }
9364
+ // ── Standard Return Path ─────────────────────────────────────────────
7032
9365
  var AutocompletePopover = autocompleteOptions === null || autocompleteOptions === void 0 ? void 0 : autocompleteOptions.render;
7033
9366
  return jsxs("div", {
7034
9367
  className: classes(modules_c1d23762.root, className),
@@ -7095,7 +9428,8 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, ref) {
7095
9428
  valueAsCount = props.valueAsCount,
7096
9429
  caretAsUpDown = props.caretAsUpDown,
7097
9430
  search = props.search,
7098
- hideValueOnSelect = props.hideValueOnSelect;
9431
+ hideValueOnSelect = props.hideValueOnSelect,
9432
+ dataTestId = props.dataTestId;
7099
9433
  var _useState = useState(false),
7100
9434
  _useState2 = _slicedToArray(_useState, 2),
7101
9435
  open = _useState2[0],
@@ -7418,6 +9752,7 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, ref) {
7418
9752
  })
7419
9753
  }), jsxs("div", _objectSpread2(_objectSpread2({
7420
9754
  "data-elem": 'header',
9755
+ "data-testid": "dropdown-header-".concat(placeholder ? placeholder.toString() : dataTestId, "-dpn-test"),
7421
9756
  className: classes(modules_1b90f5ea.header, error ? modules_1b90f5ea.error : ' ', open ? modules_1b90f5ea.open : '', (Array.isArray(value) ? value.length > 0 : !!value) && highlightOnSelect ? modules_1b90f5ea.highlightOnSelect : ''),
7422
9757
  ref: reference
7423
9758
  }, getReferenceProps()), {}, {
@@ -7535,6 +9870,7 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, ref) {
7535
9870
  className: modules_1b90f5ea['multi-clear'],
7536
9871
  blurOnClick: false,
7537
9872
  title: 'Clear',
9873
+ dataTestId: 'dropdown-clear-btn-test',
7538
9874
  size: 'auto',
7539
9875
  disabled: selectedOptions.length === 0,
7540
9876
  onClick: function onClick(event) {
@@ -7545,6 +9881,7 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, ref) {
7545
9881
  }
7546
9882
  }), jsx(Button, {
7547
9883
  className: modules_1b90f5ea['multi-apply'],
9884
+ dataTestId: 'dropdown-apply-btn-test',
7548
9885
  title: selectedOptions.length === 0 ? 'Apply' : multiSelectActionTitle !== null && multiSelectActionTitle !== void 0 ? multiSelectActionTitle : 'Apply',
7549
9886
  size: 'auto',
7550
9887
  onClick: onApply
@@ -7570,7 +9907,8 @@ var Radio = function Radio(props) {
7570
9907
  _props$size = props.size,
7571
9908
  size = _props$size === void 0 ? 'sm' : _props$size,
7572
9909
  className = props.className,
7573
- disabled = props.disabled;
9910
+ disabled = props.disabled,
9911
+ dataTestId = props.dataTestId;
7574
9912
  // Lock controlled vs uncontrolled on first render
7575
9913
  var _useRef = useRef(checked !== undefined),
7576
9914
  isControlled = _useRef.current;
@@ -7600,7 +9938,8 @@ var Radio = function Radio(props) {
7600
9938
  type: 'radio',
7601
9939
  // Preserve original pattern: always pass checked (undefined keeps it uncontrolled)
7602
9940
  checked: isChecked,
7603
- onChange: handleChange
9941
+ onChange: handleChange,
9942
+ "data-testid": dataTestId !== null && dataTestId !== void 0 ? dataTestId : label ? "radio-input-".concat(label, "-rd-test") : 'radio-input-rd-test'
7604
9943
  }), isChecked ? jsx(CheckedIcon, {
7605
9944
  "data-elem": 'icon',
7606
9945
  className: classes(modules_3705961f["icon-".concat(size)], modules_3705961f.icon)
@@ -7769,8 +10108,8 @@ var DropdownItem = /*#__PURE__*/forwardRef(function (props, ref) {
7769
10108
  }));
7770
10109
  });
7771
10110
 
7772
- var css$l = ".BaseModal_module_root__627cb2d4 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n top: 50%;\n left: 50%;\n right: auto;\n bottom: auto;\n transform: translate(-50%, -50%);\n max-height: 100%;\n height: 43.75rem;\n width: 62.5rem;\n position: fixed;\n background: var(--light-color3);\n box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.13);\n border-radius: 8px;\n outline: none;\n}\n.BaseModal_module_root__627cb2d4 .BaseModal_module_body__627cb2d4 {\n overflow-y: scroll;\n padding: 1rem;\n -ms-overflow-style: none;\n scrollbar-width: none;\n color: var(--text-color);\n}\n.BaseModal_module_root__627cb2d4 .BaseModal_module_body__627cb2d4::-webkit-scrollbar {\n display: none;\n}\n.BaseModal_module_root__627cb2d4 .BaseModal_module_header__627cb2d4,\n.BaseModal_module_root__627cb2d4 .BaseModal_module_footer__627cb2d4 {\n padding: 1rem;\n color: var(--text-color);\n}\n.BaseModal_module_root__627cb2d4 .BaseModal_module_header__627cb2d4 {\n font-weight: 500;\n font-size: 1.375rem;\n box-shadow: 0px 0.1px 2px rgba(24, 24, 24, 0.08);\n}\n.BaseModal_module_root__627cb2d4 .BaseModal_module_footer__627cb2d4 {\n margin-top: auto;\n border-radius: 0 0 8px 8px;\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n gap: 1rem;\n}\n.BaseModal_module_root__627cb2d4 .BaseModal_module_footer__627cb2d4 button.BaseModal_module_dismiss__627cb2d4[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: stretch;\n color: var(--mono-color1);\n background-color: var(--light-color2);\n border-radius: 0.25rem;\n outline: 1px solid var(--light-color2) !important;\n border: none;\n}\n.BaseModal_module_root__627cb2d4 .BaseModal_module_footer__627cb2d4 button.BaseModal_module_dismiss__627cb2d4[data-elem=base-cell]:hover {\n background-color: var(--light-color1);\n}\n.BaseModal_module_root__627cb2d4 button.BaseModal_module_close__627cb2d4[data-elem=base-cell] {\n position: absolute;\n right: 1rem;\n top: 1rem;\n padding: 0.25rem;\n height: auto;\n background: var(--light-color3);\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);\n}\n.BaseModal_module_root__627cb2d4 button.BaseModal_module_close__627cb2d4[data-elem=base-cell]:hover {\n box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n}\n.BaseModal_module_root__627cb2d4 button.BaseModal_module_close__627cb2d4[data-elem=base-cell] .BaseModal_module_icon__627cb2d4 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--text-color);\n}";
7773
- var modules_f23ae002 = {"root":"BaseModal_module_root__627cb2d4","body":"BaseModal_module_body__627cb2d4","header":"BaseModal_module_header__627cb2d4","footer":"BaseModal_module_footer__627cb2d4","dismiss":"BaseModal_module_dismiss__627cb2d4","close":"BaseModal_module_close__627cb2d4","icon":"BaseModal_module_icon__627cb2d4"};
10111
+ var css$l = ".BaseModal_module_root__387071a4 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n top: 50%;\n left: 50%;\n right: auto;\n bottom: auto;\n transform: translate(-50%, -50%);\n max-height: 100%;\n height: 43.75rem;\n width: 62.5rem;\n position: fixed;\n background: var(--light-color3);\n box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.13);\n border-radius: 8px;\n outline: none;\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_body__387071a4 {\n overflow-y: scroll;\n padding: 1rem;\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_body__387071a4::-webkit-scrollbar {\n display: none;\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_body__387071a4 {\n -ms-overflow-style: none;\n scrollbar-width: none;\n color: var(--text-color);\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_header__387071a4,\n.BaseModal_module_root__387071a4 .BaseModal_module_footer__387071a4 {\n padding: 1rem;\n color: var(--text-color);\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_header__387071a4 {\n font-weight: 500;\n font-size: 1.375rem;\n box-shadow: 0px 0.1px 2px rgba(24, 24, 24, 0.08);\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_footer__387071a4 {\n margin-top: auto;\n border-radius: 0 0 8px 8px;\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n gap: 1rem;\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_footer__387071a4 button.BaseModal_module_dismiss__387071a4[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: stretch;\n color: var(--mono-color1);\n background-color: var(--light-color2);\n border-radius: 0.25rem;\n outline: 1px solid var(--light-color2) !important;\n border: none;\n}\n.BaseModal_module_root__387071a4 .BaseModal_module_footer__387071a4 button.BaseModal_module_dismiss__387071a4[data-elem=base-cell]:hover {\n background-color: var(--light-color1);\n}\n.BaseModal_module_root__387071a4 button.BaseModal_module_close__387071a4[data-elem=base-cell] {\n position: absolute;\n right: 1rem;\n top: 1rem;\n padding: 0.25rem;\n height: auto;\n background: var(--light-color3);\n box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);\n}\n.BaseModal_module_root__387071a4 button.BaseModal_module_close__387071a4[data-elem=base-cell]:hover {\n box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n}\n.BaseModal_module_root__387071a4 button.BaseModal_module_close__387071a4[data-elem=base-cell] .BaseModal_module_icon__387071a4 {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--text-color);\n}";
10112
+ var modules_f23ae002 = {"root":"BaseModal_module_root__387071a4","body":"BaseModal_module_body__387071a4","header":"BaseModal_module_header__387071a4","footer":"BaseModal_module_footer__387071a4","dismiss":"BaseModal_module_dismiss__387071a4","close":"BaseModal_module_close__387071a4","icon":"BaseModal_module_icon__387071a4"};
7774
10113
  n(css$l,{});
7775
10114
 
7776
10115
  var MotionFooter = motion.footer;
@@ -7791,12 +10130,12 @@ var ModalHeader = function ModalHeader(_ref) {
7791
10130
  var title = _ref.title,
7792
10131
  description = _ref.description;
7793
10132
  return jsxs(Fragment, {
7794
- children: [jsx(Text$1, {
10133
+ children: [jsx(Text, {
7795
10134
  component: 'h2',
7796
10135
  variant: 'h2',
7797
10136
  weight: 600,
7798
10137
  children: title
7799
- }), jsx(Text$1, {
10138
+ }), jsx(Text, {
7800
10139
  component: 'span',
7801
10140
  variant: 'b1',
7802
10141
  weight: 400,
@@ -7942,6 +10281,7 @@ var BaseModal = function BaseModal(props) {
7942
10281
  size: 'auto',
7943
10282
  variant: 'text',
7944
10283
  className: modules_f23ae002.close,
10284
+ dataTestId: 'modal-cross-dismiss-btn-test',
7945
10285
  onClick: function onClick() {
7946
10286
  toggle === null || toggle === void 0 || toggle(false);
7947
10287
  },
@@ -7973,7 +10313,7 @@ var DIALOG_DEFAULTS = {
7973
10313
  };
7974
10314
  var Header$1 = function Header(_ref) {
7975
10315
  var title = _ref.title;
7976
- return jsx(Text$1, {
10316
+ return jsx(Text, {
7977
10317
  component: 'h2',
7978
10318
  variant: 'b1',
7979
10319
  weight: 600,
@@ -8126,7 +10466,7 @@ var modules_a3d40e77 = {"root":"Pagination_module_root__198ee6f9","floating":"Pa
8126
10466
  n(css$f,{});
8127
10467
 
8128
10468
  var reducer = function reducer(state, action) {
8129
- var _state$currentPage, _state$currentPage2, _action$payload, _state$currentPage3;
10469
+ var _state$currentPage, _state$currentPage2, _action$payload;
8130
10470
  switch (action.type) {
8131
10471
  case 'NEXT_PAGE':
8132
10472
  return _objectSpread2(_objectSpread2({}, state), {}, {
@@ -8141,14 +10481,17 @@ var reducer = function reducer(state, action) {
8141
10481
  currentPage: (_action$payload = action.payload) !== null && _action$payload !== void 0 ? _action$payload : 1
8142
10482
  });
8143
10483
  case 'SET_STEP':
8144
- var firstRow = (((_state$currentPage3 = state.currentPage) !== null && _state$currentPage3 !== void 0 ? _state$currentPage3 : 1) - 1) * state.step + 1;
8145
- var newPage = Math.ceil(firstRow / action.payload);
8146
- var newTotalPages = state.totalData != null ? Math.ceil(state.totalData / action.payload) : state.totalPages;
8147
- return _objectSpread2(_objectSpread2({}, state), {}, {
8148
- step: action.payload,
8149
- currentPage: newPage,
8150
- totalPages: newTotalPages
8151
- });
10484
+ {
10485
+ var _state$currentPage3;
10486
+ var firstRow = (((_state$currentPage3 = state.currentPage) !== null && _state$currentPage3 !== void 0 ? _state$currentPage3 : 1) - 1) * state.step + 1;
10487
+ var newPage = Math.ceil(firstRow / action.payload);
10488
+ var newTotalPages = state.totalData != null ? Math.ceil(state.totalData / action.payload) : state.totalPages;
10489
+ return _objectSpread2(_objectSpread2({}, state), {}, {
10490
+ step: action.payload,
10491
+ currentPage: newPage,
10492
+ totalPages: newTotalPages
10493
+ });
10494
+ }
8152
10495
  case 'SET_TOTAL_PAGES':
8153
10496
  return _objectSpread2(_objectSpread2({}, state), {}, {
8154
10497
  totalPages: action.payload
@@ -9948,7 +12291,7 @@ var General = function General(_ref) {
9948
12291
  CustomPlaceholder = _ref.customPlaceholder;
9949
12292
  return jsx("div", {
9950
12293
  className: classes(modules_4c78d049.root, className),
9951
- children: CustomPlaceholder ? jsx(CustomPlaceholder, {}) : jsx(Text$1, {
12294
+ children: CustomPlaceholder ? jsx(CustomPlaceholder, {}) : jsx(Text, {
9952
12295
  className: modules_4c78d049.placeholder,
9953
12296
  component: 'span',
9954
12297
  variant: 'b1',
@@ -10027,47 +12370,37 @@ var BaseTable = /*#__PURE__*/forwardRef(function (_ref, ref) {
10027
12370
  return jsx(BaseTableSkeleton, {});
10028
12371
  }
10029
12372
  var tabularData = Array.isArray(tableData) ? tableData : [];
12373
+ var commonTableProps = _objectSpread2({
12374
+ headerData: headerData,
12375
+ customCells: customCells,
12376
+ onRowClick: onRowClick,
12377
+ rowHeight: rowHeight,
12378
+ onCheck: onCheck,
12379
+ checkedRows: checkedRows,
12380
+ setCheckedRows: setCheckedRows,
12381
+ uniqueKey: uniqueKey,
12382
+ checkAsRadio: checkAsRadio,
12383
+ disableCheck: disableCheck
12384
+ }, hideColumnLines !== undefined && {
12385
+ hideColumnLines: hideColumnLines
12386
+ });
10030
12387
  return jsxs("table", {
10031
12388
  ref: ref,
10032
12389
  "data-elem": 'table',
10033
12390
  className: classes(modules_f1817c60.root, tabularData.length === 0 ? modules_f1817c60['no-scroll'] : '', className),
10034
- children: [tabularData.length > 0 && jsx(TableHeader, _objectSpread2({
10035
- headerData: headerData,
12391
+ children: [tabularData.length > 0 && jsx(TableHeader, _objectSpread2(_objectSpread2({}, commonTableProps), {}, {
10036
12392
  expandable: expandable,
10037
- customCells: customCells,
10038
12393
  onSort: onSort,
10039
12394
  sortValue: sortValue,
10040
- onRowClick: onRowClick,
10041
- onCheck: onCheck,
10042
- checkedRows: checkedRows,
10043
- setCheckedRows: setCheckedRows,
10044
- tableData: tabularData,
10045
- disableCheck: disableCheck,
10046
- checkAsRadio: checkAsRadio,
10047
- rowHeight: rowHeight,
10048
- uniqueKey: uniqueKey
10049
- }, hideColumnLines !== undefined && {
10050
- hideColumnLines: hideColumnLines
12395
+ tableData: tabularData
10051
12396
  })), tabularData.length === 0 ? jsx(General, {
10052
12397
  customPlaceholder: emptyPlaceholder
10053
- }) : jsx(TableBody, _objectSpread2({
10054
- ref: ref,
10055
- headerData: headerData,
10056
- customCells: customCells,
12398
+ }) : jsx(TableBody, _objectSpread2(_objectSpread2(_objectSpread2({}, commonTableProps), expandable !== undefined && {
12399
+ expandable: expandable
12400
+ }), {}, {
10057
12401
  tableData: tabularData,
10058
- expandable: expandable,
10059
- rowHeight: rowHeight,
10060
- onRowClick: onRowClick,
10061
12402
  defaultActiveIndex: defaultActiveIndex,
10062
- toggleDrawer: toggleDrawer,
10063
- onCheck: onCheck,
10064
- checkedRows: checkedRows,
10065
- setCheckedRows: setCheckedRows,
10066
- uniqueKey: uniqueKey,
10067
- checkAsRadio: checkAsRadio,
10068
- disableCheck: disableCheck
10069
- }, hideColumnLines !== undefined && {
10070
- hideColumnLines: hideColumnLines
12403
+ toggleDrawer: toggleDrawer
10071
12404
  }))]
10072
12405
  });
10073
12406
  });
@@ -10727,41 +13060,73 @@ var Tabs = function Tabs(props) {
10727
13060
  });
10728
13061
  };
10729
13062
 
10730
- var css = ".Text_module_root__d10e5305 {\n color: var(--text-color);\n}\n.Text_module_root__d10e5305.Text_module_h1__d10e5305 {\n font-size: 2.25rem;\n line-height: 2.75rem;\n}\n.Text_module_root__d10e5305.Text_module_h2__d10e5305 {\n font-size: 1.375rem;\n line-height: 1.688rem;\n}\n.Text_module_root__d10e5305.Text_module_b1__d10e5305 {\n font-size: 1rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b2__d10e5305 {\n font-size: 0.875rem;\n line-height: 1.188rem;\n}\n.Text_module_root__d10e5305.Text_module_b3__d10e5305 {\n font-size: 0.75rem;\n line-height: 1.063rem;\n}\n.Text_module_root__d10e5305.Text_module_regularStroke__d10e5305 {\n font-weight: 400;\n}\n.Text_module_root__d10e5305.Text_module_mediumStroke__d10e5305 {\n font-weight: 500;\n}\n.Text_module_root__d10e5305.Text_module_semiboldStroke__d10e5305 {\n font-weight: 600;\n}\n.Text_module_root__d10e5305.Text_module_boldStroke__d10e5305 {\n font-weight: 800;\n}";
10731
- var modules_22fa3f10 = {"root":"Text_module_root__d10e5305","h1":"Text_module_h1__d10e5305","h2":"Text_module_h2__d10e5305","b1":"Text_module_b1__d10e5305","b2":"Text_module_b2__d10e5305","b3":"Text_module_b3__d10e5305","regular-stroke":"Text_module_regularStroke__d10e5305","medium-stroke":"Text_module_mediumStroke__d10e5305","semibold-stroke":"Text_module_semiboldStroke__d10e5305","bold-stroke":"Text_module_boldStroke__d10e5305"};
13063
+ var css = ".InlineLoader_module_container__3c0b126e {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n font-family: inherit;\n color: inherit;\n}\n\n.InlineLoader_module_iconWrapper__3c0b126e {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 18px;\n height: 18px;\n}\n\n.InlineLoader_module_spinner__3c0b126e {\n width: 14px;\n height: 14px;\n border-radius: 50%;\n border: 2px solid rgba(0, 0, 0, 0.08); /* Faint placeholder track */\n border-top-color: #2563EB; /* Primary branding blue */\n animation: InlineLoader_module_rootsInlineSpin__3c0b126e 0.85s linear infinite;\n}\n\n@keyframes InlineLoader_module_rootsInlineSpin__3c0b126e {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.InlineLoader_module_successIcon__3c0b126e, .InlineLoader_module_errorIcon__3c0b126e {\n width: 16px;\n height: 16px;\n}\n\n.InlineLoader_module_text__3c0b126e {\n font-size: 14px;\n font-weight: 500;\n line-height: 1;\n}";
13064
+ var modules_2de83321 = {"container":"InlineLoader_module_container__3c0b126e","iconWrapper":"InlineLoader_module_iconWrapper__3c0b126e","spinner":"InlineLoader_module_spinner__3c0b126e","roots-inline-spin":"InlineLoader_module_rootsInlineSpin__3c0b126e","successIcon":"InlineLoader_module_successIcon__3c0b126e","errorIcon":"InlineLoader_module_errorIcon__3c0b126e","text":"InlineLoader_module_text__3c0b126e"};
10732
13065
  n(css,{});
10733
13066
 
10734
- var Text = /*#__PURE__*/forwardRef(function (props, ref) {
10735
- var _props$variant = props.variant,
10736
- variant = _props$variant === void 0 ? 'b2' : _props$variant,
10737
- _props$component = props.component,
10738
- component = _props$component === void 0 ? 'span' : _props$component,
10739
- _props$stroke = props.stroke,
10740
- stroke = _props$stroke === void 0 ? 'regular' : _props$stroke,
10741
- weight = props.weight,
10742
- italic = props.italic,
10743
- underline = props.underline,
10744
- children = props.children,
10745
- _props$className = props.className,
10746
- className = _props$className === void 0 ? '' : _props$className,
10747
- _props$attrs = props.attrs,
10748
- attrs = _props$attrs === void 0 ? {} : _props$attrs;
10749
- var TextDOM = /*#__PURE__*/createElement(component, _objectSpread2({
10750
- ref: ref,
10751
- style: _objectSpread2(_objectSpread2(_objectSpread2({}, italic && {
10752
- fontStyle: 'italic'
10753
- }), underline && {
10754
- textDecoration: 'underline'
10755
- }), weight && {
10756
- fontWeight: weight
10757
- }),
10758
- className: classes(modules_22fa3f10.root, modules_22fa3f10[variant], modules_22fa3f10["".concat(stroke, "-stroke")], className)
10759
- }, attrs), children);
10760
- if (/*#__PURE__*/isValidElement(TextDOM)) {
10761
- return TextDOM;
10762
- }
10763
- return null;
10764
- });
13067
+ var SuccessIcon = function SuccessIcon(_ref) {
13068
+ var className = _ref.className;
13069
+ return jsxs("svg", {
13070
+ className: className,
13071
+ viewBox: '0 0 24 24',
13072
+ fill: 'none',
13073
+ xmlns: 'http://www.w3.org/2000/svg',
13074
+ children: [jsx("circle", {
13075
+ cx: '12',
13076
+ cy: '12',
13077
+ r: '12',
13078
+ fill: '#10B981'
13079
+ }), jsx("path", {
13080
+ d: 'M7 13l3 3 7-7',
13081
+ stroke: '#ffffff',
13082
+ strokeWidth: '2.5',
13083
+ strokeLinecap: 'round',
13084
+ strokeLinejoin: 'round'
13085
+ })]
13086
+ });
13087
+ };
13088
+ var ErrorIcon = function ErrorIcon(_ref2) {
13089
+ var className = _ref2.className;
13090
+ return jsxs("svg", {
13091
+ className: className,
13092
+ viewBox: '0 0 24 24',
13093
+ fill: 'none',
13094
+ xmlns: 'http://www.w3.org/2000/svg',
13095
+ children: [jsx("path", {
13096
+ d: 'M12 1L22 6.5V17.5L12 23L2 17.5V6.5L12 1Z',
13097
+ fill: '#DC2626'
13098
+ }), jsx("path", {
13099
+ d: 'M12 7V14M12 17V18',
13100
+ stroke: '#ffffff',
13101
+ strokeWidth: '2.5',
13102
+ strokeLinecap: 'round',
13103
+ strokeLinejoin: 'round'
13104
+ })]
13105
+ });
13106
+ };
13107
+ var InlineLoader = function InlineLoader(_ref3) {
13108
+ var status = _ref3.status,
13109
+ text = _ref3.text,
13110
+ _ref3$className = _ref3.className,
13111
+ className = _ref3$className === void 0 ? '' : _ref3$className;
13112
+ return jsxs("div", {
13113
+ className: classes(modules_2de83321.container, className),
13114
+ "data-testid": 'inline-loader',
13115
+ children: [jsxs("div", {
13116
+ className: modules_2de83321.iconWrapper,
13117
+ children: [status === 'loading' && jsx("div", {
13118
+ className: modules_2de83321.spinner
13119
+ }), status === 'success' && jsx(SuccessIcon, {
13120
+ className: modules_2de83321.successIcon
13121
+ }), status === 'error' && jsx(ErrorIcon, {
13122
+ className: modules_2de83321.errorIcon
13123
+ })]
13124
+ }), text && jsx(Text$1, {
13125
+ className: modules_2de83321.text,
13126
+ children: text
13127
+ })]
13128
+ });
13129
+ };
10765
13130
 
10766
- export { Accordion, Alert$1 as Alert, ArrowIcon, BaseButton$1 as BaseButton, BaseCell, BaseModal$1 as BaseModal, BaseTable as BaseTableV2, Button$1 as Button, CheckIcon, Checkbox$1 as Checkbox, Error$1 as ErrorIcon, IndeterminateIcon, Link, General as NoDataPlaceHolder, Pagination, PaginationList, Skeleton, Step, Stepper, TableBody, TableCell as TableCellV2, TableHeader, TableHeader as TableHeaderV2, TableRow, Table as TableV2, Tabs, Text, ThemedContainer, TickIcon, Toggle, Warning as WarningIcon, getPagination, usePagination };
13131
+ export { Accordion, Alert$1 as Alert, ArrowIcon, BaseButton$1 as BaseButton, BaseCell, BaseModal$1 as BaseModal, BaseTable as BaseTableV2, Button$1 as Button, CheckIcon, Checkbox$1 as Checkbox, ChevronDownIcon, Dropdown$1 as Dropdown, Error$1 as ErrorIcon, Help as HelpIcon, IndeterminateIcon, InlineLoader, Link, General as NoDataPlaceHolder, Pagination, PaginationList, Search as SearchIcon, Skeleton, Step, Stepper, TableBody, TableCell as TableCellV2, TableHeader, TableHeader as TableHeaderV2, TableRow, Table as TableV2, Tabs, Text$1 as Text, TextField$1 as TextField, ThemedContainer, TickIcon, Toggle, Tooltip$1 as Tooltip, Warning as WarningIcon, getPagination, usePagination };
10767
13132
  //# sourceMappingURL=index.js.map