@formkit/pro 0.111.9 → 0.111.10
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 +8 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/slider/index.mjs +1 -0
- package/slider/slider.ts +97 -0
package/index.d.ts
CHANGED
|
@@ -114,7 +114,8 @@ declare namespace inputs {
|
|
|
114
114
|
datepicker,
|
|
115
115
|
taglist,
|
|
116
116
|
mask,
|
|
117
|
-
transferlist
|
|
117
|
+
transferlist,
|
|
118
|
+
slider
|
|
118
119
|
}
|
|
119
120
|
}
|
|
120
121
|
export { inputs }
|
|
@@ -143,6 +144,12 @@ export declare const repeater: FormKitProInput;
|
|
|
143
144
|
*/
|
|
144
145
|
declare type SectionFactory = <IsRoot extends boolean = false>(sectionName: string, schema: string | (() => FormKitSchemaNode), root?: IsRoot) => FormKitProSection<IsRoot>;
|
|
145
146
|
|
|
147
|
+
/**
|
|
148
|
+
* Input definition for a slider input.
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export declare const slider: FormKitProInput;
|
|
152
|
+
|
|
146
153
|
/**
|
|
147
154
|
* Input definition for a taglist input.
|
|
148
155
|
* @public
|