@formkit/pro 0.111.7-fdd6108 → 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 +7 -0
- package/index.mjs +1 -1
- package/package.json +3 -2
- package/slider/index.mjs +1 -1
- package/slider/slider.ts +1 -1
- 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.
|
|
@@ -115,6 +121,7 @@ declare namespace inputs {
|
|
|
115
121
|
taglist,
|
|
116
122
|
mask,
|
|
117
123
|
transferlist,
|
|
124
|
+
combobox,
|
|
118
125
|
slider
|
|
119
126
|
}
|
|
120
127
|
}
|