@reportportal/ui-kit 0.0.1-alpha.224 → 0.0.1-alpha.226
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/dropdown/dropdown.d.ts +5 -0
- package/dist/components/dropdown/types.d.ts +1 -0
- package/dist/components/icons/index.d.ts +3 -0
- package/dist/{datePicker-ab9411c0.js → datePicker-bc0a9fca.js} +1 -1
- package/dist/datePicker.js +7 -4
- package/dist/{dropdown-110ce4a5.js → dropdown-33f2bf75.js} +258 -244
- package/dist/dropdown.js +6 -3
- package/dist/icons.js +55 -52
- package/dist/index.js +115 -112
- package/dist/modal.js +1 -1
- package/dist/sidePanel.js +22 -19
- package/package.json +1 -1
|
@@ -47,6 +47,11 @@ export interface DropdownProps extends Omit<ComponentPropsWithRef<'div'>, 'onCha
|
|
|
47
47
|
* @example menuPortalRoot={document.body}
|
|
48
48
|
*/
|
|
49
49
|
menuPortalRoot?: Element;
|
|
50
|
+
/**
|
|
51
|
+
* Portal root for the Tooltip shown on disabled options that have an explicit `title`.
|
|
52
|
+
* When omitted, defaults to `document.body` in the browser (guarded for SSR).
|
|
53
|
+
*/
|
|
54
|
+
disabledOptionTooltipPortalRoot?: Element;
|
|
50
55
|
/** Whether to render selected values as tags using AdaptiveTagList (only for multiSelect mode) */
|
|
51
56
|
isMultiSelectWithTags?: boolean;
|
|
52
57
|
/** Message to display when no options match the search term */
|
|
@@ -75,3 +75,6 @@ export { default as LaunchTypeIcon } from './svg/launchType.svg';
|
|
|
75
75
|
export { default as RunManualIcon } from './svg/runManual.svg';
|
|
76
76
|
export { default as CoverageFullIcon } from './svg/coverageFull.svg';
|
|
77
77
|
export { default as CoveragePartialIcon } from './svg/coveragePartially.svg';
|
|
78
|
+
export { default as DownloadIcon } from './svg/download.svg';
|
|
79
|
+
export { default as ArrowRightIcon } from './svg/arrowRight.svg';
|
|
80
|
+
export { default as ArrowLeftIcon } from './svg/arrowLeft.svg';
|
|
@@ -3,7 +3,7 @@ import { useMemo as E, forwardRef as G, useRef as V } from "react";
|
|
|
3
3
|
import v from "react-datepicker/dist/es/index.js";
|
|
4
4
|
import { c as L } from "./bind-06a7ff84.js";
|
|
5
5
|
import { F as W } from "./fieldText-1749da7a.js";
|
|
6
|
-
import { D as x } from "./dropdown-
|
|
6
|
+
import { D as x } from "./dropdown-33f2bf75.js";
|
|
7
7
|
import { S as I } from "./calendarArrow-44c7e60e.js";
|
|
8
8
|
import { registerLocale as q } from "react-datepicker";
|
|
9
9
|
const De = (t, n) => {
|
package/dist/datePicker.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { D as t } from "./datePicker-
|
|
2
|
-
import { r as
|
|
1
|
+
import { D as t } from "./datePicker-bc0a9fca.js";
|
|
2
|
+
import { r as H } from "./datePicker-bc0a9fca.js";
|
|
3
3
|
import "react/jsx-runtime";
|
|
4
4
|
import "react";
|
|
5
5
|
import "react-datepicker/dist/es/index.js";
|
|
@@ -11,7 +11,7 @@ import "./baseIconButton-251479f7.js";
|
|
|
11
11
|
import "./spinLoader-c4a53718.js";
|
|
12
12
|
import "./maxValueDisplay-9be01a75.js";
|
|
13
13
|
import "./fieldLabel.js";
|
|
14
|
-
import "./dropdown-
|
|
14
|
+
import "./dropdown-33f2bf75.js";
|
|
15
15
|
import "react-dom";
|
|
16
16
|
import "@floating-ui/react-dom";
|
|
17
17
|
import "downshift";
|
|
@@ -26,10 +26,13 @@ import "react-dnd";
|
|
|
26
26
|
import "react-dnd-html5-backend";
|
|
27
27
|
import "./useEllipsisTitle-462fa254.js";
|
|
28
28
|
import "./checkbox-76aa8f97.js";
|
|
29
|
+
import "./tooltip.js";
|
|
30
|
+
import "@floating-ui/react";
|
|
31
|
+
import "./floatingUi-46f5b896.js";
|
|
29
32
|
import "./calendarArrow-44c7e60e.js";
|
|
30
33
|
import "react-datepicker";
|
|
31
34
|
export {
|
|
32
35
|
t as DatePicker,
|
|
33
36
|
t as default,
|
|
34
|
-
|
|
37
|
+
H as registerDatePickerLocale
|
|
35
38
|
};
|