@pismo/marola 0.0.1-alpha.2 → 0.0.1-alpha.20

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 (153) hide show
  1. package/README.md +17 -5
  2. package/dist/Button-2b1peDFT.js +130 -0
  3. package/dist/ClickAwayListener-BSW-Nd-y.js +107 -0
  4. package/dist/Dialog.module-DFEmFdYT.js +30 -0
  5. package/dist/Popup-B6ZSGIEI.js +1248 -0
  6. package/dist/Portal-DIeBsWdL.js +73 -0
  7. package/dist/SelectButton-C8JQKaf4.js +61 -0
  8. package/dist/Tabs.module-jkH1Qjn7.js +22 -0
  9. package/dist/assets/Advice.css +1 -0
  10. package/dist/assets/Button.css +1 -0
  11. package/dist/assets/Checkbox.css +1 -0
  12. package/dist/assets/Chip.css +1 -0
  13. package/dist/assets/Dialog.css +1 -1
  14. package/dist/assets/IconButton.css +1 -0
  15. package/dist/assets/Input.css +1 -0
  16. package/dist/assets/InputSearch.css +1 -0
  17. package/dist/assets/LoadingSpinner.css +1 -1
  18. package/dist/assets/PageHeader.css +1 -0
  19. package/dist/assets/Pagination.css +1 -0
  20. package/dist/assets/SelectButton.css +1 -0
  21. package/dist/assets/Skeleton.css +1 -0
  22. package/dist/assets/Snackbar.css +1 -0
  23. package/dist/assets/SortTooltip.css +1 -0
  24. package/dist/assets/Stepper.css +1 -0
  25. package/dist/assets/Table.css +1 -0
  26. package/dist/assets/Tabs.css +1 -0
  27. package/dist/assets/TextDisplay.css +1 -0
  28. package/dist/assets/Toggle.css +1 -0
  29. package/dist/assets/Tooltip.css +1 -0
  30. package/dist/assets/Typography.css +1 -1
  31. package/dist/combineHooksSlotProps-DVjg9PRh.js +80 -0
  32. package/dist/components/Advice/Advice.d.ts +28 -0
  33. package/dist/components/Advice/Advice.js +40 -0
  34. package/dist/components/Advice/Advice.stories.d.ts +16 -0
  35. package/dist/components/Button/Button.d.ts +32 -0
  36. package/dist/components/Button/Button.js +65 -0
  37. package/dist/components/Button/Button.stories.d.ts +62 -0
  38. package/dist/components/Checkbox/Checkbox.d.ts +34 -0
  39. package/dist/components/Checkbox/Checkbox.js +71 -0
  40. package/dist/components/Checkbox/Checkbox.stories.d.ts +31 -0
  41. package/dist/components/Chip/Chip.d.ts +37 -0
  42. package/dist/components/Chip/Chip.js +113 -0
  43. package/dist/components/Chip/Chip.stories.d.ts +40 -0
  44. package/dist/components/Chip/chip.test.d.ts +1 -0
  45. package/dist/components/Dialog/Actions.js +1 -1
  46. package/dist/components/Dialog/Backdrop.d.ts +1 -1
  47. package/dist/components/Dialog/Backdrop.js +2 -9
  48. package/dist/components/Dialog/CloseIconButton.js +11 -10
  49. package/dist/components/Dialog/Dialog.d.ts +6 -5
  50. package/dist/components/Dialog/Dialog.js +419 -20077
  51. package/dist/components/Dialog/Dialog.stories.d.ts +343 -0
  52. package/dist/components/Dialog/{Title.d.ts → DialogTitle.d.ts} +3 -3
  53. package/dist/components/Dialog/DialogTitle.js +29 -0
  54. package/dist/components/Icon/Icon.d.ts +27 -0
  55. package/dist/components/Icon/Icon.js +122 -0
  56. package/dist/components/Icon/Icon.stories.d.ts +16 -0
  57. package/dist/components/IconButton/Icon.stories.d.ts +15 -0
  58. package/dist/components/IconButton/IconButton.d.ts +36 -0
  59. package/dist/components/IconButton/IconButton.js +40 -0
  60. package/dist/components/Input/Input.d.ts +44 -0
  61. package/dist/components/Input/Input.js +508 -0
  62. package/dist/components/Input/Input.stories.d.ts +43 -0
  63. package/dist/components/InputSearch/InputSearch.d.ts +9 -0
  64. package/dist/components/InputSearch/InputSearch.js +34 -0
  65. package/dist/components/InputSearch/InputSearch.stories.d.ts +39 -0
  66. package/dist/components/LoadingSpinner/LoadingSpinner.d.ts +2 -0
  67. package/dist/components/LoadingSpinner/LoadingSpinner.js +12 -13
  68. package/dist/components/LoadingSpinner/LoadingSpinner.stories.d.ts +14 -0
  69. package/dist/components/PageHeader/PageHeader.d.ts +36 -0
  70. package/dist/components/PageHeader/PageHeader.js +66 -0
  71. package/dist/components/PageHeader/PageHeader.stories.d.ts +43 -0
  72. package/dist/components/Pagination/Pagination.d.ts +55 -0
  73. package/dist/components/Pagination/Pagination.js +236 -0
  74. package/dist/components/Pagination/Pagination.stories.d.ts +17 -0
  75. package/dist/components/Select/Select.d.ts +26 -0
  76. package/dist/components/Select/Select.js +857 -0
  77. package/dist/components/Select/Select.stories.d.ts +22 -0
  78. package/dist/components/Select/SelectButton.d.ts +12 -0
  79. package/dist/components/Select/SelectButton.js +8 -0
  80. package/dist/components/Skeleton/Skeleton.d.ts +25 -0
  81. package/dist/components/Skeleton/Skeleton.js +23 -0
  82. package/dist/components/Skeleton/Skeleton.stories.d.ts +14 -0
  83. package/dist/components/Skeleton/SkeletonCircle.stories.d.ts +14 -0
  84. package/dist/components/Skeleton/SkeletonTable.stories.d.ts +16 -0
  85. package/dist/components/Snackbar/Snackbar.d.ts +25 -0
  86. package/dist/components/Snackbar/Snackbar.js +637 -0
  87. package/dist/components/Snackbar/Snackbar.stories.d.ts +318 -0
  88. package/dist/components/SortTooltip/SortTooltip.d.ts +28 -0
  89. package/dist/components/SortTooltip/SortTooltip.js +93 -0
  90. package/dist/components/Stepper/Stepper.d.ts +26 -0
  91. package/dist/components/Stepper/Stepper.js +48 -0
  92. package/dist/components/Stepper/Stepper.stories.d.ts +16 -0
  93. package/dist/components/Table/Table.d.ts +56 -0
  94. package/dist/components/Table/Table.js +137 -0
  95. package/dist/components/Table/Table.stories.d.ts +29 -0
  96. package/dist/components/Table/TableContext.d.ts +19 -0
  97. package/dist/components/Table/TableContext.js +21 -0
  98. package/dist/components/Table/_Table.TBody.stories.d.ts +14 -0
  99. package/dist/components/Table/_Table.THead.stories.d.ts +14 -0
  100. package/dist/components/Table/_Table.Td.stories.d.ts +16 -0
  101. package/dist/components/Table/_Table.Th.stories.d.ts +15 -0
  102. package/dist/components/Table/_Table.Tr.stories.d.ts +15 -0
  103. package/dist/components/Tabs/Tab.d.ts +14 -0
  104. package/dist/components/Tabs/Tab.js +181 -0
  105. package/dist/components/Tabs/Tab.stories.d.ts +15 -0
  106. package/dist/components/Tabs/TabPanel.d.ts +12 -0
  107. package/dist/components/Tabs/TabPanel.js +118 -0
  108. package/dist/components/Tabs/TabPanel.stories.d.ts +14 -0
  109. package/dist/components/Tabs/Tabs.d.ts +15 -0
  110. package/dist/components/Tabs/Tabs.js +401 -0
  111. package/dist/components/Tabs/Tabs.stories.d.ts +14 -0
  112. package/dist/components/TextDisplay/TextDisplay.d.ts +23 -0
  113. package/dist/components/TextDisplay/TextDisplay.js +37 -0
  114. package/dist/components/TextDisplay/TextDisplay.stories.d.ts +13 -0
  115. package/dist/components/TextDisplay/textDisplay.test.d.ts +1 -0
  116. package/dist/components/Toggle/Toggle.d.ts +11 -0
  117. package/dist/components/Toggle/Toggle.js +266 -0
  118. package/dist/components/Toggle/Toggle.stories.d.ts +21 -0
  119. package/dist/components/Tooltip/Tooltip.d.ts +29 -0
  120. package/dist/components/Tooltip/Tooltip.js +139 -0
  121. package/dist/components/Tooltip/Tooltip.stories.d.ts +33 -0
  122. package/dist/components/Typography/Typography.d.ts +17 -6
  123. package/dist/components/Typography/Typography.js +56 -65
  124. package/dist/components/Typography/Typography.stories.d.ts +32 -0
  125. package/dist/components/Typography/typography.test.d.ts +1 -0
  126. package/dist/index-CH45lKw7.js +840 -0
  127. package/dist/index-CjW42-M-.js +19584 -0
  128. package/dist/main.d.ts +25 -3
  129. package/dist/main.js +67 -15
  130. package/dist/marola.css +1 -0
  131. package/dist/test-utils/assertStyles.d.ts +1 -0
  132. package/dist/test-utils/assertStyles.js +11 -0
  133. package/dist/types/helpers.d.ts +14 -7
  134. package/dist/useButton-DNk3wrQp.js +105 -0
  135. package/dist/useCompoundItem-D1iRfg8D.js +84 -0
  136. package/dist/useControlled-CCMYYdCM.js +31 -0
  137. package/dist/useEnhancedEffect-CJGo-L3B.js +5 -0
  138. package/dist/useEventCallback-xTG9piMa.js +45 -0
  139. package/dist/useIsFocusVisible-BH4IAdcw.js +69 -0
  140. package/dist/useList-B0hog_3-.js +436 -0
  141. package/dist/useTimeout-DxF9kiZL.js +36 -0
  142. package/dist/utils/styleStrings.d.ts +6 -0
  143. package/dist/utils/styleStrings.js +10 -0
  144. package/dist/utils/styleStrings.test.d.ts +1 -0
  145. package/package.json +51 -9
  146. package/dist/Button-REznN-RP.js +0 -1139
  147. package/dist/Dialog.module-BO0mdB7d.js +0 -15
  148. package/dist/assets/CallToActionButton.css +0 -1
  149. package/dist/assets/main.css +0 -1
  150. package/dist/components/CallToActionButton/CallToActionButton.d.ts +0 -23
  151. package/dist/components/CallToActionButton/CallToActionButton.js +0 -57
  152. package/dist/components/Dialog/Title.js +0 -14
  153. package/src/playground/Playground.tsx +0 -58
