@public-ui/react-hook-form-adapter 3.0.7-d0e38f2b24188b03316351f07d939c4524a2fd81.0 → 4.0.0-alpha.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/index.d.cts +3 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +5 -4
package/dist/index.d.cts
CHANGED
|
@@ -1793,7 +1793,7 @@ type Toast = {
|
|
|
1793
1793
|
render?: ToastRenderFunction;
|
|
1794
1794
|
label: LabelPropType;
|
|
1795
1795
|
type: AlertTypePropType;
|
|
1796
|
-
variant?:
|
|
1796
|
+
variant?: 'card';
|
|
1797
1797
|
onClose?: () => void;
|
|
1798
1798
|
};
|
|
1799
1799
|
|
|
@@ -4053,6 +4053,7 @@ declare namespace Components {
|
|
|
4053
4053
|
"_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
|
|
4054
4054
|
/**
|
|
4055
4055
|
* Defines whether the orientation of the component is horizontal or vertical.
|
|
4056
|
+
* @deprecated Will be removed in the next major version.
|
|
4056
4057
|
* @default 'vertical'
|
|
4057
4058
|
*/
|
|
4058
4059
|
"_orientation"?: OrientationPropType;
|
|
@@ -7662,6 +7663,7 @@ declare namespace LocalJSX {
|
|
|
7662
7663
|
"_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
|
|
7663
7664
|
/**
|
|
7664
7665
|
* Defines whether the orientation of the component is horizontal or vertical.
|
|
7666
|
+
* @deprecated Will be removed in the next major version.
|
|
7665
7667
|
* @default 'vertical'
|
|
7666
7668
|
*/
|
|
7667
7669
|
"_orientation"?: OrientationPropType;
|
package/dist/index.d.mts
CHANGED
|
@@ -1793,7 +1793,7 @@ type Toast = {
|
|
|
1793
1793
|
render?: ToastRenderFunction;
|
|
1794
1794
|
label: LabelPropType;
|
|
1795
1795
|
type: AlertTypePropType;
|
|
1796
|
-
variant?:
|
|
1796
|
+
variant?: 'card';
|
|
1797
1797
|
onClose?: () => void;
|
|
1798
1798
|
};
|
|
1799
1799
|
|
|
@@ -4053,6 +4053,7 @@ declare namespace Components {
|
|
|
4053
4053
|
"_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
|
|
4054
4054
|
/**
|
|
4055
4055
|
* Defines whether the orientation of the component is horizontal or vertical.
|
|
4056
|
+
* @deprecated Will be removed in the next major version.
|
|
4056
4057
|
* @default 'vertical'
|
|
4057
4058
|
*/
|
|
4058
4059
|
"_orientation"?: OrientationPropType;
|
|
@@ -7662,6 +7663,7 @@ declare namespace LocalJSX {
|
|
|
7662
7663
|
"_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
|
|
7663
7664
|
/**
|
|
7664
7665
|
* Defines whether the orientation of the component is horizontal or vertical.
|
|
7666
|
+
* @deprecated Will be removed in the next major version.
|
|
7665
7667
|
* @default 'vertical'
|
|
7666
7668
|
*/
|
|
7667
7669
|
"_orientation"?: OrientationPropType;
|
package/dist/index.d.ts
CHANGED
|
@@ -1793,7 +1793,7 @@ type Toast = {
|
|
|
1793
1793
|
render?: ToastRenderFunction;
|
|
1794
1794
|
label: LabelPropType;
|
|
1795
1795
|
type: AlertTypePropType;
|
|
1796
|
-
variant?:
|
|
1796
|
+
variant?: 'card';
|
|
1797
1797
|
onClose?: () => void;
|
|
1798
1798
|
};
|
|
1799
1799
|
|
|
@@ -4053,6 +4053,7 @@ declare namespace Components {
|
|
|
4053
4053
|
"_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
|
|
4054
4054
|
/**
|
|
4055
4055
|
* Defines whether the orientation of the component is horizontal or vertical.
|
|
4056
|
+
* @deprecated Will be removed in the next major version.
|
|
4056
4057
|
* @default 'vertical'
|
|
4057
4058
|
*/
|
|
4058
4059
|
"_orientation"?: OrientationPropType;
|
|
@@ -7662,6 +7663,7 @@ declare namespace LocalJSX {
|
|
|
7662
7663
|
"_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
|
|
7663
7664
|
/**
|
|
7664
7665
|
* Defines whether the orientation of the component is horizontal or vertical.
|
|
7666
|
+
* @deprecated Will be removed in the next major version.
|
|
7665
7667
|
* @default 'vertical'
|
|
7666
7668
|
*/
|
|
7667
7669
|
"_orientation"?: OrientationPropType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react-hook-form-adapter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-alpha.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -54,15 +54,16 @@
|
|
|
54
54
|
"prettier": "3.6.2",
|
|
55
55
|
"react": "19.1.1",
|
|
56
56
|
"react-dom": "19.1.1",
|
|
57
|
+
"react-hook-form": "7.63.0",
|
|
57
58
|
"typescript": "5.9.2",
|
|
58
59
|
"unbuild": "3.6.1",
|
|
59
|
-
"@public-ui/components": "
|
|
60
|
-
"@public-ui/react-v19": "
|
|
60
|
+
"@public-ui/components": "4.0.0-alpha.0",
|
|
61
|
+
"@public-ui/react-v19": "4.0.0-alpha.0"
|
|
61
62
|
},
|
|
62
63
|
"peerDependencies": {
|
|
63
64
|
"react": "^19",
|
|
64
65
|
"react-hook-form": "^7",
|
|
65
|
-
"@public-ui/react-v19": "
|
|
66
|
+
"@public-ui/react-v19": "4.0.0-alpha.0"
|
|
66
67
|
},
|
|
67
68
|
"sideEffects": false,
|
|
68
69
|
"type": "module",
|