@formkit/pro 0.117.3 → 0.117.5
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/genesis.css +1 -1
- package/index.cjs +1 -1
- package/index.d.ts +10 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/slider/index.mjs +1 -1
- package/slider/slider.ts +6 -1
package/index.d.ts
CHANGED
|
@@ -807,6 +807,8 @@ export declare interface FormKitSliderSlots<Props extends FormKitInputs<Props>>
|
|
|
807
807
|
handles: FormKitSlotData<Props, SliderSlotData>;
|
|
808
808
|
handleMin: FormKitSlotData<Props, SliderSlotData>;
|
|
809
809
|
handleMax: FormKitSlotData<Props, SliderSlotData>;
|
|
810
|
+
handleMinInner: FormKitSlotData<Props, SliderSlotData>;
|
|
811
|
+
handleMaxInner: FormKitSlotData<Props, SliderSlotData>;
|
|
810
812
|
tooltipMin: FormKitSlotData<Props, SliderSlotData>;
|
|
811
813
|
tooltipMax: FormKitSlotData<Props, SliderSlotData>;
|
|
812
814
|
suffix: FormKitSlotData<Props, SliderSlotData>;
|
|
@@ -1456,7 +1458,14 @@ declare module '@formkit/inputs' {
|
|
|
1456
1458
|
value?: string | string[] | number | number[]
|
|
1457
1459
|
chart?: Array<{ value: number; at: number }>
|
|
1458
1460
|
inputAttrs?: Record<string, any>
|
|
1459
|
-
marks?:
|
|
1461
|
+
marks?:
|
|
1462
|
+
| Bool
|
|
1463
|
+
| Array<{
|
|
1464
|
+
at?: number
|
|
1465
|
+
label?: string
|
|
1466
|
+
class?: string
|
|
1467
|
+
labelClass?: string
|
|
1468
|
+
}>
|
|
1460
1469
|
markLabel?: Bool
|
|
1461
1470
|
max?: number | string
|
|
1462
1471
|
maxInputAttrs?: Record<string, any>
|