@public-ui/react-hook-form-adapter 3.1.0-rc.0 → 3.1.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 CHANGED
@@ -44,7 +44,7 @@ interface HTMLStencilElement extends HTMLElement {
44
44
  }
45
45
  declare namespace JSXBase {
46
46
  interface IntrinsicElements {
47
- slot: JSXBase.SlotAttributes;
47
+ slot: JSXBase.SlotAttributes<HTMLSlotElement>;
48
48
  a: JSXBase.AnchorHTMLAttributes<HTMLAnchorElement>;
49
49
  abbr: JSXBase.HTMLAttributes;
50
50
  address: JSXBase.HTMLAttributes;
@@ -214,7 +214,7 @@ declare namespace JSXBase {
214
214
  use: JSXBase.SVGAttributes;
215
215
  view: JSXBase.SVGAttributes;
216
216
  }
217
- interface SlotAttributes extends JSXAttributes {
217
+ interface SlotAttributes<T = HTMLSlotElement> extends JSXAttributes<T> {
218
218
  name?: string;
219
219
  slot?: string;
220
220
  onSlotchange?: (event: Event$1) => void;
@@ -270,6 +270,9 @@ declare namespace JSXBase {
270
270
  popoverTargetAction?: string;
271
271
  popoverTargetElement?: Element$1 | null;
272
272
  popoverTarget?: string;
273
+ command?: string;
274
+ commandFor?: string;
275
+ commandfor?: string;
273
276
  }
274
277
  interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
275
278
  height?: number | string;
package/dist/index.d.mts CHANGED
@@ -44,7 +44,7 @@ interface HTMLStencilElement extends HTMLElement {
44
44
  }
45
45
  declare namespace JSXBase {
46
46
  interface IntrinsicElements {
47
- slot: JSXBase.SlotAttributes;
47
+ slot: JSXBase.SlotAttributes<HTMLSlotElement>;
48
48
  a: JSXBase.AnchorHTMLAttributes<HTMLAnchorElement>;
49
49
  abbr: JSXBase.HTMLAttributes;
50
50
  address: JSXBase.HTMLAttributes;
@@ -214,7 +214,7 @@ declare namespace JSXBase {
214
214
  use: JSXBase.SVGAttributes;
215
215
  view: JSXBase.SVGAttributes;
216
216
  }
217
- interface SlotAttributes extends JSXAttributes {
217
+ interface SlotAttributes<T = HTMLSlotElement> extends JSXAttributes<T> {
218
218
  name?: string;
219
219
  slot?: string;
220
220
  onSlotchange?: (event: Event$1) => void;
@@ -270,6 +270,9 @@ declare namespace JSXBase {
270
270
  popoverTargetAction?: string;
271
271
  popoverTargetElement?: Element$1 | null;
272
272
  popoverTarget?: string;
273
+ command?: string;
274
+ commandFor?: string;
275
+ commandfor?: string;
273
276
  }
274
277
  interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
275
278
  height?: number | string;
package/dist/index.d.ts CHANGED
@@ -44,7 +44,7 @@ interface HTMLStencilElement extends HTMLElement {
44
44
  }
45
45
  declare namespace JSXBase {
46
46
  interface IntrinsicElements {
47
- slot: JSXBase.SlotAttributes;
47
+ slot: JSXBase.SlotAttributes<HTMLSlotElement>;
48
48
  a: JSXBase.AnchorHTMLAttributes<HTMLAnchorElement>;
49
49
  abbr: JSXBase.HTMLAttributes;
50
50
  address: JSXBase.HTMLAttributes;
@@ -214,7 +214,7 @@ declare namespace JSXBase {
214
214
  use: JSXBase.SVGAttributes;
215
215
  view: JSXBase.SVGAttributes;
216
216
  }
217
- interface SlotAttributes extends JSXAttributes {
217
+ interface SlotAttributes<T = HTMLSlotElement> extends JSXAttributes<T> {
218
218
  name?: string;
219
219
  slot?: string;
220
220
  onSlotchange?: (event: Event$1) => void;
@@ -270,6 +270,9 @@ declare namespace JSXBase {
270
270
  popoverTargetAction?: string;
271
271
  popoverTargetElement?: Element$1 | null;
272
272
  popoverTarget?: string;
273
+ command?: string;
274
+ commandFor?: string;
275
+ commandfor?: string;
273
276
  }
274
277
  interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
275
278
  height?: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/react-hook-form-adapter",
3
- "version": "3.1.0-rc.0",
3
+ "version": "3.1.0",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -58,13 +58,13 @@
58
58
  "react-hook-form": "7.63.0",
59
59
  "typescript": "5.9.3",
60
60
  "unbuild": "3.6.1",
61
- "@public-ui/components": "3.1.0-rc.0",
62
- "@public-ui/react-v19": "3.1.0-rc.0"
61
+ "@public-ui/components": "3.1.0",
62
+ "@public-ui/react-v19": "3.1.0"
63
63
  },
64
64
  "peerDependencies": {
65
65
  "react": "^19",
66
66
  "react-hook-form": "^7",
67
- "@public-ui/react-v19": "3.1.0-rc.0"
67
+ "@public-ui/react-v19": "3.1.0"
68
68
  },
69
69
  "sideEffects": false,
70
70
  "type": "module",