@@ -0,0 +1,73 @@
1
+ import * as o from "react";
2
+ import { r as P, e as y } from "./index-CjW42-M-.js";
3
+ import { u as T, s as a, P as i } from "./index-CH45lKw7.js";
4
+ import { jsx as c } from "react/jsx-runtime";
5
+ import { u as f } from "./useEnhancedEffect-CJGo-L3B.js";
6
+ function N(t, l, s, n, u) {
7
+ if (process.env.NODE_ENV === "production")
8
+ return null;
9
+ const e = t[l], r = u || l;
10
+ return e == null ? null : e && e.nodeType !== 1 ? new Error(`Invalid ${n} \`${r}\` supplied to \`${s}\`. Expected an HTMLElement.`) : null;
11
+ }
12
+ function h(t) {
13
+ return typeof t == "function" ? t() : t;
14
+ }
15
+ const p = /* @__PURE__ */ o.forwardRef(function(l, s) {
16
+ const {
17
+ children: n,
18
+ container: u,
19
+ disablePortal: e = !1
20
+ } = l, [r, d] = o.useState(null), m = T(/* @__PURE__ */ o.isValidElement(n) ? n.ref : null, s);
21
+ if (f(() => {
22
+ e || d(h(u) || document.body);
23
+ }, [u, e]), f(() => {
24
+ if (r && !e)
25
+ return a(s, r), () => {
26
+ a(s, null);
27
+ };
28
+ }, [s, r, e]), e) {
29
+ if (/* @__PURE__ */ o.isValidElement(n)) {
30
+ const E = {
31
+ ref: m
32
+ };
33
+ return /* @__PURE__ */ o.cloneElement(n, E);
34
+ }
35
+ return /* @__PURE__ */ c(o.Fragment, {
36
+ children: n
37
+ });
38
+ }
39
+ return /* @__PURE__ */ c(o.Fragment, {
40
+ children: r && /* @__PURE__ */ P.createPortal(n, r)
41
+ });
42
+ });
43
+ process.env.NODE_ENV !== "production" && (p.propTypes = {
44
+ // ┌────────────────────────────── Warning ──────────────────────────────┐
45
+ // │ These PropTypes are generated from the TypeScript type definitions. │
46
+ // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
47
+ // └─────────────────────────────────────────────────────────────────────┘
48
+ /**
49
+ * The children to render into the `container`.
50
+ */
51
+ children: i.node,
52
+ /**
53
+ * An HTML element or function that returns one.
54
+ * The `container` will have the portal children appended to it.
55
+ *
56
+ * You can also provide a callback, which is called in a React layout effect.
57
+ * This lets you set the container from a ref, and also makes server-side rendering possible.
58
+ *
59
+ * By default, it uses the body of the top-level document object,
60
+ * so it's simply `document.body` most of the time.
61
+ */
62
+ container: i.oneOfType([N, i.func]),
63
+ /**
64
+ * The `children` will be under the DOM hierarchy of the parent component.
65
+ * @default false
66
+ */
67
+ disablePortal: i.bool
68
+ });
69
+ process.env.NODE_ENV !== "production" && (p.propTypes = y(p.propTypes));
70
+ export {
71
+ N as H,
72
+ p as P
73
+ };
@@ -0,0 +1,61 @@
1
+ import './assets/SelectButton.css';
2
+ import { jsxs as r, jsx as _ } from "react/jsx-runtime";
3
+ import * as o from "react";
4
+ import { forwardRef as u } from "react";
5
+ import { c as b } from "./clsx-DB4S2d7J.js";
6
+ import { Typography as p } from "./components/Typography/Typography.js";
7
+ const m = "_select__listbox__option__text_1mn0r_64", g = "_select_1mn0r_64", x = "_select__popup_1mn0r_80", d = "_select__listbox_1mn0r_64", w = "_select__listbox__option_1mn0r_64", C = "_select__listbox__option__icon_1mn0r_101", f = "_select__list__option__icon_1mn0r_122", e = {
8
+ "u-typography-h1": "_u-typography-h1_1mn0r_1",
9
+ "u-typography-h2": "_u-typography-h2_1mn0r_8",
10
+ "u-typography-h3": "_u-typography-h3_1mn0r_15",
11
+ "u-typography-h4": "_u-typography-h4_1mn0r_22",
12
+ "u-typography-h5": "_u-typography-h5_1mn0r_29",
13
+ "u-typography-h6": "_u-typography-h6_1mn0r_36",
14
+ "u-typography-base": "_u-typography-base_1mn0r_43",
15
+ "u-typography-base--xxl": "_u-typography-base--xxl_1mn0r_48",
16
+ "u-typography-base--xl": "_u-typography-base--xl_1mn0r_52",
17
+ "u-typography-base--lg": "_u-typography-base--lg_1mn0r_56",
18
+ "u-typography-base--sm": "_u-typography-base--sm_1mn0r_60",
19
+ "u-typography-base--bold": "_u-typography-base--bold_1mn0r_64",
20
+ select__listbox__option__text: m,
21
+ "u-typography-base--strikethrough": "_u-typography-base--strikethrough_1mn0r_67",
22
+ "u-typography-base--underlined": "_u-typography-base--underlined_1mn0r_70",
23
+ "u-typography-base--strikethrough-underlined": "_u-typography-base--strikethrough-underlined_1mn0r_73",
24
+ select: g,
25
+ select__popup: x,
26
+ select__listbox: d,
27
+ select__listbox__option: w,
28
+ select__listbox__option__icon: C,
29
+ "select__listbox__option--disabled": "_select__listbox__option--disabled_1mn0r_105",
30
+ "select__listbox__option--selected": "_select__listbox__option--selected_1mn0r_114",
31
+ select__list__option__icon: f,
32
+ "select-button": "_select-button_1mn0r_127",
33
+ "base-Select-popup": "_base-Select-popup_1mn0r_142",
34
+ "select-button__text": "_select-button__text_1mn0r_145",
35
+ "select-button__icon": "_select-button__icon_1mn0r_154",
36
+ "select-button--active": "_select-button--active_1mn0r_160"
37
+ }, v = (t) => /* @__PURE__ */ o.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ o.createElement("path", { d: "M2.11104 4.9999C2.36691 4.9999 2.62291 5.09756 2.81791 5.29287L8.11104 10.5843L13.4048 5.29053C13.7954 4.8999 14.4282 4.8999 14.8188 5.29053C15.2095 5.68115 15.2095 6.31396 14.8188 6.70459L8.81885 12.7046C8.42822 13.0952 7.79541 13.0952 7.40479 12.7046L1.40479 6.70459C1.01416 6.31396 1.01416 5.68115 1.40479 5.29053C1.59854 5.09678 1.85479 4.9999 2.11104 4.9999Z", fill: "currentColor" })), L = (t) => /* @__PURE__ */ o.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ o.createElement("path", { d: "M13.8889 11C13.633 11 13.377 10.9023 13.182 10.707L7.8889 5.41563L2.59515 10.7094C2.20453 11.1 1.57172 11.1 1.18109 10.7094C0.790466 10.3188 0.790466 9.68594 1.18109 9.29532L7.18109 3.29532C7.57172 2.90469 8.20453 2.90469 8.59515 3.29532L14.5952 9.29532C14.9858 9.68594 14.9858 10.3188 14.5952 10.7094C14.4014 10.9031 14.1452 11 13.8889 11Z", fill: "#3F3D4B", fillOpacity: 0.88 })), N = u((t, l) => {
38
+ const { children: a, disabled: c, className: i, "data-testid": h, prefix: s, onClick: y } = t, n = t["aria-expanded"];
39
+ return /* @__PURE__ */ r(
40
+ "button",
41
+ {
42
+ className: b(i, n ? e["select-button--active"] : "", e["select-button"]),
43
+ type: "button",
44
+ onClick: y,
45
+ disabled: c,
46
+ "data-testid": h,
47
+ ref: l,
48
+ children: [
49
+ /* @__PURE__ */ r("span", { className: e["select-button__text"], children: [
50
+ s && /* @__PURE__ */ _(p, { children: s }),
51
+ /* @__PURE__ */ _(p, { children: a })
52
+ ] }),
53
+ /* @__PURE__ */ _("span", { className: e["select-button__icon"], children: n ? /* @__PURE__ */ _(L, {}) : /* @__PURE__ */ _(v, {}) })
54
+ ]
55
+ }
56
+ );
57
+ });
58
+ export {
59
+ N as S,
60
+ e as s
61
+ };
@@ -0,0 +1,22 @@
1
+ import './assets/Tabs.css';
2
+ import * as a from "react";
3
+ const s = /* @__PURE__ */ a.createContext(null);
4
+ process.env.NODE_ENV !== "production" && (s.displayName = "TabsContext");
5
+ function b() {
6
+ const t = a.useContext(s);
7
+ if (t == null)
8
+ throw new Error("No TabsContext provided");
9
+ return t;
10
+ }
11
+ const _ = "_tabs_18ymz_1", e = "_tabs__tab_18ymz_5", o = {
12
+ tabs: _,
13
+ tabs__tab: e,
14
+ "tabs__tab--disabled": "_tabs__tab--disabled_18ymz_22",
15
+ "tabs__tab--selected": "_tabs__tab--selected_18ymz_31",
16
+ "tabs__tab-panel": "_tabs__tab-panel_18ymz_35"
17
+ };
18
+ export {
19
+ s as T,
20
+ o as s,
21
+ b as u
22
+ };
@@ -0,0 +1 @@
1
+ ._u-typography-h1_10rkk_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_10rkk_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_10rkk_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_10rkk_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_10rkk_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_10rkk_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_10rkk_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_10rkk_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_10rkk_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_10rkk_56,._advice_10rkk_56 ._content_10rkk_56,._advice_10rkk_56 p{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_10rkk_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_10rkk_64,._advice_10rkk_56 ._content_10rkk_56,._advice_10rkk_56 p{font-weight:var(--base-bold)}._u-typography-base--strikethrough_10rkk_67{text-decoration:line-through}._u-typography-base--underlined_10rkk_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_10rkk_73{text-decoration:underline line-through}._advice_10rkk_56{display:flex;flex-direction:column;align-items:center;padding:2rem}._advice_10rkk_56 ._content_10rkk_56,._advice_10rkk_56 p{margin:0;color:var(--gray-75)}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1h876_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1h876_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1h876_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1h876_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1h876_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1h876_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1h876_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1h876_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1h876_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1h876_56,._button_1h876_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1h876_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1h876_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1h876_67{text-decoration:line-through}._u-typography-base--underlined_1h876_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1h876_73{text-decoration:underline line-through}._button_1h876_56{padding:10px 35px;cursor:pointer;border:none;border-radius:100px}._button_1h876_56:focus-visible{outline:none}._button--primary_1h876_86{color:var(--white-100);background-color:var(--accent)}._button--primary_1h876_86:hover{background-color:var(--accent-dark)}._button--primary_1h876_86:focus{color:var(--black-100);background-color:var(--accent-lighter)}._button--primary_1h876_86:active{background-color:var(--accent-light)}._button--primary_1h876_86:disabled{color:var(--gray-50);cursor:default;background-color:var(--black-10)}._button--secondary_1h876_105{color:var(--accent);background-color:var(--white-100)}._button--secondary_1h876_105:hover{background-color:var(--gray-5)}._button--secondary_1h876_105:focus{color:var(--black-100)}._button--secondary_1h876_105:active{color:var(--accent-light)}._button--secondary_1h876_105:disabled{color:var(--gray-50);cursor:default}._button--quick_1h876_122{padding:8px 16px;color:var(--accent);background-color:rgb(var(--accent-rgb),.05);border-radius:6px}._button--quick_1h876_122:hover{color:var(--accent-dark);background-color:rgb(var(--accent-rgb),.1)}._button--quick_1h876_122:active{color:var(--accent-light)}._button--quick_1h876_122:focus{color:var(--black-100);background-color:initial;outline:2px solid var(--black-100)}._button--quick_1h876_122:disabled{color:var(--gray-50);cursor:default;background-color:var(--black-10)}._button__loading-container_1h876_145{display:flex;gap:8px;align-items:center}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_18hen_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_18hen_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_18hen_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_18hen_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_18hen_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_18hen_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_18hen_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_18hen_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_18hen_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_18hen_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_18hen_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_18hen_64,._checkbox-wrapper_18hen_64 ._label--highlighted_18hen_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_18hen_67{text-decoration:line-through}._u-typography-base--underlined_18hen_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_18hen_73{text-decoration:underline line-through}._checkbox-wrapper_18hen_64{display:flex;gap:var(--spacing);align-items:center;cursor:pointer}._checkbox-wrapper_18hen_64 input[type=checkbox]{display:none}._checkbox-wrapper_18hen_64 ._label_18hen_64{cursor:pointer;-webkit-user-select:none;user-select:none}._checkbox-wrapper_18hen_64 ._label--highlighted-checked_18hen_90{color:var(--accent)}._checkbox-wrapper_18hen_64 ._checkmark_18hen_93{display:flex;align-items:center;justify-content:center;border:1px solid var(--gray-50);border-radius:var(--border-radius-soft);--small: 1;--normal: 1.5}._checkbox-wrapper_18hen_64 ._checkmark_18hen_93:not(--checked){transition:var(--transition-soft)}._checkbox-wrapper_18hen_64 ._checkmark--checked_18hen_105{transition:var(--transition-soft)}._checkbox-wrapper_18hen_64 ._checkmark--checked_18hen_105._checkmark--light-theme_18hen_108{border:1px solid var(--accent-light)}._checkbox-wrapper_18hen_64 ._checkmark--checked_18hen_105._checkmark--light-theme_18hen_108 svg path,._checkbox-wrapper_18hen_64 ._checkmark--checked_18hen_105._checkmark--light-theme_18hen_108 svg rect{fill:var(--accent)}._checkbox-wrapper_18hen_64 ._checkmark--checked_18hen_105._checkmark--accent-theme_18hen_115{background:var(--accent);border:1px solid var(--accent)}._checkbox-wrapper_18hen_64 ._checkmark--checked_18hen_105._checkmark--accent-theme_18hen_115 svg rect{fill:var(--white-100)}._checkbox-wrapper_18hen_64 ._checkmark--small-size_18hen_122{width:calc(var(--small) * 1rem);height:calc(var(--small) * 1rem)}._checkbox-wrapper_18hen_64 ._checkmark--small-size_18hen_122 svg{transform:scale(calc(var(--small) / var(--normal)))}._checkbox-wrapper_18hen_64 ._checkmark--normal-size_18hen_129{width:calc(var(--normal) * 1rem);height:calc(var(--normal) * 1rem)}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1j9h1_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1j9h1_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1j9h1_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1j9h1_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1j9h1_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1j9h1_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1j9h1_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1j9h1_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1j9h1_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1j9h1_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1j9h1_60,._chip_1j9h1_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1j9h1_64,._chip_1j9h1_60{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1j9h1_67{text-decoration:line-through}._u-typography-base--underlined_1j9h1_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1j9h1_73{text-decoration:underline line-through}._chip_1j9h1_60{display:flex;align-items:center;width:fit-content;padding:.375rem .5rem;background-color:var(--cream);border-width:1px;border-radius:calc(var(--border-radius-soft) * 4)}._chip_1j9h1_60:not(:disabled){color:rgb(var(--gray-95-rgb) .65)}._chip--button_1j9h1_89{cursor:pointer;border-color:transparent}._chip--button_1j9h1_89:disabled{cursor:initial}._chip--button_1j9h1_89:focus-visible{outline:none}._chip--button_1j9h1_89:focus{outline:2px solid var(--black-100)}._chip--outlined_1j9h1_102{padding:.3125rem .5rem;background-color:var(--white-100);border:1px solid var(--border);border-radius:calc(var(--border-radius-soft) * 4)}._chip--contained_1j9h1_108{padding:.3125rem .5rem;border:1px solid var(--border);border-color:var(--accent);border-radius:calc(var(--border-radius-soft) * 4)}._chip__adornment_1j9h1_114{display:flex;align-items:center;margin-right:.5rem}._chip__remove_1j9h1_119{display:flex;margin-left:.5rem}._chip__remove_1j9h1_119:focus-visible{outline:none}._chip__remove_1j9h1_119:focus:not(:disabled){border-radius:calc(var(--border-radius-soft) * 4);outline:2px solid var(--black-100)}._chip__remove--disabled_1j9h1_130{cursor:default}
@@ -1 +1 @@
1
- ._dialog_cknma_1{position:fixed;z-index:1300;top:0;right:0;bottom:0;left:0;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center}._dialog__backdrop_cknma_11{z-index:-1;position:fixed;background-color:rgba(var(--black-100-rgb),.05);width:100%;height:100%;-webkit-tap-highlight-color:transparent}._dialog__panel_cknma_19{font-weight:500;text-align:start;position:relative;display:flex;flex-direction:column;gap:8px;overflow:hidden;background-color:var(--white-100);border-radius:8px;border:1px solid rgb(218,226,237);box-shadow:0 10px 20px rgba(var(--black-100-rgb),.2);padding:24px;width:680px;color:var(--gray-75)}._dialog__title_cknma_35{padding-bottom:var(--spacing);padding-top:var(--spacing)}._dialog__title--small_cknma_39{font-size:var(--small-font)}._dialog__subtitle_cknma_42{font-family:Lato,sans-serif;font-size:20px;font-weight:700;line-height:26px;letter-spacing:0;text-align:left;color:var(--secondary-orange-dark)}._dialog__divider_cknma_51{width:100%;border-top:1px solid var(--gray-10)}._dialog__close-icon_cknma_55{padding:0;margin:0;border:none;background:none;position:absolute;right:calc(var(--spacing) * 2);top:calc(var(--spacing) * 3.375)}._dialog__actions_cknma_64{justify-content:center;margin-bottom:calc(var(--spacing) * 2);gap:var(--spacing);display:flex}
1
+ ._u-typography-h1_yi7uo_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_yi7uo_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_yi7uo_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_yi7uo_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_yi7uo_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_yi7uo_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_yi7uo_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_yi7uo_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_yi7uo_52,._dialog__subtitle_yi7uo_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_yi7uo_56,._dialog__title--small_yi7uo_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_yi7uo_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_yi7uo_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_yi7uo_67{text-decoration:line-through}._u-typography-base--underlined_yi7uo_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_yi7uo_73{text-decoration:underline line-through}._dialog_yi7uo_52{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;display:flex;align-items:center;justify-content:center;-webkit-box-align:center;-webkit-box-pack:center}._dialog__backdrop_yi7uo_87{position:fixed;z-index:-1;width:100%;height:100%;background-color:rgb(var(--black-100-rgb),.05);-webkit-tap-highlight-color:transparent}._dialog__panel_yi7uo_95{position:relative;display:flex;flex-direction:column;gap:8px;width:680px;padding:24px;overflow:hidden;font-weight:500;color:var(--gray-75);text-align:start;background-color:var(--white-100);border:1px solid rgb(218,226,237);border-radius:8px;box-shadow:0 10px 20px rgb(var(--black-100-rgb),.2)}._dialog__title_yi7uo_56{padding-top:8px;padding-bottom:8px}._dialog__subtitle_yi7uo_52{font-family:Lato,sans-serif;color:var(--secondary-orange-dark);text-align:left;letter-spacing:0}._dialog__divider_yi7uo_121{width:100%;border-top:1px solid var(--gray-10)}._dialog__close-icon_yi7uo_125{position:absolute;top:27px;right:16px;padding:0;margin:0;background:none;border:none}._dialog__actions_yi7uo_134{display:flex;gap:8px;justify-content:center;margin-bottom:16px}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1xyj5_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1xyj5_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1xyj5_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1xyj5_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1xyj5_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1xyj5_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1xyj5_43,._icon-button_1xyj5_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1xyj5_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1xyj5_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1xyj5_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1xyj5_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1xyj5_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1xyj5_67{text-decoration:line-through}._u-typography-base--underlined_1xyj5_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1xyj5_73{text-decoration:underline line-through}._icon-button_1xyj5_43{padding:10px;cursor:pointer;background-color:transparent;border:none}._icon-button_1xyj5_43:focus-visible{outline:none}._icon-button--primary_1xyj5_86{color:var(--accent);fill:var(--accent)}._icon-button--primary_1xyj5_86:hover{color:var(--accent-dark);fill:var(--accent-dark)}._icon-button--primary_1xyj5_86:active{color:var(--accent-light);fill:var(--accent-light)}._icon-button--primary_1xyj5_86:focus{color:var(--black-100);outline:2px solid var(--black-100);fill:var(--black-100)}._icon-button--primary_1xyj5_86:disabled{color:var(--gray-50);cursor:default;fill:var(--gray-50)}._icon-button--square_1xyj5_108{color:var(--accent);border:1px solid var(--gray-10);border-radius:6px;fill:var(--accent)}._icon-button--square_1xyj5_108:focus{color:var(--black-100);outline:2px solid var(--black-100);fill:var(--black-100)}._icon-button--square_1xyj5_108:disabled{color:var(--gray-50);cursor:default;fill:var(--gray-50)}._icon-button__container_1xyj5_124{display:flex;gap:8px;align-items:center;text-wrap:nowrap}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_19vkb_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_19vkb_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_19vkb_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_19vkb_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_19vkb_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_19vkb_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_19vkb_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_19vkb_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_19vkb_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_19vkb_56,._input__input-el_19vkb_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_19vkb_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_19vkb_64,._input__input-el_19vkb_56{font-weight:var(--base-bold)}._u-typography-base--strikethrough_19vkb_67{text-decoration:line-through}._u-typography-base--underlined_19vkb_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_19vkb_73{text-decoration:underline line-through}._input__label_19vkb_77{display:block;margin-bottom:.3125rem;color:var(--gray-75)}._input__input-el-wrapper_19vkb_82{display:flex;align-items:center;border:solid .0625rem var(--gray-25);border-radius:.375rem;transition:all .3s}._input__input-el_19vkb_56{all:unset;width:100%;height:2.5rem;padding:0 1rem;color:var(--gray-90);outline:none}._input__input-el_19vkb_56::placeholder{color:var(--gray-50)}._input__left-icon_19vkb_100,._input__right-icon_19vkb_100{display:flex;align-items:center;justify-content:center;height:1rem}._input__left-icon_19vkb_100{padding-left:1rem}._input__right-icon_19vkb_100{padding-right:1rem}._input__messages-wrapper_19vkb_112{display:flex;align-items:center;justify-content:space-between}._input__messages-wrapper_19vkb_112:not(:empty){margin-top:.3125rem}._input__info-message_19vkb_120,._input__error-message_19vkb_120{display:flex;gap:.375rem;align-items:center}._input__info-message_19vkb_120{color:var(--gray-75)}._input__error-message_19vkb_120{color:var(--alert)}._input__chars-counter_19vkb_131{margin-left:auto;color:var(--gray-75)}._input--disabled_19vkb_135 ._input__input-el_19vkb_56{color:var(--gray-50)}._input_19vkb_56:has(._input--disabled_19vkb_135) ._input__label_19vkb_77{color:var(--gray-25)}._input--focused_19vkb_141._input__input-el-wrapper_19vkb_82{border-color:var(--accent)}._input--error_19vkb_144._input__input-el-wrapper_19vkb_82{border-color:var(--alert)}._input__input-el-wrapper_19vkb_82:hover:not(._input--disabled_19vkb_135,._input--focused_19vkb_141,._input--error_19vkb_144){border-color:var(--gray-75)}
@@ -0,0 +1 @@
1
+ ._inputSearch_114e1_1 input[type=search]::-webkit-search-cancel-button{width:1rem;height:1rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;pointer-events:none;background:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_3694_1860)'%3e%3cpath%20d='M7.97207%206.94064L9.46895%205.46876C9.7627%205.17814%2010.2377%205.17814%2010.5033%205.46876C10.8221%205.76251%2010.8221%206.23751%2010.5033%206.50314L9.05957%207.97189L10.5033%209.46876C10.8221%209.76251%2010.8221%2010.2375%2010.5033%2010.5031C10.2377%2010.8219%209.7627%2010.8219%209.46895%2010.5031L7.97207%209.05939L6.50332%2010.5031C6.2377%2010.8219%205.7627%2010.8219%205.46895%2010.5031C5.17832%2010.2375%205.17832%209.76251%205.46895%209.46876L6.94082%207.97189L5.46895%206.50314C5.17832%206.23751%205.17832%205.76251%205.46895%205.46876C5.7627%205.17814%206.2377%205.17814%206.50332%205.46876L7.97207%206.94064Z'%20fill='%23838192'/%3e%3cpath%20opacity='0.4'%20d='M0%208C0%203.58125%203.58125%200%208%200C12.4187%200%2016%203.58125%2016%208C16%2012.4187%2012.4187%2016%208%2016C3.58125%2016%200%2012.4187%200%208ZM5.46875%206.50313L6.94063%207.97188L5.46875%209.46875C5.17812%209.7625%205.17812%2010.2375%205.46875%2010.5031C5.7625%2010.8219%206.2375%2010.8219%206.50313%2010.5031L7.97188%209.05937L9.46875%2010.5031C9.7625%2010.8219%2010.2375%2010.8219%2010.5031%2010.5031C10.8219%2010.2375%2010.8219%209.7625%2010.5031%209.46875L9.05937%207.97188L10.5031%206.50313C10.8219%206.2375%2010.8219%205.7625%2010.5031%205.46875C10.2375%205.17812%209.7625%205.17812%209.46875%205.46875L7.97188%206.94063L6.50313%205.46875C6.2375%205.17812%205.7625%205.17812%205.46875%205.46875C5.17812%205.7625%205.17812%206.2375%205.46875%206.50313Z'%20fill='%23838192'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_3694_1860'%3e%3crect%20width='16'%20height='16'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") no-repeat 50% 50%;background-size:contain;border-radius:50%;opacity:0}._inputSearch_114e1_1 input[type=search]:focus::-webkit-search-cancel-button{margin-left:1rem;pointer-events:all;cursor:pointer;opacity:1}
@@ -1 +1 @@
1
- ._ls-ring_19dsy_1{display:inline-block;position:relative;width:18px;height:18px}._ls-ring_19dsy_1>div{box-sizing:border-box;display:block;position:absolute;width:14px;height:14px;margin:auto;border:2px solid var(--white-100);border-radius:50%;animation:_ls-ring_19dsy_1 1.2s cubic-bezier(.5,0,.5,1) infinite;border-color:var(--white-100) transparent transparent transparent;top:0;right:0;bottom:0;left:0}._ls-ring_19dsy_1 div:nth-child(1){animation:none;opacity:40%;border-color:var(--white-100)}._ls-ring_19dsy_1 div:nth-child(2){animation-delay:-.45s}._ls-ring_19dsy_1 div:nth-child(3){animation-delay:-.3s}._ls-ring_19dsy_1 div:nth-child(4){animation-delay:-.15s}._ls-ring--invert_19dsy_34>div{border:2px solid var(--accent);border-color:var(--accent) transparent transparent transparent}._ls-ring--invert_19dsy_34 div:nth-child(1){animation:none;opacity:40%;border-color:var(--accent)}@keyframes _ls-ring_19dsy_1{0%{transform:rotate(0)}to{transform:rotate(360deg)}}
1
+ ._ls-ring_elvjz_1{position:relative;display:inline-block;width:18px;height:18px}._ls-ring_elvjz_1>div{position:absolute;top:0;right:0;bottom:0;left:0;box-sizing:border-box;display:block;width:14px;height:14px;margin:auto;border:2px solid var(--white-100);border-color:var(--white-100) transparent transparent transparent;border-radius:50%;animation:_ls-ring_elvjz_1 1.2s cubic-bezier(.5,0,.5,1) infinite}._ls-ring_elvjz_1 div:nth-child(1){border-color:var(--white-100);opacity:.4;animation:none}._ls-ring_elvjz_1 div:nth-child(2){animation-delay:-.45s}._ls-ring_elvjz_1 div:nth-child(3){animation-delay:-.3s}._ls-ring_elvjz_1 div:nth-child(4){animation-delay:-.15s}._ls-ring--invert_elvjz_34>div{border:2px solid var(--accent);border-color:var(--accent) transparent transparent transparent}._ls-ring--invert_elvjz_34 div:nth-child(1){border-color:var(--accent);opacity:.4;animation:none}@keyframes _ls-ring_elvjz_1{0%{transform:rotate(0)}to{transform:rotate(360deg)}}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_8gwjb_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_8gwjb_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_8gwjb_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_8gwjb_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_8gwjb_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_8gwjb_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_8gwjb_43,._page-header__main-left-content_8gwjb_43 ._subtitle_8gwjb_43,._page-header__top-content_8gwjb_43 button{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_8gwjb_48,._page-header__main-left-content_8gwjb_43 ._title_8gwjb_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_8gwjb_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_8gwjb_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_8gwjb_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_8gwjb_64,._page-header__main-left-content_8gwjb_43 ._title_8gwjb_48{font-weight:var(--base-bold)}._u-typography-base--strikethrough_8gwjb_67{text-decoration:line-through}._u-typography-base--underlined_8gwjb_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_8gwjb_73{text-decoration:underline line-through}._page-header_8gwjb_43{display:flex;flex-direction:column;justify-content:center;width:100%;min-height:7.375rem;background:var(--cream);-webkit-font-smoothing:antialiased!important}._page-header_8gwjb_43:has(._page-header__top-content_8gwjb_43){justify-content:flex-start}._page-header__top-content_8gwjb_43,._page-header__main-content_8gwjb_89,._page-header__bottom-content_8gwjb_89{width:63.875rem;max-width:100%;margin:0 auto}._page-header__top-content_8gwjb_43{padding:1rem 0 .5rem}._page-header__top-content_8gwjb_43 button{all:unset;display:inline-flex;gap:.5rem;align-items:center;width:fit-content;height:1.125rem;color:var(--accent);cursor:pointer;transition:all .3s}._page-header__top-content_8gwjb_43 button:hover{color:var(--accent-dark)}._page-header__main-content_8gwjb_89{display:flex}._page-header__main-left-content_8gwjb_43{display:flex;flex:1;flex-direction:column;justify-content:center}._page-header__main-left-content_8gwjb_43 ._title_8gwjb_48,._page-header__main-left-content_8gwjb_43 ._subtitle_8gwjb_43{display:block;width:100%;padding:0;margin:0;color:var(--gray-90)}._page-header__main-right-content_8gwjb_128{display:flex;align-items:center;margin-bottom:1.125rem}._page-header__bottom-content_8gwjb_89{margin-top:.8125rem}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_ondmz_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_ondmz_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_ondmz_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_ondmz_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_ondmz_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_ondmz_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_ondmz_43,._pagination_ondmz_43 ._per-page-container_ondmz_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_ondmz_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_ondmz_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_ondmz_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_ondmz_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_ondmz_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_ondmz_67{text-decoration:line-through}._u-typography-base--underlined_ondmz_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_ondmz_73{text-decoration:underline line-through}._pagination_ondmz_43{display:flex;gap:16px;align-items:center;justify-content:space-between;padding:24px 0}._pagination_ondmz_43 ._per-page-container_ondmz_43{display:flex;gap:.25rem;align-items:center;color:var(--gray-90)}._pagination_ondmz_43 ._per-page-container_ondmz_43 select{padding:4px 8px;margin:0 8px;border:1px solid var(--gray-10);border-radius:var(--border-radius)}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96{display:flex;gap:8px;align-items:center}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 li{display:flex;padding:0;margin:0;list-style:none}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._pages-navigator-container__label_ondmz_107,._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._page-number__btn_ondmz_107{font-size:var(--body-font-size-small);font-weight:var(--body-bold);line-height:var(--body-line-height-small);color:var(--gray-90);cursor:default}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 button{cursor:pointer;background-color:transparent;border:none;outline:none}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._pages-navigator-container__previous-next-btn_ondmz_120{font-size:var(--body-font-size-tiny);font-weight:var(--body-bold);line-height:var(--body-line-height-tiny);color:var(--accent);transition:all .3s}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._pages-navigator-container__previous-next-btn_ondmz_120:hover{font-weight:var(--heading-font-weight);color:var(--accent-dark)}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._pages-navigator-container__previous-next-btn_ondmz_120:disabled{font-weight:var(--heading-font-weight);color:var(--gray-50);cursor:default}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._page-number__btn_ondmz_107{width:2rem;height:2rem;cursor:pointer;transition:all .3s}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._page-number__btn_ondmz_107:hover{color:var(--accent-dark)}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._page-number__btn--selected_ondmz_145{color:var(--white-100);background-color:var(--accent);border-radius:var(--border-radius)}._pagination_ondmz_43 ._pages-navigator-container_ondmz_96 ._page-number__btn--selected_ondmz_145:hover{background-color:var(--accent-light)}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1mn0r_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1mn0r_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1mn0r_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1mn0r_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1mn0r_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1mn0r_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1mn0r_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1mn0r_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1mn0r_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1mn0r_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1mn0r_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1mn0r_64,._select__listbox__option__text_1mn0r_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1mn0r_67{text-decoration:line-through}._u-typography-base--underlined_1mn0r_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1mn0r_73{text-decoration:underline line-through}._select_1mn0r_64{background-color:red}._select__popup_1mn0r_80{z-index:9999}._select__listbox_1mn0r_64{min-width:10.75rem;max-height:400px;padding:.5rem;margin-top:.25rem;overflow-y:auto;background-color:#fff;border-radius:var(--border-radius);box-shadow:0 6px 12px rgba(var(--black-100-rgb),20%)}._select__listbox__option_1mn0r_64{display:flex;padding:.625rem;color:rgba(var(--gray-95-rgb),88%);list-style:none;cursor:pointer;border-radius:var(--border-radius-soft)}._select__listbox__option__icon_1mn0r_101{display:flex;margin-right:.5rem}._select__listbox__option_1mn0r_64:hover:not(._select__listbox__option--disabled_1mn0r_105){padding:.625rem;color:var(--accent);background-color:rgba(var(--black-100-rgb),4%);border-radius:var(--border-radius-soft)}._select__listbox__option_1mn0r_64:active:not(._select__listbox__option--disabled_1mn0r_105){color:var(--accent-dark)}._select__listbox__option--selected_1mn0r_114{background-color:var(--accent-lighter)}._select__listbox__option--disabled_1mn0r_105{color:rgba(var(--gray-95-rgb),25%);cursor:default;border:transparent}._select__listbox__option--disabled_1mn0r_105 ._select__list__option__icon_1mn0r_122{color:rgba(var(--gray-95-rgb),25%);fill:rgba(var(--gray-95-rgb),25%)}._select-button_1mn0r_127{display:flex;gap:.5rem;align-items:center;justify-content:space-between;width:11.875rem;min-width:fit-content;padding:.625rem 1rem;color:rgba(var(--gray-95-rgb),88%);cursor:pointer;background-color:var(--white-100);border:1px solid rgba(var(--black-100-rgb),6%);border-radius:var(--border-radius);outline:none}._select-button_1mn0r_127 ._base-Select-popup_1mn0r_142{z-index:1}._select-button__text_1mn0r_145{display:flex;gap:.5rem;width:100%;overflow:hidden;text-align:start;text-overflow:ellipsis;text-wrap:nowrap}._select-button__icon_1mn0r_154{display:flex}._select-button__icon_1mn0r_154 svg{color:rgba(var(--gray-95-rgb),88%)}._select-button--active_1mn0r_160{border:1px solid var(--accent)}._select-button_1mn0r_127:disabled{color:rgba(var(--gray-95-rgb),25%);cursor:default;border:1px solid var(--gray-10)}._select-button_1mn0r_127:disabled ._select-button__icon_1mn0r_154 svg{color:rgba(var(--gray-95-rgb),25%)}._select-button_1mn0r_127:hover:not(._select-button_1mn0r_127:disabled){border:1px solid var(--gray-25)}._select-button_1mn0r_127:focus:not(._select-button_1mn0r_127:disabled),._select-button_1mn0r_127:active:not(._select-button_1mn0r_127:disabled){border:1px solid var(--accent)}
@@ -0,0 +1 @@
1
+ ._skeleton_1lho5_1:not(._skeleton--table-type_1lho5_1){background-image:linear-gradient(.25turn,transparent,var(--gray-5),transparent),linear-gradient(var(--gray-10),var(--gray-10));background-repeat:no-repeat;background-position:200% 0,0 0;background-size:200% auto;border-radius:var(--border-radius);animation:_skeletonLoading_1lho5_1 1.5s infinite}._skeleton_1lho5_1:not(._skeleton--table-type_1lho5_1):not(thead){display:block;width:100%;height:1.25rem;content:" "}._skeleton_1lho5_1:not(._skeleton--table-type_1lho5_1)._skeleton--circle-type_1lho5_15{border-radius:50%}._skeleton_1lho5_1._skeleton--table-type_1lho5_1{display:table;width:100%;border-spacing:0}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 thead tr{background-color:var(--gray-10)}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 th ._skeleton_1lho5_1{height:.5rem;background:var(--white-100);animation:none}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 td ._skeleton_1lho5_1{height:.804rem}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 thead tr th:first-child{border-radius:var(--border-radius) 0 0 var(--border-radius)}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 thead tr th:last-child{border-radius:0 var(--border-radius) var(--border-radius) 0}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 thead,._skeleton_1lho5_1._skeleton--table-type_1lho5_1 tr,._skeleton_1lho5_1._skeleton--table-type_1lho5_1 td,._skeleton_1lho5_1._skeleton--table-type_1lho5_1 tbody{display:inherit;border:none}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 thead{display:table-header-group}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 tbody{display:table-row-group}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 tr{display:table-row}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 td,._skeleton_1lho5_1._skeleton--table-type_1lho5_1 th{display:table-cell;padding:1.6621rem 1rem;border:none}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 tr:nth-child(2n){background:inherit}._skeleton_1lho5_1._skeleton--table-type_1lho5_1 tr+tr td{border-top:1px solid var(--gray-10)}@keyframes _skeletonLoading_1lho5_1{to{background-position:-100% 0,0 0}}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1w4kg_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1w4kg_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1w4kg_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1w4kg_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1w4kg_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1w4kg_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1w4kg_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1w4kg_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1w4kg_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1w4kg_56,._snackbar--message_1w4kg_56 p{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1w4kg_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1w4kg_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1w4kg_67{text-decoration:line-through}._u-typography-base--underlined_1w4kg_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1w4kg_73{text-decoration:underline line-through}._snackbar_1w4kg_56{display:block;width:40.5rem;margin:0 auto}@keyframes _bottomToTop_1w4kg_1{0%{transform:translateY(100%)}to{transform:translateY(0)}}._snackbar__snackbar-el-wrapper_1w4kg_90{position:fixed;bottom:1rem;z-index:5500}._snackbar--content_1w4kg_95{display:flex;align-items:center;justify-content:space-between;width:40.5rem;height:3.5rem;padding:1rem;overflow:hidden;border-radius:8px}._snackbar_1w4kg_56:has(._snackbar--success_1w4kg_105) ._snackbar--content_1w4kg_95{background-color:var(--secondary-green-darker)}._snackbar_1w4kg_56:has(._snackbar--error_1w4kg_108) ._snackbar--content_1w4kg_95{background-color:var(--alert)}._snackbar_1w4kg_56:has(._snackbar--warning_1w4kg_111) ._snackbar--content_1w4kg_95{background-color:var(--secondary-orange)}._snackbar--message_1w4kg_56{text-align:start}._snackbar--message_1w4kg_56 p{font-weight:900;color:var(--white-100)}._snackbar--action_1w4kg_121{position:absolute;top:1rem;right:1rem;padding:0;margin:0;cursor:pointer;background:none;border:none}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1hhgh_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1hhgh_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1hhgh_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1hhgh_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1hhgh_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1hhgh_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1hhgh_43,._sort-tooltip_1hhgh_43 ul li button{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1hhgh_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1hhgh_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1hhgh_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1hhgh_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1hhgh_64,._sort-tooltip_1hhgh_43 ul li button{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1hhgh_67{text-decoration:line-through}._u-typography-base--underlined_1hhgh_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1hhgh_73{text-decoration:underline line-through}._sort-tooltip_1hhgh_43 ul{display:flex;flex-direction:column;gap:16px;padding:0;margin:0;list-style:none}._sort-tooltip_1hhgh_43 ul li button{display:flex;gap:8px;color:var(--gray-75);cursor:pointer;background-color:unset;border:none;outline:none}._sort-tooltip_1hhgh_43 ul li button._button--selected_1hhgh_94{color:var(--accent)}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_a47qe_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_a47qe_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_a47qe_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_a47qe_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_a47qe_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_a47qe_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_a47qe_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_a47qe_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_a47qe_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_a47qe_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_a47qe_60,._stepper_a47qe_60 ._item_a47qe_60 ._name_a47qe_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_a47qe_64,._stepper_a47qe_60 ._item--active_a47qe_64 ._name_a47qe_60,._stepper_a47qe_60 ._item--completed_a47qe_64 ._counter_a47qe_64,._stepper_a47qe_60 ._item_a47qe_60 ._counter_a47qe_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_a47qe_67{text-decoration:line-through}._u-typography-base--underlined_a47qe_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_a47qe_73{text-decoration:underline line-through}._stepper_a47qe_60{display:flex;justify-content:space-between;margin:2.5rem auto}._stepper_a47qe_60 ._item_a47qe_60{position:relative;display:flex;flex:1;flex-direction:column;align-items:center}._stepper_a47qe_60 ._item_a47qe_60:before{position:absolute;top:20px;left:-50%;z-index:2;width:100%;content:"";border-bottom:2px solid var(--gray-50);transition:all var(--transition-long)}._stepper_a47qe_60 ._item_a47qe_60:after{position:absolute;top:20px;left:50%;z-index:2;width:100%;content:"";border-bottom:2px solid var(--gray-50);transition:all var(--transition-long)}._stepper_a47qe_60 ._item_a47qe_60 ._counter_a47qe_64{position:relative;z-index:5;display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;margin-bottom:.5rem;line-height:1rem;color:var(--gray-50);background-color:var(--white-100);border:2px solid var(--gray-50);border-radius:50%;transition:all var(--transition-long)}._stepper_a47qe_60 ._item_a47qe_60 ._name_a47qe_60{color:var(--gray-50);text-align:center;transition:all var(--transition-long)}._stepper_a47qe_60 ._item_a47qe_60:first-child:before,._stepper_a47qe_60 ._item_a47qe_60:last-child:after{content:none}._stepper_a47qe_60 ._item--completed_a47qe_64 ._counter_a47qe_64{color:var(--white-100);background-color:var(--secondary-green-dark);border-color:var(--secondary-green-dark);transition:all var(--transition-long)}._stepper_a47qe_60 ._item--completed_a47qe_64 ._name_a47qe_60{font-weight:900;color:var(--secondary-green-dark);transition:all var(--transition-long)}._stepper_a47qe_60 ._item--completed_a47qe_64:after{position:absolute;top:20px;left:50%;z-index:3;width:100%;content:"";border-bottom:2px solid var(--secondary-green-dark);transition:all var(--transition-long)}._stepper_a47qe_60 ._item--active_a47qe_64 ._counter_a47qe_64{font-size:700;color:var(--secondary-green-dark);background-color:var(--white-100);border-color:var(--secondary-green-dark);transition:all var(--transition-long)}._stepper_a47qe_60 ._item--active_a47qe_64 ._name_a47qe_60{color:var(--gray-75);transition:all var(--transition-long)}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1gspp_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1gspp_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1gspp_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1gspp_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1gspp_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1gspp_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1gspp_43,._table_1gspp_43 tbody{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1gspp_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1gspp_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1gspp_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1gspp_60,._table_1gspp_43 thead{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1gspp_64,._table_1gspp_43 thead{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1gspp_67{text-decoration:line-through}._u-typography-base--underlined_1gspp_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1gspp_73{text-decoration:underline line-through}._table_1gspp_43{color:var(--secondary-orange);border-spacing:0}._table--full-width_1gspp_81{width:100%}._table--white-theme_1gspp_84{background:var(--white-100)}._table--transparent-theme_1gspp_87{background:transparent}._table_1gspp_43 th._cell--left-alignment_1gspp_90,._table_1gspp_43 td._cell--left-alignment_1gspp_90{text-align:left}._table_1gspp_43 th._cell--center-alignment_1gspp_94,._table_1gspp_43 td._cell--center-alignment_1gspp_94{text-align:center}._table_1gspp_43 th._cell--right-alignment_1gspp_98,._table_1gspp_43 td._cell--right-alignment_1gspp_98{text-align:right}._table_1gspp_43 thead{color:var(--gray-90);text-transform:uppercase}._table_1gspp_43 thead tr th{--children-pv: 4px;--children-ph: 8px;align-items:center;padding:calc(1.5rem - var(--children-pv)) calc(.75rem - var(--children-ph));line-height:1rem;border-bottom:1px solid var(--gray-25)}._table_1gspp_43 thead tr th ._th__wrapper_1gspp_114{padding:var(--children-pv) var(--children-ph)}._table_1gspp_43 thead tr th ._th__wrapper--pressed_1gspp_117{background-color:var(--gray-10);border-radius:6px}._table_1gspp_43 thead tr th ._th__wrapper--clickable_1gspp_121{cursor:pointer}._table_1gspp_43 thead tr th ._th__wrapper_1gspp_114 ._th__sort-icon-container_1gspp_124{padding-left:4px}._table_1gspp_43 tbody{color:var(--gray-90)}._table_1gspp_43 tbody tr:hover:not(._tr__row-or-cell--disabled_1gspp_130){background-color:rgb(var(--gray-5-rgb),.5)}._table_1gspp_43 tbody ._tr_1gspp_130,._table_1gspp_43 tbody ._td_1gspp_134{padding:16px 12px;line-height:var(--body-line-height);border-bottom:1px solid var(--gray-10)}._table_1gspp_43 tbody ._tr__row-or-cell--clickable_1gspp_139,._table_1gspp_43 tbody ._td__row-or-cell--clickable_1gspp_140{cursor:pointer}._table_1gspp_43 tbody ._tr__row-or-cell--disabled_1gspp_130,._table_1gspp_43 tbody ._td__row-or-cell--disabled_1gspp_144{background:var(--cream);filter:grayscale(1)}._table_1gspp_43 tbody ._tr__row-or-cell--disabled_1gspp_130 ._td-wrapper_1gspp_148,._table_1gspp_43 tbody ._td__row-or-cell--disabled_1gspp_144 ._td-wrapper_1gspp_148{opacity:.25}
@@ -0,0 +1 @@
1
+ ._tabs_18ymz_1{gap:8px;width:100%}._tabs__tab_18ymz_5{min-width:94px;height:48px;padding:0 8px 0 0;color:var(--gray-75);cursor:pointer;background-color:var(--white-100);border:none}._tabs__tab_18ymz_5:hover{color:var(--hover);border-bottom:2px solid var(--hover)}._tabs__tab_18ymz_5:active{color:var(--active);border-bottom:2px solid var(--active)}._tabs__tab--disabled_18ymz_22{color:#00000040;cursor:default;border-bottom:2px solid rgba(0,0,0,.25)}._tabs__tab--disabled_18ymz_22:focus,._tabs__tab--disabled_18ymz_22:active,._tabs__tab--disabled_18ymz_22:hover{color:#00000040;border-bottom:2px solid rgba(0,0,0,.25)}._tabs__tab--selected_18ymz_31{color:var(--accent);border-bottom:2px solid var(--accent)}._tabs__tab-panel_18ymz_35{width:100%;margin-top:16px}
@@ -0,0 +1 @@
1
+ ._container_13z5o_1{display:flex;flex-direction:column}
@@ -0,0 +1 @@
1
+ ._u-typography-h1_1rzg2_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_1rzg2_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_1rzg2_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_1rzg2_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_1rzg2_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_1rzg2_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_1rzg2_43,._toggle__label_1rzg2_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_1rzg2_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_1rzg2_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_1rzg2_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_1rzg2_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_1rzg2_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_1rzg2_67{text-decoration:line-through}._u-typography-base--underlined_1rzg2_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_1rzg2_73{text-decoration:underline line-through}._toggle_1rzg2_43{position:relative;display:flex;gap:1rem;align-items:center;cursor:pointer}._toggle__toggle-el-wrapper_1rzg2_84{width:2.25rem;height:1.5rem}._toggle_1rzg2_43 ._input_1rzg2_88{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;margin:0;cursor:inherit;opacity:0}._toggle_1rzg2_43 ._thumb_1rzg2_99{position:relative;top:.375rem;left:.375rem;display:block;width:.75rem;height:.75rem;background-color:var(--gray-90);border-radius:.75rem;opacity:.4;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.12s;transition-property:all}._toggle_1rzg2_43 ._track_1rzg2_113{position:absolute;display:block;width:2.25rem;height:1.5rem;background:var(--white-100);border-radius:1.5rem;box-shadow:inset 0 0 0 .25rem var(--gray-50);opacity:.4}._toggle--focus-visible_1rzg2_123._toggle__toggle-el-wrapper_1rzg2_84 ._track_1rzg2_113{border:1px solid var(--black-100);opacity:1}._toggle--checked_1rzg2_127._toggle__toggle-el-wrapper_1rzg2_84 ._thumb_1rzg2_99{left:1.125rem;background-color:var(--accent);opacity:1}._toggle--checked_1rzg2_127._toggle__toggle-el-wrapper_1rzg2_84 ._track_1rzg2_113{background:var(--accent);box-shadow:none;opacity:.4}._toggle__label_1rzg2_43{color:var(--gray-75)}._toggle__toggle-el-wrapper_1rzg2_84:hover:not(._toggle--focus-visible_1rzg2_123,._toggle--checked_1rzg2_127,._toggle--disabled_1rzg2_140) ._track_1rzg2_113{border-color:var(--gray-90);opacity:1}._toggle__toggle-el-wrapper_1rzg2_84:hover:not(._toggle--focus-visible_1rzg2_123,._toggle--checked_1rzg2_127,._toggle--disabled_1rzg2_140) ._thumb_1rzg2_99{opacity:1}._toggle_1rzg2_43:has(._toggle__toggle-el-wrapper_1rzg2_84:hover:not(._toggle--focus-visible_1rzg2_123,._toggle--checked_1rzg2_127,._toggle--disabled_1rzg2_140)) ._toggle__label_1rzg2_43{color:var(--black-100)}._toggle_1rzg2_43:has(._toggle--disabled_1rzg2_140) ._toggle__label_1rzg2_43{color:var(--gray-50)}._toggle_1rzg2_43:has(._toggle--disabled_1rzg2_140) ._track_1rzg2_113{border-color:#dbdae266}._toggle_1rzg2_43:has(._toggle--disabled_1rzg2_140) ._thumb_1rzg2_99{background-color:var(--gray-25);opacity:1}._toggle_1rzg2_43:has(._toggle--disabled_1rzg2_140) ._toggle--checked_1rzg2_127 ._toggle__label_1rzg2_43{font-weight:900;color:var(--accent)}._toggle_1rzg2_43:has(._toggle--disabled_1rzg2_140) ._toggle--checked_1rzg2_127 ._thumb_1rzg2_99{left:1.125rem;background-color:var(--accent);opacity:1}._toggle_1rzg2_43:has(._toggle--disabled_1rzg2_140) ._toggle--checked_1rzg2_127 ._track_1rzg2_113{background:var(--accent);box-shadow:none;opacity:.4}._toggle_1rzg2_43:has(._toggle--checked_1rzg2_127) ._toggle__label_1rzg2_43{font-weight:900;color:var(--accent)}._toggle_1rzg2_43:has(._toggle--focus-visible_1rzg2_123) ._toggle__label_1rzg2_43{color:var(--black-100)}
@@ -0,0 +1 @@
1
+ ._tooltip_1dujm_1{border-radius:var(--border-radius);box-shadow:0 6px 12px #0003}._tooltip--small-padding_1dujm_5{padding:10px}._tooltip--normal-padding_1dujm_8{padding:16px}._tooltip--white-theme_1dujm_11{color:var(--gray-75);background-color:var(--white-100)}._tooltip--black-theme_1dujm_15{color:var(--gray-10);background-color:var(--gray-90)}._tooltip--animation_1dujm_20._tooltip--anim-open_1dujm_20{animation:_tooltip--open-animation_1dujm_1 .3s ease-out both}._tooltip--animation_1dujm_20._tooltip--anim-close_1dujm_23{animation:_tooltip--close-animation_1dujm_1 .3s ease-out forwards}@keyframes _tooltip--open-animation_1dujm_1{0%{opacity:0;transform:translateY(-8px) scale(.95)}50%{opacity:1;transform:translateY(4px) scale(1.05)}to{opacity:1;transform:translateY(0) scale(1)}}@keyframes _tooltip--close-animation_1dujm_1{0%{filter:blur(0);opacity:1;transform:scale(1) rotate(0)}to{filter:blur(3px);opacity:0;transform:scale(1.2) rotate(4deg)}}
@@ -1 +1 @@
1
- ._h1_111i6_1{font-size:var(--heading-font-size-xl);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-xl);margin:0}._h1--bold_111i6_7{font-weight:var(--typography-heading-bold)}._h2_111i6_11{font-size:var(--heading-font-size-l);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-l);margin:0}._h2--bold_111i6_17{font-weight:var(--typography-heading-bold)}._h3_111i6_21{font-size:var(--heading-font-size);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height);margin:0}._h3--bold_111i6_27{font-weight:var(--typography-heading-bold)}._h4_111i6_31{font-size:var(--heading-font-size-s);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-s);margin:0}._h4--bold_111i6_37{font-weight:var(--typography-heading-bold)}._body_111i6_41{font-size:var(--body-font-size);line-height:var(--body-line-height);font-weight:var(--body-weight)}._body--large_111i6_46{font-size:var(--body-font-size-large);line-height:var(--body-line-height-large)}._body--medium_111i6_50{font-size:var(--body-font-size-medium);line-height:var(--body-line-height-medium)}._body--small_111i6_54{font-size:var(--body-font-size-small);line-height:var(--body-line-height-small)}._body--tiny_111i6_58{font-size:var(--body-font-size-tiny);line-height:var(--body-line-height-tiny)}._body--bold_111i6_62{font-weight:var(--body-bold)}._body--strikethrough_111i6_65{text-decoration:line-through}._body--underlined_111i6_68{text-decoration:underline}._body--strikethrough-underlined_111i6_71{text-decoration:underline line-through}._quote_111i6_75{font-size:var(--quote-font-size);line-height:var(--quote-line-height);font-weight:var(--quote-font-weight)}._quote--large_111i6_80{font-size:var(--quote-font-size-large);line-height:var(--quote-line-height-large);font-weight:var(--quote-font-weight-large)}._form__input_111i6_86{font-size:var(--form-input-font-size);line-height:var(--form-input-line-height);font-weight:var(--form-input-font-weight)}._form__hint_111i6_91{font-size:var(--form-hint-font-size);line-height:var(--form-hint-line-height);font-weight:var(--form-hint-font-weight)}._form__label_111i6_96{font-size:var(--form-label-font-size);line-height:var(--form-label-line-height);font-weight:var(--form-label-font-weight)}._form__dropdown_111i6_101{font-size:var(--form-dropdown-font-size);line-height:var(--form-dropdown-line-height);font-weight:var(--form-dropdown-font-weight)}._table__header_111i6_107{font-size:var(--table-font-size);line-height:var(--table-line-height);font-weight:var(--table-header-font-weight)}._table__body_111i6_112{font-size:var(--table-font-size);line-height:var(--table-line-height);font-weight:var(--table-body-font-weight)}._table__body--secondary_111i6_117{font-size:var(--table-font-size);line-height:var(--table-line-height);line-height:var(--table-body-secondary-line-height)}._button_111i6_123{font-size:var(--button-font-size);line-height:var(--button-line-height);font-weight:var(--button-font-weight)}
1
+ ._u-typography-h1_zizdh_1{font-size:var(--heading-font-size-1);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-1);margin:0}._u-typography-h2_zizdh_8{font-size:var(--heading-font-size-2);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-2);margin:0}._u-typography-h3_zizdh_15{font-size:var(--heading-font-size-3);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-3);margin:0}._u-typography-h4_zizdh_22{font-size:var(--heading-font-size-4);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-4);margin:0}._u-typography-h5_zizdh_29{font-size:var(--heading-font-size-5);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-5);margin:0}._u-typography-h6_zizdh_36{font-size:var(--heading-font-size-6);font-weight:var(--heading-font-weight);line-height:var(--heading-line-height-6);margin:0}._u-typography-base_zizdh_43{font-size:var(--base-font-size);font-weight:var(--base-weight);line-height:var(--base-line-height)}._u-typography-base--xxl_zizdh_48{font-size:var(--base-font-size-xxl);line-height:var(--base-line-height-xxl)}._u-typography-base--xl_zizdh_52{font-size:var(--base-font-size-xl);line-height:var(--base-line-height-xl)}._u-typography-base--lg_zizdh_56{font-size:var(--base-font-size-lg);line-height:var(--base-line-height-lg)}._u-typography-base--sm_zizdh_60{font-size:var(--base-font-size-sm);line-height:var(--base-line-height-sm)}._u-typography-base--bold_zizdh_64{font-weight:var(--base-bold)}._u-typography-base--strikethrough_zizdh_67{text-decoration:line-through}._u-typography-base--underlined_zizdh_70{text-decoration:underline}._u-typography-base--strikethrough-underlined_zizdh_73{text-decoration:underline line-through}
@@ -0,0 +1,80 @@
1
+ import { f as E, b as a } from "./index-CH45lKw7.js";
2
+ import * as r from "react";
3
+ const f = {
4
+ blur: "list:blur",
5
+ focus: "list:focus",
6
+ itemClick: "list:itemClick",
7
+ itemHover: "list:itemHover",
8
+ itemsChange: "list:itemsChange",
9
+ keyDown: "list:keyDown",
10
+ resetHighlight: "list:resetHighlight",
11
+ highlightLast: "list:highlightLast",
12
+ textNavigation: "list:textNavigation",
13
+ clearSelection: "list:clearSelection"
14
+ }, m = /* @__PURE__ */ r.createContext(null);
15
+ process.env.NODE_ENV !== "production" && (m.displayName = "ListContext");
16
+ function b(l) {
17
+ const {
18
+ handlePointerOverEvents: c = !1,
19
+ item: t
20
+ } = l, s = r.useContext(m);
21
+ if (!s)
22
+ throw new Error("useListItem must be used within a ListProvider");
23
+ const {
24
+ dispatch: n,
25
+ getItemState: u
26
+ } = s, {
27
+ highlighted: d,
28
+ selected: p,
29
+ focusable: g
30
+ } = u(t), v = r.useCallback((i) => (e) => {
31
+ var o;
32
+ if ((o = i.onClick) == null || o.call(i, e), !e.defaultPrevented) {
33
+ if (process.env.NODE_ENV !== "production" && t === void 0)
34
+ throw new Error(["MUI: The `item` provided to useListItem() is undefined.", "This should happen only during server-side rendering under React 17."].join(`
35
+ `));
36
+ n({
37
+ type: f.itemClick,
38
+ item: t,
39
+ event: e
40
+ });
41
+ }
42
+ }, [n, t]), C = r.useCallback((i) => (e) => {
43
+ var o;
44
+ if ((o = i.onMouseOver) == null || o.call(i, e), !e.defaultPrevented) {
45
+ if (process.env.NODE_ENV !== "production" && t === void 0)
46
+ throw new Error(["MUI: The `item` provided to useListItem() is undefined.", "This should happen only during server-side rendering under React 17."].join(`
47
+ `));
48
+ n({
49
+ type: f.itemHover,
50
+ item: t,
51
+ event: e
52
+ });
53
+ }
54
+ }, [n, t]);
55
+ let h;
56
+ return g && (h = d ? 0 : -1), {
57
+ getRootProps: (i = {}) => {
58
+ const e = E(i);
59
+ return a({}, i, {
60
+ onClick: v(e),
61
+ onPointerOver: c ? C(e) : void 0,
62
+ tabIndex: h
63
+ });
64
+ },
65
+ highlighted: d,
66
+ selected: p
67
+ };
68
+ }
69
+ function x(l, c) {
70
+ return function(s = {}) {
71
+ const n = a({}, s, l(s));
72
+ return a({}, n, c(n));
73
+ };
74
+ }
75
+ export {
76
+ f as L,
77
+ m as a,
78
+ x as c,
79
+ b as u
80
+ };
@@ -0,0 +1,28 @@
1
+ import { Icon } from '../Icon/Icon';
2
+ import { ReactNode } from 'react';
3
+
4
+ export type AdviceTypes = 'without-results' | 'no-permission';
5
+ export type AdviceProps = {
6
+ /** Advice icon.
7
+ * This property uses the Icon Component Props
8
+ */
9
+ icon?: React.ComponentProps<typeof Icon>;
10
+ /** Advice SVG icon */
11
+ IconSvg?: React.FunctionComponent<React.SVGProps<SVGSVGElement> & {
12
+ title?: string | undefined;
13
+ }>;
14
+ /** Type of advice */
15
+ type?: AdviceTypes;
16
+ /** Advice content message */
17
+ content: ReactNode;
18
+ /** Space seperated list of CSS classes to apply */
19
+ className?: string;
20
+ /** ID that tests can use to get this component from the DOM */
21
+ 'data-testid'?: string;
22
+ };
23
+ /**
24
+ * Advice component provide HTML with an icon and a message.
25
+ * Is commonly used to indicate No Permission and No Results.
26
+ */
27
+ declare const Advice: ({ icon, type, content, className, IconSvg, ...rest }: AdviceProps) => import("react/jsx-runtime").JSX.Element;
28
+ export { Advice };
@@ -0,0 +1,40 @@
1
+ import '../../assets/Advice.css';
2
+ import { jsxs as u, jsx as y } from "react/jsx-runtime";
3
+ import { c as g } from "../../clsx-DB4S2d7J.js";
4
+ import { Icon as k } from "../Icon/Icon.js";
5
+ const l = "_advice_10rkk_56", d = "_content_10rkk_56", h = {
6
+ "u-typography-h1": "_u-typography-h1_10rkk_1",
7
+ "u-typography-h2": "_u-typography-h2_10rkk_8",
8
+ "u-typography-h3": "_u-typography-h3_10rkk_15",
9
+ "u-typography-h4": "_u-typography-h4_10rkk_22",
10
+ "u-typography-h5": "_u-typography-h5_10rkk_29",
11
+ "u-typography-h6": "_u-typography-h6_10rkk_36",
12
+ "u-typography-base": "_u-typography-base_10rkk_43",
13
+ "u-typography-base--xxl": "_u-typography-base--xxl_10rkk_48",
14
+ "u-typography-base--xl": "_u-typography-base--xl_10rkk_52",
15
+ "u-typography-base--lg": "_u-typography-base--lg_10rkk_56",
16
+ advice: l,
17
+ content: d,
18
+ "u-typography-base--sm": "_u-typography-base--sm_10rkk_60",
19
+ "u-typography-base--bold": "_u-typography-base--bold_10rkk_64",
20
+ "u-typography-base--strikethrough": "_u-typography-base--strikethrough_10rkk_67",
21
+ "u-typography-base--underlined": "_u-typography-base--underlined_10rkk_70",
22
+ "u-typography-base--strikethrough-underlined": "_u-typography-base--strikethrough-underlined_10rkk_73"
23
+ }, o = {
24
+ "no-permission": "eye-slash",
25
+ "without-results": "folder-magnifying-glass"
26
+ }, m = ({ icon: r, type: t, content: a, className: s, IconSvg: e, ..._ }) => {
27
+ const p = {
28
+ color: (r == null ? void 0 : r.color) || "var(--accent)",
29
+ size: (r == null ? void 0 : r.size) || "3.375rem",
30
+ icon: o[t] || (r == null ? void 0 : r.icon) || "",
31
+ iconFamily: o[t] ? "fa/duotone" : (r == null ? void 0 : r.iconFamily) || "fa/duotone"
32
+ };
33
+ return /* @__PURE__ */ u("div", { className: g(h.advice, s), ..._, children: [
34
+ e ? /* @__PURE__ */ y(e, { style: { color: p.color, height: p.size, width: p.size } }) : /* @__PURE__ */ y(k, { ...p }),
35
+ typeof a == "string" ? /* @__PURE__ */ y("p", { children: a }) : /* @__PURE__ */ y("div", { className: h.content, children: a })
36
+ ] });
37
+ };
38
+ export {
39
+ m as Advice
40
+ };
@@ -0,0 +1,16 @@
1
+ import { StoryObj } from '@storybook/react';
2
+
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ icon, type, content, className, IconSvg, ...rest }: import('./Advice').AdviceProps) => import("react/jsx-runtime").JSX.Element;
6
+ tags: string[];
7
+ parameters: {
8
+ layout: string;
9
+ };
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const WithoutResults: Story;
14
+ export declare const NoPermission: Story;
15
+ export declare const CustomIcon: Story;
16
+ export declare const CustomIconSVG: Story;
@@ -0,0 +1,32 @@
1
+ import { Either } from '../../types/helpers';
2
+ import { ButtonOwnProps as MUIButtonBaseProps } from '@mui/base';
3
+ import { ReactNode } from 'react';
4
+
5
+ type Variant = 'primary' | 'secondary' | 'quick';
6
+ type ButtonCoreProps = {
7
+ /** Button to display and act in a loading state */
8
+ loading?: boolean;
9
+ /** Button to display and act in a disabled state */
10
+ disabled?: boolean;
11
+ /** Space separated list of CSS classes to apply */
12
+ className?: string;
13
+ /** Text or children to display */
14
+ children: ReactNode;
15
+ /** alternative style to use*/
16
+ variant?: Variant;
17
+ /** mui base button props */
18
+ muiButtonBaseProps?: MUIButtonBaseProps;
19
+ };
20
+ interface ButtonPropsWithLink extends ButtonCoreProps {
21
+ /** link for component to navigate to, if provide component will be an anchor */
22
+ link: string;
23
+ }
24
+ interface ButtonPropsWithOnClick extends ButtonCoreProps {
25
+ /** functionality to perform once clicked */
26
+ onClick: () => void;
27
+ /** HTML type of button */
28
+ type?: HTMLButtonElement['type'];
29
+ }
30
+ export type ButtonProps = Either<ButtonPropsWithLink, ButtonPropsWithOnClick>;
31
+ export declare const Button: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
32
+ export default Button;