@kroo-web/design-system 1.19.0 → 1.19.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/dist/components/Checkbox/index.d.ts +1 -1
- package/dist/components/ComboBox/index.d.ts +1 -1
- package/dist/components/DatePicker/index.d.ts +1 -1
- package/dist/components/NumberField/index.d.ts +1 -1
- package/dist/components/PhoneField/index.d.ts +1 -1
- package/dist/components/RadioGroup/index.d.ts +1 -1
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/components/TextField/index.d.ts +1 -1
- package/dist/components/shared/FieldError/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -19,7 +19,7 @@ export type TDatePicker<T extends FieldValues> = {
|
|
|
19
19
|
export declare const DatePicker: <T extends FieldValues>(props: TDatePicker<T>) => import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
export type TNativeDatePickerProps = {
|
|
21
21
|
error?: {
|
|
22
|
-
message
|
|
22
|
+
message?: string;
|
|
23
23
|
};
|
|
24
24
|
helper?: {
|
|
25
25
|
message: string;
|
|
@@ -30,7 +30,7 @@ export type TSelectProps<T extends FieldValues> = {
|
|
|
30
30
|
export declare const Select: <T extends FieldValues>(props: TSelectProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
31
31
|
export type TNativeSelectProps = {
|
|
32
32
|
error?: {
|
|
33
|
-
message
|
|
33
|
+
message?: string;
|
|
34
34
|
};
|
|
35
35
|
helper?: {
|
|
36
36
|
message: string;
|