@zag-js/number-input 0.0.0-dev-20221122060649 → 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 +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
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.
|
|
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.
|
|
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-
|
|
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-
|
|
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
|
},
|