@reportportal/ui-kit 0.0.1-alpha.82 → 0.0.1-alpha.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{checkbox-aa91985d.js → checkbox-1f5db4c8.js} +24 -24
- package/dist/checkbox.js +1 -1
- package/dist/components/selection/index.d.ts +5 -0
- package/dist/components/selection/selection.d.ts +12 -0
- package/dist/components/selection/types.d.ts +1 -0
- package/dist/{datePicker-678e0ae6.js → datePicker-9a576d19.js} +1 -1
- package/dist/datePicker.js +4 -4
- package/dist/{dropdown-9427f821.js → dropdown-329da205.js} +1 -1
- package/dist/dropdown.js +2 -2
- package/dist/index.js +4 -4
- package/dist/selection.js +39 -0
- package/dist/style.css +1 -1
- package/dist/table-5a30dad9.js +142 -0
- package/dist/table.js +2 -2
- package/package.json +1 -1
- package/dist/table-20aa2cdf.js +0 -142
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as m, jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { c as f } from "./bind-06a7ff84.js";
|
|
3
|
-
import { useRef as y, useId as
|
|
4
|
-
import { K as
|
|
5
|
-
const
|
|
6
|
-
checkbox:
|
|
7
|
-
disabled:
|
|
8
|
-
input:
|
|
9
|
-
control:
|
|
10
|
-
"partially-checked": "_partially-
|
|
11
|
-
children:
|
|
12
|
-
}, e = f.bind(
|
|
3
|
+
import { useRef as y, useId as w } from "react";
|
|
4
|
+
import { K as x } from "./keyCodes-f63c0e11.js";
|
|
5
|
+
const C = "_checkbox_1xwtn_1", E = "_disabled_1xwtn_11", D = "_input_1xwtn_16", K = "_control_1xwtn_23", N = "_children_1xwtn_155", I = {
|
|
6
|
+
checkbox: C,
|
|
7
|
+
disabled: E,
|
|
8
|
+
input: D,
|
|
9
|
+
control: K,
|
|
10
|
+
"partially-checked": "_partially-checked_1xwtn_78",
|
|
11
|
+
children: N
|
|
12
|
+
}, e = f.bind(I), A = ({
|
|
13
13
|
children: s,
|
|
14
14
|
disabled: c = !1,
|
|
15
15
|
onChange: d,
|
|
@@ -17,18 +17,18 @@ const E = "_checkbox_1tbt5_1", D = "_disabled_1tbt5_11", K = "_input_1tbt5_16",
|
|
|
17
17
|
value: r,
|
|
18
18
|
partiallyChecked: k,
|
|
19
19
|
title: l,
|
|
20
|
-
...
|
|
20
|
+
...b
|
|
21
21
|
}) => {
|
|
22
|
-
const
|
|
23
|
-
var _,
|
|
22
|
+
const n = y(null), a = w(), u = (o) => {
|
|
23
|
+
var _, p;
|
|
24
24
|
const { keyCode: i } = o;
|
|
25
|
-
if (i ===
|
|
26
|
-
o.preventDefault(), (_ =
|
|
25
|
+
if (i === x.SPACE_KEY_CODE) {
|
|
26
|
+
o.preventDefault(), (_ = n.current) == null || _.click();
|
|
27
27
|
return;
|
|
28
28
|
}
|
|
29
|
-
i ===
|
|
29
|
+
i === x.ENTER_KEY_CODE && (o.preventDefault(), (p = n.current) == null || p.click());
|
|
30
30
|
};
|
|
31
|
-
return /* @__PURE__ */
|
|
31
|
+
return /* @__PURE__ */ m(
|
|
32
32
|
"label",
|
|
33
33
|
{
|
|
34
34
|
id: a,
|
|
@@ -37,22 +37,22 @@ const E = "_checkbox_1tbt5_1", D = "_disabled_1tbt5_11", K = "_input_1tbt5_16",
|
|
|
37
37
|
}),
|
|
38
38
|
title: l,
|
|
39
39
|
children: [
|
|
40
|
-
/* @__PURE__ */
|
|
40
|
+
/* @__PURE__ */ t(
|
|
41
41
|
"input",
|
|
42
42
|
{
|
|
43
|
-
ref:
|
|
43
|
+
ref: n,
|
|
44
44
|
tabIndex: 0,
|
|
45
45
|
type: "checkbox",
|
|
46
|
-
onKeyDown:
|
|
46
|
+
onKeyDown: u,
|
|
47
47
|
className: e("input", { "partially-checked": k }),
|
|
48
48
|
disabled: c,
|
|
49
49
|
onChange: d,
|
|
50
50
|
checked: r,
|
|
51
51
|
title: l,
|
|
52
|
-
...
|
|
52
|
+
...b
|
|
53
53
|
}
|
|
54
54
|
),
|
|
55
|
-
/* @__PURE__ */
|
|
55
|
+
/* @__PURE__ */ t(
|
|
56
56
|
"span",
|
|
57
57
|
{
|
|
58
58
|
"aria-labelledby": a,
|
|
@@ -63,7 +63,7 @@ const E = "_checkbox_1tbt5_1", D = "_disabled_1tbt5_11", K = "_input_1tbt5_16",
|
|
|
63
63
|
})
|
|
64
64
|
}
|
|
65
65
|
),
|
|
66
|
-
s && /* @__PURE__ */
|
|
66
|
+
s && /* @__PURE__ */ t("span", { className: e("children", { disabled: c }), children: s })
|
|
67
67
|
]
|
|
68
68
|
}
|
|
69
69
|
);
|
package/dist/checkbox.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ClearSelection } from './types';
|
|
2
|
+
|
|
3
|
+
export interface SelectionProps {
|
|
4
|
+
selectedCount: number;
|
|
5
|
+
onClearSelection: ClearSelection;
|
|
6
|
+
captions?: {
|
|
7
|
+
selected?: string;
|
|
8
|
+
buttonCaption?: string;
|
|
9
|
+
};
|
|
10
|
+
icon?: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
export declare const Selection: ({ selectedCount, onClearSelection, captions, icon, }: SelectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ClearSelection = VoidFunction;
|
|
@@ -4,7 +4,7 @@ import { c as R } from "./bind-06a7ff84.js";
|
|
|
4
4
|
import { useMemo as P, useRef as B } from "react";
|
|
5
5
|
import { F as D } from "./fieldText-635e0db4.js";
|
|
6
6
|
import { a as E, S as j } from "./calendarArrow-3e1339ea.js";
|
|
7
|
-
import { D as T } from "./dropdown-
|
|
7
|
+
import { D as T } from "./dropdown-329da205.js";
|
|
8
8
|
import { registerLocale as G } from "react-datepicker";
|
|
9
9
|
const pe = (r, s) => {
|
|
10
10
|
G(r, s);
|
package/dist/datePicker.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { D as t } from "./datePicker-
|
|
2
|
-
import { r as v } from "./datePicker-
|
|
1
|
+
import { D as t } from "./datePicker-9a576d19.js";
|
|
2
|
+
import { r as v } from "./datePicker-9a576d19.js";
|
|
3
3
|
import "react/jsx-runtime";
|
|
4
4
|
import "react-datepicker/dist/es/index.js";
|
|
5
5
|
import "./bind-06a7ff84.js";
|
|
@@ -11,7 +11,7 @@ import "./spinLoader-c4a53718.js";
|
|
|
11
11
|
import "./maxValueDisplay-9be01a75.js";
|
|
12
12
|
import "./fieldLabel.js";
|
|
13
13
|
import "./calendarArrow-3e1339ea.js";
|
|
14
|
-
import "./dropdown-
|
|
14
|
+
import "./dropdown-329da205.js";
|
|
15
15
|
import "@floating-ui/react-dom";
|
|
16
16
|
import "downshift";
|
|
17
17
|
import "rc-scrollbars";
|
|
@@ -19,7 +19,7 @@ import "./useOnClickOutside-c332f7d3.js";
|
|
|
19
19
|
import "./keyCodes-f63c0e11.js";
|
|
20
20
|
import "./baseIconButton-251479f7.js";
|
|
21
21
|
import "./dropdown-0260bb66.js";
|
|
22
|
-
import "./checkbox-
|
|
22
|
+
import "./checkbox-1f5db4c8.js";
|
|
23
23
|
import "react-datepicker";
|
|
24
24
|
export {
|
|
25
25
|
t as DatePicker,
|
|
@@ -9,7 +9,7 @@ import { K as p } from "./keyCodes-f63c0e11.js";
|
|
|
9
9
|
import { B as ye } from "./baseIconButton-251479f7.js";
|
|
10
10
|
import { S as be } from "./dropdown-0260bb66.js";
|
|
11
11
|
import { FieldLabel as Ce } from "./fieldLabel.js";
|
|
12
|
-
import { C as Oe } from "./checkbox-
|
|
12
|
+
import { C as Oe } from "./checkbox-1f5db4c8.js";
|
|
13
13
|
const ke = "_disabled_1etj7_12", Ne = "_hidden_1etj7_16", De = "_hover_1etj7_22", Ee = "_selected_1etj7_34", we = {
|
|
14
14
|
"dropdown-option": "_dropdown-option_1etj7_1",
|
|
15
15
|
disabled: ke,
|
package/dist/dropdown.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as r } from "./dropdown-
|
|
1
|
+
import { D as r } from "./dropdown-329da205.js";
|
|
2
2
|
import "react/jsx-runtime";
|
|
3
3
|
import "react";
|
|
4
4
|
import "./bind-06a7ff84.js";
|
|
@@ -10,7 +10,7 @@ import "./keyCodes-f63c0e11.js";
|
|
|
10
10
|
import "./baseIconButton-251479f7.js";
|
|
11
11
|
import "./dropdown-0260bb66.js";
|
|
12
12
|
import "./fieldLabel.js";
|
|
13
|
-
import "./checkbox-
|
|
13
|
+
import "./checkbox-1f5db4c8.js";
|
|
14
14
|
export {
|
|
15
15
|
r as Dropdown,
|
|
16
16
|
r as default
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { B as u } from "./button-97d9e587.js";
|
|
2
2
|
import { B as C } from "./baseIconButton-251479f7.js";
|
|
3
|
-
import { C as g } from "./checkbox-
|
|
3
|
+
import { C as g } from "./checkbox-1f5db4c8.js";
|
|
4
4
|
import { S as y } from "./systemMessage-924fdaa6.js";
|
|
5
5
|
import { F as b } from "./fieldText-635e0db4.js";
|
|
6
6
|
import { T as B } from "./themeProvider-46c2be7b.js";
|
|
7
7
|
import { Modal as v } from "./modal.js";
|
|
8
|
-
import { D as M } from "./dropdown-
|
|
8
|
+
import { D as M } from "./dropdown-329da205.js";
|
|
9
9
|
import { T as E } from "./toggle-304107fa.js";
|
|
10
10
|
import { F as L } from "./fieldNumber-2542b311.js";
|
|
11
11
|
import { B as N } from "./bubblesLoader-a7e709d4.js";
|
|
@@ -15,8 +15,8 @@ import { R as j } from "./radio-62546efa.js";
|
|
|
15
15
|
import { Tooltip as G } from "./tooltip.js";
|
|
16
16
|
import { Popover as Q } from "./popover.js";
|
|
17
17
|
import { P as X } from "./pagination-bfb31cf4.js";
|
|
18
|
-
import { T as Z } from "./table-
|
|
19
|
-
import { D as $ } from "./datePicker-
|
|
18
|
+
import { T as Z } from "./table-5a30dad9.js";
|
|
19
|
+
import { D as $ } from "./datePicker-9a576d19.js";
|
|
20
20
|
import "react-datepicker";
|
|
21
21
|
import { SystemAlert as ro } from "./systemAlert.js";
|
|
22
22
|
import { AddCsvIcon as no, AddImageIcon as to, AddJarIcon as ao, BreadcrumbsTreeIcon as co, CheckmarkIcon as po, ChevronDownDropdownIcon as io, ChevronRightBreadcrumbsIcon as mo, CopyIcon as Io, DeleteIcon as so, DragAndDropIcon as xo, DragNDropIcon as fo, DurationIcon as lo, EditIcon as So, ExportIcon as uo, ExternalLinkIcon as Po, FilterFilledIcon as Co, FilterOutlineIcon as Do, FlagIcon as go, HideIcon as Fo, MaximizeIcon as yo, MeatballMenuIcon as To, MoveToFolderIcon as bo, PriorityBlockerIcon as ho, PriorityCriticalIcon as Bo, PriorityHighIcon as wo, PriorityLowIcon as vo, PriorityMediumIcon as Ao, PriorityUnspecifiedIcon as Mo, RefreshIcon as ko, RerunIcon as Eo, SearchIcon as Ro, SortIcon as Lo, StatusSuccessIcon as Ho, WarningIcon as No } from "./icons.js";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import { S as a } from "./close-4d480ef7.js";
|
|
4
|
+
import { c as l } from "./bind-06a7ff84.js";
|
|
5
|
+
import { B as r } from "./button-97d9e587.js";
|
|
6
|
+
const d = "_divider_p4emi_23", p = "_button_p4emi_30", m = {
|
|
7
|
+
"selection-wrapper": "_selection-wrapper_p4emi_1",
|
|
8
|
+
"selected-count-text": "_selected-count-text_p4emi_7",
|
|
9
|
+
"selected-count-caption": "_selected-count-caption_p4emi_16",
|
|
10
|
+
divider: d,
|
|
11
|
+
button: p
|
|
12
|
+
}, t = l.bind(m), _ = { selected: "selected", buttonCaption: "Clear Selection" }, C = ({
|
|
13
|
+
selectedCount: s,
|
|
14
|
+
onClearSelection: n,
|
|
15
|
+
captions: c = _,
|
|
16
|
+
icon: i = /* @__PURE__ */ e(a, {})
|
|
17
|
+
}) => /* @__PURE__ */ o("div", { className: t("selection-wrapper"), children: [
|
|
18
|
+
/* @__PURE__ */ o("p", { children: [
|
|
19
|
+
/* @__PURE__ */ e("span", { className: t("selected-count-text"), children: s }),
|
|
20
|
+
/* @__PURE__ */ e("span", { className: t("selected-count-caption"), children: c.selected })
|
|
21
|
+
] }),
|
|
22
|
+
/* @__PURE__ */ e("div", { className: t("divider") }),
|
|
23
|
+
/* @__PURE__ */ e(
|
|
24
|
+
r,
|
|
25
|
+
{
|
|
26
|
+
icon: i,
|
|
27
|
+
className: t("button"),
|
|
28
|
+
iconPlace: "start",
|
|
29
|
+
variant: "text",
|
|
30
|
+
onClick: n,
|
|
31
|
+
"aria-label": `${c.buttonCaption} - ${s} ${c.selected}`,
|
|
32
|
+
children: c.buttonCaption
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
] });
|
|
36
|
+
export {
|
|
37
|
+
C as Selection,
|
|
38
|
+
C as default
|
|
39
|
+
};
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
._bubbles-loader_kn4ln_1{position:relative}._bubbles-loader_kn4ln_1._color-topaz_kn4ln_4 ._bubble_kn4ln_1{background-color:var(--rp-ui-base-dark-topaz-main)}._bubble_kn4ln_1{position:absolute;width:6px;height:6px;border-radius:50%;background:var(--rp-ui-base-bg-000);transform:scale(.3);animation:_bubbles_kn4ln_1 2.5s infinite linear}._bubble_kn4ln_1:nth-child(1){left:0;animation-delay:.1s}._bubble_kn4ln_1:nth-child(2){left:7px;animation-delay:.3s}._bubble_kn4ln_1:nth-child(3){left:14px;animation-delay:.5s}._bubble_kn4ln_1:nth-child(4){left:21px;animation-delay:.7s}._bubble_kn4ln_1:nth-child(5){left:28px;animation-delay:.9s}._bubble_kn4ln_1:nth-child(6){left:35px;animation-delay:1.1s}._bubble_kn4ln_1:nth-child(7){left:42px;animation-delay:1.3s}@keyframes _bubbles_kn4ln_1{20%,60%{transform:scale(.5)}40%{transform:scale(1)}}._text-area_1pqer_1{font-size:13px;line-height:20px;width:100%;min-height:72px;padding:9px 12px 7px;outline:none;border:1px solid var(--rp-ui-base-e-200);border-radius:3px;box-sizing:border-box;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_1pqer_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19{border:1px solid var(--rp-ui-base-error)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19)+._max-length-display_1pqer_26,._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19+._max-length-display_1pqer_26{display:block}._text-area_1pqer_1::placeholder{color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:has(~._max-length-display_1pqer_26){padding-bottom:24px}._additional-content_1pqer_36 ._error-text_1pqer_36{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-error)}._additional-content_1pqer_36 ._help-text_1pqer_44{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._max-length-display_1pqer_26{font-size:11px;line-height:16px;position:absolute;margin-top:-29px;display:none;padding-left:12px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._disabled_1pqer_65{opacity:.3;pointer-events:none}._icon-container_1xyy3_1,._icon-container-end_1xyy3_1,._icon-container-start_1xyy3_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_1xyy3_1{margin-right:4px}._collapsed_1xyy3_13 ._icon-container-start_1xyy3_1{cursor:pointer}._icon-container-end_1xyy3_1{margin-left:4px}._field_1xyy3_21{display:flex;align-items:center;height:36px;width:100%;padding:7px 12px;box-sizing:border-box;border:1px solid var(--rp-ui-color-field-border-3);border-radius:3px;background-color:var(--rp-ui-color-field-bg-3);transition:width .2s,padding .2s,border .1s}._field_1xyy3_21._default-width_1xyy3_33{width:240px}._field_1xyy3_21._collapsed_1xyy3_13{width:22px;border-width:0;overflow:hidden;padding:0;background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13:hover{background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13 ._placeholder_1xyy3_46{display:none}._field_1xyy3_21:hover:not(._disabled_1xyy3_49){border-color:var(--rp-ui-color-field-border-3-hover)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52{border-color:var(--rp-ui-base-error)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52) ._max-length-display_1xyy3_59,._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52 ._max-length-display_1xyy3_59{display:block}._field_1xyy3_21._disabled_1xyy3_49{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_1xyy3_21._disabled_1xyy3_49 ._placeholder_1xyy3_46{color:var(--rp-ui-base-e-300)}._input-container_1xyy3_70{position:relative;width:100%}._input-container_1xyy3_70._type-password_1xyy3_74 ._input_1xyy3_70{width:calc(100% - 30px);text-overflow:unset}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78{position:absolute;z-index:2;top:4px;right:-2px;height:16px;width:16px}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78 svg path{fill:var(--rp-ui-color-field-icon)}._input_1xyy3_70{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);width:100%;margin:2px 0 0;padding:0;border:none;background:transparent;overflow:hidden;text-overflow:ellipsis;color:var(--rp-ui-color-text-3)}._input_1xyy3_70:focus{outline:none}._input_1xyy3_70:disabled{color:var(--rp-ui-base-e-300)}._placeholder_1xyy3_46{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none;white-space:nowrap}._icon_1xyy3_1,._start-icon_1xyy3_124,._clear-icon_1xyy3_125{display:inline-block;width:16px;height:16px}._start-icon_1xyy3_124,._clear-icon_1xyy3_125{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._start-icon_1xyy3_124 svg>path,._clear-icon_1xyy3_125 svg>path{fill:var(--rp-ui-color-field-icon)}._start-icon_1xyy3_124._disabled_1xyy3_49,._clear-icon_1xyy3_125._disabled_1xyy3_49{pointer-events:none}._start-icon_1xyy3_124:hover svg>path,._clear-icon_1xyy3_125:hover svg>path{fill:var(--rp-ui-color-field-hover-2)}._start-icon_1xyy3_124:focus svg>path,._clear-icon_1xyy3_125:focus svg>path{fill:var(--rp-ui-color-primary-focused)}._start-icon_1xyy3_124:active svg>path,._clear-icon_1xyy3_125:active svg>path{fill:var(--rp-ui-color-primary-pressed)}._additional-content_1xyy3_161{margin-top:4px}._additional-content_1xyy3_161._disabled_1xyy3_49{pointer-events:none}._text_1xyy3_168,._max-length-display_1xyy3_59{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular)}._text_1xyy3_168{display:block}._max-length-display_1xyy3_59{display:none;margin-left:15px;align-self:end;color:var(--rp-ui-base-e-300);word-break:initial}._error-text_1xyy3_188{color:var(--rp-ui-base-error)}._help-text_1xyy3_192{color:var(--rp-ui-base-dark-e-300)}._base-icon-button_1q88n_1{margin:0;padding:0;outline:none;background:transparent;border:none;cursor:pointer}._base-icon-button_1q88n_1 svg path{fill:var(--rp-ui-base-e-300)}._base-icon-button_1q88n_1._disabled_1q88n_12{opacity:40%;cursor:default}._base-icon-button_1q88n_1:hover:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-e-400)}._base-icon-button_1q88n_1:active:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-topaz-pressed)}._base-icon-button_1q88n_1:focus-visible:not(._disabled_1q88n_12,:active) svg path{fill:var(--rp-ui-base-topaz-focused)}._button_j5f2i_1{display:inline-flex;justify-content:center;align-items:center;height:36px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_j5f2i_18{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_j5f2i_18:hover:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_j5f2i_18:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_j5f2i_18:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_j5f2i_18 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_j5f2i_38{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_j5f2i_38:hover:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_j5f2i_38:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_j5f2i_38:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_j5f2i_38 svg *{fill:var(--rp-ui-color-primary-text)}._danger_j5f2i_59{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_j5f2i_59:hover:not(._disabled_j5f2i_23){opacity:.9;background-color:var(--rp-ui-color-error-hover)}._danger_j5f2i_59:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_j5f2i_59:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_j5f2i_59 svg *{fill:var(--rp-ui-base-bg-000)}._text_j5f2i_79{min-width:auto;height:auto;border:0;padding:2px;background:none;line-height:18px;color:var(--rp-ui-color-primary-text)}._text_j5f2i_79:hover:not(._disabled_j5f2i_23){color:var(--rp-ui-color-primary-hover)}._text_j5f2i_79:hover:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-primary-hover)}._text_j5f2i_79:active:not(._disabled_j5f2i_23){color:var(--rp-ui-color-primary-pressed)}._text_j5f2i_79:active:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_j5f2i_79:focus:not(._disabled_j5f2i_23,:active){padding:0;border:2px solid var(--rp-ui-color-primary-focused)}._text_j5f2i_79 svg *{fill:var(--rp-ui-color-primary-text)}._ghost-danger_j5f2i_108{border:1px solid var(--rp-ui-color-error);background-color:transparent;color:var(--rp-ui-color-error)}._ghost-danger_j5f2i_108:hover:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-error-hover);color:var(--rp-ui-color-error-hover)}._ghost-danger_j5f2i_108:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-error-pressed);color:var(--rp-ui-color-error-pressed)}._ghost-danger_j5f2i_108:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._ghost-danger_j5f2i_108 svg *{fill:var(--rp-ui-color-error)}._text-danger_j5f2i_128{min-width:auto;height:auto;border:0;padding:2px;background:none;line-height:18px;color:var(--rp-ui-color-error)}._text-danger_j5f2i_128:hover:not(._disabled_j5f2i_23){color:var(--rp-ui-color-error-hover)}._text-danger_j5f2i_128:hover:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-error-hover)}._text-danger_j5f2i_128:active:not(._disabled_j5f2i_23){color:var(--rp-ui-color-error-pressed)}._text-danger_j5f2i_128:active:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-error-pressed)}._text-danger_j5f2i_128:focus:not(._disabled_j5f2i_23,:active){padding:0;border:2px solid var(--rp-ui-color-error-focused)}._text-danger_j5f2i_128 svg *{fill:var(--rp-ui-color-error)}._disabled_j5f2i_23{opacity:var(--rp-ui-opacity-default);cursor:default}._width-min-width_j5f2i_162{min-width:120px}._width-content_j5f2i_166{min-width:auto}._width-wide-content_j5f2i_170{padding:9px 47px 7px;margin:0}._width-parent_j5f2i_175{display:flex;width:100%}._icon_j5f2i_180{display:inline-block;width:16px;height:16px}._icon-start_j5f2i_186{margin:auto 8px auto 0}._icon-end_j5f2i_190{margin:auto 0 auto 8px;order:1}._radio-button_1fetm_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_1fetm_1._disabled_1fetm_9{cursor:default}._radio-button_1fetm_1._disabled_1fetm_9 ._children-container_1fetm_12{color:var(--rp-ui-base-e-300)}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15{opacity:.3}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15:after{background-color:transparent}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15._checked_1fetm_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_1fetm_1:focus-visible:not(._disabled_1fetm_9) ._toggler_1fetm_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_1fetm_28{display:none}._toggler_1fetm_15{display:flex;width:16px;height:16px;min-width:16px;box-sizing:border-box;margin:auto 10px auto 0;border-radius:100%;border-width:1px;border-style:solid;line-height:18;border-color:var(--rp-ui-color-field-border-2)}._toggler_1fetm_15:after{width:8px;height:8px;content:"";display:block;border-radius:100%;margin:auto;background-color:var(--rp-ui-color-radio-checked);opacity:0;transform:scale(.5);transition:transform .2s,opacity .2s}._toggler_1fetm_15:hover:not(._disabled_1fetm_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_1fetm_15:hover:not(._disabled_1fetm_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_1fetm_15._checked_1fetm_21:after,._toggler_1fetm_15._disabled_1fetm_9:after{transform:scale(1);opacity:1}._children-container_1fetm_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_1fetm_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1fetm_12 a:focus,._children-container_1fetm_12 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._spin-loader_qn4ih_1{width:16px;height:16px;margin:3px 7px 3px 3px;flex-shrink:0}._spinner_qn4ih_8{display:flex;align-items:center;justify-content:center;width:100%;height:100%;border-radius:50%;flex-shrink:0;position:relative;mask:radial-gradient(circle,transparent 55%,var(--rp-ui-color-primary) 0%);animation:_spin_qn4ih_1 1s infinite linear}._spinner_qn4ih_8._color-topaz_qn4ih_20{background:conic-gradient(transparent 0%,var(--rp-ui-color-primary))}@keyframes _spin_qn4ih_1{to{transform:rotate(1turn)}}._system-message_vll7q_1{min-height:85px;height:auto;width:100%;background:var(--rp-ui-base-bg-000);border-radius:8px;box-shadow:var(--rp-ui-base-shadow);display:flex;flex-direction:column;font-family:var(--rp-ui-base-font-family)}._system-message_vll7q_1 ._stripes-info_vll7q_12{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-info-line-100),var(--rp-ui-base-sm-info-line-100) 24px,var(--rp-ui-base-e-200) 24px,var(--rp-ui-base-e-200) 48px)}._system-message_vll7q_1 ._stripes-warning_vll7q_17{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-warning-line-100),var(--rp-ui-base-sm-warning-line-100) 24px,var(--rp-ui-base-sm-warning-line-200) 24px,var(--rp-ui-base-sm-warning-line-200) 48px)}._system-message_vll7q_1 ._stripes-error_vll7q_22{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-error-line-100),var(--rp-ui-base-sm-error-line-100) 24px,var(--rp-ui-base-sm-error-line-200) 24px,var(--rp-ui-base-sm-error-line-200) 48px)}._system-message_vll7q_1 ._text-container_vll7q_27{padding:12px 16px 16px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-info_vll7q_30{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-warning_vll7q_38{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-error_vll7q_46{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._children_vll7q_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px}._system-message_vll7q_1 ._text-container_vll7q_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:var(--rp-ui-base-fw-regular);font-size:12px;line-height:18px}._content-width_vll7q_70{max-width:max-content}._checkbox_1tbt5_1{display:inline-flex;align-items:center;padding-left:24px;color:var(--rp-ui-color-text-2);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px}._checkbox_1tbt5_1 ._disabled_1tbt5_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_1tbt5_16{position:absolute;opacity:0;top:0;left:0}._control_1tbt5_23{position:absolute;width:16px;height:16px;border:1px solid var(--rp-ui-color-field-border-2);border-radius:3px;margin-left:-24px;box-sizing:border-box;cursor:pointer}._input_1tbt5_16:checked+._control_1tbt5_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_1tbt5_16:hover+._control_1tbt5_23{border-color:var(--rp-ui-color-field-hover-2)}._input_1tbt5_16:active:not(:disabled)+._control_1tbt5_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1tbt5_16:checked:hover+._control_1tbt5_23{border-color:var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_1tbt5_16:checked:active:not(:disabled)+._control_1tbt5_23{border-color:var(--rp-ui-color-primary-focused);background-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_1tbt5_16:disabled+._control_1tbt5_23{border-color:var(--rp-ui-color-disabled)}._input_1tbt5_16:checked:disabled+._control_1tbt5_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E");opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_1tbt5_16:focus+._control_1tbt5_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked)+._control_1tbt5_23{border-color:var(--rp-ui-color-field-border);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked)+._control_1tbt5_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border-2);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):hover+._control_1tbt5_23{border-color:var(--rp-ui-color-field-border-2-hover);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):hover+._control_1tbt5_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-primary-hover);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):active:not(:disabled)+._control_1tbt5_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):active:not(:disabled)+._control_1tbt5_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border-2);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):disabled+._control_1tbt5_23{border-color:var(--rp-ui-color-field-borderd);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):disabled+._control_1tbt5_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._children_1tbt5_149{cursor:pointer}._children_1tbt5_149 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_1tbt5_149 a:focus,._children_1tbt5_149 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._toggle_1c7gt_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_1c7gt_14{margin-left:40px}._children-container_1c7gt_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1c7gt_14 a:focus,._children-container_1c7gt_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_1c7gt_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_1c7gt_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_1c7gt_47:before{border-radius:50%}._input_1c7gt_51{position:absolute;opacity:0;top:0;left:0}._input_1c7gt_51:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_1c7gt_51:focus-visible{outline:none}._input_1c7gt_51:focus:not(:disabled):after,._input_1c7gt_51:focus-visible:not(:disabled)+._slider_1c7gt_27:after{top:50%;left:50%;content:"";position:absolute;width:100%;height:100%;border:2px solid var(--rp-ui-base-topaz-focused);border-radius:12px;transform:translate(-50%,-50%)}._input_1c7gt_51:checked+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz)}._input_1c7gt_51:checked+._slider_1c7gt_27:before{transform:translate(12px)}._input_1c7gt_51:hover:not(:disabled)+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-400)}._input_1c7gt_51:checked:hover+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz-hover)}._input_1c7gt_51:checked:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_1c7gt_92{opacity:.3;cursor:default}._field-number_1wxs7_1{position:relative;display:inline-flex;flex-direction:column}._field-number_1wxs7_1._disabled_1wxs7_6{opacity:.4}._label_1wxs7_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_1wxs7_21{display:inline-flex;cursor:pointer}._input-container_1wxs7_26{display:inline-flex;align-items:center;padding:6px 8px;border:1px solid var(--rp-ui-base-e-200);box-sizing:border-box;border-radius:3px;background:var(--rp-ui-base-bg-000);-webkit-user-select:none;user-select:none}._input-container_1wxs7_26:focus-within:not(._error_1wxs7_36._touched_1wxs7_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_1wxs7_26:hover:not(._disabled_1wxs7_6):not(:focus-within):not(._error_1wxs7_36._touched_1wxs7_36){border-color:var(--rp-ui-base-e-300)}._input-container_1wxs7_26._filled_1wxs7_44:not(:focus-within){border-color:var(--rp-ui-base-e-200)}._input-container_1wxs7_26._error_1wxs7_36._touched_1wxs7_36{border-color:var(--rp-ui-base-error)}._input-field_1wxs7_51{display:flex;align-items:center;justify-content:center;height:20px;min-width:44px;margin:2px 4px 0;text-align:center;cursor:text}._input-field_1wxs7_51._disabled_1wxs7_6{cursor:default}._input_1wxs7_26{padding:0;margin:0;border:none;text-align:center;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;color:var(--rp-ui-base-almost-black)}._input_1wxs7_26:focus{outline:none}._input_1wxs7_26:focus::placeholder{color:transparent}._input_1wxs7_26::placeholder{color:var(--rp-ui-base-e-200)}._input_1wxs7_26::-webkit-inner-spin-button,._input_1wxs7_26::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}@font-face{font-family:Roboto;font-weight:400;font-display:swap;font-style:normal;src:local("Roboto Regular"),local("Roboto-Regular"),url(./fonts/Roboto/Roboto-Regular.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:500;font-display:swap;font-style:normal;src:local("Roboto Medium"),local("Roboto-Medium"),url(./fonts/Roboto/Roboto-Medium.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:700;font-display:swap;font-style:normal;src:local("Roboto-Bold"),local("Roboto-Bold"),url(./fonts/Roboto/Roboto-Bold.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:300;font-display:swap;font-style:normal;src:local("Open Sans Light"),local("OpenSans-Light"),url(./fonts/OpenSans/OpenSans-Light.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:400;font-display:swap;font-style:normal;src:local("Open Sans Regular"),local("OpenSans-Regular"),url(./fonts/OpenSans/OpenSans-Regular.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:500;font-display:swap;font-style:normal;src:local("Open Sans Medium"),local("OpenSans-Medium"),url(./fonts/OpenSans/OpenSans-Medium.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:600;font-display:swap;font-style:normal;src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(./fonts/OpenSans/OpenSans-Semibold.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:700;font-display:swap;font-style:normal;src:local("Open Sans Bold"),local("OpenSans-Bold"),url(./fonts/OpenSans/OpenSans-Bold.ttf) format("truetype")}:root{--rp-ui-base-bg-000: #ffffff;--rp-ui-base-bg-100: #f7f7f8;--rp-ui-base-bg-200: #eceff4;--rp-ui-base-error: #dc5959;--rp-ui-base-error-hover: #f24a4a;--rp-ui-base-error-pressed: #c54141;--rp-ui-base-error-focused: #00b0d1;--rp-ui-base-topaz-100: #e5f5f8;--rp-ui-base-topaz: #00829b;--rp-ui-base-topaz-hover: #009dbb;--rp-ui-base-topaz-focused: #00b0d1;--rp-ui-base-topaz-pressed: #00758c;--rp-ui-base-almost-black: #3f3f3f;--rp-ui-base-icon-priority-high: #dc5959;--rp-ui-base-icon-priority-medium: #ffbc6c;--rp-ui-base-icon-priority-low: #3e7be6;--rp-ui-base-icon-priority-unspecified: #c1c7d0;--rp-ui-base-e-100: #e3e7ec;--rp-ui-base-e-200: #c1c7d0;--rp-ui-base-e-300: #a2aab5;--rp-ui-base-e-400: #8d95a1;--rp-ui-base-dark-bg: #101010;--rp-ui-base-dark-bg-solid-98: #141414;--rp-ui-base-dark-error: #ff4040;--rp-ui-base-dark-error-text: #ff6666;--rp-ui-base-dark-log-error: #ff3222;--rp-ui-base-dark-log-fatal: #c2352b;--rp-ui-base-dark-topaz-main: #1a9cb0;--rp-ui-base-dark-topaz-hover: #1cb0c7;--rp-ui-base-dark-topaz-focused: #1dbdd6;--rp-ui-base-dark-topaz-pressed: #9ee7f2;--rp-ui-base-dark-topaz-text: #3abcd0;--rp-ui-base-dark-topaz-additional: #00505d;--rp-ui-base-dark-e-50: #e8e8e8;--rp-ui-base-dark-e-100: #cfcfcf;--rp-ui-base-dark-e-150: #8f8f8f;--rp-ui-base-dark-e-200: #626262;--rp-ui-base-dark-e-300: #383838;--rp-ui-base-dark-e-400: #262626;--rp-ui-base-dark-e-450: #282828;--rp-ui-base-dark-e-500: #222222;--rp-ui-base-sm-warning: #d78706;--rp-ui-base-sm-warning-line-100: #fceecb;--rp-ui-base-sm-warning-line-200: #fbe7b6;--rp-ui-base-sm-error: #db3549;--rp-ui-base-sm-error-line-100: #fccbcb;--rp-ui-base-sm-error-line-200: #ffc0bd;--rp-ui-base-sm-info-line-100: #ced3db;--rp-ui-base-defect-type-AB: #ffc208;--rp-ui-base-tag-value-text: #394db6;--rp-ui-base-tag-value-background: #ced8fc;--rp-ui-base-tag-key-text: #6f4599;--rp-ui-base-tag-key-background: #dac3e6;--rp-ui-base-system-issue-group: #3e7be6;--rp-ui-base-product-bug-group: #d32f2f;--rp-ui-base-automation-bug-group: #ffc208;--rp-ui-base-no-defect-bug-group: #76839b;--rp-ui-base-test-execution-status-passed: #3aa76d;--rp-ui-base-shadow: 0px 1px 3px rgba(55, 67, 98, .1);--rp-ui-base-shadow-hover: 0px 1px 3px rgba(55, 67, 98, .2);--rp-ui-base-shadow-secondary: 0 8px 40px rgba(0, 0, 0, .15);--rp-ui-base-tooltip-bg: rgba(34, 34, 34, .91);--rp-ui-base-almost-black-slight-light: rgba(63, 63, 63, .95);--rp-ui-base-dark-bg-light: rgba(16, 16, 16, .15);--rp-ui-base-overlay: rgba(141, 149, 161, .35);--rp-ui-base-overlay-light-cyan: rgba(208, 240, 241, .7);--rp-ui-base-font-family: Roboto, Arial, Helvetica, sans-serif;--rp-ui-base-font-family-heading: OpenSans, Segoe UI, Tahoma, sans-serif;--rp-ui-base-fw-thin: 100;--rp-ui-base-fw-extra-light: 200;--rp-ui-base-fw-light: 300;--rp-ui-base-fw-regular: 400;--rp-ui-base-fw-medium: 500;--rp-ui-base-fw-semi-bold: 600;--rp-ui-base-fw-bold: 700;--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-field-icon: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-light{--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-field-icon: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-dark{--rp-ui-color-bg: var(--rp-ui-base-dark-bg);--rp-ui-color-bg-2: var(--rp-ui-base-dark-e-500);--rp-ui-color-bg-3: var(--rp-ui-base-dark-bg-solid-98);--rp-ui-color-primary: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-primary-hover: var(--rp-ui-base-dark-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-dark-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-dark-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-dark-topaz-text);--rp-ui-color-error: var(--rp-ui-base-dark-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-dark-e-50);--rp-ui-color-text-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-text-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-2: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-border: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-border-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-dark-e-50);--rp-ui-color-field-border-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-hover: var(--rp-ui-base-e-200);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-300);--rp-ui-color-field-opened: var(--rp-ui-base-e-200);--rp-ui-color-field-placeholder: var(--rp-ui-base-dark-e-200);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-dark-e-200);--rp-ui-color-field-icon: var(--rp-ui-base-dark-e-50);--rp-ui-color-radio-checked: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-disabled: var(--rp-ui-base-dark-e-100);--rp-ui-opacity-default: 50%}._theme-provider_xipmx_1{height:100%;width:100%}._table_qun9e_1{width:100%;max-width:1200px}._table_qun9e_1 *{box-sizing:border-box}._table-header_qun9e_9{display:flex;width:100%;height:32px;align-items:center}._table-row_qun9e_16{display:flex;width:100%;height:64px}._table-row_qun9e_16 ._table-row-content_qun9e_21{display:flex;align-items:center;height:100%;flex:1;box-shadow:var(--rp-ui-base-shadow-hover);background-color:var(--rp-ui-base-bg-000);border-radius:4px;max-width:100%}._table-row_qun9e_16._size-small_qun9e_31{height:44px}._table-row_qun9e_16._size-large_qun9e_34{height:80px}._table-body_qun9e_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_qun9e_45,._table-cell_qun9e_45{font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);padding:0 16px}._table-header-cell_qun9e_45._action-menu-cell_qun9e_50,._table-cell_qun9e_45._action-menu-cell_qun9e_50{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_qun9e_45:not(._action-menu-cell_qun9e_50),._table-cell_qun9e_45:not(._action-menu-cell_qun9e_50){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_qun9e_45._checkbox-cell_qun9e_60,._table-cell_qun9e_45._checkbox-cell_qun9e_60{width:48px;display:flex;justify-content:center;height:100%;cursor:pointer;flex-shrink:0}._table-header-cell_qun9e_45._checkbox-cell_qun9e_60+._table-row-content_qun9e_21,._table-cell_qun9e_45._checkbox-cell_qun9e_60+._table-row-content_qun9e_21{max-width:calc(100% - 48px)}._table-header-cell_qun9e_45._primary-cell_qun9e_71,._table-cell_qun9e_45._primary-cell_qun9e_71{flex:1 1 320px;font-weight:var(--rp-ui-base-fw-medium);text-align:left}._table-header-cell_qun9e_45{font-size:11px;line-height:16px;color:var(--rp-ui-base-e-400);display:flex;align-items:center;text-align:left;background:none;border:none}._table-header-cell_qun9e_45 ._label_qun9e_87{display:flex;align-items:center}._table-header-cell_qun9e_45._sortable-cell_qun9e_91>._label_qun9e_87{cursor:pointer}._table-header-cell_qun9e_45._align-right_qun9e_94{justify-content:flex-end}._table-header-cell_qun9e_45._align-right_qun9e_94 svg{margin-right:-16px}._table-header-cell_qun9e_45._align-center_qun9e_100{justify-content:center}._table-cell_qun9e_45{font-size:13px;line-height:20px}._header_1q16i_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_1q16i_1 ._dropdowns-wrapper_1q16i_8{display:flex;align-items:center;column-gap:8px}._header_1q16i_1 ._button-prev_1q16i_13,._header_1q16i_1 ._button-next_1q16i_14{all:unset;align-self:center;width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13 svg,._header_1q16i_1 ._button-next_1q16i_14 svg{width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25),._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25){cursor:pointer}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25) svg>path,._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_1q16i_1 ._button-prev_1q16i_13._disabled_1q16i_25,._header_1q16i_1 ._button-next_1q16i_14._disabled_1q16i_25{opacity:.3;pointer-events:none}._header_1q16i_1 ._button-next_1q16i_14{transform:rotate(180deg)}._header_1q16i_1 ._dropdown_1q16i_8{width:auto}._header_1q16i_1 ._dropdown_1q16i_8._month-dropdown_1q16i_44{width:117px}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold)}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1pok6_5{box-sizing:border-box;background-color:var(--rp-ui-base-bg-000);width:344px;padding:30px 32px 32px;border-radius:8px;box-shadow:0 8px 40px var(--rp-ui-base-dark-bg-light);border:none;margin-top:4px}._calendar_1pok6_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom{width:100%;background-color:var(--rp-ui-base-bg-000);border-bottom:none;padding:0}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names{display:flex;height:40px;justify-content:space-between;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names .react-datepicker__day-name{width:40px;text-align:center}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week{height:32px;display:flex;align-items:center;justify-content:space-between;font-family:var(--rp-ui-base-font-family);color:var(--rp-ui-base-dark-e-500);font-size:13px;line-height:20px}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--selecting-range-end,.react-datepicker__day--selecting-range-start,.react-datepicker__day--range-start,.react-datepicker__day--range-end){background-color:var(--rp-ui-base-bg-200);height:32px;line-height:32px;position:relative}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--selected{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._date_1pok6_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1pok6_5 ._current-date_1pok6_89:focus-visible,._calendar_1pok6_5 ._date_1pok6_90:focus-visible{outline:none}._calendar_1pok6_5 ._date_1pok6_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._current-date_1pok6_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:var(--rp-ui-base-topaz);line-height:38px;color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 ._date_1pok6_90:hover:not(._current-date_1pok6_89):not(._selected-range_1pok6_119):not(._end-date_1pok6_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1pok6_5 ._end-date_1pok6_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 ._end-date_1pok6_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:10px solid var(--rp-ui-base-topaz);border-radius:50%;display:block;z-index:2;box-sizing:border-box}._calendar_1pok6_5 ._end-date_1pok6_119:before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;left:-9px;z-index:1;top:4px}._calendar_1pok6_5 ._selected-range_1pok6_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1pok6_5 ._selected-range_1pok6_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:after{display:block}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:not(:first-child):before{top:4px}._calendar_1pok6_5 ._selected-range_1pok6_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:1px solid var(--rp-ui-base-topaz);border-radius:50%;display:none;z-index:2;box-sizing:border-box}._calendar_1pok6_5 ._selected-range_1pok6_119:not(:first-child):before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;top:0;left:-9px;z-index:1}._calendar_1pok6_5 ._disabled_1pok6_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1pok6_5 ._disabled_1pok6_202:focus-visible{outline:none}._popper_1pok6_210{z-index:10}._input_1pok6_214{width:100%;min-width:138px}._dropdown-option_1etj7_1{display:flex;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;box-sizing:border-box;cursor:pointer;color:var(--rp-ui-color-text-3);padding:9px 12px 7px}._dropdown-option_1etj7_1._disabled_1etj7_12{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_1etj7_1._hidden_1etj7_16{display:none}._dropdown-option_1etj7_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover{border:none;padding:9px 12px 7px}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._selected_1etj7_34:not(._multi-select_1etj7_34){background:var(--rp-ui-base-topaz-100);color:var(--rp-ui-base-topaz)}._single-option_1etj7_39{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._sub-option_1etj7_46{padding-left:24px}._container_5enku_1{position:relative;display:inline-block;width:100%}._icon_5enku_7{width:16px;height:16px;margin-right:8px}._arrow_5enku_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_5enku_19{display:flex;align-items:center;text-align:start;padding:9px 12px 7px;width:100%;height:36px;border:1px solid var(--rp-ui-color-field-border);border-radius:3px;background-color:var(--rp-ui-color-field-bg);box-sizing:border-box;transition:border-color .2s linear;cursor:pointer}._dropdown_5enku_19._transparent-background_5enku_33{background-color:transparent}._dropdown_5enku_19._disabled_5enku_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_5enku_19._disabled_5enku_36 ._arrow_5enku_13 svg path{opacity:.4}._dropdown_5enku_19._disabled_5enku_36 ._value_5enku_43{color:var(--rp-ui-color-disabled)}._dropdown_5enku_19._error_5enku_46._touched_5enku_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_5enku_19:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_5enku_19:active,._dropdown_5enku_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_5enku_19:active ._arrow_5enku_13 svg path,._dropdown_5enku_19:focus-visible ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46) ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_5enku_19._opened_5enku_50 ._arrow_5enku_13{transform:rotate(180deg)}._dropdown_5enku_19 ._value_5enku_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._dropdown_5enku_19 ._value_5enku_43._placeholder_5enku_83{color:var(--rp-ui-color-field-placeholder-3)}@media (max-width: 767px){._dropdown_5enku_19 ._mobile-disabled_5enku_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_5enku_92{position:absolute;top:100%;padding:8px 0;width:max-content;max-width:100%;min-width:100%;min-height:10px;border-radius:3px;box-sizing:border-box;z-index:10;box-shadow:var(--rp-ui-base-shadow-secondary);background:var(--rp-ui-color-field-bg)}._select-list_5enku_92._opened_5enku_50:focus-visible{outline:none}._select-list_5enku_92._limited-width_5enku_109{max-width:384px}._options-container_5enku_113{display:flex;flex-direction:column}._ghost_5enku_118{border-color:transparent;background:transparent;padding:9px 0 7px}._ghost_5enku_118._disabled_5enku_36{background:transparent}._ghost_5enku_118:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50:not(:active):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50 ._value_5enku_43{color:var(--rp-ui-color-primary-pressed)}._ghost_5enku_118:active,._ghost_5enku_118:focus-visible{padding:7px 0}._divider_5enku_139{height:1px;margin:8px 12px;background-color:var(--rp-ui-base-e-100)}._item-counter_4g6do_1{display:inline-block;width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector_cjnvy_1{display:flex;flex-direction:column}._size-option_cjnvy_6{width:100%;padding:8px 16px;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_cjnvy_6:hover{background-color:var(--rp-ui-base-bg-200)}._size-option_cjnvy_6._selected_cjnvy_23{color:var(--rp-ui-base-topaz);background-color:var(--rp-ui-base-topaz-100)}._page-size-control_suy7z_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._page-size-control_suy7z_1 ._page-size-options_suy7z_9{padding:8px 0}._size-selector-button_suy7z_13{margin-right:4px;font-weight:var(--rp-ui-base-fw-bold)}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_1gl9o_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_1gl9o_10{text-align:left}._page-selector-button_1gl9o_14{margin-left:4px;font-weight:var(--rp-ui-base-fw-bold)}._bar_y74hy_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_y74hy_9{display:inline-block;height:16px}._section-with-tooltip_y74hy_9:hover ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_y74hy_9:active ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_y74hy_9:first-child ._section_y74hy_9{border-radius:3px 0 0 3px}._section-with-tooltip_y74hy_9:last-child ._section_y74hy_9{border-radius:0 3px 3px 0}._section_y74hy_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_y74hy_9._selected_y74hy_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_y74hy_37{width:inherit;height:16px}._tooltip_y74hy_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_y74hy_37 ._tooltip-text_y74hy_48{font-weight:var(--rp-ui-base-fw-regular);padding-bottom:8px}._tooltip_y74hy_37 ._page-number_y74hy_52{font-weight:var(--rp-ui-base-fw-bold)}._section-with-tooltip_y74hy_9,._tooltip-wrapper_y74hy_37{position:relative;top:-4px}._page-navigator_pyt8p_1{display:flex;gap:16px;align-items:center}._page-buttons_pyt8p_7{display:inline-flex;gap:16px}._page-button_pyt8p_7{display:inline-flex;justify-content:center;align-items:center;width:20px;height:20px;padding:2px;border-radius:2px}._page-button_pyt8p_7._next_pyt8p_21{transform:rotateY(180deg)}._page-button_pyt8p_7:focus{border:2px solid var(--rp-ui-color-primary-focused);padding:0}._page-controls_thyf8_1{display:flex;flex-direction:row;align-items:center;gap:24px}._total-pages_thyf8_8{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left}._pagination_w2r3n_1{display:flex;justify-content:space-between;align-items:center;width:100%;max-width:1200px;padding:24px 0;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._field-label_10m6x_1{font-size:13px;line-height:20px;display:block;position:relative;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-color-text)}._field-label_10m6x_1 ._asterisk_10m6x_11{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._field-label_10m6x_1._disabled_10m6x_17{pointer-events:none}._modal-content_zh8d2_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-color-text);white-space:pre-line;word-break:break-word;padding:0 0 16px}._modal-content_zh8d2_1._scrollable_zh8d2_12{width:calc(100% - 34px)}._buttons-block_1mwne_1{display:flex;align-items:center;column-gap:10px}._button-container_1mwne_7{display:inline-block;min-width:70px}._modal-footer_1mwne_12{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1mwne_12._with-extra-node_1mwne_19{justify-content:space-between}._size-small_1mwne_23{flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._buttons-block_1mwne_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._button-container_1mwne_7{margin:0 0 10px}._size-small_1mwne_23 ._button-container_1mwne_7:last-child{margin-bottom:0}._modal-header_w4aaf_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_w4aaf_1._width-description_w4aaf_10{padding-bottom:8px}._modal-header-content_w4aaf_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_w4aaf_20{font-family:var(--rp-ui-base-font-family-heading);flex-grow:1;vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._close-modal-icon_w4aaf_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_yxql5_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_yxql5_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_yxql5_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_yxql5_20{position:fixed;width:100%;height:100%}._modal-window_yxql5_26{position:absolute;left:50%;transform:translate(-50%);display:inline-block;margin-bottom:10px;padding:32px 40px;box-sizing:border-box;background-color:var(--rp-ui-base-bg-100);text-align:left;border-radius:16px;box-shadow:var(--rp-ui-base-shadow-secondary);opacity:1;outline:none;max-height:90%}._description_yxql5_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_yxql5_43._scrollable_yxql5_53{width:calc(100% - 34px)}._size-default_yxql5_57{width:480px}@media (max-width: 480px){._size-default_yxql5_57{right:10px;left:10px;transform:none;width:auto}}._size-small_yxql5_69{width:320px}@media (max-width: 320px){._size-small_yxql5_69{right:10px;left:10px;transform:none;width:auto}}._size-large_yxql5_81{width:720px}@media (max-width: 720px){._size-large_yxql5_81{right:10px;left:10px;transform:none;width:auto}}._popover-wrapper_n3nff_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_n3nff_1{display:block;position:absolute;z-index:10;font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;background-color:var(--rp-ui-color-bg);border-radius:8px;box-shadow:var(--rp-ui-base-shadow-secondary);padding:16px;min-height:52px;min-width:120px;max-width:fit-content;box-sizing:border-box;outline:0;width:max-content;color:var(--rp-ui-color-text)}._title_n3nff_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;margin-bottom:8px}._system-alert_1py1m_1{display:flex;box-sizing:border-box;width:600px;padding:16px;gap:16px;border-radius:16px;justify-content:space-between;box-shadow:var(--rp-ui-base-shadow-secondary)}._system-alert_1py1m_1._error_1py1m_11{background-color:var(--rp-ui-base-sm-error)}._system-alert_1py1m_1._success_1py1m_14{background-color:var(--rp-ui-base-test-execution-status-passed)}._system-alert_1py1m_1._info_1py1m_17{background-color:var(--rp-ui-base-no-defect-bug-group)}._system-alert_1py1m_1 ._icon-wrapper_1py1m_20{width:20px;height:24px;display:grid;place-content:center}._system-alert_1py1m_1 ._content-wrapper_1py1m_26{display:flex;gap:16px;flex-direction:column;flex:1}._system-alert_1py1m_1 ._content-wrapper_1py1m_26 ._title_1py1m_32{text-align:start;font-family:var(--rp-ui-base-font-family);font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-semi-bold);color:var(--rp-ui-base-bg-000);display:-webkit-box;max-width:100%;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}._system-alert_1py1m_1 ._close-button_1py1m_45{background:none;border:none;width:24px;height:24px;cursor:pointer}._system-alert_1py1m_1 ._close-button_1py1m_45 svg path{fill:var(--rp-ui-base-bg-000)}._tooltip-wrapper_lwpn2_16{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip-content_lwpn2_23{font-size:11px;line-height:16px;padding:16px;border-radius:8px;background-color:var(--rp-ui-base-tooltip-bg);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-bg-000);word-wrap:break-word;white-space:pre-wrap;box-sizing:border-box;width:100%}
|
|
1
|
+
._bubbles-loader_kn4ln_1{position:relative}._bubbles-loader_kn4ln_1._color-topaz_kn4ln_4 ._bubble_kn4ln_1{background-color:var(--rp-ui-base-dark-topaz-main)}._bubble_kn4ln_1{position:absolute;width:6px;height:6px;border-radius:50%;background:var(--rp-ui-base-bg-000);transform:scale(.3);animation:_bubbles_kn4ln_1 2.5s infinite linear}._bubble_kn4ln_1:nth-child(1){left:0;animation-delay:.1s}._bubble_kn4ln_1:nth-child(2){left:7px;animation-delay:.3s}._bubble_kn4ln_1:nth-child(3){left:14px;animation-delay:.5s}._bubble_kn4ln_1:nth-child(4){left:21px;animation-delay:.7s}._bubble_kn4ln_1:nth-child(5){left:28px;animation-delay:.9s}._bubble_kn4ln_1:nth-child(6){left:35px;animation-delay:1.1s}._bubble_kn4ln_1:nth-child(7){left:42px;animation-delay:1.3s}@keyframes _bubbles_kn4ln_1{20%,60%{transform:scale(.5)}40%{transform:scale(1)}}._text-area_1pqer_1{font-size:13px;line-height:20px;width:100%;min-height:72px;padding:9px 12px 7px;outline:none;border:1px solid var(--rp-ui-base-e-200);border-radius:3px;box-sizing:border-box;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_1pqer_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19{border:1px solid var(--rp-ui-base-error)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19)+._max-length-display_1pqer_26,._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19+._max-length-display_1pqer_26{display:block}._text-area_1pqer_1::placeholder{color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:has(~._max-length-display_1pqer_26){padding-bottom:24px}._additional-content_1pqer_36 ._error-text_1pqer_36{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-error)}._additional-content_1pqer_36 ._help-text_1pqer_44{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._max-length-display_1pqer_26{font-size:11px;line-height:16px;position:absolute;margin-top:-29px;display:none;padding-left:12px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._disabled_1pqer_65{opacity:.3;pointer-events:none}._icon-container_1xyy3_1,._icon-container-end_1xyy3_1,._icon-container-start_1xyy3_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_1xyy3_1{margin-right:4px}._collapsed_1xyy3_13 ._icon-container-start_1xyy3_1{cursor:pointer}._icon-container-end_1xyy3_1{margin-left:4px}._field_1xyy3_21{display:flex;align-items:center;height:36px;width:100%;padding:7px 12px;box-sizing:border-box;border:1px solid var(--rp-ui-color-field-border-3);border-radius:3px;background-color:var(--rp-ui-color-field-bg-3);transition:width .2s,padding .2s,border .1s}._field_1xyy3_21._default-width_1xyy3_33{width:240px}._field_1xyy3_21._collapsed_1xyy3_13{width:22px;border-width:0;overflow:hidden;padding:0;background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13:hover{background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13 ._placeholder_1xyy3_46{display:none}._field_1xyy3_21:hover:not(._disabled_1xyy3_49){border-color:var(--rp-ui-color-field-border-3-hover)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52{border-color:var(--rp-ui-base-error)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52) ._max-length-display_1xyy3_59,._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52 ._max-length-display_1xyy3_59{display:block}._field_1xyy3_21._disabled_1xyy3_49{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_1xyy3_21._disabled_1xyy3_49 ._placeholder_1xyy3_46{color:var(--rp-ui-base-e-300)}._input-container_1xyy3_70{position:relative;width:100%}._input-container_1xyy3_70._type-password_1xyy3_74 ._input_1xyy3_70{width:calc(100% - 30px);text-overflow:unset}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78{position:absolute;z-index:2;top:4px;right:-2px;height:16px;width:16px}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78 svg path{fill:var(--rp-ui-color-field-icon)}._input_1xyy3_70{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);width:100%;margin:2px 0 0;padding:0;border:none;background:transparent;overflow:hidden;text-overflow:ellipsis;color:var(--rp-ui-color-text-3)}._input_1xyy3_70:focus{outline:none}._input_1xyy3_70:disabled{color:var(--rp-ui-base-e-300)}._placeholder_1xyy3_46{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none;white-space:nowrap}._icon_1xyy3_1,._start-icon_1xyy3_124,._clear-icon_1xyy3_125{display:inline-block;width:16px;height:16px}._start-icon_1xyy3_124,._clear-icon_1xyy3_125{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._start-icon_1xyy3_124 svg>path,._clear-icon_1xyy3_125 svg>path{fill:var(--rp-ui-color-field-icon)}._start-icon_1xyy3_124._disabled_1xyy3_49,._clear-icon_1xyy3_125._disabled_1xyy3_49{pointer-events:none}._start-icon_1xyy3_124:hover svg>path,._clear-icon_1xyy3_125:hover svg>path{fill:var(--rp-ui-color-field-hover-2)}._start-icon_1xyy3_124:focus svg>path,._clear-icon_1xyy3_125:focus svg>path{fill:var(--rp-ui-color-primary-focused)}._start-icon_1xyy3_124:active svg>path,._clear-icon_1xyy3_125:active svg>path{fill:var(--rp-ui-color-primary-pressed)}._additional-content_1xyy3_161{margin-top:4px}._additional-content_1xyy3_161._disabled_1xyy3_49{pointer-events:none}._text_1xyy3_168,._max-length-display_1xyy3_59{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular)}._text_1xyy3_168{display:block}._max-length-display_1xyy3_59{display:none;margin-left:15px;align-self:end;color:var(--rp-ui-base-e-300);word-break:initial}._error-text_1xyy3_188{color:var(--rp-ui-base-error)}._help-text_1xyy3_192{color:var(--rp-ui-base-dark-e-300)}._base-icon-button_1q88n_1{margin:0;padding:0;outline:none;background:transparent;border:none;cursor:pointer}._base-icon-button_1q88n_1 svg path{fill:var(--rp-ui-base-e-300)}._base-icon-button_1q88n_1._disabled_1q88n_12{opacity:40%;cursor:default}._base-icon-button_1q88n_1:hover:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-e-400)}._base-icon-button_1q88n_1:active:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-topaz-pressed)}._base-icon-button_1q88n_1:focus-visible:not(._disabled_1q88n_12,:active) svg path{fill:var(--rp-ui-base-topaz-focused)}._radio-button_1fetm_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_1fetm_1._disabled_1fetm_9{cursor:default}._radio-button_1fetm_1._disabled_1fetm_9 ._children-container_1fetm_12{color:var(--rp-ui-base-e-300)}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15{opacity:.3}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15:after{background-color:transparent}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15._checked_1fetm_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_1fetm_1:focus-visible:not(._disabled_1fetm_9) ._toggler_1fetm_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_1fetm_28{display:none}._toggler_1fetm_15{display:flex;width:16px;height:16px;min-width:16px;box-sizing:border-box;margin:auto 10px auto 0;border-radius:100%;border-width:1px;border-style:solid;line-height:18;border-color:var(--rp-ui-color-field-border-2)}._toggler_1fetm_15:after{width:8px;height:8px;content:"";display:block;border-radius:100%;margin:auto;background-color:var(--rp-ui-color-radio-checked);opacity:0;transform:scale(.5);transition:transform .2s,opacity .2s}._toggler_1fetm_15:hover:not(._disabled_1fetm_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_1fetm_15:hover:not(._disabled_1fetm_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_1fetm_15._checked_1fetm_21:after,._toggler_1fetm_15._disabled_1fetm_9:after{transform:scale(1);opacity:1}._children-container_1fetm_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_1fetm_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1fetm_12 a:focus,._children-container_1fetm_12 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._button_j5f2i_1{display:inline-flex;justify-content:center;align-items:center;height:36px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_j5f2i_18{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_j5f2i_18:hover:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_j5f2i_18:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_j5f2i_18:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_j5f2i_18 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_j5f2i_38{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_j5f2i_38:hover:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_j5f2i_38:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_j5f2i_38:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_j5f2i_38 svg *{fill:var(--rp-ui-color-primary-text)}._danger_j5f2i_59{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_j5f2i_59:hover:not(._disabled_j5f2i_23){opacity:.9;background-color:var(--rp-ui-color-error-hover)}._danger_j5f2i_59:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_j5f2i_59:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_j5f2i_59 svg *{fill:var(--rp-ui-base-bg-000)}._text_j5f2i_79{min-width:auto;height:auto;border:0;padding:2px;background:none;line-height:18px;color:var(--rp-ui-color-primary-text)}._text_j5f2i_79:hover:not(._disabled_j5f2i_23){color:var(--rp-ui-color-primary-hover)}._text_j5f2i_79:hover:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-primary-hover)}._text_j5f2i_79:active:not(._disabled_j5f2i_23){color:var(--rp-ui-color-primary-pressed)}._text_j5f2i_79:active:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_j5f2i_79:focus:not(._disabled_j5f2i_23,:active){padding:0;border:2px solid var(--rp-ui-color-primary-focused)}._text_j5f2i_79 svg *{fill:var(--rp-ui-color-primary-text)}._ghost-danger_j5f2i_108{border:1px solid var(--rp-ui-color-error);background-color:transparent;color:var(--rp-ui-color-error)}._ghost-danger_j5f2i_108:hover:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-error-hover);color:var(--rp-ui-color-error-hover)}._ghost-danger_j5f2i_108:active:not(._disabled_j5f2i_23){border:1px solid var(--rp-ui-color-error-pressed);color:var(--rp-ui-color-error-pressed)}._ghost-danger_j5f2i_108:focus:not(._disabled_j5f2i_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._ghost-danger_j5f2i_108 svg *{fill:var(--rp-ui-color-error)}._text-danger_j5f2i_128{min-width:auto;height:auto;border:0;padding:2px;background:none;line-height:18px;color:var(--rp-ui-color-error)}._text-danger_j5f2i_128:hover:not(._disabled_j5f2i_23){color:var(--rp-ui-color-error-hover)}._text-danger_j5f2i_128:hover:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-error-hover)}._text-danger_j5f2i_128:active:not(._disabled_j5f2i_23){color:var(--rp-ui-color-error-pressed)}._text-danger_j5f2i_128:active:not(._disabled_j5f2i_23) svg *{fill:var(--rp-ui-color-error-pressed)}._text-danger_j5f2i_128:focus:not(._disabled_j5f2i_23,:active){padding:0;border:2px solid var(--rp-ui-color-error-focused)}._text-danger_j5f2i_128 svg *{fill:var(--rp-ui-color-error)}._disabled_j5f2i_23{opacity:var(--rp-ui-opacity-default);cursor:default}._width-min-width_j5f2i_162{min-width:120px}._width-content_j5f2i_166{min-width:auto}._width-wide-content_j5f2i_170{padding:9px 47px 7px;margin:0}._width-parent_j5f2i_175{display:flex;width:100%}._icon_j5f2i_180{display:inline-block;width:16px;height:16px}._icon-start_j5f2i_186{margin:auto 8px auto 0}._icon-end_j5f2i_190{margin:auto 0 auto 8px;order:1}._spin-loader_qn4ih_1{width:16px;height:16px;margin:3px 7px 3px 3px;flex-shrink:0}._spinner_qn4ih_8{display:flex;align-items:center;justify-content:center;width:100%;height:100%;border-radius:50%;flex-shrink:0;position:relative;mask:radial-gradient(circle,transparent 55%,var(--rp-ui-color-primary) 0%);animation:_spin_qn4ih_1 1s infinite linear}._spinner_qn4ih_8._color-topaz_qn4ih_20{background:conic-gradient(transparent 0%,var(--rp-ui-color-primary))}@keyframes _spin_qn4ih_1{to{transform:rotate(1turn)}}._system-message_vll7q_1{min-height:85px;height:auto;width:100%;background:var(--rp-ui-base-bg-000);border-radius:8px;box-shadow:var(--rp-ui-base-shadow);display:flex;flex-direction:column;font-family:var(--rp-ui-base-font-family)}._system-message_vll7q_1 ._stripes-info_vll7q_12{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-info-line-100),var(--rp-ui-base-sm-info-line-100) 24px,var(--rp-ui-base-e-200) 24px,var(--rp-ui-base-e-200) 48px)}._system-message_vll7q_1 ._stripes-warning_vll7q_17{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-warning-line-100),var(--rp-ui-base-sm-warning-line-100) 24px,var(--rp-ui-base-sm-warning-line-200) 24px,var(--rp-ui-base-sm-warning-line-200) 48px)}._system-message_vll7q_1 ._stripes-error_vll7q_22{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-error-line-100),var(--rp-ui-base-sm-error-line-100) 24px,var(--rp-ui-base-sm-error-line-200) 24px,var(--rp-ui-base-sm-error-line-200) 48px)}._system-message_vll7q_1 ._text-container_vll7q_27{padding:12px 16px 16px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-info_vll7q_30{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-warning_vll7q_38{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-error_vll7q_46{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._children_vll7q_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px}._system-message_vll7q_1 ._text-container_vll7q_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:var(--rp-ui-base-fw-regular);font-size:12px;line-height:18px}._content-width_vll7q_70{max-width:max-content}._checkbox_1xwtn_1{display:inline-flex;align-items:center;padding-left:24px;color:var(--rp-ui-color-text-2);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px}._checkbox_1xwtn_1 ._disabled_1xwtn_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_1xwtn_16{position:absolute;opacity:0;top:0;left:0}._control_1xwtn_23{position:absolute;width:16px;height:16px;border:1px solid var(--rp-ui-color-field-border-2);border-radius:3px;margin-left:-24px;box-sizing:border-box;cursor:pointer}._input_1xwtn_16:checked+._control_1xwtn_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_1xwtn_16:hover+._control_1xwtn_23{border-color:var(--rp-ui-color-field-hover-2)}._input_1xwtn_16:active:not(:disabled)+._control_1xwtn_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1xwtn_16:checked:hover+._control_1xwtn_23{border-color:var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_1xwtn_16:checked:active:not(:disabled)+._control_1xwtn_23{border-color:var(--rp-ui-color-primary-focused);background-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_1xwtn_16:disabled+._control_1xwtn_23{border-color:var(--rp-ui-color-disabled);cursor:not-allowed;pointer-events:auto}._input_1xwtn_16:checked:disabled+._control_1xwtn_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E");opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_1xwtn_16:focus+._control_1xwtn_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked)+._control_1xwtn_23{border-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-color:var(--rp-ui-color-primary);position:relative}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked)+._control_1xwtn_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-bg);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked):hover+._control_1xwtn_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;background-color:var(--rp-ui-color-primary-focused);position:relative}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked):hover+._control_1xwtn_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-bg);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked):active:not(:disabled)+._control_1xwtn_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;background-color:var(--rp-ui-color-primary-focused);position:relative}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked):active:not(:disabled)+._control_1xwtn_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border-2);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked):disabled+._control_1xwtn_23{border-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-color:var(--rp-ui-color-primary);position:relative}._input_1xwtn_16._partially-checked_1xwtn_78:not(:checked):disabled+._control_1xwtn_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._children_1xwtn_155{cursor:pointer}._children_1xwtn_155 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_1xwtn_155 a:focus,._children_1xwtn_155 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._toggle_1c7gt_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_1c7gt_14{margin-left:40px}._children-container_1c7gt_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1c7gt_14 a:focus,._children-container_1c7gt_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_1c7gt_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_1c7gt_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_1c7gt_47:before{border-radius:50%}._input_1c7gt_51{position:absolute;opacity:0;top:0;left:0}._input_1c7gt_51:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_1c7gt_51:focus-visible{outline:none}._input_1c7gt_51:focus:not(:disabled):after,._input_1c7gt_51:focus-visible:not(:disabled)+._slider_1c7gt_27:after{top:50%;left:50%;content:"";position:absolute;width:100%;height:100%;border:2px solid var(--rp-ui-base-topaz-focused);border-radius:12px;transform:translate(-50%,-50%)}._input_1c7gt_51:checked+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz)}._input_1c7gt_51:checked+._slider_1c7gt_27:before{transform:translate(12px)}._input_1c7gt_51:hover:not(:disabled)+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-400)}._input_1c7gt_51:checked:hover+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz-hover)}._input_1c7gt_51:checked:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_1c7gt_92{opacity:.3;cursor:default}._field-number_1wxs7_1{position:relative;display:inline-flex;flex-direction:column}._field-number_1wxs7_1._disabled_1wxs7_6{opacity:.4}._label_1wxs7_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_1wxs7_21{display:inline-flex;cursor:pointer}._input-container_1wxs7_26{display:inline-flex;align-items:center;padding:6px 8px;border:1px solid var(--rp-ui-base-e-200);box-sizing:border-box;border-radius:3px;background:var(--rp-ui-base-bg-000);-webkit-user-select:none;user-select:none}._input-container_1wxs7_26:focus-within:not(._error_1wxs7_36._touched_1wxs7_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_1wxs7_26:hover:not(._disabled_1wxs7_6):not(:focus-within):not(._error_1wxs7_36._touched_1wxs7_36){border-color:var(--rp-ui-base-e-300)}._input-container_1wxs7_26._filled_1wxs7_44:not(:focus-within){border-color:var(--rp-ui-base-e-200)}._input-container_1wxs7_26._error_1wxs7_36._touched_1wxs7_36{border-color:var(--rp-ui-base-error)}._input-field_1wxs7_51{display:flex;align-items:center;justify-content:center;height:20px;min-width:44px;margin:2px 4px 0;text-align:center;cursor:text}._input-field_1wxs7_51._disabled_1wxs7_6{cursor:default}._input_1wxs7_26{padding:0;margin:0;border:none;text-align:center;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;color:var(--rp-ui-base-almost-black)}._input_1wxs7_26:focus{outline:none}._input_1wxs7_26:focus::placeholder{color:transparent}._input_1wxs7_26::placeholder{color:var(--rp-ui-base-e-200)}._input_1wxs7_26::-webkit-inner-spin-button,._input_1wxs7_26::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}._selection-wrapper_p4emi_1{display:flex;align-items:center;flex-direction:row}._selected-count-text_p4emi_7{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);color:var(--rp-ui-base-almost-black);margin-right:8px;font-weight:var(--rp-ui-base-fw-bold)}._selected-count-caption_p4emi_16{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);color:var(--rp-ui-base-almost-black)}._divider_p4emi_23{width:1px;height:24px;margin:0 16px;background-color:var(--rp-ui-base-e-100)}._button_p4emi_30 i{width:8px;height:8px;display:flex;justify-content:center;align-items:center;margin:8px 12px 8px 4px}._button_p4emi_30 svg{width:8px;height:8px}@font-face{font-family:Roboto;font-weight:400;font-display:swap;font-style:normal;src:local("Roboto Regular"),local("Roboto-Regular"),url(./fonts/Roboto/Roboto-Regular.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:500;font-display:swap;font-style:normal;src:local("Roboto Medium"),local("Roboto-Medium"),url(./fonts/Roboto/Roboto-Medium.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:700;font-display:swap;font-style:normal;src:local("Roboto-Bold"),local("Roboto-Bold"),url(./fonts/Roboto/Roboto-Bold.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:300;font-display:swap;font-style:normal;src:local("Open Sans Light"),local("OpenSans-Light"),url(./fonts/OpenSans/OpenSans-Light.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:400;font-display:swap;font-style:normal;src:local("Open Sans Regular"),local("OpenSans-Regular"),url(./fonts/OpenSans/OpenSans-Regular.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:500;font-display:swap;font-style:normal;src:local("Open Sans Medium"),local("OpenSans-Medium"),url(./fonts/OpenSans/OpenSans-Medium.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:600;font-display:swap;font-style:normal;src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(./fonts/OpenSans/OpenSans-Semibold.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:700;font-display:swap;font-style:normal;src:local("Open Sans Bold"),local("OpenSans-Bold"),url(./fonts/OpenSans/OpenSans-Bold.ttf) format("truetype")}:root{--rp-ui-base-bg-000: #ffffff;--rp-ui-base-bg-100: #f7f7f8;--rp-ui-base-bg-200: #eceff4;--rp-ui-base-error: #dc5959;--rp-ui-base-error-hover: #f24a4a;--rp-ui-base-error-pressed: #c54141;--rp-ui-base-error-focused: #00b0d1;--rp-ui-base-topaz-100: #e5f5f8;--rp-ui-base-topaz: #00829b;--rp-ui-base-topaz-hover: #009dbb;--rp-ui-base-topaz-focused: #00b0d1;--rp-ui-base-topaz-pressed: #00758c;--rp-ui-base-almost-black: #3f3f3f;--rp-ui-base-icon-priority-high: #dc5959;--rp-ui-base-icon-priority-medium: #ffbc6c;--rp-ui-base-icon-priority-low: #3e7be6;--rp-ui-base-icon-priority-unspecified: #c1c7d0;--rp-ui-base-e-100: #e3e7ec;--rp-ui-base-e-200: #c1c7d0;--rp-ui-base-e-300: #a2aab5;--rp-ui-base-e-400: #8d95a1;--rp-ui-base-dark-bg: #101010;--rp-ui-base-dark-bg-solid-98: #141414;--rp-ui-base-dark-error: #ff4040;--rp-ui-base-dark-error-text: #ff6666;--rp-ui-base-dark-log-error: #ff3222;--rp-ui-base-dark-log-fatal: #c2352b;--rp-ui-base-dark-topaz-main: #1a9cb0;--rp-ui-base-dark-topaz-hover: #1cb0c7;--rp-ui-base-dark-topaz-focused: #1dbdd6;--rp-ui-base-dark-topaz-pressed: #9ee7f2;--rp-ui-base-dark-topaz-text: #3abcd0;--rp-ui-base-dark-topaz-additional: #00505d;--rp-ui-base-dark-e-50: #e8e8e8;--rp-ui-base-dark-e-100: #cfcfcf;--rp-ui-base-dark-e-150: #8f8f8f;--rp-ui-base-dark-e-200: #626262;--rp-ui-base-dark-e-300: #383838;--rp-ui-base-dark-e-400: #262626;--rp-ui-base-dark-e-450: #282828;--rp-ui-base-dark-e-500: #222222;--rp-ui-base-sm-warning: #d78706;--rp-ui-base-sm-warning-line-100: #fceecb;--rp-ui-base-sm-warning-line-200: #fbe7b6;--rp-ui-base-sm-error: #db3549;--rp-ui-base-sm-error-line-100: #fccbcb;--rp-ui-base-sm-error-line-200: #ffc0bd;--rp-ui-base-sm-info-line-100: #ced3db;--rp-ui-base-defect-type-AB: #ffc208;--rp-ui-base-tag-value-text: #394db6;--rp-ui-base-tag-value-background: #ced8fc;--rp-ui-base-tag-key-text: #6f4599;--rp-ui-base-tag-key-background: #dac3e6;--rp-ui-base-system-issue-group: #3e7be6;--rp-ui-base-product-bug-group: #d32f2f;--rp-ui-base-automation-bug-group: #ffc208;--rp-ui-base-no-defect-bug-group: #76839b;--rp-ui-base-test-execution-status-passed: #3aa76d;--rp-ui-base-shadow: 0px 1px 3px rgba(55, 67, 98, .1);--rp-ui-base-shadow-hover: 0px 1px 3px rgba(55, 67, 98, .2);--rp-ui-base-shadow-secondary: 0 8px 40px rgba(0, 0, 0, .15);--rp-ui-base-tooltip-bg: rgba(34, 34, 34, .91);--rp-ui-base-almost-black-slight-light: rgba(63, 63, 63, .95);--rp-ui-base-dark-bg-light: rgba(16, 16, 16, .15);--rp-ui-base-overlay: rgba(141, 149, 161, .35);--rp-ui-base-overlay-light-cyan: rgba(208, 240, 241, .7);--rp-ui-base-font-family: Roboto, Arial, Helvetica, sans-serif;--rp-ui-base-font-family-heading: OpenSans, Segoe UI, Tahoma, sans-serif;--rp-ui-base-fw-thin: 100;--rp-ui-base-fw-extra-light: 200;--rp-ui-base-fw-light: 300;--rp-ui-base-fw-regular: 400;--rp-ui-base-fw-medium: 500;--rp-ui-base-fw-semi-bold: 600;--rp-ui-base-fw-bold: 700;--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-field-icon: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-light{--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-field-icon: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-dark{--rp-ui-color-bg: var(--rp-ui-base-dark-bg);--rp-ui-color-bg-2: var(--rp-ui-base-dark-e-500);--rp-ui-color-bg-3: var(--rp-ui-base-dark-bg-solid-98);--rp-ui-color-primary: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-primary-hover: var(--rp-ui-base-dark-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-dark-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-dark-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-dark-topaz-text);--rp-ui-color-error: var(--rp-ui-base-dark-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-dark-e-50);--rp-ui-color-text-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-text-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-2: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-border: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-border-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-dark-e-50);--rp-ui-color-field-border-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-hover: var(--rp-ui-base-e-200);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-300);--rp-ui-color-field-opened: var(--rp-ui-base-e-200);--rp-ui-color-field-placeholder: var(--rp-ui-base-dark-e-200);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-dark-e-200);--rp-ui-color-field-icon: var(--rp-ui-base-dark-e-50);--rp-ui-color-radio-checked: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-disabled: var(--rp-ui-base-dark-e-100);--rp-ui-opacity-default: 50%}._theme-provider_xipmx_1{height:100%;width:100%}._table_xljgs_1{width:100%;max-width:1200px}._table_xljgs_1 *{box-sizing:border-box}._table-header_xljgs_9{display:flex;width:100%;height:32px;align-items:center}._table-row_xljgs_16{display:flex;width:100%;height:64px}._table-row_xljgs_16 ._table-row-content_xljgs_21{display:flex;align-items:center;height:100%;flex:1;box-shadow:var(--rp-ui-base-shadow-hover);background-color:var(--rp-ui-base-bg-000);border-radius:4px;max-width:100%}._table-row_xljgs_16._size-small_xljgs_31{height:44px}._table-row_xljgs_16._size-large_xljgs_34{height:80px}._table-body_xljgs_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_xljgs_45,._table-cell_xljgs_46{font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);padding:0 16px}._table-header-cell_xljgs_45._action-menu-cell_xljgs_51,._table-cell_xljgs_46._action-menu-cell_xljgs_51{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_xljgs_45:not(._action-menu-cell_xljgs_51),._table-cell_xljgs_46:not(._action-menu-cell_xljgs_51){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_xljgs_45._checkbox-cell_xljgs_63,._table-cell_xljgs_46._checkbox-cell_xljgs_63{width:32px;display:flex;justify-content:center;height:100%;padding-top:16px;cursor:pointer;align-items:start;flex-shrink:0}._table-header-cell_xljgs_45._checkbox-cell_xljgs_63+._table-row-content_xljgs_21,._table-cell_xljgs_46._checkbox-cell_xljgs_63+._table-row-content_xljgs_21{max-width:calc(100% - 32px)}._table-header-cell_xljgs_45._primary-cell_xljgs_78,._table-cell_xljgs_46._primary-cell_xljgs_78{flex:1 1 320px;font-weight:var(--rp-ui-base-fw-medium);text-align:left}._table-header-cell_xljgs_45{font-size:11px;line-height:16px;color:var(--rp-ui-base-e-400);display:flex;align-items:center;text-align:left;background:none;border:none}._table-header-cell_xljgs_45 ._label_xljgs_95{display:flex;align-items:center}._table-header-cell_xljgs_45._sortable-cell_xljgs_99>._label_xljgs_95{cursor:pointer}._table-header-cell_xljgs_45._align-right_xljgs_102{justify-content:flex-end}._table-header-cell_xljgs_45._align-right_xljgs_102 svg{margin-right:-16px}._table-header-cell_xljgs_45._align-center_xljgs_108{justify-content:center}._table-header-cell_xljgs_45._checkbox-cell_xljgs_63{align-items:center;padding-top:0}._table-cell_xljgs_46{font-size:13px;line-height:20px}._header_1q16i_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_1q16i_1 ._dropdowns-wrapper_1q16i_8{display:flex;align-items:center;column-gap:8px}._header_1q16i_1 ._button-prev_1q16i_13,._header_1q16i_1 ._button-next_1q16i_14{all:unset;align-self:center;width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13 svg,._header_1q16i_1 ._button-next_1q16i_14 svg{width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25),._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25){cursor:pointer}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25) svg>path,._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_1q16i_1 ._button-prev_1q16i_13._disabled_1q16i_25,._header_1q16i_1 ._button-next_1q16i_14._disabled_1q16i_25{opacity:.3;pointer-events:none}._header_1q16i_1 ._button-next_1q16i_14{transform:rotate(180deg)}._header_1q16i_1 ._dropdown_1q16i_8{width:auto}._header_1q16i_1 ._dropdown_1q16i_8._month-dropdown_1q16i_44{width:117px}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold)}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1pok6_5{box-sizing:border-box;background-color:var(--rp-ui-base-bg-000);width:344px;padding:30px 32px 32px;border-radius:8px;box-shadow:0 8px 40px var(--rp-ui-base-dark-bg-light);border:none;margin-top:4px}._calendar_1pok6_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom{width:100%;background-color:var(--rp-ui-base-bg-000);border-bottom:none;padding:0}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names{display:flex;height:40px;justify-content:space-between;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names .react-datepicker__day-name{width:40px;text-align:center}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week{height:32px;display:flex;align-items:center;justify-content:space-between;font-family:var(--rp-ui-base-font-family);color:var(--rp-ui-base-dark-e-500);font-size:13px;line-height:20px}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--selecting-range-end,.react-datepicker__day--selecting-range-start,.react-datepicker__day--range-start,.react-datepicker__day--range-end){background-color:var(--rp-ui-base-bg-200);height:32px;line-height:32px;position:relative}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--selected{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._date_1pok6_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1pok6_5 ._current-date_1pok6_89:focus-visible,._calendar_1pok6_5 ._date_1pok6_90:focus-visible{outline:none}._calendar_1pok6_5 ._date_1pok6_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._current-date_1pok6_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:var(--rp-ui-base-topaz);line-height:38px;color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 ._date_1pok6_90:hover:not(._current-date_1pok6_89):not(._selected-range_1pok6_119):not(._end-date_1pok6_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1pok6_5 ._end-date_1pok6_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 ._end-date_1pok6_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:10px solid var(--rp-ui-base-topaz);border-radius:50%;display:block;z-index:2;box-sizing:border-box}._calendar_1pok6_5 ._end-date_1pok6_119:before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;left:-9px;z-index:1;top:4px}._calendar_1pok6_5 ._selected-range_1pok6_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1pok6_5 ._selected-range_1pok6_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:after{display:block}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:not(:first-child):before{top:4px}._calendar_1pok6_5 ._selected-range_1pok6_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:1px solid var(--rp-ui-base-topaz);border-radius:50%;display:none;z-index:2;box-sizing:border-box}._calendar_1pok6_5 ._selected-range_1pok6_119:not(:first-child):before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;top:0;left:-9px;z-index:1}._calendar_1pok6_5 ._disabled_1pok6_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1pok6_5 ._disabled_1pok6_202:focus-visible{outline:none}._popper_1pok6_210{z-index:10}._input_1pok6_214{width:100%;min-width:138px}._dropdown-option_1etj7_1{display:flex;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;box-sizing:border-box;cursor:pointer;color:var(--rp-ui-color-text-3);padding:9px 12px 7px}._dropdown-option_1etj7_1._disabled_1etj7_12{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_1etj7_1._hidden_1etj7_16{display:none}._dropdown-option_1etj7_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover{border:none;padding:9px 12px 7px}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._selected_1etj7_34:not(._multi-select_1etj7_34){background:var(--rp-ui-base-topaz-100);color:var(--rp-ui-base-topaz)}._single-option_1etj7_39{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._sub-option_1etj7_46{padding-left:24px}._container_5enku_1{position:relative;display:inline-block;width:100%}._icon_5enku_7{width:16px;height:16px;margin-right:8px}._arrow_5enku_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_5enku_19{display:flex;align-items:center;text-align:start;padding:9px 12px 7px;width:100%;height:36px;border:1px solid var(--rp-ui-color-field-border);border-radius:3px;background-color:var(--rp-ui-color-field-bg);box-sizing:border-box;transition:border-color .2s linear;cursor:pointer}._dropdown_5enku_19._transparent-background_5enku_33{background-color:transparent}._dropdown_5enku_19._disabled_5enku_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_5enku_19._disabled_5enku_36 ._arrow_5enku_13 svg path{opacity:.4}._dropdown_5enku_19._disabled_5enku_36 ._value_5enku_43{color:var(--rp-ui-color-disabled)}._dropdown_5enku_19._error_5enku_46._touched_5enku_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_5enku_19:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_5enku_19:active,._dropdown_5enku_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_5enku_19:active ._arrow_5enku_13 svg path,._dropdown_5enku_19:focus-visible ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46) ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_5enku_19._opened_5enku_50 ._arrow_5enku_13{transform:rotate(180deg)}._dropdown_5enku_19 ._value_5enku_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._dropdown_5enku_19 ._value_5enku_43._placeholder_5enku_83{color:var(--rp-ui-color-field-placeholder-3)}@media (max-width: 767px){._dropdown_5enku_19 ._mobile-disabled_5enku_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_5enku_92{position:absolute;top:100%;padding:8px 0;width:max-content;max-width:100%;min-width:100%;min-height:10px;border-radius:3px;box-sizing:border-box;z-index:10;box-shadow:var(--rp-ui-base-shadow-secondary);background:var(--rp-ui-color-field-bg)}._select-list_5enku_92._opened_5enku_50:focus-visible{outline:none}._select-list_5enku_92._limited-width_5enku_109{max-width:384px}._options-container_5enku_113{display:flex;flex-direction:column}._ghost_5enku_118{border-color:transparent;background:transparent;padding:9px 0 7px}._ghost_5enku_118._disabled_5enku_36{background:transparent}._ghost_5enku_118:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50:not(:active):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50 ._value_5enku_43{color:var(--rp-ui-color-primary-pressed)}._ghost_5enku_118:active,._ghost_5enku_118:focus-visible{padding:7px 0}._divider_5enku_139{height:1px;margin:8px 12px;background-color:var(--rp-ui-base-e-100)}._item-counter_4g6do_1{display:inline-block;width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector_cjnvy_1{display:flex;flex-direction:column}._size-option_cjnvy_6{width:100%;padding:8px 16px;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_cjnvy_6:hover{background-color:var(--rp-ui-base-bg-200)}._size-option_cjnvy_6._selected_cjnvy_23{color:var(--rp-ui-base-topaz);background-color:var(--rp-ui-base-topaz-100)}._page-size-control_suy7z_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._page-size-control_suy7z_1 ._page-size-options_suy7z_9{padding:8px 0}._size-selector-button_suy7z_13{margin-right:4px;font-weight:var(--rp-ui-base-fw-bold)}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_1gl9o_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_1gl9o_10{text-align:left}._page-selector-button_1gl9o_14{margin-left:4px;font-weight:var(--rp-ui-base-fw-bold)}._bar_y74hy_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_y74hy_9{display:inline-block;height:16px}._section-with-tooltip_y74hy_9:hover ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_y74hy_9:active ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_y74hy_9:first-child ._section_y74hy_9{border-radius:3px 0 0 3px}._section-with-tooltip_y74hy_9:last-child ._section_y74hy_9{border-radius:0 3px 3px 0}._section_y74hy_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_y74hy_9._selected_y74hy_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_y74hy_37{width:inherit;height:16px}._tooltip_y74hy_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_y74hy_37 ._tooltip-text_y74hy_48{font-weight:var(--rp-ui-base-fw-regular);padding-bottom:8px}._tooltip_y74hy_37 ._page-number_y74hy_52{font-weight:var(--rp-ui-base-fw-bold)}._section-with-tooltip_y74hy_9,._tooltip-wrapper_y74hy_37{position:relative;top:-4px}._page-navigator_pyt8p_1{display:flex;gap:16px;align-items:center}._page-buttons_pyt8p_7{display:inline-flex;gap:16px}._page-button_pyt8p_7{display:inline-flex;justify-content:center;align-items:center;width:20px;height:20px;padding:2px;border-radius:2px}._page-button_pyt8p_7._next_pyt8p_21{transform:rotateY(180deg)}._page-button_pyt8p_7:focus{border:2px solid var(--rp-ui-color-primary-focused);padding:0}._page-controls_thyf8_1{display:flex;flex-direction:row;align-items:center;gap:24px}._total-pages_thyf8_8{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left}._pagination_w2r3n_1{display:flex;justify-content:space-between;align-items:center;width:100%;max-width:1200px;padding:24px 0;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._field-label_10m6x_1{font-size:13px;line-height:20px;display:block;position:relative;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-color-text)}._field-label_10m6x_1 ._asterisk_10m6x_11{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._field-label_10m6x_1._disabled_10m6x_17{pointer-events:none}._modal-content_zh8d2_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-color-text);white-space:pre-line;word-break:break-word;padding:0 0 16px}._modal-content_zh8d2_1._scrollable_zh8d2_12{width:calc(100% - 34px)}._buttons-block_1mwne_1{display:flex;align-items:center;column-gap:10px}._button-container_1mwne_7{display:inline-block;min-width:70px}._modal-footer_1mwne_12{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1mwne_12._with-extra-node_1mwne_19{justify-content:space-between}._size-small_1mwne_23{flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._buttons-block_1mwne_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._button-container_1mwne_7{margin:0 0 10px}._size-small_1mwne_23 ._button-container_1mwne_7:last-child{margin-bottom:0}._modal-header_w4aaf_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_w4aaf_1._width-description_w4aaf_10{padding-bottom:8px}._modal-header-content_w4aaf_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_w4aaf_20{font-family:var(--rp-ui-base-font-family-heading);flex-grow:1;vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._close-modal-icon_w4aaf_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_yxql5_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_yxql5_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_yxql5_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_yxql5_20{position:fixed;width:100%;height:100%}._modal-window_yxql5_26{position:absolute;left:50%;transform:translate(-50%);display:inline-block;margin-bottom:10px;padding:32px 40px;box-sizing:border-box;background-color:var(--rp-ui-base-bg-100);text-align:left;border-radius:16px;box-shadow:var(--rp-ui-base-shadow-secondary);opacity:1;outline:none;max-height:90%}._description_yxql5_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_yxql5_43._scrollable_yxql5_53{width:calc(100% - 34px)}._size-default_yxql5_57{width:480px}@media (max-width: 480px){._size-default_yxql5_57{right:10px;left:10px;transform:none;width:auto}}._size-small_yxql5_69{width:320px}@media (max-width: 320px){._size-small_yxql5_69{right:10px;left:10px;transform:none;width:auto}}._size-large_yxql5_81{width:720px}@media (max-width: 720px){._size-large_yxql5_81{right:10px;left:10px;transform:none;width:auto}}._popover-wrapper_n3nff_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_n3nff_1{display:block;position:absolute;z-index:10;font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;background-color:var(--rp-ui-color-bg);border-radius:8px;box-shadow:var(--rp-ui-base-shadow-secondary);padding:16px;min-height:52px;min-width:120px;max-width:fit-content;box-sizing:border-box;outline:0;width:max-content;color:var(--rp-ui-color-text)}._title_n3nff_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;margin-bottom:8px}._system-alert_1py1m_1{display:flex;box-sizing:border-box;width:600px;padding:16px;gap:16px;border-radius:16px;justify-content:space-between;box-shadow:var(--rp-ui-base-shadow-secondary)}._system-alert_1py1m_1._error_1py1m_11{background-color:var(--rp-ui-base-sm-error)}._system-alert_1py1m_1._success_1py1m_14{background-color:var(--rp-ui-base-test-execution-status-passed)}._system-alert_1py1m_1._info_1py1m_17{background-color:var(--rp-ui-base-no-defect-bug-group)}._system-alert_1py1m_1 ._icon-wrapper_1py1m_20{width:20px;height:24px;display:grid;place-content:center}._system-alert_1py1m_1 ._content-wrapper_1py1m_26{display:flex;gap:16px;flex-direction:column;flex:1}._system-alert_1py1m_1 ._content-wrapper_1py1m_26 ._title_1py1m_32{text-align:start;font-family:var(--rp-ui-base-font-family);font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-semi-bold);color:var(--rp-ui-base-bg-000);display:-webkit-box;max-width:100%;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}._system-alert_1py1m_1 ._close-button_1py1m_45{background:none;border:none;width:24px;height:24px;cursor:pointer}._system-alert_1py1m_1 ._close-button_1py1m_45 svg path{fill:var(--rp-ui-base-bg-000)}._tooltip-wrapper_lwpn2_16{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip-content_lwpn2_23{font-size:11px;line-height:16px;padding:16px;border-radius:8px;background-color:var(--rp-ui-base-tooltip-bg);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-bg-000);word-wrap:break-word;white-space:pre-wrap;box-sizing:border-box;width:100%}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { jsxs as n, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import { useState as j, useMemo as G } from "react";
|
|
3
|
+
import { c as J } from "./bind-06a7ff84.js";
|
|
4
|
+
import { a as N, S as K } from "./arrowUp-4a5caee7.js";
|
|
5
|
+
import { C as w } from "./checkbox-1f5db4c8.js";
|
|
6
|
+
const O = "_table_xljgs_1", P = "_label_xljgs_95", Q = {
|
|
7
|
+
table: O,
|
|
8
|
+
"table-header": "_table-header_xljgs_9",
|
|
9
|
+
"table-row": "_table-row_xljgs_16",
|
|
10
|
+
"table-row-content": "_table-row-content_xljgs_21",
|
|
11
|
+
"size-small": "_size-small_xljgs_31",
|
|
12
|
+
"size-large": "_size-large_xljgs_34",
|
|
13
|
+
"table-body": "_table-body_xljgs_38",
|
|
14
|
+
"table-header-cell": "_table-header-cell_xljgs_45",
|
|
15
|
+
"table-cell": "_table-cell_xljgs_46",
|
|
16
|
+
"action-menu-cell": "_action-menu-cell_xljgs_51",
|
|
17
|
+
"checkbox-cell": "_checkbox-cell_xljgs_63",
|
|
18
|
+
"primary-cell": "_primary-cell_xljgs_78",
|
|
19
|
+
label: P,
|
|
20
|
+
"sortable-cell": "_sortable-cell_xljgs_99",
|
|
21
|
+
"align-right": "_align-right_xljgs_102",
|
|
22
|
+
"align-center": "_align-center_xljgs_108"
|
|
23
|
+
}, f = "asc", V = (c) => c.toLowerCase() === f, W = (c) => c.map((t) => t.key), l = J.bind(Q), le = ({
|
|
24
|
+
data: c,
|
|
25
|
+
primaryColumn: t,
|
|
26
|
+
fixedColumns: i,
|
|
27
|
+
renderRowActions: d,
|
|
28
|
+
className: z = "",
|
|
29
|
+
rowClassName: M = "",
|
|
30
|
+
headerClassName: S = "",
|
|
31
|
+
selectable: y = !1,
|
|
32
|
+
selectedRowIds: o = [],
|
|
33
|
+
sortingDirection: g = f,
|
|
34
|
+
sortingColumn: r = t,
|
|
35
|
+
sortableColumns: h = W([t, ...i]),
|
|
36
|
+
onChangeSorting: m = () => {
|
|
37
|
+
},
|
|
38
|
+
onToggleRowSelection: u = () => {
|
|
39
|
+
},
|
|
40
|
+
onToggleAllRowsSelection: A = () => {
|
|
41
|
+
}
|
|
42
|
+
}) => {
|
|
43
|
+
const [L, k] = j(null), [E, x] = j(null), v = G(() => [{ ...t, primary: !0 }, ...i], [t, i]), C = (e) => {
|
|
44
|
+
h.includes(e) && m({ key: e, direction: g });
|
|
45
|
+
}, p = (e) => ({
|
|
46
|
+
width: e.width,
|
|
47
|
+
textAlign: e.align
|
|
48
|
+
}), H = (e) => {
|
|
49
|
+
k(e);
|
|
50
|
+
}, T = () => {
|
|
51
|
+
k(null);
|
|
52
|
+
}, $ = (e) => {
|
|
53
|
+
x(e);
|
|
54
|
+
}, D = () => {
|
|
55
|
+
x(null);
|
|
56
|
+
}, R = (e) => {
|
|
57
|
+
u(e);
|
|
58
|
+
}, U = () => {
|
|
59
|
+
A();
|
|
60
|
+
}, q = c.every((e) => o.includes(e.id)), _ = c.some((e) => o.includes(e.id)), B = (e) => {
|
|
61
|
+
var s;
|
|
62
|
+
return `size-${((s = e.rowConfigs) == null ? void 0 : s.size) ?? "default"}`;
|
|
63
|
+
}, F = (e) => {
|
|
64
|
+
if (h.includes(e))
|
|
65
|
+
return (r == null ? void 0 : r.key) === e ? V(g) ? /* @__PURE__ */ a(N, {}) : /* @__PURE__ */ a(K, {}) : /* @__PURE__ */ a(N, {});
|
|
66
|
+
};
|
|
67
|
+
return /* @__PURE__ */ n("div", { className: l("table", z), children: [
|
|
68
|
+
/* @__PURE__ */ n("div", { className: l("table-header", S), children: [
|
|
69
|
+
y && /* @__PURE__ */ a("div", { className: l("table-header-cell", "checkbox-cell"), children: _ && /* @__PURE__ */ a(
|
|
70
|
+
w,
|
|
71
|
+
{
|
|
72
|
+
value: q,
|
|
73
|
+
partiallyChecked: _,
|
|
74
|
+
onChange: U,
|
|
75
|
+
className: l("checkbox-cell")
|
|
76
|
+
}
|
|
77
|
+
) }),
|
|
78
|
+
v.map((e) => /* @__PURE__ */ a(
|
|
79
|
+
"button",
|
|
80
|
+
{
|
|
81
|
+
className: l("table-header-cell", {
|
|
82
|
+
[`align-${e.align}`]: "align" in e,
|
|
83
|
+
"primary-cell": "primary" in e && e.primary,
|
|
84
|
+
"sortable-cell": h.includes(e.key)
|
|
85
|
+
}),
|
|
86
|
+
style: p(e),
|
|
87
|
+
children: /* @__PURE__ */ n(
|
|
88
|
+
"div",
|
|
89
|
+
{
|
|
90
|
+
className: l("label"),
|
|
91
|
+
onClick: () => C(e.key),
|
|
92
|
+
onMouseEnter: () => H(e.key),
|
|
93
|
+
onMouseLeave: T,
|
|
94
|
+
children: [
|
|
95
|
+
/* @__PURE__ */ a("span", { children: e.header }),
|
|
96
|
+
(L === e.key || (r == null ? void 0 : r.key) === e.key) && F(e.key)
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
)
|
|
100
|
+
},
|
|
101
|
+
e.key
|
|
102
|
+
)),
|
|
103
|
+
d && /* @__PURE__ */ a("div", { className: l("table-header-cell", "action-menu-cell") })
|
|
104
|
+
] }),
|
|
105
|
+
/* @__PURE__ */ a("div", { className: l("table-body"), children: c.map((e, b) => /* @__PURE__ */ n(
|
|
106
|
+
"div",
|
|
107
|
+
{
|
|
108
|
+
className: l("table-row", B(e), M),
|
|
109
|
+
onMouseEnter: () => $(b),
|
|
110
|
+
onMouseLeave: D,
|
|
111
|
+
children: [
|
|
112
|
+
y && /* @__PURE__ */ a("div", { className: l("table-cell", "checkbox-cell"), children: (_ || E === b) && /* @__PURE__ */ a(
|
|
113
|
+
w,
|
|
114
|
+
{
|
|
115
|
+
value: o.includes(e.id),
|
|
116
|
+
onChange: () => R(e.id),
|
|
117
|
+
className: l("checkbox-cell")
|
|
118
|
+
}
|
|
119
|
+
) }),
|
|
120
|
+
/* @__PURE__ */ n("div", { className: l("table-row-content"), children: [
|
|
121
|
+
v.map((s) => /* @__PURE__ */ a(
|
|
122
|
+
"div",
|
|
123
|
+
{
|
|
124
|
+
className: l("table-cell", {
|
|
125
|
+
"primary-cell": "primary" in s && s.primary
|
|
126
|
+
}),
|
|
127
|
+
style: p(s),
|
|
128
|
+
children: e[s.key].component || e[s.key].content || e[s.key]
|
|
129
|
+
},
|
|
130
|
+
s.key
|
|
131
|
+
)),
|
|
132
|
+
d && /* @__PURE__ */ a("div", { className: l("table-cell", "action-menu-cell"), children: d(e.metaData) })
|
|
133
|
+
] })
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
e.id
|
|
137
|
+
)) })
|
|
138
|
+
] });
|
|
139
|
+
};
|
|
140
|
+
export {
|
|
141
|
+
le as T
|
|
142
|
+
};
|
package/dist/table.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { T as r } from "./table-
|
|
1
|
+
import { T as r } from "./table-5a30dad9.js";
|
|
2
2
|
import "react/jsx-runtime";
|
|
3
3
|
import "react";
|
|
4
4
|
import "./bind-06a7ff84.js";
|
|
5
5
|
import "./arrowUp-4a5caee7.js";
|
|
6
|
-
import "./checkbox-
|
|
6
|
+
import "./checkbox-1f5db4c8.js";
|
|
7
7
|
import "./keyCodes-f63c0e11.js";
|
|
8
8
|
export {
|
|
9
9
|
r as Table,
|
package/package.json
CHANGED
package/dist/table-20aa2cdf.js
DELETED
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
import { jsxs as r, jsx as a } from "react/jsx-runtime";
|
|
2
|
-
import { useState as N, useMemo as G } from "react";
|
|
3
|
-
import { c as J } from "./bind-06a7ff84.js";
|
|
4
|
-
import { a as w, S as K } from "./arrowUp-4a5caee7.js";
|
|
5
|
-
import { C as g } from "./checkbox-aa91985d.js";
|
|
6
|
-
const O = "_table_qun9e_1", P = "_label_qun9e_87", Q = {
|
|
7
|
-
table: O,
|
|
8
|
-
"table-header": "_table-header_qun9e_9",
|
|
9
|
-
"table-row": "_table-row_qun9e_16",
|
|
10
|
-
"table-row-content": "_table-row-content_qun9e_21",
|
|
11
|
-
"size-small": "_size-small_qun9e_31",
|
|
12
|
-
"size-large": "_size-large_qun9e_34",
|
|
13
|
-
"table-body": "_table-body_qun9e_38",
|
|
14
|
-
"table-header-cell": "_table-header-cell_qun9e_45",
|
|
15
|
-
"table-cell": "_table-cell_qun9e_45",
|
|
16
|
-
"action-menu-cell": "_action-menu-cell_qun9e_50",
|
|
17
|
-
"checkbox-cell": "_checkbox-cell_qun9e_60",
|
|
18
|
-
"primary-cell": "_primary-cell_qun9e_71",
|
|
19
|
-
label: P,
|
|
20
|
-
"sortable-cell": "_sortable-cell_qun9e_91",
|
|
21
|
-
"align-right": "_align-right_qun9e_94",
|
|
22
|
-
"align-center": "_align-center_qun9e_100"
|
|
23
|
-
}, f = "asc", V = (s) => s.toLowerCase() === f, W = (s) => s.map((t) => t.key), l = J.bind(Q), le = ({
|
|
24
|
-
data: s,
|
|
25
|
-
primaryColumn: t,
|
|
26
|
-
fixedColumns: i,
|
|
27
|
-
renderRowActions: d,
|
|
28
|
-
className: x = "",
|
|
29
|
-
rowClassName: z = "",
|
|
30
|
-
headerClassName: M = "",
|
|
31
|
-
selectable: y = !1,
|
|
32
|
-
selectedRowIds: o = [],
|
|
33
|
-
sortingDirection: k = f,
|
|
34
|
-
sortingColumn: n = t,
|
|
35
|
-
sortableColumns: h = W([t, ...i]),
|
|
36
|
-
onChangeSorting: S = () => {
|
|
37
|
-
},
|
|
38
|
-
onToggleRowSelection: m = () => {
|
|
39
|
-
},
|
|
40
|
-
onToggleAllRowsSelection: A = () => {
|
|
41
|
-
}
|
|
42
|
-
}) => {
|
|
43
|
-
const [L, v] = N(null), [E, u] = N(null), p = G(() => [{ ...t, primary: !0 }, ...i], [t, i]), j = (e) => {
|
|
44
|
-
h.includes(e) && S({ key: e, direction: k });
|
|
45
|
-
}, q = (e) => ({
|
|
46
|
-
width: e.width,
|
|
47
|
-
textAlign: e.align
|
|
48
|
-
}), C = (e) => {
|
|
49
|
-
v(e);
|
|
50
|
-
}, H = () => {
|
|
51
|
-
v(null);
|
|
52
|
-
}, T = (e) => {
|
|
53
|
-
u(e);
|
|
54
|
-
}, $ = () => {
|
|
55
|
-
u(null);
|
|
56
|
-
}, D = (e) => {
|
|
57
|
-
m(e);
|
|
58
|
-
}, R = () => {
|
|
59
|
-
A();
|
|
60
|
-
}, U = s.every((e) => o.includes(e.id)), _ = s.some((e) => o.includes(e.id)), B = (e) => {
|
|
61
|
-
var c;
|
|
62
|
-
return `size-${((c = e.rowConfigs) == null ? void 0 : c.size) ?? "default"}`;
|
|
63
|
-
}, F = (e) => {
|
|
64
|
-
if (h.includes(e))
|
|
65
|
-
return (n == null ? void 0 : n.key) === e ? V(k) ? /* @__PURE__ */ a(w, {}) : /* @__PURE__ */ a(K, {}) : /* @__PURE__ */ a(w, {});
|
|
66
|
-
};
|
|
67
|
-
return /* @__PURE__ */ r("div", { className: l("table", x), children: [
|
|
68
|
-
/* @__PURE__ */ r("div", { className: l("table-header", M), children: [
|
|
69
|
-
y && /* @__PURE__ */ a("div", { className: l("table-header-cell", "checkbox-cell"), children: _ && /* @__PURE__ */ a(
|
|
70
|
-
g,
|
|
71
|
-
{
|
|
72
|
-
value: U,
|
|
73
|
-
partiallyChecked: _,
|
|
74
|
-
onChange: R,
|
|
75
|
-
className: l("checkbox-cell")
|
|
76
|
-
}
|
|
77
|
-
) }),
|
|
78
|
-
p.map((e) => /* @__PURE__ */ a(
|
|
79
|
-
"button",
|
|
80
|
-
{
|
|
81
|
-
className: l("table-header-cell", {
|
|
82
|
-
[`align-${e.align}`]: "align" in e,
|
|
83
|
-
"primary-cell": "primary" in e && e.primary,
|
|
84
|
-
"sortable-cell": h.includes(e.key)
|
|
85
|
-
}),
|
|
86
|
-
style: q(e),
|
|
87
|
-
children: /* @__PURE__ */ r(
|
|
88
|
-
"div",
|
|
89
|
-
{
|
|
90
|
-
className: l("label"),
|
|
91
|
-
onClick: () => j(e.key),
|
|
92
|
-
onMouseEnter: () => C(e.key),
|
|
93
|
-
onMouseLeave: H,
|
|
94
|
-
children: [
|
|
95
|
-
/* @__PURE__ */ a("span", { children: e.header }),
|
|
96
|
-
(L === e.key || (n == null ? void 0 : n.key) === e.key) && F(e.key)
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
)
|
|
100
|
-
},
|
|
101
|
-
e.key
|
|
102
|
-
)),
|
|
103
|
-
d && /* @__PURE__ */ a("div", { className: l("table-header-cell", "action-menu-cell") })
|
|
104
|
-
] }),
|
|
105
|
-
/* @__PURE__ */ a("div", { className: l("table-body"), children: s.map((e, b) => /* @__PURE__ */ r(
|
|
106
|
-
"div",
|
|
107
|
-
{
|
|
108
|
-
className: l("table-row", B(e), z),
|
|
109
|
-
onMouseEnter: () => T(b),
|
|
110
|
-
onMouseLeave: $,
|
|
111
|
-
children: [
|
|
112
|
-
y && /* @__PURE__ */ a("div", { className: l("table-cell", "checkbox-cell"), children: (_ || E === b) && /* @__PURE__ */ a(
|
|
113
|
-
g,
|
|
114
|
-
{
|
|
115
|
-
value: o.includes(e.id),
|
|
116
|
-
onChange: () => D(e.id),
|
|
117
|
-
className: l("checkbox-cell")
|
|
118
|
-
}
|
|
119
|
-
) }),
|
|
120
|
-
/* @__PURE__ */ r("div", { className: l("table-row-content"), children: [
|
|
121
|
-
p.map((c) => /* @__PURE__ */ a(
|
|
122
|
-
"div",
|
|
123
|
-
{
|
|
124
|
-
className: l("table-cell", {
|
|
125
|
-
"primary-cell": "primary" in c && c.primary
|
|
126
|
-
}),
|
|
127
|
-
style: q(c),
|
|
128
|
-
children: e[c.key].component || e[c.key].content || e[c.key]
|
|
129
|
-
},
|
|
130
|
-
c.key
|
|
131
|
-
)),
|
|
132
|
-
d && /* @__PURE__ */ a("div", { className: l("table-cell", "action-menu-cell"), children: d(e.metaData) })
|
|
133
|
-
] })
|
|
134
|
-
]
|
|
135
|
-
},
|
|
136
|
-
e.id
|
|
137
|
-
)) })
|
|
138
|
-
] });
|
|
139
|
-
};
|
|
140
|
-
export {
|
|
141
|
-
le as T
|
|
142
|
-
};
|