@formkit/pro 0.111.7 → 0.111.8-22f3517
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/combobox/combobox.ts +173 -0
- package/combobox/index.mjs +1 -0
- package/dropdown/index.mjs +1 -1
- package/genesis.css +1 -1
- package/index.cjs +1 -1
- package/index.d.ts +15 -1
- package/index.mjs +1 -1
- package/package.json +3 -2
- package/slider/index.mjs +1 -0
- package/slider/slider.ts +97 -0
- package/taglist/index.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -20,6 +20,12 @@ export declare function $if(condition: string, then: FormKitProExtendableSection
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const autocomplete: FormKitProInput;
|
|
22
22
|
|
|
23
|
+
/**
|
|
24
|
+
* Input definition for the combobox input.
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export declare const combobox: FormKitProInput;
|
|
28
|
+
|
|
23
29
|
/**
|
|
24
30
|
* Creates a set of commonly used sections.
|
|
25
31
|
* @param createSection - Creates commonly used sections.
|
|
@@ -114,7 +120,9 @@ declare namespace inputs {
|
|
|
114
120
|
datepicker,
|
|
115
121
|
taglist,
|
|
116
122
|
mask,
|
|
117
|
-
transferlist
|
|
123
|
+
transferlist,
|
|
124
|
+
combobox,
|
|
125
|
+
slider
|
|
118
126
|
}
|
|
119
127
|
}
|
|
120
128
|
export { inputs }
|
|
@@ -143,6 +151,12 @@ export declare const repeater: FormKitProInput;
|
|
|
143
151
|
*/
|
|
144
152
|
declare type SectionFactory = <IsRoot extends boolean = false>(sectionName: string, schema: string | (() => FormKitSchemaNode), root?: IsRoot) => FormKitProSection<IsRoot>;
|
|
145
153
|
|
|
154
|
+
/**
|
|
155
|
+
* Input definition for a slider input.
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export declare const slider: FormKitProInput;
|
|
159
|
+
|
|
146
160
|
/**
|
|
147
161
|
* Input definition for a taglist input.
|
|
148
162
|
* @public
|