@luscii-healthtech/web-ui 42.14.0 → 44.0.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luscii-healthtech/web-ui",
3
- "version": "42.14.0",
3
+ "version": "44.0.0",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Joris Janssen"
@@ -1,25 +0,0 @@
1
- export default Radio;
2
- /**
3
- * @deprecated: use RadioV2 instead
4
- */
5
- declare class Radio extends React.PureComponent<any, any, any> {
6
- static propTypes: {
7
- className: PropTypes.Requireable<string>;
8
- text: PropTypes.Requireable<string>;
9
- isChecked: PropTypes.Validator<boolean>;
10
- isDisabled: PropTypes.Requireable<boolean>;
11
- name: PropTypes.Validator<string>;
12
- value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
13
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
14
- };
15
- constructor(props: any);
16
- state: {
17
- isFocused: boolean;
18
- };
19
- handleChange: (event: any) => void;
20
- handleFocus: () => void;
21
- handleBlur: () => void;
22
- render(): import("react/jsx-runtime").JSX.Element;
23
- }
24
- import React from "react";
25
- import PropTypes from "prop-types";
@@ -1,33 +0,0 @@
1
- export default RadioGroup;
2
- /**
3
- * @deprecated: use RadioV2 instead
4
- */
5
- declare function RadioGroup({ className, radioClassName, name, selectedOption, isVertical, radioOptions, onChange, error, isDisabled, ...otherOptions }: {
6
- [x: string]: any;
7
- className: any;
8
- radioClassName: any;
9
- name: any;
10
- selectedOption: any;
11
- isVertical: any;
12
- radioOptions: any;
13
- onChange: any;
14
- error: any;
15
- isDisabled: any;
16
- }): import("react/jsx-runtime").JSX.Element;
17
- declare namespace RadioGroup {
18
- namespace propTypes {
19
- let className: PropTypes.Requireable<string>;
20
- let radioClassName: PropTypes.Requireable<string>;
21
- let name: PropTypes.Requireable<string>;
22
- let selectedOption: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
23
- let isVertical: PropTypes.Requireable<boolean>;
24
- let radioOptions: PropTypes.Validator<(PropTypes.InferProps<{
25
- text: PropTypes.Requireable<string>;
26
- info: PropTypes.Requireable<string>;
27
- isDisabled: PropTypes.Requireable<boolean>;
28
- value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
29
- }> | null | undefined)[]>;
30
- let onChange: PropTypes.Requireable<(...args: any[]) => any>;
31
- }
32
- }
33
- import PropTypes from "prop-types";
@@ -1,9 +0,0 @@
1
- export interface StepProps {
2
- title: string;
3
- stepNumber: number;
4
- active: boolean;
5
- localization: {
6
- step: string;
7
- };
8
- }
9
- export declare const Step: ({ title, stepNumber, active, localization, }: StepProps) => JSX.Element;
@@ -1,28 +0,0 @@
1
- import Radio from "../src/components/Radio/Radio";
2
- declare const _default: {
3
- title: string;
4
- component: typeof Radio;
5
- };
6
- export default _default;
7
- export declare const Base: {
8
- args: {
9
- name: string;
10
- text: string;
11
- isChecked: boolean;
12
- };
13
- };
14
- export declare const Unchecked: {
15
- args: {
16
- name: string;
17
- text: string;
18
- isChecked: boolean;
19
- };
20
- };
21
- export declare const Disabled: {
22
- args: {
23
- name: string;
24
- text: string;
25
- isDisabled: boolean;
26
- isChecked: boolean;
27
- };
28
- };
@@ -1,30 +0,0 @@
1
- import RadioGroup from "../src/components/RadioGroup/RadioGroup";
2
- declare const _default: {
3
- title: string;
4
- component: typeof RadioGroup;
5
- };
6
- export default _default;
7
- export declare const Vertical: {
8
- args: {
9
- name: string;
10
- selectedOption: number;
11
- isVertical: boolean;
12
- radioOptions: {
13
- text: string;
14
- value: string;
15
- info: string;
16
- }[];
17
- };
18
- };
19
- export declare const Horizontal: {
20
- args: {
21
- name: string;
22
- selectedOption: number;
23
- isVertical: boolean;
24
- radioOptions: {
25
- text: string;
26
- value: string;
27
- info: string;
28
- }[];
29
- };
30
- };
@@ -1,25 +0,0 @@
1
- declare const _default: {
2
- title: string;
3
- component: ({ title, stepNumber, active, localization, }: import("../src/components/Steps/Step").StepProps) => JSX.Element;
4
- };
5
- export default _default;
6
- export declare const Active: {
7
- args: {
8
- title: string;
9
- stepNumber: number;
10
- active: boolean;
11
- localization: {
12
- step: string;
13
- };
14
- };
15
- };
16
- export declare const Future: {
17
- args: {
18
- title: string;
19
- stepNumber: number;
20
- active: boolean;
21
- localization: {
22
- step: string;
23
- };
24
- };
25
- };