@formkit/pro 0.114.0-fd1bcdf → 0.114.1-177ee2e
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/autocomplete.ts +5 -2
- 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 +1 -1
- package/index.d.ts +2 -1
- package/index.mjs +1 -1
- package/package.json +3 -3
- package/repeater/index.mjs +1 -1
- package/repeater/repeater.ts +30 -22
- package/slider/index.mjs +1 -1
- package/taglist/index.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export declare interface AutocompleteSlotData {
|
|
|
44
44
|
optionLoader?: OptionLoader;
|
|
45
45
|
emptyMessage?: string;
|
|
46
46
|
closeOnSelect?: Bool;
|
|
47
|
+
clearSearchOnOpen?: Bool;
|
|
47
48
|
activeDescendant?: string;
|
|
48
49
|
activeValue?: unknown;
|
|
49
50
|
dropdownWrapperStyles: Record<string, boolean>;
|
|
@@ -591,6 +592,7 @@ export declare interface FormKitRepeaterSlots<Props extends FormKitInputs<Props>
|
|
|
591
592
|
outer: FormKitSlotData<Props, RepeaterSlotData>;
|
|
592
593
|
fieldset: FormKitSlotData<Props, RepeaterSlotData>;
|
|
593
594
|
legend: FormKitSlotData<Props, RepeaterSlotData>;
|
|
595
|
+
empty: FormKitSlotData<Props, RepeaterSlotData>;
|
|
594
596
|
help: FormKitSlotData<Props, RepeaterSlotData>;
|
|
595
597
|
prefix: FormKitSlotData<Props, RepeaterSlotData>;
|
|
596
598
|
default: FormKitSlotData<Props, RepeaterSlotData>;
|
|
@@ -1290,7 +1292,6 @@ declare module '@formkit/inputs' {
|
|
|
1290
1292
|
selectionRemovable?: Props['multiple'] extends Yes ? undefined : Bool
|
|
1291
1293
|
loadOnCreated?: Bool
|
|
1292
1294
|
alwaysLoadOnOpen?: Bool
|
|
1293
|
-
optionsAppearance?: 'checkbox'
|
|
1294
1295
|
}
|
|
1295
1296
|
|
|
1296
1297
|
rating: {
|