@formkit/pro 0.129.1 → 0.129.2-next.6173fc1
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/datepicker/index.mjs +1 -1
- package/dropdown/index.mjs +1 -1
- package/genesis.css +1 -1
- package/index.cjs +10 -10
- package/index.d.ts +4 -0
- package/index.mjs +10 -10
- package/package.json +1 -1
- package/taglist/index.mjs +1 -1
- package/togglebuttons/index.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -308,6 +308,7 @@ export declare interface DropdownSlotData {
|
|
|
308
308
|
debounce?: number | string;
|
|
309
309
|
multiple?: Bool;
|
|
310
310
|
selectionAppearance?: 'truncate' | 'tags';
|
|
311
|
+
optionsAppearance?: 'checkbox';
|
|
311
312
|
openOnClick?: Bool;
|
|
312
313
|
filter?: (option: FormKitOptionsItem, search: string) => boolean;
|
|
313
314
|
optionLoader?: OptionLoader;
|
|
@@ -1299,6 +1300,7 @@ export declare const taglist: FormKitProInput;
|
|
|
1299
1300
|
export declare interface TaglistSlotData {
|
|
1300
1301
|
options: FormKitOptionsItem[];
|
|
1301
1302
|
debounce?: number | string;
|
|
1303
|
+
optionsAppearance?: 'checkbox';
|
|
1302
1304
|
openOnClick?: Bool;
|
|
1303
1305
|
filter?: (option: FormKitOptionsItem, search: string) => boolean;
|
|
1304
1306
|
optionLoader?: OptionLoader;
|
|
@@ -1711,6 +1713,7 @@ declare module '@formkit/inputs' {
|
|
|
1711
1713
|
popover?: Bool
|
|
1712
1714
|
options?: FormKitProOptionsProp
|
|
1713
1715
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1716
|
+
optionsAppearance?: Props['multiple'] extends Yes ? 'checkbox' : undefined
|
|
1714
1717
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
1715
1718
|
optionLoader?: OptionLoader
|
|
1716
1719
|
emptyMessage?: string
|
|
@@ -1799,6 +1802,7 @@ declare module '@formkit/inputs' {
|
|
|
1799
1802
|
debounce?: number | string
|
|
1800
1803
|
options?: FormKitProOptionsProp
|
|
1801
1804
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1805
|
+
optionsAppearance?: 'checkbox'
|
|
1802
1806
|
popover?: Bool
|
|
1803
1807
|
openOnClick?: Bool
|
|
1804
1808
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|