@luscii-healthtech/web-ui 6.2.2 → 6.2.3
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.
|
@@ -5,5 +5,5 @@ interface FormImagePickerProps extends ImagePickerFieldConfiguration, FormFieldL
|
|
|
5
5
|
control: Control;
|
|
6
6
|
rules?: Exclude<RegisterOptions, "valueAsNumber" | "valueAsDate" | "setValueAs">;
|
|
7
7
|
}
|
|
8
|
-
export declare const FormImagePicker: React.ForwardRefExoticComponent<
|
|
8
|
+
export declare const FormImagePicker: React.ForwardRefExoticComponent<FormImagePickerProps & React.RefAttributes<any>>;
|
|
9
9
|
export {};
|
|
@@ -3,7 +3,7 @@ import React, { HTMLInputTypeAttribute } from "react";
|
|
|
3
3
|
import { InputProps } from "../Input/Input";
|
|
4
4
|
import { RadioGroupProps } from "../RadioGroup/RadioGroupV2";
|
|
5
5
|
import { SelectProps } from "../Select/Select";
|
|
6
|
-
import { ImagePickerProps } from "../
|
|
6
|
+
import { ImagePickerProps } from "../MediaPicker/MediaPicker";
|
|
7
7
|
import { PartialProperties } from "../../types/general.types";
|
|
8
8
|
import { CheckboxProps } from "../Checkbox/Checkbox";
|
|
9
9
|
import { CheckboxListProps } from "../CheckboxList/CheckboxList.types";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luscii-healthtech/web-ui",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Joris Janssen"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"test": "echo \"This repo doesn't include any unit tests at this time.\"",
|
|
23
23
|
"lint": "eslint src stories --ext .jsx --ext .js --ext .ts --ext .tsx --cache --cache-location './node_modules/@eslint/.eslintcache/'",
|
|
24
24
|
"lint:fix": "eslint src stories --ext .jsx --ext .js --ext .ts --ext .tsx --fix",
|
|
25
|
+
"lint:types": "yarn tsc --noEmit",
|
|
25
26
|
"storybook:lazy": "STORYBOOK_LAZY_COMPILATION=true yarn storybook",
|
|
26
27
|
"storybook": "storybook dev -p 6006",
|
|
27
28
|
"build-storybook": "yarn storybook:build-tailwind && storybook build",
|