@zag-js/types 1.15.7 → 1.16.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.mts CHANGED
@@ -464,7 +464,7 @@ declare namespace JSX {
464
464
  role?: AriaRole | undefined;
465
465
  about?: string | undefined;
466
466
  datatype?: string | undefined;
467
- inlist?: any;
467
+ inlist?: any | undefined;
468
468
  prefix?: string | undefined;
469
469
  property?: string | undefined;
470
470
  resource?: string | undefined;
@@ -524,7 +524,7 @@ declare namespace JSX {
524
524
  default?: boolean | undefined;
525
525
  defer?: boolean | undefined;
526
526
  disabled?: boolean | undefined;
527
- download?: any;
527
+ download?: any | undefined;
528
528
  encType?: string | undefined;
529
529
  form?: string | undefined;
530
530
  formAction?: string | undefined;
@@ -604,7 +604,7 @@ declare namespace JSX {
604
604
  type HTMLAttributeReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
605
605
  type HTMLAttributeAnchorTarget = "_self" | "_blank" | "_parent" | "_top" | (string & {});
606
606
  export interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
607
- download?: any;
607
+ download?: any | undefined;
608
608
  href?: string | undefined;
609
609
  hrefLang?: string | undefined;
610
610
  media?: string | undefined;
@@ -619,7 +619,7 @@ declare namespace JSX {
619
619
  export interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
620
620
  alt?: string | undefined;
621
621
  coords?: string | undefined;
622
- download?: any;
622
+ download?: any | undefined;
623
623
  href?: string | undefined;
624
624
  hrefLang?: string | undefined;
625
625
  media?: string | undefined;
@@ -740,7 +740,7 @@ declare namespace JSX {
740
740
  }
741
741
  type HTMLInputTypeAttribute = "button" | "checkbox" | "color" | "date" | "datetime-local" | "email" | "file" | "hidden" | "image" | "month" | "number" | "password" | "radio" | "range" | "reset" | "search" | "submit" | "tel" | "text" | "time" | "url" | "week" | (string & {});
742
742
  export interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
743
- webkitdirectory?: any;
743
+ webkitdirectory?: any | undefined;
744
744
  accept?: string | undefined;
745
745
  alt?: string | undefined;
746
746
  autoComplete?: string | undefined;
@@ -1010,7 +1010,7 @@ declare namespace JSX {
1010
1010
  width?: number | string | undefined;
1011
1011
  role?: AriaRole | undefined;
1012
1012
  tabIndex?: number | undefined;
1013
- crossOrigin?: any;
1013
+ crossOrigin?: any | undefined;
1014
1014
  accentHeight?: number | string | undefined;
1015
1015
  accumulate?: "none" | "sum" | undefined;
1016
1016
  additive?: "replace" | "sum" | undefined;
package/dist/index.d.ts CHANGED
@@ -464,7 +464,7 @@ declare namespace JSX {
464
464
  role?: AriaRole | undefined;
465
465
  about?: string | undefined;
466
466
  datatype?: string | undefined;
467
- inlist?: any;
467
+ inlist?: any | undefined;
468
468
  prefix?: string | undefined;
469
469
  property?: string | undefined;
470
470
  resource?: string | undefined;
@@ -524,7 +524,7 @@ declare namespace JSX {
524
524
  default?: boolean | undefined;
525
525
  defer?: boolean | undefined;
526
526
  disabled?: boolean | undefined;
527
- download?: any;
527
+ download?: any | undefined;
528
528
  encType?: string | undefined;
529
529
  form?: string | undefined;
530
530
  formAction?: string | undefined;
@@ -604,7 +604,7 @@ declare namespace JSX {
604
604
  type HTMLAttributeReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
605
605
  type HTMLAttributeAnchorTarget = "_self" | "_blank" | "_parent" | "_top" | (string & {});
606
606
  export interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
607
- download?: any;
607
+ download?: any | undefined;
608
608
  href?: string | undefined;
609
609
  hrefLang?: string | undefined;
610
610
  media?: string | undefined;
@@ -619,7 +619,7 @@ declare namespace JSX {
619
619
  export interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
620
620
  alt?: string | undefined;
621
621
  coords?: string | undefined;
622
- download?: any;
622
+ download?: any | undefined;
623
623
  href?: string | undefined;
624
624
  hrefLang?: string | undefined;
625
625
  media?: string | undefined;
@@ -740,7 +740,7 @@ declare namespace JSX {
740
740
  }
741
741
  type HTMLInputTypeAttribute = "button" | "checkbox" | "color" | "date" | "datetime-local" | "email" | "file" | "hidden" | "image" | "month" | "number" | "password" | "radio" | "range" | "reset" | "search" | "submit" | "tel" | "text" | "time" | "url" | "week" | (string & {});
742
742
  export interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
743
- webkitdirectory?: any;
743
+ webkitdirectory?: any | undefined;
744
744
  accept?: string | undefined;
745
745
  alt?: string | undefined;
746
746
  autoComplete?: string | undefined;
@@ -1010,7 +1010,7 @@ declare namespace JSX {
1010
1010
  width?: number | string | undefined;
1011
1011
  role?: AriaRole | undefined;
1012
1012
  tabIndex?: number | undefined;
1013
- crossOrigin?: any;
1013
+ crossOrigin?: any | undefined;
1014
1014
  accentHeight?: number | string | undefined;
1015
1015
  accumulate?: "none" | "sum" | undefined;
1016
1016
  additive?: "replace" | "sum" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/types",
3
- "version": "1.15.7",
3
+ "version": "1.16.0",
4
4
  "keywords": [
5
5
  "js",
6
6
  "utils",