@zag-js/types 0.41.0 → 0.42.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
@@ -740,6 +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
744
  accept?: string | undefined;
744
745
  alt?: string | undefined;
745
746
  autoComplete?: string | undefined;
package/dist/index.d.ts CHANGED
@@ -740,6 +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
744
  accept?: string | undefined;
744
745
  alt?: string | undefined;
745
746
  autoComplete?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/types",
3
- "version": "0.41.0",
3
+ "version": "0.42.0",
4
4
  "keywords": [
5
5
  "js",
6
6
  "utils",
package/src/jsx.ts CHANGED
@@ -951,6 +951,7 @@ export namespace JSX {
951
951
  | (string & {})
952
952
 
953
953
  export interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
954
+ webkitdirectory?: any
954
955
  accept?: string | undefined
955
956
  alt?: string | undefined
956
957
  autoComplete?: string | undefined