@zag-js/types 0.40.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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/jsx.ts +1 -0
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
package/src/jsx.ts
CHANGED