@ultraviolet/form 3.4.0 → 3.5.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/dist/components/CheckboxField/index.cjs +5 -11
- package/dist/components/CheckboxField/index.d.ts +2 -2
- package/dist/components/CheckboxField/index.js +5 -11
- package/dist/components/CheckboxGroupField/index.cjs +4 -7
- package/dist/components/CheckboxGroupField/index.d.ts +2 -2
- package/dist/components/CheckboxGroupField/index.js +4 -7
- package/dist/components/RadioField/index.cjs +5 -7
- package/dist/components/RadioField/index.d.ts +2 -4
- package/dist/components/RadioField/index.js +5 -7
- package/dist/components/RadioGroupField/index.cjs +6 -8
- package/dist/components/RadioGroupField/index.d.ts +2 -4
- package/dist/components/RadioGroupField/index.js +6 -8
- package/package.json +2 -2
|
@@ -5,24 +5,18 @@ const ui = require("@ultraviolet/ui");
|
|
|
5
5
|
const reactHookForm = require("react-hook-form");
|
|
6
6
|
const index = require("../../providers/ErrorContext/index.cjs");
|
|
7
7
|
const CheckboxField = ({
|
|
8
|
-
id,
|
|
9
8
|
control,
|
|
10
9
|
name,
|
|
11
10
|
label,
|
|
12
|
-
size,
|
|
13
|
-
progress,
|
|
14
11
|
disabled,
|
|
15
12
|
required,
|
|
16
|
-
className,
|
|
17
13
|
children,
|
|
18
14
|
onChange,
|
|
19
15
|
onBlur,
|
|
20
|
-
onFocus,
|
|
21
|
-
helper,
|
|
22
|
-
tooltip,
|
|
23
16
|
"data-testid": dataTestId,
|
|
24
17
|
shouldUnregister = false,
|
|
25
|
-
validate
|
|
18
|
+
validate,
|
|
19
|
+
...props
|
|
26
20
|
}) => {
|
|
27
21
|
const {
|
|
28
22
|
getError
|
|
@@ -42,14 +36,14 @@ const CheckboxField = ({
|
|
|
42
36
|
validate
|
|
43
37
|
}
|
|
44
38
|
});
|
|
45
|
-
return /* @__PURE__ */ jsxRuntime.jsx(ui.Checkbox, {
|
|
39
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ui.Checkbox, { ...props, name: field.name, onChange: (event) => {
|
|
46
40
|
field.onChange(event.target.checked);
|
|
47
41
|
onChange?.(event.target.checked);
|
|
48
42
|
}, onBlur: (event) => {
|
|
49
43
|
field.onBlur();
|
|
50
44
|
onBlur?.(event);
|
|
51
|
-
},
|
|
45
|
+
}, disabled: field.disabled, checked: !!field.value, error: getError({
|
|
52
46
|
label: label ?? ""
|
|
53
|
-
}, error), ref: field.ref,
|
|
47
|
+
}, error), ref: field.ref, children });
|
|
54
48
|
};
|
|
55
49
|
exports.CheckboxField = CheckboxField;
|
|
@@ -2,9 +2,9 @@ import { Checkbox } from '@ultraviolet/ui';
|
|
|
2
2
|
import type { ComponentProps, ReactNode } from 'react';
|
|
3
3
|
import type { FieldPath, FieldValues } from 'react-hook-form';
|
|
4
4
|
import type { BaseFieldProps } from '../../types';
|
|
5
|
-
type CheckboxFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = Omit<BaseFieldProps<TFieldValues, TFieldName>, 'value'> &
|
|
5
|
+
type CheckboxFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = Omit<BaseFieldProps<TFieldValues, TFieldName>, 'value'> & Omit<ComponentProps<typeof Checkbox>, 'value' | 'onChange' | 'aria-label'> & {
|
|
6
6
|
className?: string;
|
|
7
7
|
children?: ReactNode;
|
|
8
8
|
};
|
|
9
|
-
export declare const CheckboxField: <TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
|
|
9
|
+
export declare const CheckboxField: <TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, name, label, disabled, required, children, onChange, onBlur, "data-testid": dataTestId, shouldUnregister, validate, ...props }: CheckboxFieldProps<TFieldValues, TFieldName>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
10
10
|
export {};
|
|
@@ -3,24 +3,18 @@ import { Checkbox } from "@ultraviolet/ui";
|
|
|
3
3
|
import { useController } from "react-hook-form";
|
|
4
4
|
import { useErrors } from "../../providers/ErrorContext/index.js";
|
|
5
5
|
const CheckboxField = ({
|
|
6
|
-
id,
|
|
7
6
|
control,
|
|
8
7
|
name,
|
|
9
8
|
label,
|
|
10
|
-
size,
|
|
11
|
-
progress,
|
|
12
9
|
disabled,
|
|
13
10
|
required,
|
|
14
|
-
className,
|
|
15
11
|
children,
|
|
16
12
|
onChange,
|
|
17
13
|
onBlur,
|
|
18
|
-
onFocus,
|
|
19
|
-
helper,
|
|
20
|
-
tooltip,
|
|
21
14
|
"data-testid": dataTestId,
|
|
22
15
|
shouldUnregister = false,
|
|
23
|
-
validate
|
|
16
|
+
validate,
|
|
17
|
+
...props
|
|
24
18
|
}) => {
|
|
25
19
|
const {
|
|
26
20
|
getError
|
|
@@ -40,15 +34,15 @@ const CheckboxField = ({
|
|
|
40
34
|
validate
|
|
41
35
|
}
|
|
42
36
|
});
|
|
43
|
-
return /* @__PURE__ */ jsx(Checkbox, {
|
|
37
|
+
return /* @__PURE__ */ jsx(Checkbox, { ...props, name: field.name, onChange: (event) => {
|
|
44
38
|
field.onChange(event.target.checked);
|
|
45
39
|
onChange?.(event.target.checked);
|
|
46
40
|
}, onBlur: (event) => {
|
|
47
41
|
field.onBlur();
|
|
48
42
|
onBlur?.(event);
|
|
49
|
-
},
|
|
43
|
+
}, disabled: field.disabled, checked: !!field.value, error: getError({
|
|
50
44
|
label: label ?? ""
|
|
51
|
-
}, error), ref: field.ref,
|
|
45
|
+
}, error), ref: field.ref, children });
|
|
52
46
|
};
|
|
53
47
|
export {
|
|
54
48
|
CheckboxField
|
|
@@ -12,11 +12,7 @@ const arraysContainSameValues = (array1, array2) => {
|
|
|
12
12
|
return array2.every((value) => array1.includes(value));
|
|
13
13
|
};
|
|
14
14
|
const CheckboxGroupField = ({
|
|
15
|
-
legend,
|
|
16
|
-
className,
|
|
17
15
|
control,
|
|
18
|
-
helper,
|
|
19
|
-
direction,
|
|
20
16
|
children,
|
|
21
17
|
onChange,
|
|
22
18
|
label = "",
|
|
@@ -24,7 +20,8 @@ const CheckboxGroupField = ({
|
|
|
24
20
|
name,
|
|
25
21
|
required = false,
|
|
26
22
|
shouldUnregister = false,
|
|
27
|
-
validate
|
|
23
|
+
validate,
|
|
24
|
+
...props
|
|
28
25
|
}) => {
|
|
29
26
|
const {
|
|
30
27
|
getError
|
|
@@ -63,7 +60,7 @@ const CheckboxGroupField = ({
|
|
|
63
60
|
}
|
|
64
61
|
}
|
|
65
62
|
});
|
|
66
|
-
return /* @__PURE__ */ jsxRuntime.jsx(ui.CheckboxGroup, {
|
|
63
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ui.CheckboxGroup, { ...props, value: field.value, onChange: (event) => {
|
|
67
64
|
const fieldValue = field.value;
|
|
68
65
|
if (fieldValue?.includes(event.currentTarget.value)) {
|
|
69
66
|
field.onChange(fieldValue?.filter((currentValue) => currentValue !== event.currentTarget.value));
|
|
@@ -73,7 +70,7 @@ const CheckboxGroupField = ({
|
|
|
73
70
|
onChange?.(event.currentTarget.value);
|
|
74
71
|
}, error: getError({
|
|
75
72
|
label
|
|
76
|
-
}, error) ?? customError,
|
|
73
|
+
}, error) ?? customError, name, children });
|
|
77
74
|
};
|
|
78
75
|
CheckboxGroupField.Checkbox = ui.CheckboxGroup.Checkbox;
|
|
79
76
|
exports.CheckboxGroupField = CheckboxGroupField;
|
|
@@ -2,9 +2,9 @@ import { CheckboxGroup } from '@ultraviolet/ui';
|
|
|
2
2
|
import type { ComponentProps } from 'react';
|
|
3
3
|
import type { FieldPath, FieldValues } from 'react-hook-form';
|
|
4
4
|
import type { BaseFieldProps } from '../../types';
|
|
5
|
-
type CheckboxGroupFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = BaseFieldProps<TFieldValues, TFieldName> &
|
|
5
|
+
type CheckboxGroupFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = BaseFieldProps<TFieldValues, TFieldName> & Omit<ComponentProps<typeof CheckboxGroup>, 'value' | 'onChange'>;
|
|
6
6
|
export declare const CheckboxGroupField: {
|
|
7
|
-
<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
|
|
7
|
+
<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, children, onChange, label, error: customError, name, required, shouldUnregister, validate, ...props }: CheckboxGroupFieldProps<TFieldValues, TFieldName>): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
8
8
|
Checkbox: ({ onFocus, onBlur, disabled, error, name, value, children, helper, className, autoFocus, "data-testid": dataTestId, required, }: Omit<({
|
|
9
9
|
error?: string | import("react").ReactNode;
|
|
10
10
|
size?: number;
|
|
@@ -10,11 +10,7 @@ const arraysContainSameValues = (array1, array2) => {
|
|
|
10
10
|
return array2.every((value) => array1.includes(value));
|
|
11
11
|
};
|
|
12
12
|
const CheckboxGroupField = ({
|
|
13
|
-
legend,
|
|
14
|
-
className,
|
|
15
13
|
control,
|
|
16
|
-
helper,
|
|
17
|
-
direction,
|
|
18
14
|
children,
|
|
19
15
|
onChange,
|
|
20
16
|
label = "",
|
|
@@ -22,7 +18,8 @@ const CheckboxGroupField = ({
|
|
|
22
18
|
name,
|
|
23
19
|
required = false,
|
|
24
20
|
shouldUnregister = false,
|
|
25
|
-
validate
|
|
21
|
+
validate,
|
|
22
|
+
...props
|
|
26
23
|
}) => {
|
|
27
24
|
const {
|
|
28
25
|
getError
|
|
@@ -61,7 +58,7 @@ const CheckboxGroupField = ({
|
|
|
61
58
|
}
|
|
62
59
|
}
|
|
63
60
|
});
|
|
64
|
-
return /* @__PURE__ */ jsx(CheckboxGroup, {
|
|
61
|
+
return /* @__PURE__ */ jsx(CheckboxGroup, { ...props, value: field.value, onChange: (event) => {
|
|
65
62
|
const fieldValue = field.value;
|
|
66
63
|
if (fieldValue?.includes(event.currentTarget.value)) {
|
|
67
64
|
field.onChange(fieldValue?.filter((currentValue) => currentValue !== event.currentTarget.value));
|
|
@@ -71,7 +68,7 @@ const CheckboxGroupField = ({
|
|
|
71
68
|
onChange?.(event.currentTarget.value);
|
|
72
69
|
}, error: getError({
|
|
73
70
|
label
|
|
74
|
-
}, error) ?? customError,
|
|
71
|
+
}, error) ?? customError, name, children });
|
|
75
72
|
};
|
|
76
73
|
CheckboxGroupField.Checkbox = CheckboxGroup.Checkbox;
|
|
77
74
|
export {
|
|
@@ -5,11 +5,9 @@ const ui = require("@ultraviolet/ui");
|
|
|
5
5
|
const reactHookForm = require("react-hook-form");
|
|
6
6
|
const index = require("../../providers/ErrorContext/index.cjs");
|
|
7
7
|
const RadioField = ({
|
|
8
|
-
className,
|
|
9
8
|
control,
|
|
10
9
|
"data-testid": dataTestId,
|
|
11
10
|
disabled,
|
|
12
|
-
id,
|
|
13
11
|
name,
|
|
14
12
|
onBlur,
|
|
15
13
|
label = "",
|
|
@@ -17,9 +15,9 @@ const RadioField = ({
|
|
|
17
15
|
onFocus,
|
|
18
16
|
required,
|
|
19
17
|
value,
|
|
20
|
-
tooltip,
|
|
21
18
|
shouldUnregister = false,
|
|
22
|
-
validate
|
|
19
|
+
validate,
|
|
20
|
+
...props
|
|
23
21
|
}) => {
|
|
24
22
|
const {
|
|
25
23
|
getError
|
|
@@ -38,14 +36,14 @@ const RadioField = ({
|
|
|
38
36
|
validate
|
|
39
37
|
}
|
|
40
38
|
});
|
|
41
|
-
return /* @__PURE__ */ jsxRuntime.jsx(ui.Radio, { name: field.name, checked: field.value === value,
|
|
39
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ui.Radio, { ...props, name: field.name, checked: field.value === value, "data-testid": dataTestId, disabled, error: getError({
|
|
42
40
|
label: typeof label === "string" ? label : ""
|
|
43
|
-
}, error),
|
|
41
|
+
}, error), onChange: () => {
|
|
44
42
|
field.onChange(value);
|
|
45
43
|
onChange?.(value);
|
|
46
44
|
}, onBlur: (event) => {
|
|
47
45
|
field.onBlur();
|
|
48
46
|
onBlur?.(event);
|
|
49
|
-
}, onFocus, required, value: value ?? "", label
|
|
47
|
+
}, onFocus, required, value: value ?? "", label });
|
|
50
48
|
};
|
|
51
49
|
exports.RadioField = RadioField;
|
|
@@ -2,11 +2,9 @@ import { Radio } from '@ultraviolet/ui';
|
|
|
2
2
|
import type { ComponentProps } from 'react';
|
|
3
3
|
import type { FieldPath, FieldValues } from 'react-hook-form';
|
|
4
4
|
import type { BaseFieldProps } from '../../types';
|
|
5
|
-
type RadioFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = Omit<BaseFieldProps<TFieldValues, TFieldName>, 'label'> &
|
|
6
|
-
className?: string;
|
|
7
|
-
};
|
|
5
|
+
type RadioFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = Omit<BaseFieldProps<TFieldValues, TFieldName>, 'label'> & Omit<ComponentProps<typeof Radio>, 'value' | 'onChange' | 'aria-label'>;
|
|
8
6
|
/**
|
|
9
7
|
* @deprecated This component is deprecated, use `RadioGroupField` instead.
|
|
10
8
|
*/
|
|
11
|
-
export declare const RadioField: <TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
|
|
9
|
+
export declare const RadioField: <TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, "data-testid": dataTestId, disabled, name, onBlur, label, onChange, onFocus, required, value, shouldUnregister, validate, ...props }: RadioFieldProps<TFieldValues, TFieldName>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
12
10
|
export {};
|
|
@@ -3,11 +3,9 @@ import { Radio } from "@ultraviolet/ui";
|
|
|
3
3
|
import { useController } from "react-hook-form";
|
|
4
4
|
import { useErrors } from "../../providers/ErrorContext/index.js";
|
|
5
5
|
const RadioField = ({
|
|
6
|
-
className,
|
|
7
6
|
control,
|
|
8
7
|
"data-testid": dataTestId,
|
|
9
8
|
disabled,
|
|
10
|
-
id,
|
|
11
9
|
name,
|
|
12
10
|
onBlur,
|
|
13
11
|
label = "",
|
|
@@ -15,9 +13,9 @@ const RadioField = ({
|
|
|
15
13
|
onFocus,
|
|
16
14
|
required,
|
|
17
15
|
value,
|
|
18
|
-
tooltip,
|
|
19
16
|
shouldUnregister = false,
|
|
20
|
-
validate
|
|
17
|
+
validate,
|
|
18
|
+
...props
|
|
21
19
|
}) => {
|
|
22
20
|
const {
|
|
23
21
|
getError
|
|
@@ -36,15 +34,15 @@ const RadioField = ({
|
|
|
36
34
|
validate
|
|
37
35
|
}
|
|
38
36
|
});
|
|
39
|
-
return /* @__PURE__ */ jsx(Radio, { name: field.name, checked: field.value === value,
|
|
37
|
+
return /* @__PURE__ */ jsx(Radio, { ...props, name: field.name, checked: field.value === value, "data-testid": dataTestId, disabled, error: getError({
|
|
40
38
|
label: typeof label === "string" ? label : ""
|
|
41
|
-
}, error),
|
|
39
|
+
}, error), onChange: () => {
|
|
42
40
|
field.onChange(value);
|
|
43
41
|
onChange?.(value);
|
|
44
42
|
}, onBlur: (event) => {
|
|
45
43
|
field.onBlur();
|
|
46
44
|
onBlur?.(event);
|
|
47
|
-
}, onFocus, required, value: value ?? "", label
|
|
45
|
+
}, onFocus, required, value: value ?? "", label });
|
|
48
46
|
};
|
|
49
47
|
export {
|
|
50
48
|
RadioField
|
|
@@ -5,19 +5,17 @@ const ui = require("@ultraviolet/ui");
|
|
|
5
5
|
const reactHookForm = require("react-hook-form");
|
|
6
6
|
const index = require("../../providers/ErrorContext/index.cjs");
|
|
7
7
|
const RadioGroupField = ({
|
|
8
|
-
className,
|
|
9
8
|
control,
|
|
10
|
-
legend = "",
|
|
11
9
|
name,
|
|
12
10
|
onChange,
|
|
13
11
|
required,
|
|
14
12
|
children,
|
|
15
13
|
label = "",
|
|
16
14
|
error: customError,
|
|
17
|
-
helper,
|
|
18
|
-
direction,
|
|
19
15
|
shouldUnregister = false,
|
|
20
|
-
validate
|
|
16
|
+
validate,
|
|
17
|
+
legend,
|
|
18
|
+
...props
|
|
21
19
|
}) => {
|
|
22
20
|
const {
|
|
23
21
|
getError
|
|
@@ -36,12 +34,12 @@ const RadioGroupField = ({
|
|
|
36
34
|
validate
|
|
37
35
|
}
|
|
38
36
|
});
|
|
39
|
-
return /* @__PURE__ */ jsxRuntime.jsx(ui.RadioGroup, {
|
|
37
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ui.RadioGroup, { ...props, name: field.name, onChange: (event) => {
|
|
40
38
|
field.onChange(event);
|
|
41
39
|
onChange?.(event.target.value);
|
|
42
|
-
}, required, value: field.value,
|
|
40
|
+
}, required, value: field.value, error: getError({
|
|
43
41
|
label
|
|
44
|
-
}, error) ?? customError,
|
|
42
|
+
}, error) ?? customError, legend: legend ?? "", children });
|
|
45
43
|
};
|
|
46
44
|
RadioGroupField.Radio = ui.RadioGroup.Radio;
|
|
47
45
|
exports.RadioGroupField = RadioGroupField;
|
|
@@ -2,11 +2,9 @@ import { RadioGroup } from '@ultraviolet/ui';
|
|
|
2
2
|
import type { ComponentProps, JSX } from 'react';
|
|
3
3
|
import type { FieldPath, FieldValues } from 'react-hook-form';
|
|
4
4
|
import type { BaseFieldProps } from '../../types';
|
|
5
|
-
type RadioGroupFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = BaseFieldProps<TFieldValues, TFieldName> &
|
|
6
|
-
className?: string;
|
|
7
|
-
};
|
|
5
|
+
type RadioGroupFieldProps<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues>> = BaseFieldProps<TFieldValues, TFieldName> & Omit<ComponentProps<typeof RadioGroup>, 'value' | 'onChange' | 'legend'> & Partial<Pick<ComponentProps<typeof RadioGroup>, 'legend'>>;
|
|
8
6
|
export declare const RadioGroupField: {
|
|
9
|
-
<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
|
|
7
|
+
<TFieldValues extends FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, name, onChange, required, children, label, error: customError, shouldUnregister, validate, legend, ...props }: RadioGroupFieldProps<TFieldValues, TFieldName>): JSX.Element;
|
|
10
8
|
Radio: ({ onFocus, onBlur, disabled, error, name, value, label, helper, className, autoFocus, onKeyDown, tooltip, "data-testid": dataTestId, }: Omit<({
|
|
11
9
|
error?: import("react").ReactNode;
|
|
12
10
|
checked?: boolean;
|
|
@@ -3,19 +3,17 @@ import { RadioGroup } from "@ultraviolet/ui";
|
|
|
3
3
|
import { useController } from "react-hook-form";
|
|
4
4
|
import { useErrors } from "../../providers/ErrorContext/index.js";
|
|
5
5
|
const RadioGroupField = ({
|
|
6
|
-
className,
|
|
7
6
|
control,
|
|
8
|
-
legend = "",
|
|
9
7
|
name,
|
|
10
8
|
onChange,
|
|
11
9
|
required,
|
|
12
10
|
children,
|
|
13
11
|
label = "",
|
|
14
12
|
error: customError,
|
|
15
|
-
helper,
|
|
16
|
-
direction,
|
|
17
13
|
shouldUnregister = false,
|
|
18
|
-
validate
|
|
14
|
+
validate,
|
|
15
|
+
legend,
|
|
16
|
+
...props
|
|
19
17
|
}) => {
|
|
20
18
|
const {
|
|
21
19
|
getError
|
|
@@ -34,12 +32,12 @@ const RadioGroupField = ({
|
|
|
34
32
|
validate
|
|
35
33
|
}
|
|
36
34
|
});
|
|
37
|
-
return /* @__PURE__ */ jsx(RadioGroup, {
|
|
35
|
+
return /* @__PURE__ */ jsx(RadioGroup, { ...props, name: field.name, onChange: (event) => {
|
|
38
36
|
field.onChange(event);
|
|
39
37
|
onChange?.(event.target.value);
|
|
40
|
-
}, required, value: field.value,
|
|
38
|
+
}, required, value: field.value, error: getError({
|
|
41
39
|
label
|
|
42
|
-
}, error) ?? customError,
|
|
40
|
+
}, error) ?? customError, legend: legend ?? "", children });
|
|
43
41
|
};
|
|
44
42
|
RadioGroupField.Radio = RadioGroup.Radio;
|
|
45
43
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/form",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Ultraviolet Form",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@emotion/styled": "11.11.5",
|
|
73
73
|
"react-select": "5.8.0",
|
|
74
74
|
"react-hook-form": "7.52.1",
|
|
75
|
-
"@ultraviolet/ui": "1.
|
|
75
|
+
"@ultraviolet/ui": "1.64.0",
|
|
76
76
|
"@ultraviolet/themes": "1.12.2"
|
|
77
77
|
},
|
|
78
78
|
"scripts": {
|