@reportportal/ui-kit 0.0.1-alpha.52 → 0.0.1-alpha.54
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 +4 -1
- package/dist/common/hooks/useOnClickOutside.d.ts +1 -0
- package/dist/components/baseIconButton/baseIconButton.d.ts +1 -0
- package/dist/components/baseIconButton/index.d.ts +1 -0
- package/dist/components/bubblesLoader/bubblesLoader.d.ts +1 -0
- package/dist/components/bubblesLoader/index.d.ts +1 -0
- package/dist/components/button/button.d.ts +1 -0
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/checkbox/checkbox.d.ts +1 -0
- package/dist/components/checkbox/index.d.ts +1 -0
- package/dist/components/datePicker/datePicker.d.ts +1 -0
- package/dist/components/datePicker/header/datePickerHeader.d.ts +1 -0
- package/dist/components/datePicker/header/index.d.ts +1 -0
- package/dist/components/datePicker/index.d.ts +3 -1
- package/dist/components/datePicker/utils.d.ts +1 -0
- package/dist/components/dropdown/constants.d.ts +1 -0
- package/dist/components/dropdown/dropdown.d.ts +1 -0
- package/dist/components/dropdown/dropdownOption/dropdownOption.d.ts +1 -0
- package/dist/components/dropdown/dropdownOption/index.d.ts +1 -0
- package/dist/components/dropdown/index.d.ts +1 -0
- package/dist/components/dropdown/types.d.ts +1 -0
- package/dist/components/dropdown/utils.d.ts +1 -0
- package/dist/components/fieldNumber/constants.d.ts +1 -0
- package/dist/components/fieldNumber/fieldNumber.d.ts +1 -0
- package/dist/components/fieldNumber/index.d.ts +1 -0
- package/dist/components/fieldText/fieldText.d.ts +2 -1
- package/dist/components/fieldText/index.d.ts +1 -0
- package/dist/components/fieldTextFlex/fieldTextFlex.d.ts +1 -0
- package/dist/components/fieldTextFlex/index.d.ts +1 -0
- package/dist/components/maxValueDisplay/index.d.ts +1 -0
- package/dist/components/maxValueDisplay/maxValueDisplay.d.ts +1 -0
- package/dist/components/modal/modal.d.ts +1 -0
- package/dist/components/modal/modalContent/modalContent.d.ts +1 -0
- package/dist/components/modal/modalFooter/modalFooter.d.ts +1 -0
- package/dist/components/modal/modalHeader/modalHeader.d.ts +1 -0
- package/dist/components/pagination/index.d.ts +1 -0
- package/dist/components/pagination/itemsCounter/itemCounter.d.ts +1 -0
- package/dist/components/pagination/pageControls/activePage/activePage.d.ts +1 -0
- package/dist/components/pagination/pageControls/activePage/pageSelector/pageSelector.d.ts +1 -0
- package/dist/components/pagination/pageControls/pageControls.d.ts +1 -0
- package/dist/components/pagination/pageControls/pageNavigator/bar/bar.d.ts +1 -0
- package/dist/components/pagination/pageControls/pageNavigator/pageNavigator.d.ts +1 -0
- package/dist/components/pagination/pageSizeControl/pageSizeControl.d.ts +1 -0
- package/dist/components/pagination/pageSizeControl/sizeSelector/sizeSelector.d.ts +1 -0
- package/dist/components/pagination/pagination.d.ts +1 -0
- package/dist/components/popover/popover.d.ts +1 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/radio.d.ts +1 -0
- package/dist/components/radio/radioGroup.d.ts +1 -0
- package/dist/components/spinLoader/index.d.ts +1 -0
- package/dist/components/spinLoader/spinLoader.d.ts +1 -0
- package/dist/components/systemAlert/systemAlert.d.ts +1 -0
- package/dist/components/systemAlert/types.d.ts +1 -0
- package/dist/components/systemMessage/index.d.ts +1 -0
- package/dist/components/systemMessage/systemMessage.d.ts +1 -0
- package/dist/components/table/index.d.ts +1 -0
- package/dist/components/table/table.d.ts +1 -0
- package/dist/components/table/types.d.ts +1 -0
- package/dist/components/table/utils.d.ts +1 -0
- package/dist/components/themeProvider/index.d.ts +1 -0
- package/dist/components/themeProvider/themeProvider.d.ts +1 -0
- package/dist/components/toggle/index.d.ts +1 -0
- package/dist/components/toggle/toggle.d.ts +1 -0
- package/dist/components/tooltip/tooltip.d.ts +1 -0
- package/dist/{datePicker-8c37bd50.js → datePicker-a333d78b.js} +57 -53
- package/dist/datePicker.js +6 -3
- package/dist/index.js +82 -81
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -234,6 +234,9 @@ The CSS custom properties that come from DS are prefixed with `rp-ui-base` to av
|
|
|
234
234
|
|
|
235
235
|
### Testing
|
|
236
236
|
|
|
237
|
+
Each new component/hook/utility **must be** covered by unit/component tests.
|
|
238
|
+
All existing uncovered stuff will be tested gradually in the scope of tech-debt elimination activities.
|
|
239
|
+
|
|
237
240
|
#### Testing Tools
|
|
238
241
|
|
|
239
242
|
The project uses the following testing tools:
|
|
@@ -257,4 +260,4 @@ The project maintains a minimum of 80% test coverage threshold for:
|
|
|
257
260
|
- Statements
|
|
258
261
|
- Branches
|
|
259
262
|
- Functions
|
|
260
|
-
- Lines
|
|
263
|
+
- Lines
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DropdownValue, DropdownOptionType } from './types';
|
|
2
|
+
|
|
2
3
|
export declare const calculateDefaultIndex: (options: DropdownOptionType[], selectedValue: DropdownValue | DropdownValue[]) => number;
|
|
3
4
|
export declare const calculateNextIndex: (options: DropdownOptionType[], index?: number) => number;
|
|
4
5
|
export declare const calculatePrevIndex: (options: DropdownOptionType[], index?: number) => number;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChangeEventHandler, ReactNode, InputHTMLAttributes } from 'react';
|
|
2
|
+
|
|
2
3
|
interface FieldTextProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
3
4
|
value?: string;
|
|
4
5
|
className?: string;
|
|
@@ -26,5 +27,5 @@ interface FieldTextProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
26
27
|
collapsible?: boolean;
|
|
27
28
|
loading?: boolean;
|
|
28
29
|
}
|
|
29
|
-
export declare const FieldText: import(
|
|
30
|
+
export declare const FieldText: import('react').ForwardRefExoticComponent<FieldTextProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
30
31
|
export {};
|
|
@@ -1,25 +1,28 @@
|
|
|
1
1
|
import { jsxs as S, Fragment as U, jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import $ from "react-datepicker";
|
|
3
|
-
import { c as
|
|
2
|
+
import $ from "react-datepicker/dist/es/index.js";
|
|
3
|
+
import { c as R } from "./bind-06a7ff84.js";
|
|
4
4
|
import { useMemo as E, useRef as B } from "react";
|
|
5
5
|
import { F as D } from "./fieldText-78c1be1a.js";
|
|
6
6
|
import { a as T, S as G } from "./calendarArrow-3e1339ea.js";
|
|
7
|
-
import { D as
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}, V =
|
|
12
|
-
|
|
7
|
+
import { D as L } from "./dropdown-6edea86c.js";
|
|
8
|
+
import { registerLocale as H } from "react-datepicker";
|
|
9
|
+
const pe = (r, s) => {
|
|
10
|
+
H(r, s);
|
|
11
|
+
}, V = (r, s = 20) => {
|
|
12
|
+
const l = r + s;
|
|
13
|
+
return new Array(l - r).fill(void 0).map((g, e) => r - e);
|
|
14
|
+
}, O = "_header_a3cjx_1", W = "_disabled_a3cjx_25", q = "_dropdown_a3cjx_8", z = {
|
|
15
|
+
header: O,
|
|
13
16
|
"dropdowns-wrapper": "_dropdowns-wrapper_a3cjx_8",
|
|
14
17
|
"button-prev": "_button-prev_a3cjx_13",
|
|
15
18
|
"button-next": "_button-next_a3cjx_14",
|
|
16
|
-
disabled:
|
|
17
|
-
dropdown:
|
|
19
|
+
disabled: W,
|
|
20
|
+
dropdown: q,
|
|
18
21
|
"month-dropdown": "_month-dropdown_a3cjx_44",
|
|
19
22
|
"toggle-button": "_toggle-button_a3cjx_47"
|
|
20
|
-
},
|
|
21
|
-
date:
|
|
22
|
-
changeYear:
|
|
23
|
+
}, a = R.bind(z), J = ({
|
|
24
|
+
date: r = /* @__PURE__ */ new Date(),
|
|
25
|
+
changeYear: s = () => {
|
|
23
26
|
},
|
|
24
27
|
changeMonth: l = () => {
|
|
25
28
|
},
|
|
@@ -34,56 +37,56 @@ const H = (a, c = 20) => {
|
|
|
34
37
|
yearsOptions: i = [],
|
|
35
38
|
locale: x
|
|
36
39
|
}) => {
|
|
37
|
-
const p =
|
|
38
|
-
const t = Array(12).keys(),
|
|
40
|
+
const p = r.getFullYear(), C = r.getMonth(), f = E(() => {
|
|
41
|
+
const t = Array(12).keys(), c = new Intl.DateTimeFormat(x, {
|
|
39
42
|
month: "long"
|
|
40
|
-
}), d = (m) =>
|
|
43
|
+
}), d = (m) => c.format(new Date(p, m));
|
|
41
44
|
return Array.from(t, d).reduce((m, j, A) => m.concat({
|
|
42
45
|
value: A,
|
|
43
46
|
label: j
|
|
44
47
|
}), []);
|
|
45
|
-
}, []), N = E(() => (i.length > 0 ? i :
|
|
46
|
-
(
|
|
48
|
+
}, []), N = E(() => (i.length > 0 ? i : V(p)).reduce(
|
|
49
|
+
(c, d) => c.concat({ value: d, label: `${d}` }),
|
|
47
50
|
[]
|
|
48
51
|
), [i]), v = (t) => {
|
|
49
52
|
l(t);
|
|
50
53
|
}, y = (t) => {
|
|
51
|
-
|
|
54
|
+
s(t);
|
|
52
55
|
};
|
|
53
56
|
return /* @__PURE__ */ S(U, { children: [
|
|
54
|
-
b && /* @__PURE__ */ o("div", { className:
|
|
55
|
-
/* @__PURE__ */ S("div", { className:
|
|
57
|
+
b && /* @__PURE__ */ o("div", { className: a(w), children: b }),
|
|
58
|
+
/* @__PURE__ */ S("div", { className: a("header"), children: [
|
|
56
59
|
/* @__PURE__ */ o(
|
|
57
60
|
"button",
|
|
58
61
|
{
|
|
59
62
|
"aria-label": "Previous Months",
|
|
60
63
|
disabled: n,
|
|
61
64
|
onClick: g,
|
|
62
|
-
className:
|
|
65
|
+
className: a("button-prev", { disabled: n }),
|
|
63
66
|
children: /* @__PURE__ */ o(T, {})
|
|
64
67
|
}
|
|
65
68
|
),
|
|
66
|
-
/* @__PURE__ */ S("div", { className:
|
|
69
|
+
/* @__PURE__ */ S("div", { className: a("dropdowns-wrapper"), children: [
|
|
67
70
|
/* @__PURE__ */ o(
|
|
68
|
-
|
|
71
|
+
L,
|
|
69
72
|
{
|
|
70
73
|
options: f,
|
|
71
74
|
value: C,
|
|
72
75
|
onChange: v,
|
|
73
76
|
transparentBackground: !0,
|
|
74
|
-
className:
|
|
75
|
-
toggleButtonClassName:
|
|
77
|
+
className: a("dropdown", "month-dropdown"),
|
|
78
|
+
toggleButtonClassName: a("toggle-button")
|
|
76
79
|
}
|
|
77
80
|
),
|
|
78
81
|
/* @__PURE__ */ o(
|
|
79
|
-
|
|
82
|
+
L,
|
|
80
83
|
{
|
|
81
84
|
options: N,
|
|
82
85
|
value: p,
|
|
83
86
|
onChange: y,
|
|
84
87
|
transparentBackground: !0,
|
|
85
|
-
className:
|
|
86
|
-
toggleButtonClassName:
|
|
88
|
+
className: a("dropdown"),
|
|
89
|
+
toggleButtonClassName: a("toggle-button")
|
|
87
90
|
}
|
|
88
91
|
)
|
|
89
92
|
] }),
|
|
@@ -93,25 +96,25 @@ const H = (a, c = 20) => {
|
|
|
93
96
|
"aria-label": "Next Months",
|
|
94
97
|
disabled: h,
|
|
95
98
|
onClick: e,
|
|
96
|
-
className:
|
|
99
|
+
className: a("button-next", { disabled: h }),
|
|
97
100
|
children: /* @__PURE__ */ o(T, {})
|
|
98
101
|
}
|
|
99
102
|
)
|
|
100
103
|
] })
|
|
101
104
|
] });
|
|
102
|
-
},
|
|
103
|
-
calendar:
|
|
105
|
+
}, K = "_calendar_1jr94_5", Q = "_date_1jr94_90", X = "_disabled_1jr94_202", Z = "_popper_1jr94_210", ee = "_input_1jr94_214", ne = {
|
|
106
|
+
calendar: K,
|
|
104
107
|
"current-date": "_current-date_1jr94_89",
|
|
105
|
-
date:
|
|
108
|
+
date: Q,
|
|
106
109
|
"selected-range": "_selected-range_1jr94_119",
|
|
107
110
|
"end-date": "_end-date_1jr94_119",
|
|
108
|
-
disabled:
|
|
109
|
-
popper:
|
|
110
|
-
input:
|
|
111
|
-
}, _ =
|
|
112
|
-
onChange:
|
|
111
|
+
disabled: X,
|
|
112
|
+
popper: Z,
|
|
113
|
+
input: ee
|
|
114
|
+
}, _ = R.bind(ne), oe = "en", P = "MM-dd-yyyy", me = ({
|
|
115
|
+
onChange: r = () => {
|
|
113
116
|
},
|
|
114
|
-
disabled:
|
|
117
|
+
disabled: s = !1,
|
|
115
118
|
onBlur: l = () => {
|
|
116
119
|
},
|
|
117
120
|
onFocus: g = () => {
|
|
@@ -125,20 +128,20 @@ const H = (a, c = 20) => {
|
|
|
125
128
|
popperClassName: x = "",
|
|
126
129
|
calendarClassName: p = "",
|
|
127
130
|
fixedHeight: C = !1,
|
|
128
|
-
language: f =
|
|
131
|
+
language: f = oe,
|
|
129
132
|
yearsOptions: N = [],
|
|
130
|
-
placeholder: v =
|
|
131
|
-
dateFormat: y =
|
|
133
|
+
placeholder: v = P.toUpperCase(),
|
|
134
|
+
dateFormat: y = P,
|
|
132
135
|
selects: t = "start",
|
|
133
|
-
value:
|
|
136
|
+
value: c = null
|
|
134
137
|
}) => {
|
|
135
|
-
const d = B(null),
|
|
136
|
-
const
|
|
138
|
+
const d = B(null), k = n == null ? void 0 : n.toDateString(), m = e == null ? void 0 : e.toDateString(), j = e && n && e > n, A = (u) => {
|
|
139
|
+
const F = u.toDateString(), Y = F === k, M = j && F === m, I = n && e && u > n && u < e;
|
|
137
140
|
return _("date", {
|
|
138
|
-
"current-date":
|
|
139
|
-
"selected-range":
|
|
141
|
+
"current-date": Y,
|
|
142
|
+
"selected-range": I && !M,
|
|
140
143
|
"end-date": M && j,
|
|
141
|
-
disabled:
|
|
144
|
+
disabled: s
|
|
142
145
|
});
|
|
143
146
|
};
|
|
144
147
|
return /* @__PURE__ */ o(
|
|
@@ -154,11 +157,11 @@ const H = (a, c = 20) => {
|
|
|
154
157
|
}
|
|
155
158
|
),
|
|
156
159
|
placeholderText: v,
|
|
157
|
-
selected:
|
|
160
|
+
selected: c,
|
|
158
161
|
startDate: n,
|
|
159
162
|
endDate: e,
|
|
160
163
|
minDate: t === "end" ? n : void 0,
|
|
161
|
-
disabled:
|
|
164
|
+
disabled: s,
|
|
162
165
|
shouldCloseOnSelect: i,
|
|
163
166
|
fixedHeight: C,
|
|
164
167
|
locale: f,
|
|
@@ -166,7 +169,7 @@ const H = (a, c = 20) => {
|
|
|
166
169
|
dayClassName: A,
|
|
167
170
|
calendarClassName: _(p, "calendar"),
|
|
168
171
|
renderCustomHeader: (u) => /* @__PURE__ */ o(
|
|
169
|
-
|
|
172
|
+
J,
|
|
170
173
|
{
|
|
171
174
|
...u,
|
|
172
175
|
headerNodes: h,
|
|
@@ -175,7 +178,7 @@ const H = (a, c = 20) => {
|
|
|
175
178
|
locale: f
|
|
176
179
|
}
|
|
177
180
|
),
|
|
178
|
-
onChange:
|
|
181
|
+
onChange: r,
|
|
179
182
|
onBlur: l,
|
|
180
183
|
onFocus: g,
|
|
181
184
|
customTimeInput: w,
|
|
@@ -189,5 +192,6 @@ const H = (a, c = 20) => {
|
|
|
189
192
|
);
|
|
190
193
|
};
|
|
191
194
|
export {
|
|
192
|
-
|
|
195
|
+
me as D,
|
|
196
|
+
pe as r
|
|
193
197
|
};
|
package/dist/datePicker.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { D as t } from "./datePicker-
|
|
1
|
+
import { D as t } from "./datePicker-a333d78b.js";
|
|
2
|
+
import { r as q } from "./datePicker-a333d78b.js";
|
|
2
3
|
import "react/jsx-runtime";
|
|
3
|
-
import "react-datepicker";
|
|
4
|
+
import "react-datepicker/dist/es/index.js";
|
|
4
5
|
import "./bind-06a7ff84.js";
|
|
5
6
|
import "react";
|
|
6
7
|
import "./fieldText-78c1be1a.js";
|
|
@@ -18,7 +19,9 @@ import "./keyCodes-f63c0e11.js";
|
|
|
18
19
|
import "./baseIconButton-251479f7.js";
|
|
19
20
|
import "./dropdown-0260bb66.js";
|
|
20
21
|
import "./checkbox-9a6c7ce1.js";
|
|
22
|
+
import "react-datepicker";
|
|
21
23
|
export {
|
|
22
24
|
t as DatePicker,
|
|
23
|
-
t as default
|
|
25
|
+
t as default,
|
|
26
|
+
q as registerDatePickerLocale
|
|
24
27
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,32 +1,33 @@
|
|
|
1
|
-
import { B as
|
|
2
|
-
import { B as
|
|
3
|
-
import { C } from "./checkbox-9a6c7ce1.js";
|
|
4
|
-
import { S as
|
|
5
|
-
import { F as
|
|
6
|
-
import { T as
|
|
7
|
-
import { Modal as
|
|
8
|
-
import { D as
|
|
9
|
-
import { T as
|
|
10
|
-
import { F as
|
|
11
|
-
import { B as
|
|
12
|
-
import { S as
|
|
13
|
-
import { F as
|
|
14
|
-
import { R as
|
|
15
|
-
import { Tooltip as
|
|
16
|
-
import { Popover as
|
|
17
|
-
import { P as
|
|
18
|
-
import { T as
|
|
19
|
-
import { D as
|
|
20
|
-
import
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import { S as
|
|
26
|
-
import { S as
|
|
27
|
-
import { S as
|
|
28
|
-
import { S as
|
|
29
|
-
import { S as
|
|
1
|
+
import { B as d } from "./button-33c88abf.js";
|
|
2
|
+
import { B as u } from "./baseIconButton-251479f7.js";
|
|
3
|
+
import { C as F } from "./checkbox-9a6c7ce1.js";
|
|
4
|
+
import { S as T } from "./systemMessage-1ced6079.js";
|
|
5
|
+
import { F as D } from "./fieldText-78c1be1a.js";
|
|
6
|
+
import { T as w } from "./themeProvider-46c2be7b.js";
|
|
7
|
+
import { Modal as h } from "./modal.js";
|
|
8
|
+
import { D as E } from "./dropdown-6edea86c.js";
|
|
9
|
+
import { T as y } from "./toggle-1a3aacb5.js";
|
|
10
|
+
import { F as k } from "./fieldNumber-d81e551e.js";
|
|
11
|
+
import { B as R } from "./bubblesLoader-a7e709d4.js";
|
|
12
|
+
import { S as z } from "./spinLoader-c4a53718.js";
|
|
13
|
+
import { F as N } from "./fieldTextFlex-314741ad.js";
|
|
14
|
+
import { R as j } from "./radio-bccc84f2.js";
|
|
15
|
+
import { Tooltip as G } from "./tooltip.js";
|
|
16
|
+
import { Popover as K } from "./popover.js";
|
|
17
|
+
import { P as V } from "./pagination-066b1b2b.js";
|
|
18
|
+
import { T as X } from "./table-32fc8c70.js";
|
|
19
|
+
import { D as Z } from "./datePicker-a333d78b.js";
|
|
20
|
+
import "react-datepicker";
|
|
21
|
+
import { SystemAlert as $ } from "./systemAlert.js";
|
|
22
|
+
import { S as ro, a as eo } from "./arrowUp-4a5caee7.js";
|
|
23
|
+
import { BreadcrumbsTreeIcon as ao, ChevronDownDropdownIcon as no, ChevronRightBreadcrumbsIcon as po, CopyIcon as mo, DeleteIcon as so, EditIcon as co, ExportIcon as xo, ExternalLinkIcon as io, FilterFilledIcon as Io, FilterOutlineIcon as fo, FlagIcon as lo, HideIcon as So, MaximizeIcon as uo, MeatballMenuIcon as Co, SearchIcon as Fo, SortIcon as bo } from "./icons.js";
|
|
24
|
+
import { a as Bo, S as Do } from "./calendarArrow-3e1339ea.js";
|
|
25
|
+
import { S as wo, a as go, b as ho } from "./openEye-7b9cf080.js";
|
|
26
|
+
import { S as Eo } from "./close-4b33d7c1.js";
|
|
27
|
+
import { S as yo } from "./dropdown-0260bb66.js";
|
|
28
|
+
import { S as ko, a as Lo, b as Ro } from "./success-dc1914aa.js";
|
|
29
|
+
import { S as zo, a as Ho } from "./plus-0929dda4.js";
|
|
30
|
+
import { S as Uo, a as jo } from "./prevPage-87faf576.js";
|
|
30
31
|
import "react/jsx-runtime";
|
|
31
32
|
import "react";
|
|
32
33
|
import "./bind-06a7ff84.js";
|
|
@@ -38,58 +39,58 @@ import "./useOnClickOutside-c332f7d3.js";
|
|
|
38
39
|
import "@floating-ui/react-dom";
|
|
39
40
|
import "downshift";
|
|
40
41
|
import "@floating-ui/react";
|
|
41
|
-
import "react-datepicker";
|
|
42
|
+
import "react-datepicker/dist/es/index.js";
|
|
42
43
|
export {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
44
|
+
ro as ArrowDownIcon,
|
|
45
|
+
eo as ArrowUpIcon,
|
|
46
|
+
u as BaseIconButton,
|
|
47
|
+
ao as BreadcrumbsTreeIcon,
|
|
48
|
+
R as BubblesLoader,
|
|
49
|
+
d as Button,
|
|
50
|
+
Bo as CalendarArrowIcon,
|
|
51
|
+
Do as CalendarIcon,
|
|
52
|
+
F as Checkbox,
|
|
53
|
+
no as ChevronDownDropdownIcon,
|
|
54
|
+
po as ChevronRightBreadcrumbsIcon,
|
|
55
|
+
wo as ClearIcon,
|
|
56
|
+
go as CloseEyeIcon,
|
|
57
|
+
Eo as CloseIcon,
|
|
58
|
+
mo as CopyIcon,
|
|
59
|
+
Z as DatePicker,
|
|
60
|
+
so as DeleteIcon,
|
|
61
|
+
E as Dropdown,
|
|
62
|
+
yo as DropdownIcon,
|
|
63
|
+
co as EditIcon,
|
|
64
|
+
ko as ErrorIcon,
|
|
65
|
+
xo as ExportIcon,
|
|
66
|
+
io as ExternalLinkIcon,
|
|
67
|
+
k as FieldNumber,
|
|
68
|
+
D as FieldText,
|
|
69
|
+
N as FieldTextFlex,
|
|
69
70
|
Io as FilterFilledIcon,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
71
|
+
fo as FilterOutlineIcon,
|
|
72
|
+
lo as FlagIcon,
|
|
73
|
+
So as HideIcon,
|
|
74
|
+
Lo as InfoIcon,
|
|
75
|
+
uo as MaximizeIcon,
|
|
76
|
+
Co as MeatballMenuIcon,
|
|
77
|
+
zo as MinusIcon,
|
|
78
|
+
h as Modal,
|
|
79
|
+
ho as OpenEyeIcon,
|
|
80
|
+
V as Pagination,
|
|
81
|
+
Ho as PlusIcon,
|
|
82
|
+
K as Popover,
|
|
83
|
+
Uo as PrevChapterIcon,
|
|
84
|
+
jo as PrevPageIcon,
|
|
85
|
+
j as Radio,
|
|
86
|
+
Fo as SearchIcon,
|
|
87
|
+
bo as SortIcon,
|
|
88
|
+
z as SpinLoader,
|
|
89
|
+
Ro as SuccessIcon,
|
|
90
|
+
$ as SystemAlert,
|
|
91
|
+
T as SystemMessage,
|
|
92
|
+
X as Table,
|
|
93
|
+
w as ThemeProvider,
|
|
94
|
+
y as Toggle,
|
|
95
|
+
G as Tooltip
|
|
95
96
|
};
|
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.54",
|
|
4
4
|
"description": "The UI-kit library for ReportPortal Design System.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"downshift": "^6.1.12",
|
|
33
33
|
"framer-motion": "^10.15.2",
|
|
34
34
|
"rc-scrollbars": "^1.1.6",
|
|
35
|
-
"react-datepicker": "^7.
|
|
35
|
+
"react-datepicker": "^7.6.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@storybook/addon-essentials": "^8.2.9",
|