@formkit/pro 0.124.2 → 0.125.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.
- package/autocomplete/index.mjs +1 -1
- package/colorpicker/index.mjs +1 -1
- package/currency/index.mjs +1 -1
- package/datepicker/index.mjs +1 -1
- package/dropdown/index.mjs +1 -1
- package/index.cjs +65 -1
- package/index.d.ts +4 -4
- package/index.mjs +65 -1
- package/mask/index.mjs +1 -1
- package/package.json +1 -1
- package/rating/index.mjs +1 -1
- package/repeater/index.mjs +2 -1
- package/slider/index.mjs +1 -1
- package/taglist/index.mjs +1 -1
- package/toggle/index.mjs +1 -1
- package/togglebuttons/index.mjs +1 -1
- package/transferList/index.mjs +1 -1
- package/unit/index.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -1554,8 +1554,8 @@ declare module '@formkit/inputs' {
|
|
|
1554
1554
|
disabled?: Bool
|
|
1555
1555
|
currency?: string
|
|
1556
1556
|
displayLocale?: string
|
|
1557
|
-
decimals?: Bool | number
|
|
1558
|
-
minDecimals?: number
|
|
1557
|
+
decimals?: Bool | number | string
|
|
1558
|
+
minDecimals?: number | string
|
|
1559
1559
|
min?: number
|
|
1560
1560
|
max?: number
|
|
1561
1561
|
step?: number
|
|
@@ -1570,8 +1570,8 @@ declare module '@formkit/inputs' {
|
|
|
1570
1570
|
disabled?: Bool
|
|
1571
1571
|
unit?: string
|
|
1572
1572
|
displayLocale?: string
|
|
1573
|
-
decimals?: Bool | number
|
|
1574
|
-
minDecimals?: number
|
|
1573
|
+
decimals?: Bool | number | string
|
|
1574
|
+
minDecimals?: number | string
|
|
1575
1575
|
min?: number
|
|
1576
1576
|
max?: number
|
|
1577
1577
|
step?: number
|