@zag-js/number-input 0.0.0-dev-20221122144557 → 0.0.0-dev-20221122162142

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.ts CHANGED
@@ -50,7 +50,7 @@ declare type PublicContext = DirectionProperty & CommonProperties & {
50
50
  /**
51
51
  * Whether the number input is readonly
52
52
  */
53
- readonly?: boolean;
53
+ readOnly?: boolean;
54
54
  /**
55
55
  * Whether the number input value is invalid.
56
56
  */
package/dist/index.js CHANGED
@@ -504,7 +504,7 @@ function connect(state, send, normalize) {
504
504
  "data-invalid": dataAttr(isInvalid),
505
505
  disabled: isDisabled,
506
506
  "data-disabled": dataAttr(isDisabled),
507
- readOnly: !!state.context.readonly,
507
+ readOnly: !!state.context.readOnly,
508
508
  autoComplete: "off",
509
509
  autoCorrect: "off",
510
510
  spellCheck: "false",
package/dist/index.mjs CHANGED
@@ -477,7 +477,7 @@ function connect(state, send, normalize) {
477
477
  "data-invalid": dataAttr(isInvalid),
478
478
  disabled: isDisabled,
479
479
  "data-disabled": dataAttr(isDisabled),
480
- readOnly: !!state.context.readonly,
480
+ readOnly: !!state.context.readOnly,
481
481
  autoComplete: "off",
482
482
  autoCorrect: "off",
483
483
  spellCheck: "false",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/number-input",
3
- "version": "0.0.0-dev-20221122144557",
3
+ "version": "0.0.0-dev-20221122162142",
4
4
  "description": "Core logic for the number-input widget implemented as a state machine",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "devDependencies": {
36
36
  "@zag-js/dom-utils": "0.2.1",
37
- "@zag-js/form-utils": "0.0.0-dev-20221122144557",
37
+ "@zag-js/form-utils": "0.0.0-dev-20221122162142",
38
38
  "@zag-js/number-utils": "0.2.0",
39
39
  "@zag-js/utils": "0.3.1"
40
40
  },