@reportportal/ui-kit 0.0.1-alpha.196 → 0.0.1-alpha.198
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/index.d.ts +1 -1
- package/dist/components/radio/index.d.ts +4 -3
- package/dist/components/radio/radioGroup.d.ts +1 -2
- package/dist/{datePicker-954bd00b.js → datePicker-62184eed.js} +1 -1
- package/dist/datePicker.js +3 -3
- package/dist/{dropdown-aec82d1f.js → dropdown-3e13dca7.js} +141 -140
- package/dist/dropdown.js +2 -2
- package/dist/index.js +118 -117
- package/dist/modal.js +1 -1
- package/dist/radio.js +3 -1
- package/dist/radioGroup-0c132c2e.js +77 -0
- package/dist/sidePanel.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/radio-62546efa.js +0 -76
package/README.md
CHANGED
|
@@ -110,7 +110,7 @@ The number of custom themes is not limited and actual theme can be easily switch
|
|
|
110
110
|
|
|
111
111
|
## Components
|
|
112
112
|
|
|
113
|
-
To see a published showcase of the latest components released with its API and use cases, follow the [link](https://reportportal.io/ui-kit/).
|
|
113
|
+
To see a published showcase of the latest components released with its API and use cases, follow the [link](https://developers.reportportal.io/ui-kit/).
|
|
114
114
|
|
|
115
115
|
### Icons
|
|
116
116
|
|
|
@@ -23,7 +23,7 @@ export { Modal } from './modal';
|
|
|
23
23
|
export { MultipleAutocomplete } from './autocompletes/multipleAutocomplete';
|
|
24
24
|
export { Pagination } from './pagination';
|
|
25
25
|
export { Popover } from './popover';
|
|
26
|
-
export { Radio } from './radio';
|
|
26
|
+
export { Radio, RadioGroup } from './radio';
|
|
27
27
|
export { SegmentedControl } from './segmentedControl';
|
|
28
28
|
export { Selection } from './selection';
|
|
29
29
|
export { SpinLoader } from './spinLoader';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { Radio, RadioProps } from './radio
|
|
1
|
+
import { Radio, RadioProps } from './radio';
|
|
2
|
+
import { RadioGroup, RadioGroupProps } from './radioGroup';
|
|
2
3
|
|
|
3
|
-
export { Radio };
|
|
4
|
-
export type { RadioProps };
|
|
4
|
+
export { Radio, RadioGroup };
|
|
5
|
+
export type { RadioProps, RadioGroupProps };
|
|
5
6
|
export default Radio;
|
|
@@ -2,8 +2,7 @@ import { FC } from 'react';
|
|
|
2
2
|
import { RadioProps } from './index';
|
|
3
3
|
import { RadioOption } from './radio';
|
|
4
4
|
|
|
5
|
-
interface RadioGroupProps extends Omit<RadioProps, 'option'> {
|
|
5
|
+
export interface RadioGroupProps extends Omit<RadioProps, 'option'> {
|
|
6
6
|
options: RadioOption[];
|
|
7
7
|
}
|
|
8
8
|
export declare const RadioGroup: FC<RadioGroupProps>;
|
|
9
|
-
export {};
|
|
@@ -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-3e13dca7.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 E } from "./datePicker-
|
|
1
|
+
import { D as t } from "./datePicker-62184eed.js";
|
|
2
|
+
import { r as E } from "./datePicker-62184eed.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-3e13dca7.js";
|
|
15
15
|
import "react-dom";
|
|
16
16
|
import "@floating-ui/react-dom";
|
|
17
17
|
import "downshift";
|