@zag-js/types 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1146,7 +1146,7 @@ declare type DataAttr = {
1146
1146
  "data-count"?: number;
1147
1147
  "data-index"?: number;
1148
1148
  };
1149
- declare type PropTypes = Record<"button" | "label" | "input" | "output" | "element", Dict>;
1149
+ declare type PropTypes = Record<"button" | "label" | "input" | "output" | "element" | "select", Dict>;
1150
1150
  declare type NormalizeProps<T extends PropTypes> = {
1151
1151
  [K in keyof T]: (props: K extends keyof JSX.IntrinsicElements ? DataAttr & JSX.IntrinsicElements[K] : never) => T[K];
1152
1152
  } & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/types",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",