@reportportal/ui-kit 0.0.1-alpha.57 → 0.0.1-alpha.59
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/README.md +1 -1
- package/dist/components/fieldText/fieldText.d.ts +3 -3
- package/dist/components/fieldText/types.d.ts +5 -0
- package/dist/{datePicker-4f0d9d4c.js → datePicker-c93e0835.js} +47 -43
- package/dist/datePicker.js +3 -3
- package/dist/fieldText-10046ca8.js +161 -0
- package/dist/fieldText.js +1 -1
- package/dist/index.js +3 -3
- package/dist/{pagination-90ed9bdd.js → pagination-2076b7b6.js} +1 -1
- package/dist/pagination.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +10 -10
- package/dist/fieldText-fbd59758.js +0 -160
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ const MyComponent = () => (
|
|
|
45
45
|
|
|
46
46
|
### Theming
|
|
47
47
|
|
|
48
|
-
All components are provided with the `light
|
|
48
|
+
All components are provided with the `light` theme by default.
|
|
49
49
|
To use the `dark` theme, you need to wrap your application with the `ThemeProvider` component and pass the `dark` theme as a prop:
|
|
50
50
|
|
|
51
51
|
```jsx
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeEventHandler, ReactNode, InputHTMLAttributes } from 'react';
|
|
2
|
+
import { InputType } from './types';
|
|
2
3
|
|
|
3
|
-
interface FieldTextProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
4
|
+
export interface FieldTextProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
4
5
|
value?: string;
|
|
5
6
|
className?: string;
|
|
6
7
|
classNameHelpText?: string;
|
|
@@ -21,11 +22,10 @@ interface FieldTextProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
21
22
|
onClear?: (prevValue?: string) => void;
|
|
22
23
|
isRequired?: boolean;
|
|
23
24
|
hasDoubleMessage?: boolean;
|
|
24
|
-
type?:
|
|
25
|
+
type?: InputType;
|
|
25
26
|
displayError?: boolean;
|
|
26
27
|
maxLengthDisplay?: number;
|
|
27
28
|
collapsible?: boolean;
|
|
28
29
|
loading?: boolean;
|
|
29
30
|
}
|
|
30
31
|
export declare const FieldText: import('react').ForwardRefExoticComponent<FieldTextProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
31
|
-
export {};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { jsxs as S, Fragment as U, jsx as
|
|
1
|
+
import { jsxs as S, Fragment as U, jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import $ from "react-datepicker/dist/es/index.js";
|
|
3
3
|
import { c as R } from "./bind-06a7ff84.js";
|
|
4
|
-
import { useMemo as
|
|
5
|
-
import { F as D } from "./fieldText-
|
|
6
|
-
import { a as
|
|
7
|
-
import { D as
|
|
4
|
+
import { useMemo as P, useRef as B } from "react";
|
|
5
|
+
import { F as D } from "./fieldText-10046ca8.js";
|
|
6
|
+
import { a as E, S as G } from "./calendarArrow-3e1339ea.js";
|
|
7
|
+
import { D as T } from "./dropdown-937ba0eb.js";
|
|
8
8
|
import { registerLocale as H } from "react-datepicker";
|
|
9
9
|
const pe = (r, s) => {
|
|
10
10
|
H(r, s);
|
|
11
11
|
}, V = (r, s = 20) => {
|
|
12
12
|
const l = r + s;
|
|
13
|
-
return new Array(l - r).fill(void 0).map((g,
|
|
13
|
+
return new Array(l - r).fill(void 0).map((g, o) => r - o);
|
|
14
14
|
}, O = "_header_a3cjx_1", W = "_disabled_a3cjx_25", q = "_dropdown_a3cjx_8", z = {
|
|
15
15
|
header: O,
|
|
16
16
|
"dropdowns-wrapper": "_dropdowns-wrapper_a3cjx_8",
|
|
@@ -28,7 +28,7 @@ const pe = (r, s) => {
|
|
|
28
28
|
},
|
|
29
29
|
decreaseMonth: g = () => {
|
|
30
30
|
},
|
|
31
|
-
increaseMonth:
|
|
31
|
+
increaseMonth: o = () => {
|
|
32
32
|
},
|
|
33
33
|
prevMonthButtonDisabled: n = !1,
|
|
34
34
|
nextMonthButtonDisabled: h = !1,
|
|
@@ -37,38 +37,40 @@ const pe = (r, s) => {
|
|
|
37
37
|
yearsOptions: i = [],
|
|
38
38
|
locale: x
|
|
39
39
|
}) => {
|
|
40
|
-
const p = r.getFullYear(), C = r.getMonth(), f =
|
|
41
|
-
const
|
|
40
|
+
const p = r.getFullYear(), C = r.getMonth(), f = P(() => {
|
|
41
|
+
const e = Array(12).keys(), c = new Intl.DateTimeFormat(x, {
|
|
42
42
|
month: "long"
|
|
43
43
|
}), d = (m) => c.format(new Date(p, m));
|
|
44
|
-
return Array.from(
|
|
44
|
+
return Array.from(e, d).reduce((m, j, A) => m.concat({
|
|
45
45
|
value: A,
|
|
46
46
|
label: j
|
|
47
47
|
}), []);
|
|
48
|
-
}, []), N =
|
|
48
|
+
}, []), N = P(() => (i.length > 0 ? i : V(p)).reduce(
|
|
49
49
|
(c, d) => c.concat({ value: d, label: `${d}` }),
|
|
50
50
|
[]
|
|
51
|
-
), [i]), v = (
|
|
52
|
-
l(
|
|
53
|
-
}, y = (
|
|
54
|
-
s(
|
|
51
|
+
), [i]), v = (e) => {
|
|
52
|
+
l(e);
|
|
53
|
+
}, y = (e) => {
|
|
54
|
+
s(e);
|
|
55
55
|
};
|
|
56
56
|
return /* @__PURE__ */ S(U, { children: [
|
|
57
|
-
b && /* @__PURE__ */
|
|
57
|
+
b && /* @__PURE__ */ t("div", { className: a(w), children: b }),
|
|
58
58
|
/* @__PURE__ */ S("div", { className: a("header"), children: [
|
|
59
|
-
/* @__PURE__ */
|
|
59
|
+
/* @__PURE__ */ t(
|
|
60
60
|
"button",
|
|
61
61
|
{
|
|
62
62
|
"aria-label": "Previous Months",
|
|
63
63
|
disabled: n,
|
|
64
|
-
onClick:
|
|
64
|
+
onClick: (e) => {
|
|
65
|
+
e.stopPropagation(), g();
|
|
66
|
+
},
|
|
65
67
|
className: a("button-prev", { disabled: n }),
|
|
66
|
-
children: /* @__PURE__ */
|
|
68
|
+
children: /* @__PURE__ */ t(E, {})
|
|
67
69
|
}
|
|
68
70
|
),
|
|
69
71
|
/* @__PURE__ */ S("div", { className: a("dropdowns-wrapper"), children: [
|
|
70
|
-
/* @__PURE__ */
|
|
71
|
-
|
|
72
|
+
/* @__PURE__ */ t(
|
|
73
|
+
T,
|
|
72
74
|
{
|
|
73
75
|
options: f,
|
|
74
76
|
value: C,
|
|
@@ -78,8 +80,8 @@ const pe = (r, s) => {
|
|
|
78
80
|
toggleButtonClassName: a("toggle-button")
|
|
79
81
|
}
|
|
80
82
|
),
|
|
81
|
-
/* @__PURE__ */
|
|
82
|
-
|
|
83
|
+
/* @__PURE__ */ t(
|
|
84
|
+
T,
|
|
83
85
|
{
|
|
84
86
|
options: N,
|
|
85
87
|
value: p,
|
|
@@ -90,19 +92,21 @@ const pe = (r, s) => {
|
|
|
90
92
|
}
|
|
91
93
|
)
|
|
92
94
|
] }),
|
|
93
|
-
/* @__PURE__ */
|
|
95
|
+
/* @__PURE__ */ t(
|
|
94
96
|
"button",
|
|
95
97
|
{
|
|
96
98
|
"aria-label": "Next Months",
|
|
97
99
|
disabled: h,
|
|
98
|
-
onClick: e
|
|
100
|
+
onClick: (e) => {
|
|
101
|
+
e.stopPropagation(), o();
|
|
102
|
+
},
|
|
99
103
|
className: a("button-next", { disabled: h }),
|
|
100
|
-
children: /* @__PURE__ */
|
|
104
|
+
children: /* @__PURE__ */ t(E, {})
|
|
101
105
|
}
|
|
102
106
|
)
|
|
103
107
|
] })
|
|
104
108
|
] });
|
|
105
|
-
}, K = "_calendar_1jr94_5", Q = "_date_1jr94_90", X = "_disabled_1jr94_202", Z = "_popper_1jr94_210", ee = "_input_1jr94_214",
|
|
109
|
+
}, K = "_calendar_1jr94_5", Q = "_date_1jr94_90", X = "_disabled_1jr94_202", Z = "_popper_1jr94_210", ee = "_input_1jr94_214", oe = {
|
|
106
110
|
calendar: K,
|
|
107
111
|
"current-date": "_current-date_1jr94_89",
|
|
108
112
|
date: Q,
|
|
@@ -111,7 +115,7 @@ const pe = (r, s) => {
|
|
|
111
115
|
disabled: X,
|
|
112
116
|
popper: Z,
|
|
113
117
|
input: ee
|
|
114
|
-
}, _ = R.bind(
|
|
118
|
+
}, _ = R.bind(oe), ne = "en", L = "MM-dd-yyyy", me = ({
|
|
115
119
|
onChange: r = () => {
|
|
116
120
|
},
|
|
117
121
|
disabled: s = !1,
|
|
@@ -119,7 +123,7 @@ const pe = (r, s) => {
|
|
|
119
123
|
},
|
|
120
124
|
onFocus: g = () => {
|
|
121
125
|
},
|
|
122
|
-
endDate:
|
|
126
|
+
endDate: o = void 0,
|
|
123
127
|
startDate: n = void 0,
|
|
124
128
|
headerNodes: h = null,
|
|
125
129
|
customClassName: b = "",
|
|
@@ -128,15 +132,15 @@ const pe = (r, s) => {
|
|
|
128
132
|
popperClassName: x = "",
|
|
129
133
|
calendarClassName: p = "",
|
|
130
134
|
fixedHeight: C = !1,
|
|
131
|
-
language: f =
|
|
135
|
+
language: f = ne,
|
|
132
136
|
yearsOptions: N = [],
|
|
133
|
-
placeholder: v =
|
|
134
|
-
dateFormat: y =
|
|
135
|
-
selects:
|
|
137
|
+
placeholder: v = L.toUpperCase(),
|
|
138
|
+
dateFormat: y = L,
|
|
139
|
+
selects: e = "start",
|
|
136
140
|
value: c = null
|
|
137
141
|
}) => {
|
|
138
|
-
const d = B(null), k = n == null ? void 0 : n.toDateString(), m =
|
|
139
|
-
const F = u.toDateString(), Y = F === k, M = j && F === m, I = n &&
|
|
142
|
+
const d = B(null), k = n == null ? void 0 : n.toDateString(), m = o == null ? void 0 : o.toDateString(), j = o && n && o > n, A = (u) => {
|
|
143
|
+
const F = u.toDateString(), Y = F === k, M = j && F === m, I = n && o && u > n && u < o;
|
|
140
144
|
return _("date", {
|
|
141
145
|
"current-date": Y,
|
|
142
146
|
"selected-range": I && !M,
|
|
@@ -144,23 +148,23 @@ const pe = (r, s) => {
|
|
|
144
148
|
disabled: s
|
|
145
149
|
});
|
|
146
150
|
};
|
|
147
|
-
return /* @__PURE__ */
|
|
151
|
+
return /* @__PURE__ */ t(
|
|
148
152
|
$,
|
|
149
153
|
{
|
|
150
|
-
customInput: /* @__PURE__ */
|
|
154
|
+
customInput: /* @__PURE__ */ t(
|
|
151
155
|
D,
|
|
152
156
|
{
|
|
153
157
|
className: _("input"),
|
|
154
158
|
defaultWidth: !1,
|
|
155
|
-
endIcon: /* @__PURE__ */
|
|
159
|
+
endIcon: /* @__PURE__ */ t(G, {}),
|
|
156
160
|
ref: d
|
|
157
161
|
}
|
|
158
162
|
),
|
|
159
163
|
placeholderText: v,
|
|
160
164
|
selected: c,
|
|
161
165
|
startDate: n,
|
|
162
|
-
endDate:
|
|
163
|
-
minDate:
|
|
166
|
+
endDate: o,
|
|
167
|
+
minDate: e === "end" ? n : void 0,
|
|
164
168
|
disabled: s,
|
|
165
169
|
shouldCloseOnSelect: i,
|
|
166
170
|
fixedHeight: C,
|
|
@@ -168,7 +172,7 @@ const pe = (r, s) => {
|
|
|
168
172
|
showPopperArrow: !1,
|
|
169
173
|
dayClassName: A,
|
|
170
174
|
calendarClassName: _(p, "calendar"),
|
|
171
|
-
renderCustomHeader: (u) => /* @__PURE__ */
|
|
175
|
+
renderCustomHeader: (u) => /* @__PURE__ */ t(
|
|
172
176
|
J,
|
|
173
177
|
{
|
|
174
178
|
...u,
|
|
@@ -185,8 +189,8 @@ const pe = (r, s) => {
|
|
|
185
189
|
showTimeInput: !!w,
|
|
186
190
|
popperClassName: _(x, "popper"),
|
|
187
191
|
dateFormat: y,
|
|
188
|
-
selectsStart:
|
|
189
|
-
selectsEnd:
|
|
192
|
+
selectsStart: e === "start",
|
|
193
|
+
selectsEnd: e === "end",
|
|
190
194
|
className: _("datepicker")
|
|
191
195
|
}
|
|
192
196
|
);
|
package/dist/datePicker.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { D as t } from "./datePicker-
|
|
2
|
-
import { r as q } from "./datePicker-
|
|
1
|
+
import { D as t } from "./datePicker-c93e0835.js";
|
|
2
|
+
import { r as q } from "./datePicker-c93e0835.js";
|
|
3
3
|
import "react/jsx-runtime";
|
|
4
4
|
import "react-datepicker/dist/es/index.js";
|
|
5
5
|
import "./bind-06a7ff84.js";
|
|
6
6
|
import "react";
|
|
7
|
-
import "./fieldText-
|
|
7
|
+
import "./fieldText-10046ca8.js";
|
|
8
8
|
import "./openEye-7b9cf080.js";
|
|
9
9
|
import "./button-33c88abf.js";
|
|
10
10
|
import "./spinLoader-c4a53718.js";
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { jsx as e, jsxs as c, Fragment as b } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as Q, useRef as Y, useState as k } from "react";
|
|
3
|
+
import { c as Z } from "./bind-06a7ff84.js";
|
|
4
|
+
import { b as q, a as I, S as ee } from "./openEye-7b9cf080.js";
|
|
5
|
+
import { B as ne } from "./button-33c88abf.js";
|
|
6
|
+
import { S as te } from "./spinLoader-c4a53718.js";
|
|
7
|
+
import { M as se } from "./maxValueDisplay-9be01a75.js";
|
|
8
|
+
var a = /* @__PURE__ */ ((t) => (t.PASSWORD = "password", t.TEXT = "text", t.EMAIL = "email", t))(a || {});
|
|
9
|
+
const ce = "_collapsed_1jcir_13", ae = "_label_1jcir_21", oe = "_asterisk_1jcir_30", re = "_disabled_1jcir_36", ie = "_field_1jcir_41", le = "_placeholder_1jcir_66", _e = "_error_1jcir_72", de = "_touched_1jcir_72", pe = "_input_1jcir_90", ue = "_icon_1jcir_1", me = "_text_1jcir_196", fe = {
|
|
10
|
+
"icon-container": "_icon-container_1jcir_1",
|
|
11
|
+
"icon-container-end": "_icon-container-end_1jcir_1",
|
|
12
|
+
"icon-container-start": "_icon-container-start_1jcir_1",
|
|
13
|
+
collapsed: ce,
|
|
14
|
+
label: ae,
|
|
15
|
+
asterisk: oe,
|
|
16
|
+
disabled: re,
|
|
17
|
+
field: ie,
|
|
18
|
+
"default-width": "_default-width_1jcir_53",
|
|
19
|
+
placeholder: le,
|
|
20
|
+
error: _e,
|
|
21
|
+
touched: de,
|
|
22
|
+
"max-length-display": "_max-length-display_1jcir_79",
|
|
23
|
+
"input-container": "_input-container_1jcir_90",
|
|
24
|
+
"type-password": "_type-password_1jcir_94",
|
|
25
|
+
input: pe,
|
|
26
|
+
"eye-icon": "_eye-icon_1jcir_98",
|
|
27
|
+
icon: ue,
|
|
28
|
+
"start-icon": "_start-icon_1jcir_152",
|
|
29
|
+
"clear-icon": "_clear-icon_1jcir_153",
|
|
30
|
+
"additional-content": "_additional-content_1jcir_189",
|
|
31
|
+
text: me,
|
|
32
|
+
"error-text": "_error-text_1jcir_216",
|
|
33
|
+
"help-text": "_help-text_1jcir_220"
|
|
34
|
+
}, n = Z.bind(fe), ge = Q(
|
|
35
|
+
({
|
|
36
|
+
value: t = "",
|
|
37
|
+
className: P,
|
|
38
|
+
classNameHelpText: R,
|
|
39
|
+
error: l,
|
|
40
|
+
placeholder: m,
|
|
41
|
+
disabled: o = !1,
|
|
42
|
+
onChange: F,
|
|
43
|
+
touched: f = !1,
|
|
44
|
+
title: M,
|
|
45
|
+
label: _,
|
|
46
|
+
helpText: d,
|
|
47
|
+
defaultWidth: v = !0,
|
|
48
|
+
startIcon: h,
|
|
49
|
+
endIcon: j,
|
|
50
|
+
clearable: A = !1,
|
|
51
|
+
onClear: x,
|
|
52
|
+
isRequired: N = !1,
|
|
53
|
+
hasDoubleMessage: O = !1,
|
|
54
|
+
type: r = a.TEXT,
|
|
55
|
+
displayError: B = !0,
|
|
56
|
+
collapsible: C = !1,
|
|
57
|
+
loading: V = !1,
|
|
58
|
+
maxLengthDisplay: W,
|
|
59
|
+
onFocus: L = () => {
|
|
60
|
+
},
|
|
61
|
+
onBlur: X = () => {
|
|
62
|
+
},
|
|
63
|
+
...H
|
|
64
|
+
}, U) => {
|
|
65
|
+
const $ = Y(null), p = U || $, [S, w] = k(!1), [y, g] = k(!1), z = (s) => {
|
|
66
|
+
w(!0), L(s);
|
|
67
|
+
}, G = (s) => {
|
|
68
|
+
w(!1), X(s);
|
|
69
|
+
}, J = () => {
|
|
70
|
+
var s;
|
|
71
|
+
x && (x(t), (s = p.current) == null || s.focus());
|
|
72
|
+
}, E = B && l && f, D = /* @__PURE__ */ e("span", { className: n("text", "help-text", R), children: d }), K = () => r !== a.PASSWORD ? r : y ? a.TEXT : a.PASSWORD, T = (s) => {
|
|
73
|
+
s.preventDefault(), g(!0);
|
|
74
|
+
}, i = (s) => {
|
|
75
|
+
s.preventDefault(), g(!1);
|
|
76
|
+
};
|
|
77
|
+
return /* @__PURE__ */ c(b, { children: [
|
|
78
|
+
_ && /* @__PURE__ */ c("span", { className: n("label", { disabled: o }), children: [
|
|
79
|
+
_,
|
|
80
|
+
N && /* @__PURE__ */ e("span", { className: n("asterisk"), children: "*" })
|
|
81
|
+
] }),
|
|
82
|
+
/* @__PURE__ */ c(
|
|
83
|
+
"div",
|
|
84
|
+
{
|
|
85
|
+
className: n("field", P, {
|
|
86
|
+
error: l,
|
|
87
|
+
touched: f,
|
|
88
|
+
disabled: o,
|
|
89
|
+
"default-width": v,
|
|
90
|
+
collapsed: C && !S && !t
|
|
91
|
+
}),
|
|
92
|
+
title: M,
|
|
93
|
+
children: [
|
|
94
|
+
V ? /* @__PURE__ */ e(te, {}) : h && /* @__PURE__ */ e(
|
|
95
|
+
"span",
|
|
96
|
+
{
|
|
97
|
+
className: n("icon-container-start"),
|
|
98
|
+
onClick: () => {
|
|
99
|
+
var u;
|
|
100
|
+
(u = p.current) == null || u.focus();
|
|
101
|
+
},
|
|
102
|
+
children: /* @__PURE__ */ e("span", { className: n("icon", { "start-icon": !S }), children: h })
|
|
103
|
+
}
|
|
104
|
+
),
|
|
105
|
+
/* @__PURE__ */ c("span", { className: n("input-container", `type-${r}`), children: [
|
|
106
|
+
/* @__PURE__ */ e(
|
|
107
|
+
"input",
|
|
108
|
+
{
|
|
109
|
+
ref: p,
|
|
110
|
+
type: K(),
|
|
111
|
+
className: n("input"),
|
|
112
|
+
value: t,
|
|
113
|
+
disabled: o,
|
|
114
|
+
onChange: F,
|
|
115
|
+
onFocus: z,
|
|
116
|
+
onBlur: G,
|
|
117
|
+
...H
|
|
118
|
+
}
|
|
119
|
+
),
|
|
120
|
+
r === a.PASSWORD && t && /* @__PURE__ */ e(
|
|
121
|
+
ne,
|
|
122
|
+
{
|
|
123
|
+
icon: y ? /* @__PURE__ */ e(q, {}) : /* @__PURE__ */ e(I, {}),
|
|
124
|
+
variant: "text",
|
|
125
|
+
className: n("eye-icon"),
|
|
126
|
+
onMouseDown: T,
|
|
127
|
+
onMouseLeave: i,
|
|
128
|
+
onMouseUp: i,
|
|
129
|
+
onTouchStart: T,
|
|
130
|
+
onTouchEnd: i,
|
|
131
|
+
onTouchCancel: i
|
|
132
|
+
}
|
|
133
|
+
),
|
|
134
|
+
m && !t && /* @__PURE__ */ c("span", { className: n("placeholder"), children: [
|
|
135
|
+
m,
|
|
136
|
+
N && !_ && /* @__PURE__ */ e("span", { className: n("asterisk") })
|
|
137
|
+
] })
|
|
138
|
+
] }),
|
|
139
|
+
/* @__PURE__ */ e(
|
|
140
|
+
se,
|
|
141
|
+
{
|
|
142
|
+
className: n("max-length-display"),
|
|
143
|
+
value: t.length,
|
|
144
|
+
maxValue: W
|
|
145
|
+
}
|
|
146
|
+
),
|
|
147
|
+
j && /* @__PURE__ */ e("span", { className: n("icon-container-end"), children: /* @__PURE__ */ e("span", { className: n("icon"), children: j }) }),
|
|
148
|
+
A && t.length > 0 && /* @__PURE__ */ e("span", { className: n("icon-container-end"), children: /* @__PURE__ */ e("button", { type: "button", className: n("clear-icon", { disabled: o }), onClick: J, children: /* @__PURE__ */ e(ee, {}) }) })
|
|
149
|
+
]
|
|
150
|
+
}
|
|
151
|
+
),
|
|
152
|
+
(E || d) && /* @__PURE__ */ e("div", { className: n("additional-content", { disabled: o }), children: E ? /* @__PURE__ */ c(b, { children: [
|
|
153
|
+
/* @__PURE__ */ e("span", { className: n("text", "error-text"), children: l }),
|
|
154
|
+
O && D
|
|
155
|
+
] }) : d && D })
|
|
156
|
+
] });
|
|
157
|
+
}
|
|
158
|
+
);
|
|
159
|
+
export {
|
|
160
|
+
ge as F
|
|
161
|
+
};
|
package/dist/fieldText.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { B as S } from "./button-33c88abf.js";
|
|
|
2
2
|
import { B as C } from "./baseIconButton-251479f7.js";
|
|
3
3
|
import { C as b } from "./checkbox-9a6c7ce1.js";
|
|
4
4
|
import { S as B } from "./systemMessage-1ced6079.js";
|
|
5
|
-
import { F as P } from "./fieldText-
|
|
5
|
+
import { F as P } from "./fieldText-10046ca8.js";
|
|
6
6
|
import { T as g } from "./themeProvider-46c2be7b.js";
|
|
7
7
|
import { Modal as v } from "./modal.js";
|
|
8
8
|
import { D as M } from "./dropdown-937ba0eb.js";
|
|
@@ -14,9 +14,9 @@ import { F as U } from "./fieldTextFlex-314741ad.js";
|
|
|
14
14
|
import { R as q } from "./radio-bccc84f2.js";
|
|
15
15
|
import { Tooltip as J } from "./tooltip.js";
|
|
16
16
|
import { Popover as Q } from "./popover.js";
|
|
17
|
-
import { P as W } from "./pagination-
|
|
17
|
+
import { P as W } from "./pagination-2076b7b6.js";
|
|
18
18
|
import { T as Y } from "./table-32fc8c70.js";
|
|
19
|
-
import { D as _ } from "./datePicker-
|
|
19
|
+
import { D as _ } from "./datePicker-c93e0835.js";
|
|
20
20
|
import "react-datepicker";
|
|
21
21
|
import { SystemAlert as oo } from "./systemAlert.js";
|
|
22
22
|
import { S as eo, a as to } from "./arrowUp-4a5caee7.js";
|
|
@@ -3,7 +3,7 @@ import { c as m } from "./bind-06a7ff84.js";
|
|
|
3
3
|
import { useState as h } from "react";
|
|
4
4
|
import { Popover as O } from "./popover.js";
|
|
5
5
|
import { B as x } from "./button-33c88abf.js";
|
|
6
|
-
import { F as A } from "./fieldText-
|
|
6
|
+
import { F as A } from "./fieldText-10046ca8.js";
|
|
7
7
|
import { B as f } from "./baseIconButton-251479f7.js";
|
|
8
8
|
import { S as y, a as T } from "./prevPage-87faf576.js";
|
|
9
9
|
import { Tooltip as B } from "./tooltip.js";
|
package/dist/pagination.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { P as t } from "./pagination-
|
|
1
|
+
import { P as t } from "./pagination-2076b7b6.js";
|
|
2
2
|
import "react/jsx-runtime";
|
|
3
3
|
import "./bind-06a7ff84.js";
|
|
4
4
|
import "react";
|
|
5
5
|
import "./popover.js";
|
|
6
6
|
import "@floating-ui/react";
|
|
7
7
|
import "./button-33c88abf.js";
|
|
8
|
-
import "./fieldText-
|
|
8
|
+
import "./fieldText-10046ca8.js";
|
|
9
9
|
import "./openEye-7b9cf080.js";
|
|
10
10
|
import "./spinLoader-c4a53718.js";
|
|
11
11
|
import "./maxValueDisplay-9be01a75.js";
|
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_3xkt9_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:400;color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_3xkt9_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_3xkt9_1:focus:not(._error_3xkt9_19._touched_3xkt9_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_3xkt9_1._error_3xkt9_19._touched_3xkt9_19{border:1px solid var(--rp-ui-base-error)}._text-area_3xkt9_1:focus:not(._error_3xkt9_19._touched_3xkt9_19)+._max-length-display_3xkt9_26,._text-area_3xkt9_1._error_3xkt9_19._touched_3xkt9_19+._max-length-display_3xkt9_26{display:block}._text-area_3xkt9_1::placeholder{color:var(--rp-ui-base-e-300)}._text-area_3xkt9_1:has(~._max-length-display_3xkt9_26){padding-bottom:24px}._label_3xkt9_36{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:500;color:var(--rp-ui-base-almost-black);margin-bottom:4px}._additional-content_3xkt9_45 ._error-text_3xkt9_45{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-error)}._additional-content_3xkt9_45 ._help-text_3xkt9_53{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-e-300)}._max-length-display_3xkt9_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:400;color:var(--rp-ui-base-e-300)}._disabled_3xkt9_74{opacity:.3;pointer-events:none}._icon-container_yf2z1_1,._icon-container-end_yf2z1_1,._icon-container-start_yf2z1_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_yf2z1_1{margin-right:4px}._collapsed_yf2z1_13 ._icon-container-start_yf2z1_1{cursor:pointer}._icon-container-end_yf2z1_1{margin-left:4px}._label_yf2z1_21{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;color:var(--rp-ui-color-text)}._label_yf2z1_21 ._asterisk_yf2z1_30{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._label_yf2z1_21._disabled_yf2z1_36{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_yf2z1_41{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_yf2z1_41._default-width_yf2z1_53{width:240px}._field_yf2z1_41._collapsed_yf2z1_13{width:22px;border-width:0;overflow:hidden;padding:0}._field_yf2z1_41._collapsed_yf2z1_13 ._placeholder_yf2z1_62{display:none}._field_yf2z1_41:hover:not(._disabled_yf2z1_36){border-color:var(--rp-ui-color-field-border-3-hover);background-color:var(--rp-ui-color-field-bg-3-hover)}._field_yf2z1_41:focus-within:not(._error_yf2z1_69._touched_yf2z1_69){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_yf2z1_41._error_yf2z1_69._touched_yf2z1_69{border-color:var(--rp-ui-base-error)}._field_yf2z1_41:focus-within:not(._error_yf2z1_69._touched_yf2z1_69) ._max-length-display_yf2z1_76,._field_yf2z1_41._error_yf2z1_69._touched_yf2z1_69 ._max-length-display_yf2z1_76{display:block}._field_yf2z1_41._disabled_yf2z1_36{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_yf2z1_41._disabled_yf2z1_36 ._placeholder_yf2z1_62{color:var(--rp-ui-base-e-300)}._input-container_yf2z1_87{position:relative;width:100%}._input-container_yf2z1_87._type-password_yf2z1_91 ._input_yf2z1_87{width:calc(100% - 30px);text-overflow:unset}._input-container_yf2z1_87._type-password_yf2z1_91 ._eye-icon_yf2z1_95{position:absolute;z-index:2;top:4px;right:-2px;height:16px;width:16px}._input-container_yf2z1_87._type-password_yf2z1_91 ._eye-icon_yf2z1_95 svg path{fill:var(--rp-ui-color-field-icon)}._input_yf2z1_87{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;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_yf2z1_87:focus{outline:none}._input_yf2z1_87:disabled{color:var(--rp-ui-base-e-300)}._placeholder_yf2z1_62{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none;white-space:nowrap}._placeholder_yf2z1_62 ._asterisk_yf2z1_30:after{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);right:-7px;content:"*";color:var(--rp-ui-base-error-focused)}._icon_yf2z1_1,._start-icon_yf2z1_149,._clear-icon_yf2z1_150{display:inline-block;width:16px;height:16px}._start-icon_yf2z1_149,._clear-icon_yf2z1_150{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._start-icon_yf2z1_149 svg>path,._clear-icon_yf2z1_150 svg>path{fill:var(--rp-ui-color-field-icon)}._start-icon_yf2z1_149._disabled_yf2z1_36,._clear-icon_yf2z1_150._disabled_yf2z1_36{pointer-events:none}._start-icon_yf2z1_149:hover svg>path,._clear-icon_yf2z1_150:hover svg>path{fill:var(--rp-ui-color-field-hover-2)}._start-icon_yf2z1_149:focus svg>path,._clear-icon_yf2z1_150:focus svg>path{fill:var(--rp-ui-color-primary-focused)}._start-icon_yf2z1_149:active svg>path,._clear-icon_yf2z1_150:active svg>path{fill:var(--rp-ui-color-primary-pressed)}._additional-content_yf2z1_186{margin-top:4px}._additional-content_yf2z1_186._disabled_yf2z1_36{pointer-events:none}._text_yf2z1_193,._max-length-display_yf2z1_76{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:400}._text_yf2z1_193{display:block}._max-length-display_yf2z1_76{display:none;margin-left:15px;align-self:end;color:var(--rp-ui-base-e-300);word-break:initial}._error-text_yf2z1_213{color:var(--rp-ui-base-error)}._help-text_yf2z1_217{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_5qews_1{display:inline-flex;justify-content:center;align-items:center;height:36px;min-width:120px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_5qews_19{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_5qews_19:hover:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_5qews_19:active:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_5qews_19:focus:not(._disabled_5qews_24,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_5qews_19 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_5qews_39{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_5qews_39:hover:not(._disabled_5qews_24){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_5qews_39:active:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_5qews_39:focus:not(._disabled_5qews_24,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_5qews_39 svg *{fill:var(--rp-ui-color-primary-text)}._danger_5qews_60{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_5qews_60:hover:not(._disabled_5qews_24){opacity:.9;background-color:var(--rp-ui-color-error-hover)}._danger_5qews_60:active:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_5qews_60:focus:not(._disabled_5qews_24,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_5qews_60 svg *{fill:var(--rp-ui-base-bg-000)}._text_5qews_80{min-width:auto;height:auto;border:0;padding:0;background:none;line-height:22px;color:var(--rp-ui-color-primary-text)}._text_5qews_80:hover:not(._disabled_5qews_24){color:var(--rp-ui-color-primary-hover)}._text_5qews_80:hover:not(._disabled_5qews_24) svg *{fill:var(--rp-ui-color-primary-hover)}._text_5qews_80:active:not(._disabled_5qews_24){color:var(--rp-ui-color-primary-pressed)}._text_5qews_80:active:not(._disabled_5qews_24) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_5qews_80:focus:not(._disabled_5qews_24,:active){color:var(--rp-ui-color-primary-focused)}._text_5qews_80:focus:not(._disabled_5qews_24,:active) svg *{fill:var(--rp-ui-color-primary-focused)}._text_5qews_80 svg *{fill:var(--rp-ui-color-primary-text)}._disabled_5qews_24{opacity:var(--rp-ui-opacity-default);cursor:default}._width-wide-content_5qews_116{padding:9px 47px 7px;margin:0}._width-parent_5qews_121{display:flex;width:100%}._icon_5qews_126{display:inline-block;width:16px;height:16px}._icon-start_5qews_132{margin:auto 8px auto 0}._icon-end_5qews_136{margin:auto 0 auto 8px;order:1}._radio-button_9d3ij_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_9d3ij_1._disabled_9d3ij_9{cursor:default}._radio-button_9d3ij_1._disabled_9d3ij_9 ._children-container_9d3ij_12{color:var(--rp-ui-base-e-300)}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15{opacity:.3}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15:after{background-color:transparent}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15._checked_9d3ij_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_9d3ij_1:focus-visible:not(._disabled_9d3ij_9) ._toggler_9d3ij_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_9d3ij_28{display:none}._toggler_9d3ij_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_9d3ij_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_9d3ij_15:hover:not(._disabled_9d3ij_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_9d3ij_15:hover:not(._disabled_9d3ij_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_9d3ij_15._checked_9d3ij_21:after,._toggler_9d3ij_15._disabled_9d3ij_9:after{transform:scale(1);opacity:1}._children-container_9d3ij_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_9d3ij_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_9d3ij_12 a:focus,._children-container_9d3ij_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_fp9ws_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_fp9ws_1 ._stripes-info_fp9ws_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_fp9ws_1 ._stripes-warning_fp9ws_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_fp9ws_1 ._stripes-error_fp9ws_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_fp9ws_1 ._text-container_fp9ws_27{padding:12px 16px 16px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-info_fp9ws_30{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-warning_fp9ws_38{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-error_fp9ws_46{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._children_fp9ws_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:700;font-size:13px;line-height:20px}._system-message_fp9ws_1 ._text-container_fp9ws_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:400;font-size:12px;line-height:18px}._content-width_fp9ws_70{max-width:max-content}._checkbox_189ko_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:500;font-size:13px;line-height:20px}._checkbox_189ko_1 ._disabled_189ko_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_189ko_16{position:absolute;opacity:0;top:0;left:0}._control_189ko_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_189ko_16:checked+._control_189ko_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_189ko_16:hover+._control_189ko_23{border-color:var(--rp-ui-color-field-hover-2)}._input_189ko_16:active:not(:disabled)+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16:checked:hover+._control_189ko_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_189ko_16:checked:active:not(:disabled)+._control_189ko_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_189ko_16:disabled+._control_189ko_23{border-color:var(--rp-ui-color-disabled)}._input_189ko_16:checked:disabled+._control_189ko_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_189ko_16:focus+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_23{border-color:var(--rp-ui-color-field-border);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_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_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_23{border-color:var(--rp-ui-color-field-border-2-hover);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_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_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_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_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_23{border-color:var(--rp-ui-color-field-borderd);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_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_189ko_149{cursor:pointer}._children_189ko_149 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_189ko_149 a:focus,._children_189ko_149 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._toggle_1bvir_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_1bvir_14{margin-left:40px}._children-container_1bvir_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1bvir_14 a:focus,._children-container_1bvir_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_1bvir_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_1bvir_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_1bvir_47:before{border-radius:50%}._input_1bvir_51{position:absolute;opacity:0;top:0;left:0}._input_1bvir_51:disabled+._slider_1bvir_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_1bvir_51:focus-visible{outline:none}._input_1bvir_51:focus:not(:disabled):after,._input_1bvir_51:focus-visible:not(:disabled)+._slider_1bvir_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_1bvir_51:checked+._slider_1bvir_27{background-color:var(--rp-ui-base-topaz)}._input_1bvir_51:checked+._slider_1bvir_27:before{transform:translate(12px)}._input_1bvir_51:hover:not(:disabled)+._slider_1bvir_27{background-color:var(--rp-ui-base-e-400)}._input_1bvir_51:checked:hover+._slider_1bvir_27{background-color:var(--rp-ui-base-topaz-hover)}._input_1bvir_51:checked:disabled+._slider_1bvir_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_1bvir_92{opacity:.3;cursor:default}._field-number_wswgu_1{position:relative;display:inline-flex;flex-direction:column}._field-number_wswgu_1._disabled_wswgu_6{opacity:.4}._label_wswgu_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_wswgu_21{display:inline-flex;cursor:pointer}._input-container_wswgu_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_wswgu_26:focus-within:not(._error_wswgu_36._touched_wswgu_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_wswgu_26:hover:not(._disabled_wswgu_6):not(:focus-within):not(._error_wswgu_36._touched_wswgu_36){border-color:var(--rp-ui-base-e-300)}._input-container_wswgu_26._filled_wswgu_44:not(:focus-within){border-color:var(--rp-ui-base-e-200)}._input-container_wswgu_26._error_wswgu_36._touched_wswgu_36{border-color:var(--rp-ui-base-error)}._input-field_wswgu_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_wswgu_51._disabled_wswgu_6{cursor:default}._input_wswgu_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_wswgu_26:focus{outline:none}._input_wswgu_26:focus::placeholder{color:transparent}._input_wswgu_26::placeholder{color:var(--rp-ui-base-e-200)}._input_wswgu_26::-webkit-inner-spin-button,._input_wswgu_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:600;font-display:swap;font-style:normal;src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(./fonts/OpenSans/OpenSans-Semibold.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: #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-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-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_kha9s_1{width:100%;max-width:1200px}._table_kha9s_1 *{box-sizing:border-box}._table-header_kha9s_9{display:flex;width:100%;height:32px;align-items:center}._table-row_kha9s_16{display:flex;width:100%;height:64px}._table-row_kha9s_16 ._table-row-content_kha9s_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_kha9s_16._size-small_kha9s_31{height:44px}._table-row_kha9s_16._size-large_kha9s_34{height:80px}._table-body_kha9s_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_kha9s_45,._table-cell_kha9s_45{font-family:var(--rp-ui-base-font-family);font-weight:400;padding:0 16px}._table-header-cell_kha9s_45._action-menu-cell_kha9s_50,._table-cell_kha9s_45._action-menu-cell_kha9s_50{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_kha9s_45:not(._action-menu-cell_kha9s_50),._table-cell_kha9s_45:not(._action-menu-cell_kha9s_50){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60,._table-cell_kha9s_45._checkbox-cell_kha9s_60{width:48px;display:flex;justify-content:center;height:100%;cursor:pointer;flex-shrink:0}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21,._table-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21{max-width:calc(100% - 48px)}._table-header-cell_kha9s_45._primary-cell_kha9s_71,._table-cell_kha9s_45._primary-cell_kha9s_71{flex:1 1 320px;font-weight:500;text-align:left}._table-header-cell_kha9s_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_kha9s_45 ._label_kha9s_87{display:flex;align-items:center}._table-header-cell_kha9s_45._sortable-cell_kha9s_91>._label_kha9s_87{cursor:pointer}._table-header-cell_kha9s_45._align-right_kha9s_94{justify-content:flex-end}._table-header-cell_kha9s_45._align-right_kha9s_94 svg{margin-right:-16px}._table-header-cell_kha9s_45._align-center_kha9s_100{justify-content:center}._table-cell_kha9s_45{font-size:13px;line-height:20px}._header_a3cjx_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_a3cjx_1 ._dropdowns-wrapper_a3cjx_8{display:flex;align-items:center;column-gap:8px}._header_a3cjx_1 ._button-prev_a3cjx_13,._header_a3cjx_1 ._button-next_a3cjx_14{all:unset;align-self:center;width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13 svg,._header_a3cjx_1 ._button-next_a3cjx_14 svg{width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25),._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25){cursor:pointer}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25) svg>path,._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_a3cjx_1 ._button-prev_a3cjx_13._disabled_a3cjx_25,._header_a3cjx_1 ._button-next_a3cjx_14._disabled_a3cjx_25{opacity:.3;pointer-events:none}._header_a3cjx_1 ._button-next_a3cjx_14{transform:rotate(180deg)}._header_a3cjx_1 ._dropdown_a3cjx_8{width:auto}._header_a3cjx_1 ._dropdown_a3cjx_8._month-dropdown_a3cjx_44{width:117px}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1jr94_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_1jr94_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1jr94_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_1jr94_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:700;font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1jr94_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_1jr94_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1jr94_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_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1jr94_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_1jr94_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:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._date_1jr94_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1jr94_5 ._current-date_1jr94_89:focus-visible,._calendar_1jr94_5 ._date_1jr94_90:focus-visible{outline:none}._calendar_1jr94_5 ._date_1jr94_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._current-date_1jr94_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:700;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_1jr94_5 ._date_1jr94_90:hover:not(._current-date_1jr94_89):not(._selected-range_1jr94_119):not(._end-date_1jr94_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1jr94_5 ._end-date_1jr94_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 ._end-date_1jr94_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_1jr94_5 ._end-date_1jr94_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_1jr94_5 ._selected-range_1jr94_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1jr94_5 ._selected-range_1jr94_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:after{display:block}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:not(:first-child):before{top:4px}._calendar_1jr94_5 ._selected-range_1jr94_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_1jr94_5 ._selected-range_1jr94_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_1jr94_5 ._disabled_1jr94_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1jr94_5 ._disabled_1jr94_202:focus-visible{outline:none}._popper_1jr94_210{z-index:10}._input_1jr94_214{width:100%;min-width:138px}._dropdown-option_t3cjj_1{display:flex;font-family:var(--rp-ui-base-font-family);font-weight:400;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_t3cjj_1._disabled_t3cjj_12{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_t3cjj_1._hidden_t3cjj_16{display:none}._dropdown-option_t3cjj_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_t3cjj_1._hover_t3cjj_22:not(._disabled_t3cjj_12){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_t3cjj_1._hover_t3cjj_22:not(._disabled_t3cjj_12):hover{border:none;padding:9px 12px 7px}._dropdown-option_t3cjj_1._hover_t3cjj_22:not(._disabled_t3cjj_12):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._single-option_t3cjj_35{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._sub-option_t3cjj_42{padding-left:24px}._container_1yr7u_1{position:relative;display:inline-block;width:100%}._icon_1yr7u_7{width:16px;height:16px;margin-right:8px}._arrow_1yr7u_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_1yr7u_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_1yr7u_19._transparent-background_1yr7u_33{background-color:transparent}._dropdown_1yr7u_19._disabled_1yr7u_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_1yr7u_19._disabled_1yr7u_36 ._arrow_1yr7u_13 svg path{opacity:.4}._dropdown_1yr7u_19._disabled_1yr7u_36 ._value_1yr7u_43{color:var(--rp-ui-color-disabled)}._dropdown_1yr7u_19._error_1yr7u_46._touched_1yr7u_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_1yr7u_19:hover:not(:active):not(:focus-visible):not(._opened_1yr7u_50):not(._error_1yr7u_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_1yr7u_19:active,._dropdown_1yr7u_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_1yr7u_19:active ._arrow_1yr7u_13 svg path,._dropdown_1yr7u_19:focus-visible ._arrow_1yr7u_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_1yr7u_19._opened_1yr7u_50:not(:active):not(._error_1yr7u_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_1yr7u_19._opened_1yr7u_50:not(:active):not(._error_1yr7u_46) ._arrow_1yr7u_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_1yr7u_19._opened_1yr7u_50 ._arrow_1yr7u_13{transform:rotate(180deg)}._dropdown_1yr7u_19 ._value_1yr7u_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._dropdown_1yr7u_19 ._value_1yr7u_43._placeholder_1yr7u_83{color:var(--rp-ui-color-field-placeholder-3)}@media (max-width: 767px){._dropdown_1yr7u_19 ._mobile-disabled_1yr7u_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_1yr7u_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_1yr7u_92._opened_1yr7u_50:focus-visible{outline:none}._select-list_1yr7u_92._limited-width_1yr7u_109{max-width:384px}._options-container_1yr7u_113{display:flex;flex-direction:column}._ghost_1yr7u_118{border-color:transparent;background:transparent}._ghost_1yr7u_118:hover:not(:active):not(:focus-visible):not(._opened_1yr7u_50):not(._error_1yr7u_46){border-color:transparent}._ghost_1yr7u_118._opened_1yr7u_50:not(:active):not(._error_1yr7u_46){border-color:transparent}._ghost_1yr7u_118._opened_1yr7u_50 ._value_1yr7u_43{color:var(--rp-ui-color-primary-pressed)}._divider_1yr7u_132{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_183l8_1{display:flex;flex-direction:column}._size-option_183l8_6{width:88px;padding:8px 0;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_183l8_6:first-child{padding-top:0}._size-option_183l8_6:last-child{padding-bottom:0}._size-option_183l8_6:hover{color:var(--rp-ui-base-topaz-hover)}._size-option_183l8_6:active{color:var(--rp-ui-base-topaz-pressed)}._size-option_183l8_6._selected_183l8_32{color:var(--rp-ui-base-topaz)}._page-size-control_1y4na_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector-button_1y4na_10{margin-right:4px;font-weight:700}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_rmw5h_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_rmw5h_10{text-align:left}._page-selector-button_rmw5h_14{margin-left:4px;font-weight:700}._bar_dfnmf_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_dfnmf_9{display:inline-block;height:16px}._section-with-tooltip_dfnmf_9:hover ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_dfnmf_9:active ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_dfnmf_9:first-child ._section_dfnmf_9{border-radius:3px 0 0 3px}._section-with-tooltip_dfnmf_9:last-child ._section_dfnmf_9{border-radius:0 3px 3px 0}._section_dfnmf_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_dfnmf_9._selected_dfnmf_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_dfnmf_37{width:inherit;height:16px}._tooltip_dfnmf_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_dfnmf_37 ._tooltip-text_dfnmf_48{font-weight:400;padding-bottom:8px}._tooltip_dfnmf_37 ._page-number_dfnmf_52{font-weight:700}._section-with-tooltip_dfnmf_9,._tooltip-wrapper_dfnmf_37{position:relative;top:-4px}._page-navigator_1p2t5_1{display:flex;gap:16px}._page-buttons_1p2t5_6{display:inline-flex;gap:16px}._page-button_1p2t5_6{display:inline-flex;justify-content:center;align-items:center;width:16px;height:16px}._page-button_1p2t5_6._next_1p2t5_18{transform:rotateY(180deg)}._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_wi26a_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:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._modal-content_qziry_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:400;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_qziry_1._scrollable_qziry_12{width:calc(100% - 34px)}._buttons-block_1dgm4_1{white-space:nowrap}._button-container_1dgm4_5{display:inline-block;min-width:70px;margin-right:10px}._button-container_1dgm4_5:last-child{margin-right:0}._modal-footer_1dgm4_14{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1dgm4_14._with-extra-node_1dgm4_21{justify-content:space-between}._size-small_1dgm4_25{flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._buttons-block_1dgm4_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._button-container_1dgm4_5{margin:0 0 10px}._size-small_1dgm4_25 ._button-container_1dgm4_5:last-child{margin-bottom:0}._modal-header_68lru_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_68lru_1._width-description_68lru_10{padding-bottom:8px}._modal-header-content_68lru_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_68lru_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_68lru_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_f3ckb_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_f3ckb_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_f3ckb_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_f3ckb_20{position:fixed;width:100%;height:100%}._modal-window_f3ckb_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_f3ckb_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_f3ckb_43._scrollable_f3ckb_53{width:calc(100% - 34px)}._size-default_f3ckb_57{width:480px}@media (max-width: 480px){._size-default_f3ckb_57{right:10px;left:10px;transform:none;width:auto}}._size-small_f3ckb_69{width:320px}@media (max-width: 320px){._size-small_f3ckb_69{right:10px;left:10px;transform:none;width:auto}}._size-large_f3ckb_81{width:720px}@media (max-width: 720px){._size-large_f3ckb_81{right:10px;left:10px;transform:none;width:auto}}._popover-wrapper_16ogt_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_16ogt_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_16ogt_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:700;font-size:13px;line-height:20px;margin-bottom:8px}._system-alert_14lm6_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_14lm6_1._error_14lm6_11{background-color:var(--rp-ui-base-sm-error)}._system-alert_14lm6_1._success_14lm6_14{background-color:var(--rp-ui-base-test-execution-status-passed)}._system-alert_14lm6_1._info_14lm6_17{background-color:var(--rp-ui-base-no-defect-bug-group)}._system-alert_14lm6_1 ._icon-wrapper_14lm6_20{width:20px;height:24px;display:grid;place-content:center}._system-alert_14lm6_1 ._content-wrapper_14lm6_26{display:flex;gap:16px;flex-direction:column;flex:1}._system-alert_14lm6_1 ._content-wrapper_14lm6_26 ._title_14lm6_32{text-align:start;font-family:var(--rp-ui-base-font-family);font-size:15px;line-height:24px;font-weight:600;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_14lm6_1 ._close-button_14lm6_45{background:none;border:none;width:24px;height:24px;cursor:pointer}._system-alert_14lm6_1 ._close-button_14lm6_45 svg path{fill:var(--rp-ui-base-bg-000)}._tooltip-wrapper_18ppz_16{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip-content_18ppz_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:500;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_3xkt9_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:400;color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_3xkt9_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_3xkt9_1:focus:not(._error_3xkt9_19._touched_3xkt9_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_3xkt9_1._error_3xkt9_19._touched_3xkt9_19{border:1px solid var(--rp-ui-base-error)}._text-area_3xkt9_1:focus:not(._error_3xkt9_19._touched_3xkt9_19)+._max-length-display_3xkt9_26,._text-area_3xkt9_1._error_3xkt9_19._touched_3xkt9_19+._max-length-display_3xkt9_26{display:block}._text-area_3xkt9_1::placeholder{color:var(--rp-ui-base-e-300)}._text-area_3xkt9_1:has(~._max-length-display_3xkt9_26){padding-bottom:24px}._label_3xkt9_36{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:500;color:var(--rp-ui-base-almost-black);margin-bottom:4px}._additional-content_3xkt9_45 ._error-text_3xkt9_45{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-error)}._additional-content_3xkt9_45 ._help-text_3xkt9_53{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-e-300)}._max-length-display_3xkt9_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:400;color:var(--rp-ui-base-e-300)}._disabled_3xkt9_74{opacity:.3;pointer-events:none}._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_5qews_1{display:inline-flex;justify-content:center;align-items:center;height:36px;min-width:120px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_5qews_19{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_5qews_19:hover:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_5qews_19:active:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_5qews_19:focus:not(._disabled_5qews_24,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_5qews_19 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_5qews_39{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_5qews_39:hover:not(._disabled_5qews_24){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_5qews_39:active:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_5qews_39:focus:not(._disabled_5qews_24,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_5qews_39 svg *{fill:var(--rp-ui-color-primary-text)}._danger_5qews_60{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_5qews_60:hover:not(._disabled_5qews_24){opacity:.9;background-color:var(--rp-ui-color-error-hover)}._danger_5qews_60:active:not(._disabled_5qews_24){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_5qews_60:focus:not(._disabled_5qews_24,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_5qews_60 svg *{fill:var(--rp-ui-base-bg-000)}._text_5qews_80{min-width:auto;height:auto;border:0;padding:0;background:none;line-height:22px;color:var(--rp-ui-color-primary-text)}._text_5qews_80:hover:not(._disabled_5qews_24){color:var(--rp-ui-color-primary-hover)}._text_5qews_80:hover:not(._disabled_5qews_24) svg *{fill:var(--rp-ui-color-primary-hover)}._text_5qews_80:active:not(._disabled_5qews_24){color:var(--rp-ui-color-primary-pressed)}._text_5qews_80:active:not(._disabled_5qews_24) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_5qews_80:focus:not(._disabled_5qews_24,:active){color:var(--rp-ui-color-primary-focused)}._text_5qews_80:focus:not(._disabled_5qews_24,:active) svg *{fill:var(--rp-ui-color-primary-focused)}._text_5qews_80 svg *{fill:var(--rp-ui-color-primary-text)}._disabled_5qews_24{opacity:var(--rp-ui-opacity-default);cursor:default}._width-wide-content_5qews_116{padding:9px 47px 7px;margin:0}._width-parent_5qews_121{display:flex;width:100%}._icon_5qews_126{display:inline-block;width:16px;height:16px}._icon-start_5qews_132{margin:auto 8px auto 0}._icon-end_5qews_136{margin:auto 0 auto 8px;order:1}._radio-button_9d3ij_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_9d3ij_1._disabled_9d3ij_9{cursor:default}._radio-button_9d3ij_1._disabled_9d3ij_9 ._children-container_9d3ij_12{color:var(--rp-ui-base-e-300)}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15{opacity:.3}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15:after{background-color:transparent}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15._checked_9d3ij_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_9d3ij_1:focus-visible:not(._disabled_9d3ij_9) ._toggler_9d3ij_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_9d3ij_28{display:none}._toggler_9d3ij_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_9d3ij_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_9d3ij_15:hover:not(._disabled_9d3ij_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_9d3ij_15:hover:not(._disabled_9d3ij_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_9d3ij_15._checked_9d3ij_21:after,._toggler_9d3ij_15._disabled_9d3ij_9:after{transform:scale(1);opacity:1}._children-container_9d3ij_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_9d3ij_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_9d3ij_12 a:focus,._children-container_9d3ij_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_fp9ws_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_fp9ws_1 ._stripes-info_fp9ws_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_fp9ws_1 ._stripes-warning_fp9ws_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_fp9ws_1 ._stripes-error_fp9ws_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_fp9ws_1 ._text-container_fp9ws_27{padding:12px 16px 16px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-info_fp9ws_30{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-warning_fp9ws_38{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-error_fp9ws_46{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._children_fp9ws_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:700;font-size:13px;line-height:20px}._system-message_fp9ws_1 ._text-container_fp9ws_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:400;font-size:12px;line-height:18px}._content-width_fp9ws_70{max-width:max-content}._checkbox_189ko_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:500;font-size:13px;line-height:20px}._checkbox_189ko_1 ._disabled_189ko_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_189ko_16{position:absolute;opacity:0;top:0;left:0}._control_189ko_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_189ko_16:checked+._control_189ko_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_189ko_16:hover+._control_189ko_23{border-color:var(--rp-ui-color-field-hover-2)}._input_189ko_16:active:not(:disabled)+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16:checked:hover+._control_189ko_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_189ko_16:checked:active:not(:disabled)+._control_189ko_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_189ko_16:disabled+._control_189ko_23{border-color:var(--rp-ui-color-disabled)}._input_189ko_16:checked:disabled+._control_189ko_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_189ko_16:focus+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_23{border-color:var(--rp-ui-color-field-border);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_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_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_23{border-color:var(--rp-ui-color-field-border-2-hover);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_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_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_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_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_23{border-color:var(--rp-ui-color-field-borderd);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_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_189ko_149{cursor:pointer}._children_189ko_149 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_189ko_149 a:focus,._children_189ko_149 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._toggle_1bvir_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_1bvir_14{margin-left:40px}._children-container_1bvir_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1bvir_14 a:focus,._children-container_1bvir_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_1bvir_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_1bvir_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_1bvir_47:before{border-radius:50%}._input_1bvir_51{position:absolute;opacity:0;top:0;left:0}._input_1bvir_51:disabled+._slider_1bvir_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_1bvir_51:focus-visible{outline:none}._input_1bvir_51:focus:not(:disabled):after,._input_1bvir_51:focus-visible:not(:disabled)+._slider_1bvir_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_1bvir_51:checked+._slider_1bvir_27{background-color:var(--rp-ui-base-topaz)}._input_1bvir_51:checked+._slider_1bvir_27:before{transform:translate(12px)}._input_1bvir_51:hover:not(:disabled)+._slider_1bvir_27{background-color:var(--rp-ui-base-e-400)}._input_1bvir_51:checked:hover+._slider_1bvir_27{background-color:var(--rp-ui-base-topaz-hover)}._input_1bvir_51:checked:disabled+._slider_1bvir_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_1bvir_92{opacity:.3;cursor:default}._field-number_wswgu_1{position:relative;display:inline-flex;flex-direction:column}._field-number_wswgu_1._disabled_wswgu_6{opacity:.4}._label_wswgu_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_wswgu_21{display:inline-flex;cursor:pointer}._input-container_wswgu_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_wswgu_26:focus-within:not(._error_wswgu_36._touched_wswgu_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_wswgu_26:hover:not(._disabled_wswgu_6):not(:focus-within):not(._error_wswgu_36._touched_wswgu_36){border-color:var(--rp-ui-base-e-300)}._input-container_wswgu_26._filled_wswgu_44:not(:focus-within){border-color:var(--rp-ui-base-e-200)}._input-container_wswgu_26._error_wswgu_36._touched_wswgu_36{border-color:var(--rp-ui-base-error)}._input-field_wswgu_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_wswgu_51._disabled_wswgu_6{cursor:default}._input_wswgu_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_wswgu_26:focus{outline:none}._input_wswgu_26:focus::placeholder{color:transparent}._input_wswgu_26::placeholder{color:var(--rp-ui-base-e-200)}._input_wswgu_26::-webkit-inner-spin-button,._input_wswgu_26::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}._icon-container_1jcir_1,._icon-container-end_1jcir_1,._icon-container-start_1jcir_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_1jcir_1{margin-right:4px}._collapsed_1jcir_13 ._icon-container-start_1jcir_1{cursor:pointer}._icon-container-end_1jcir_1{margin-left:4px}._label_1jcir_21{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;color:var(--rp-ui-color-text)}._label_1jcir_21 ._asterisk_1jcir_30{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._label_1jcir_21._disabled_1jcir_36{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_1jcir_41{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_1jcir_41._default-width_1jcir_53{width:240px}._field_1jcir_41._collapsed_1jcir_13{width:22px;border-width:0;overflow:hidden;padding:0;background-color:transparent}._field_1jcir_41._collapsed_1jcir_13:hover{background-color:transparent}._field_1jcir_41._collapsed_1jcir_13 ._placeholder_1jcir_66{display:none}._field_1jcir_41:hover:not(._disabled_1jcir_36){border-color:var(--rp-ui-color-field-border-3-hover)}._field_1jcir_41:focus-within:not(._error_1jcir_72._touched_1jcir_72){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_1jcir_41._error_1jcir_72._touched_1jcir_72{border-color:var(--rp-ui-base-error)}._field_1jcir_41:focus-within:not(._error_1jcir_72._touched_1jcir_72) ._max-length-display_1jcir_79,._field_1jcir_41._error_1jcir_72._touched_1jcir_72 ._max-length-display_1jcir_79{display:block}._field_1jcir_41._disabled_1jcir_36{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_1jcir_41._disabled_1jcir_36 ._placeholder_1jcir_66{color:var(--rp-ui-base-e-300)}._input-container_1jcir_90{position:relative;width:100%}._input-container_1jcir_90._type-password_1jcir_94 ._input_1jcir_90{width:calc(100% - 30px);text-overflow:unset}._input-container_1jcir_90._type-password_1jcir_94 ._eye-icon_1jcir_98{position:absolute;z-index:2;top:4px;right:-2px;height:16px;width:16px}._input-container_1jcir_90._type-password_1jcir_94 ._eye-icon_1jcir_98 svg path{fill:var(--rp-ui-color-field-icon)}._input_1jcir_90{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;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_1jcir_90:focus{outline:none}._input_1jcir_90:disabled{color:var(--rp-ui-base-e-300)}._placeholder_1jcir_66{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none;white-space:nowrap}._placeholder_1jcir_66 ._asterisk_1jcir_30:after{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);right:-7px;content:"*";color:var(--rp-ui-base-error-focused)}._icon_1jcir_1,._start-icon_1jcir_152,._clear-icon_1jcir_153{display:inline-block;width:16px;height:16px}._start-icon_1jcir_152,._clear-icon_1jcir_153{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._start-icon_1jcir_152 svg>path,._clear-icon_1jcir_153 svg>path{fill:var(--rp-ui-color-field-icon)}._start-icon_1jcir_152._disabled_1jcir_36,._clear-icon_1jcir_153._disabled_1jcir_36{pointer-events:none}._start-icon_1jcir_152:hover svg>path,._clear-icon_1jcir_153:hover svg>path{fill:var(--rp-ui-color-field-hover-2)}._start-icon_1jcir_152:focus svg>path,._clear-icon_1jcir_153:focus svg>path{fill:var(--rp-ui-color-primary-focused)}._start-icon_1jcir_152:active svg>path,._clear-icon_1jcir_153:active svg>path{fill:var(--rp-ui-color-primary-pressed)}._additional-content_1jcir_189{margin-top:4px}._additional-content_1jcir_189._disabled_1jcir_36{pointer-events:none}._text_1jcir_196,._max-length-display_1jcir_79{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:400}._text_1jcir_196{display:block}._max-length-display_1jcir_79{display:none;margin-left:15px;align-self:end;color:var(--rp-ui-base-e-300);word-break:initial}._error-text_1jcir_216{color:var(--rp-ui-base-error)}._help-text_1jcir_220{color:var(--rp-ui-base-dark-e-300)}@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:600;font-display:swap;font-style:normal;src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(./fonts/OpenSans/OpenSans-Semibold.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: #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-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-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_kha9s_1{width:100%;max-width:1200px}._table_kha9s_1 *{box-sizing:border-box}._table-header_kha9s_9{display:flex;width:100%;height:32px;align-items:center}._table-row_kha9s_16{display:flex;width:100%;height:64px}._table-row_kha9s_16 ._table-row-content_kha9s_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_kha9s_16._size-small_kha9s_31{height:44px}._table-row_kha9s_16._size-large_kha9s_34{height:80px}._table-body_kha9s_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_kha9s_45,._table-cell_kha9s_45{font-family:var(--rp-ui-base-font-family);font-weight:400;padding:0 16px}._table-header-cell_kha9s_45._action-menu-cell_kha9s_50,._table-cell_kha9s_45._action-menu-cell_kha9s_50{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_kha9s_45:not(._action-menu-cell_kha9s_50),._table-cell_kha9s_45:not(._action-menu-cell_kha9s_50){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60,._table-cell_kha9s_45._checkbox-cell_kha9s_60{width:48px;display:flex;justify-content:center;height:100%;cursor:pointer;flex-shrink:0}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21,._table-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21{max-width:calc(100% - 48px)}._table-header-cell_kha9s_45._primary-cell_kha9s_71,._table-cell_kha9s_45._primary-cell_kha9s_71{flex:1 1 320px;font-weight:500;text-align:left}._table-header-cell_kha9s_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_kha9s_45 ._label_kha9s_87{display:flex;align-items:center}._table-header-cell_kha9s_45._sortable-cell_kha9s_91>._label_kha9s_87{cursor:pointer}._table-header-cell_kha9s_45._align-right_kha9s_94{justify-content:flex-end}._table-header-cell_kha9s_45._align-right_kha9s_94 svg{margin-right:-16px}._table-header-cell_kha9s_45._align-center_kha9s_100{justify-content:center}._table-cell_kha9s_45{font-size:13px;line-height:20px}._header_a3cjx_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_a3cjx_1 ._dropdowns-wrapper_a3cjx_8{display:flex;align-items:center;column-gap:8px}._header_a3cjx_1 ._button-prev_a3cjx_13,._header_a3cjx_1 ._button-next_a3cjx_14{all:unset;align-self:center;width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13 svg,._header_a3cjx_1 ._button-next_a3cjx_14 svg{width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25),._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25){cursor:pointer}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25) svg>path,._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_a3cjx_1 ._button-prev_a3cjx_13._disabled_a3cjx_25,._header_a3cjx_1 ._button-next_a3cjx_14._disabled_a3cjx_25{opacity:.3;pointer-events:none}._header_a3cjx_1 ._button-next_a3cjx_14{transform:rotate(180deg)}._header_a3cjx_1 ._dropdown_a3cjx_8{width:auto}._header_a3cjx_1 ._dropdown_a3cjx_8._month-dropdown_a3cjx_44{width:117px}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1jr94_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_1jr94_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1jr94_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_1jr94_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:700;font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1jr94_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_1jr94_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1jr94_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_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1jr94_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_1jr94_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:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._date_1jr94_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1jr94_5 ._current-date_1jr94_89:focus-visible,._calendar_1jr94_5 ._date_1jr94_90:focus-visible{outline:none}._calendar_1jr94_5 ._date_1jr94_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._current-date_1jr94_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:700;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_1jr94_5 ._date_1jr94_90:hover:not(._current-date_1jr94_89):not(._selected-range_1jr94_119):not(._end-date_1jr94_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1jr94_5 ._end-date_1jr94_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 ._end-date_1jr94_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_1jr94_5 ._end-date_1jr94_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_1jr94_5 ._selected-range_1jr94_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1jr94_5 ._selected-range_1jr94_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:after{display:block}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:not(:first-child):before{top:4px}._calendar_1jr94_5 ._selected-range_1jr94_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_1jr94_5 ._selected-range_1jr94_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_1jr94_5 ._disabled_1jr94_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1jr94_5 ._disabled_1jr94_202:focus-visible{outline:none}._popper_1jr94_210{z-index:10}._input_1jr94_214{width:100%;min-width:138px}._dropdown-option_t3cjj_1{display:flex;font-family:var(--rp-ui-base-font-family);font-weight:400;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_t3cjj_1._disabled_t3cjj_12{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_t3cjj_1._hidden_t3cjj_16{display:none}._dropdown-option_t3cjj_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_t3cjj_1._hover_t3cjj_22:not(._disabled_t3cjj_12){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_t3cjj_1._hover_t3cjj_22:not(._disabled_t3cjj_12):hover{border:none;padding:9px 12px 7px}._dropdown-option_t3cjj_1._hover_t3cjj_22:not(._disabled_t3cjj_12):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._single-option_t3cjj_35{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._sub-option_t3cjj_42{padding-left:24px}._container_1yr7u_1{position:relative;display:inline-block;width:100%}._icon_1yr7u_7{width:16px;height:16px;margin-right:8px}._arrow_1yr7u_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_1yr7u_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_1yr7u_19._transparent-background_1yr7u_33{background-color:transparent}._dropdown_1yr7u_19._disabled_1yr7u_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_1yr7u_19._disabled_1yr7u_36 ._arrow_1yr7u_13 svg path{opacity:.4}._dropdown_1yr7u_19._disabled_1yr7u_36 ._value_1yr7u_43{color:var(--rp-ui-color-disabled)}._dropdown_1yr7u_19._error_1yr7u_46._touched_1yr7u_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_1yr7u_19:hover:not(:active):not(:focus-visible):not(._opened_1yr7u_50):not(._error_1yr7u_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_1yr7u_19:active,._dropdown_1yr7u_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_1yr7u_19:active ._arrow_1yr7u_13 svg path,._dropdown_1yr7u_19:focus-visible ._arrow_1yr7u_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_1yr7u_19._opened_1yr7u_50:not(:active):not(._error_1yr7u_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_1yr7u_19._opened_1yr7u_50:not(:active):not(._error_1yr7u_46) ._arrow_1yr7u_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_1yr7u_19._opened_1yr7u_50 ._arrow_1yr7u_13{transform:rotate(180deg)}._dropdown_1yr7u_19 ._value_1yr7u_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._dropdown_1yr7u_19 ._value_1yr7u_43._placeholder_1yr7u_83{color:var(--rp-ui-color-field-placeholder-3)}@media (max-width: 767px){._dropdown_1yr7u_19 ._mobile-disabled_1yr7u_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_1yr7u_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_1yr7u_92._opened_1yr7u_50:focus-visible{outline:none}._select-list_1yr7u_92._limited-width_1yr7u_109{max-width:384px}._options-container_1yr7u_113{display:flex;flex-direction:column}._ghost_1yr7u_118{border-color:transparent;background:transparent}._ghost_1yr7u_118:hover:not(:active):not(:focus-visible):not(._opened_1yr7u_50):not(._error_1yr7u_46){border-color:transparent}._ghost_1yr7u_118._opened_1yr7u_50:not(:active):not(._error_1yr7u_46){border-color:transparent}._ghost_1yr7u_118._opened_1yr7u_50 ._value_1yr7u_43{color:var(--rp-ui-color-primary-pressed)}._divider_1yr7u_132{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_183l8_1{display:flex;flex-direction:column}._size-option_183l8_6{width:88px;padding:8px 0;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_183l8_6:first-child{padding-top:0}._size-option_183l8_6:last-child{padding-bottom:0}._size-option_183l8_6:hover{color:var(--rp-ui-base-topaz-hover)}._size-option_183l8_6:active{color:var(--rp-ui-base-topaz-pressed)}._size-option_183l8_6._selected_183l8_32{color:var(--rp-ui-base-topaz)}._page-size-control_1y4na_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector-button_1y4na_10{margin-right:4px;font-weight:700}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_rmw5h_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_rmw5h_10{text-align:left}._page-selector-button_rmw5h_14{margin-left:4px;font-weight:700}._bar_dfnmf_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_dfnmf_9{display:inline-block;height:16px}._section-with-tooltip_dfnmf_9:hover ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_dfnmf_9:active ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_dfnmf_9:first-child ._section_dfnmf_9{border-radius:3px 0 0 3px}._section-with-tooltip_dfnmf_9:last-child ._section_dfnmf_9{border-radius:0 3px 3px 0}._section_dfnmf_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_dfnmf_9._selected_dfnmf_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_dfnmf_37{width:inherit;height:16px}._tooltip_dfnmf_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_dfnmf_37 ._tooltip-text_dfnmf_48{font-weight:400;padding-bottom:8px}._tooltip_dfnmf_37 ._page-number_dfnmf_52{font-weight:700}._section-with-tooltip_dfnmf_9,._tooltip-wrapper_dfnmf_37{position:relative;top:-4px}._page-navigator_1p2t5_1{display:flex;gap:16px}._page-buttons_1p2t5_6{display:inline-flex;gap:16px}._page-button_1p2t5_6{display:inline-flex;justify-content:center;align-items:center;width:16px;height:16px}._page-button_1p2t5_6._next_1p2t5_18{transform:rotateY(180deg)}._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_wi26a_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:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._modal-content_qziry_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:400;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_qziry_1._scrollable_qziry_12{width:calc(100% - 34px)}._buttons-block_1dgm4_1{white-space:nowrap}._button-container_1dgm4_5{display:inline-block;min-width:70px;margin-right:10px}._button-container_1dgm4_5:last-child{margin-right:0}._modal-footer_1dgm4_14{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1dgm4_14._with-extra-node_1dgm4_21{justify-content:space-between}._size-small_1dgm4_25{flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._buttons-block_1dgm4_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._button-container_1dgm4_5{margin:0 0 10px}._size-small_1dgm4_25 ._button-container_1dgm4_5:last-child{margin-bottom:0}._modal-header_68lru_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_68lru_1._width-description_68lru_10{padding-bottom:8px}._modal-header-content_68lru_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_68lru_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_68lru_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_f3ckb_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_f3ckb_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_f3ckb_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_f3ckb_20{position:fixed;width:100%;height:100%}._modal-window_f3ckb_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_f3ckb_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_f3ckb_43._scrollable_f3ckb_53{width:calc(100% - 34px)}._size-default_f3ckb_57{width:480px}@media (max-width: 480px){._size-default_f3ckb_57{right:10px;left:10px;transform:none;width:auto}}._size-small_f3ckb_69{width:320px}@media (max-width: 320px){._size-small_f3ckb_69{right:10px;left:10px;transform:none;width:auto}}._size-large_f3ckb_81{width:720px}@media (max-width: 720px){._size-large_f3ckb_81{right:10px;left:10px;transform:none;width:auto}}._popover-wrapper_16ogt_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_16ogt_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_16ogt_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:700;font-size:13px;line-height:20px;margin-bottom:8px}._system-alert_14lm6_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_14lm6_1._error_14lm6_11{background-color:var(--rp-ui-base-sm-error)}._system-alert_14lm6_1._success_14lm6_14{background-color:var(--rp-ui-base-test-execution-status-passed)}._system-alert_14lm6_1._info_14lm6_17{background-color:var(--rp-ui-base-no-defect-bug-group)}._system-alert_14lm6_1 ._icon-wrapper_14lm6_20{width:20px;height:24px;display:grid;place-content:center}._system-alert_14lm6_1 ._content-wrapper_14lm6_26{display:flex;gap:16px;flex-direction:column;flex:1}._system-alert_14lm6_1 ._content-wrapper_14lm6_26 ._title_14lm6_32{text-align:start;font-family:var(--rp-ui-base-font-family);font-size:15px;line-height:24px;font-weight:600;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_14lm6_1 ._close-button_14lm6_45{background:none;border:none;width:24px;height:24px;cursor:pointer}._system-alert_14lm6_1 ._close-button_14lm6_45 svg path{fill:var(--rp-ui-base-bg-000)}._tooltip-wrapper_18ppz_16{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip-content_18ppz_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:500;color:var(--rp-ui-base-bg-000);word-wrap:break-word;white-space:pre-wrap;box-sizing:border-box;width:100%}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reportportal/ui-kit",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.59",
|
|
4
4
|
"description": "The UI-kit library for ReportPortal Design System.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"react-datepicker": "^7.6.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@storybook/addon-essentials": "^8.
|
|
39
|
-
"@storybook/addon-interactions": "^8.
|
|
40
|
-
"@storybook/addon-links": "^8.
|
|
41
|
-
"@storybook/addon-onboarding": "^8.
|
|
42
|
-
"@storybook/blocks": "^8.
|
|
43
|
-
"@storybook/react": "^8.
|
|
44
|
-
"@storybook/react-vite": "^8.
|
|
38
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
39
|
+
"@storybook/addon-interactions": "^8.6.14",
|
|
40
|
+
"@storybook/addon-links": "^8.6.14",
|
|
41
|
+
"@storybook/addon-onboarding": "^8.6.14",
|
|
42
|
+
"@storybook/blocks": "^8.6.14",
|
|
43
|
+
"@storybook/react": "^8.6.14",
|
|
44
|
+
"@storybook/react-vite": "^8.6.14",
|
|
45
45
|
"@storybook/testing-library": "^0.2.2",
|
|
46
46
|
"@testing-library/jest-dom": "^6.6.3",
|
|
47
47
|
"@testing-library/react": "^16.1.0",
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"react": "18.2.0",
|
|
74
74
|
"react-dom": "18.2.0",
|
|
75
75
|
"sass": "^1.64.1",
|
|
76
|
-
"storybook": "^8.
|
|
76
|
+
"storybook": "^8.6.14",
|
|
77
77
|
"typescript": "^5.0.2",
|
|
78
|
-
"vite": "^4.
|
|
78
|
+
"vite": "^4.5.14",
|
|
79
79
|
"vite-plugin-dts": "^3.4.0",
|
|
80
80
|
"vite-plugin-svgr": "^3.2.0",
|
|
81
81
|
"vite-tsconfig-paths": "^4.2.0",
|
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as a, Fragment as F } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef as Q, useRef as W, useState as E } from "react";
|
|
3
|
-
import { c as X } from "./bind-06a7ff84.js";
|
|
4
|
-
import { b as Y, a as Z, S as q } from "./openEye-7b9cf080.js";
|
|
5
|
-
import { B as ee } from "./button-33c88abf.js";
|
|
6
|
-
import { S as ne } from "./spinLoader-c4a53718.js";
|
|
7
|
-
import { M as te } from "./maxValueDisplay-9be01a75.js";
|
|
8
|
-
const se = "_collapsed_yf2z1_13", ae = "_label_yf2z1_21", oe = "_asterisk_yf2z1_30", ce = "_disabled_yf2z1_36", re = "_field_yf2z1_41", ie = "_placeholder_yf2z1_62", le = "_error_yf2z1_69", _e = "_touched_yf2z1_69", de = "_input_yf2z1_87", fe = "_icon_yf2z1_1", pe = "_text_yf2z1_193", ue = {
|
|
9
|
-
"icon-container": "_icon-container_yf2z1_1",
|
|
10
|
-
"icon-container-end": "_icon-container-end_yf2z1_1",
|
|
11
|
-
"icon-container-start": "_icon-container-start_yf2z1_1",
|
|
12
|
-
collapsed: se,
|
|
13
|
-
label: ae,
|
|
14
|
-
asterisk: oe,
|
|
15
|
-
disabled: ce,
|
|
16
|
-
field: re,
|
|
17
|
-
"default-width": "_default-width_yf2z1_53",
|
|
18
|
-
placeholder: ie,
|
|
19
|
-
error: le,
|
|
20
|
-
touched: _e,
|
|
21
|
-
"max-length-display": "_max-length-display_yf2z1_76",
|
|
22
|
-
"input-container": "_input-container_yf2z1_87",
|
|
23
|
-
"type-password": "_type-password_yf2z1_91",
|
|
24
|
-
input: de,
|
|
25
|
-
"eye-icon": "_eye-icon_yf2z1_95",
|
|
26
|
-
icon: fe,
|
|
27
|
-
"start-icon": "_start-icon_yf2z1_149",
|
|
28
|
-
"clear-icon": "_clear-icon_yf2z1_150",
|
|
29
|
-
"additional-content": "_additional-content_yf2z1_186",
|
|
30
|
-
text: pe,
|
|
31
|
-
"error-text": "_error-text_yf2z1_213",
|
|
32
|
-
"help-text": "_help-text_yf2z1_217"
|
|
33
|
-
}, n = X.bind(ue), ge = Q(
|
|
34
|
-
({
|
|
35
|
-
value: s = "",
|
|
36
|
-
className: M,
|
|
37
|
-
classNameHelpText: v,
|
|
38
|
-
error: i,
|
|
39
|
-
placeholder: p,
|
|
40
|
-
disabled: o = !1,
|
|
41
|
-
onChange: B,
|
|
42
|
-
touched: u = !1,
|
|
43
|
-
title: C,
|
|
44
|
-
label: l,
|
|
45
|
-
helpText: _,
|
|
46
|
-
defaultWidth: D = !0,
|
|
47
|
-
startIcon: m,
|
|
48
|
-
endIcon: h,
|
|
49
|
-
clearable: T = !1,
|
|
50
|
-
onClear: y,
|
|
51
|
-
isRequired: z = !1,
|
|
52
|
-
hasDoubleMessage: V = !1,
|
|
53
|
-
type: c = "text",
|
|
54
|
-
displayError: P = !0,
|
|
55
|
-
collapsible: R = !1,
|
|
56
|
-
loading: j = !1,
|
|
57
|
-
maxLengthDisplay: H,
|
|
58
|
-
onFocus: L = () => {
|
|
59
|
-
},
|
|
60
|
-
onBlur: O = () => {
|
|
61
|
-
},
|
|
62
|
-
...U
|
|
63
|
-
}, $) => {
|
|
64
|
-
const A = W(null), d = $ || A, [x, N] = E(!1), [w, g] = E(!1), G = (t) => {
|
|
65
|
-
N(!0), L(t);
|
|
66
|
-
}, I = (t) => {
|
|
67
|
-
N(!1), O(t);
|
|
68
|
-
}, J = () => {
|
|
69
|
-
var t;
|
|
70
|
-
y && (y(s), (t = d.current) == null || t.focus());
|
|
71
|
-
}, S = P && i && u, b = /* @__PURE__ */ e("span", { className: n("text", "help-text", v), children: _ }), K = () => c !== "password" ? c : w ? "text" : "password", k = (t) => {
|
|
72
|
-
t.preventDefault(), g(!0);
|
|
73
|
-
}, r = (t) => {
|
|
74
|
-
t.preventDefault(), g(!1);
|
|
75
|
-
};
|
|
76
|
-
return /* @__PURE__ */ a(F, { children: [
|
|
77
|
-
l && /* @__PURE__ */ a("span", { className: n("label", { disabled: o }), children: [
|
|
78
|
-
l,
|
|
79
|
-
z && /* @__PURE__ */ e("span", { className: n("asterisk"), children: "*" })
|
|
80
|
-
] }),
|
|
81
|
-
/* @__PURE__ */ a(
|
|
82
|
-
"div",
|
|
83
|
-
{
|
|
84
|
-
className: n("field", M, {
|
|
85
|
-
error: i,
|
|
86
|
-
touched: u,
|
|
87
|
-
disabled: o,
|
|
88
|
-
"default-width": D,
|
|
89
|
-
collapsed: R && !x && !s
|
|
90
|
-
}),
|
|
91
|
-
title: C,
|
|
92
|
-
children: [
|
|
93
|
-
j ? /* @__PURE__ */ e(ne, {}) : m && /* @__PURE__ */ e(
|
|
94
|
-
"span",
|
|
95
|
-
{
|
|
96
|
-
className: n("icon-container-start"),
|
|
97
|
-
onClick: () => {
|
|
98
|
-
var f;
|
|
99
|
-
(f = d.current) == null || f.focus();
|
|
100
|
-
},
|
|
101
|
-
children: /* @__PURE__ */ e("span", { className: n("icon", { "start-icon": !x }), children: m })
|
|
102
|
-
}
|
|
103
|
-
),
|
|
104
|
-
/* @__PURE__ */ a("span", { className: n("input-container", `type-${c}`), children: [
|
|
105
|
-
/* @__PURE__ */ e(
|
|
106
|
-
"input",
|
|
107
|
-
{
|
|
108
|
-
ref: d,
|
|
109
|
-
type: K(),
|
|
110
|
-
className: n("input"),
|
|
111
|
-
value: s,
|
|
112
|
-
disabled: o,
|
|
113
|
-
onChange: B,
|
|
114
|
-
onFocus: G,
|
|
115
|
-
onBlur: I,
|
|
116
|
-
...U
|
|
117
|
-
}
|
|
118
|
-
),
|
|
119
|
-
c === "password" && s && /* @__PURE__ */ e(
|
|
120
|
-
ee,
|
|
121
|
-
{
|
|
122
|
-
icon: w ? /* @__PURE__ */ e(Y, {}) : /* @__PURE__ */ e(Z, {}),
|
|
123
|
-
variant: "text",
|
|
124
|
-
className: n("eye-icon"),
|
|
125
|
-
onMouseDown: k,
|
|
126
|
-
onMouseLeave: r,
|
|
127
|
-
onMouseUp: r,
|
|
128
|
-
onTouchStart: k,
|
|
129
|
-
onTouchEnd: r,
|
|
130
|
-
onTouchCancel: r
|
|
131
|
-
}
|
|
132
|
-
),
|
|
133
|
-
p && !s && /* @__PURE__ */ a("span", { className: n("placeholder"), children: [
|
|
134
|
-
p,
|
|
135
|
-
z && !l && /* @__PURE__ */ e("span", { className: n("asterisk") })
|
|
136
|
-
] })
|
|
137
|
-
] }),
|
|
138
|
-
/* @__PURE__ */ e(
|
|
139
|
-
te,
|
|
140
|
-
{
|
|
141
|
-
className: n("max-length-display"),
|
|
142
|
-
value: s.length,
|
|
143
|
-
maxValue: H
|
|
144
|
-
}
|
|
145
|
-
),
|
|
146
|
-
h && /* @__PURE__ */ e("span", { className: n("icon-container-end"), children: /* @__PURE__ */ e("span", { className: n("icon"), children: h }) }),
|
|
147
|
-
T && s.length > 0 && /* @__PURE__ */ e("span", { className: n("icon-container-end"), children: /* @__PURE__ */ e("button", { type: "button", className: n("clear-icon", { disabled: o }), onClick: J, children: /* @__PURE__ */ e(q, {}) }) })
|
|
148
|
-
]
|
|
149
|
-
}
|
|
150
|
-
),
|
|
151
|
-
(S || _) && /* @__PURE__ */ e("div", { className: n("additional-content", { disabled: o }), children: S ? /* @__PURE__ */ a(F, { children: [
|
|
152
|
-
/* @__PURE__ */ e("span", { className: n("text", "error-text"), children: i }),
|
|
153
|
-
V && b
|
|
154
|
-
] }) : _ && b })
|
|
155
|
-
] });
|
|
156
|
-
}
|
|
157
|
-
);
|
|
158
|
-
export {
|
|
159
|
-
ge as F
|
|
160
|
-
};
|