@formkit/pro 1.0.0-alpha.68 → 1.0.0-alpha.69
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/README.md +1 -0
- package/autocomplete/autocomplete.ts +5 -1
- package/dropdown/dropdown.ts +3 -2
- 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/taglist/taglist.ts +5 -1
- package/transferList/index.mjs +1 -0
- package/transferList/transferList.ts +192 -0
package/index.d.ts
CHANGED
|
@@ -113,7 +113,8 @@ declare namespace inputs {
|
|
|
113
113
|
autocomplete,
|
|
114
114
|
datepicker,
|
|
115
115
|
taglist,
|
|
116
|
-
mask
|
|
116
|
+
mask,
|
|
117
|
+
transferlist
|
|
117
118
|
}
|
|
118
119
|
}
|
|
119
120
|
export { inputs }
|
|
@@ -154,6 +155,12 @@ export declare const taglist: FormKitProInput;
|
|
|
154
155
|
*/
|
|
155
156
|
export declare const toggle: FormKitProInput;
|
|
156
157
|
|
|
158
|
+
/**
|
|
159
|
+
* Input definition for a transferlist input.
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
162
|
+
export declare const transferlist: FormKitProInput;
|
|
163
|
+
|
|
157
164
|
|
|
158
165
|
/**
|
|
159
166
|
* @public
|