@luscii-healthtech/web-ui 43.0.0 → 44.0.1

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": "43.0.0",
3
+ "version": "44.0.1",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Joris Janssen"
@@ -73,13 +73,13 @@
73
73
  "@rollup/plugin-node-resolve": "^15.2.3",
74
74
  "@rollup/plugin-terser": "^0.4.3",
75
75
  "@rollup/plugin-typescript": "^11.1.2",
76
- "@storybook/addon-a11y": "^10.0.8",
76
+ "@storybook/addon-a11y": "^10.1.10",
77
77
  "@storybook/addon-coverage": "^3.0.0",
78
- "@storybook/addon-docs": "^10.0.8",
79
- "@storybook/addon-links": "^10.0.8",
80
- "@storybook/builder-vite": "^10.0.8",
81
- "@storybook/react-vite": "^10.0.8",
82
- "@storybook/test-runner": "^0.24.1",
78
+ "@storybook/addon-docs": "^10.1.10",
79
+ "@storybook/addon-links": "^10.1.10",
80
+ "@storybook/builder-vite": "^10.1.10",
81
+ "@storybook/react-vite": "^10.1.10",
82
+ "@storybook/test-runner": "^0.24.2",
83
83
  "@svgr/cli": "^7.0.0",
84
84
  "@tailwindcss/cli": "^4.1.12",
85
85
  "@tailwindcss/forms": "^0.5.4",
@@ -104,7 +104,7 @@
104
104
  "eslint-plugin-import": "^2.32.0",
105
105
  "eslint-plugin-no-relative-import-paths": "^1.6.1",
106
106
  "eslint-plugin-react": "^7.37.5",
107
- "eslint-plugin-storybook": "^10.0.8",
107
+ "eslint-plugin-storybook": "^10.1.10",
108
108
  "find-in-files": "^0.5.0",
109
109
  "globals": "^16.5.0",
110
110
  "husky": "^8.0.3",
@@ -124,9 +124,9 @@
124
124
  "rollup-plugin-visualizer": "^5.9.2",
125
125
  "sass": "^1.83.0",
126
126
  "sass-loader": "^16.0.4",
127
- "storybook": "^10.0.8",
127
+ "storybook": "^10.1.10",
128
128
  "storybook-a11y-report": "^0.0.21",
129
- "storybook-addon-tag-badges": "^3.0.2",
129
+ "storybook-addon-tag-badges": "^3.0.4",
130
130
  "style-loader": "^4.0.0",
131
131
  "tailwindcss": "^4.1.12",
132
132
  "tailwindcss-animate": "^1.0.7",
@@ -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,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
- };