@formkit/pro 0.122.16-4d0b902 → 0.122.16-86c4a71
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/dropdown/index.mjs +1 -1
- package/index.cjs +1 -1
- package/index.d.ts +4 -3
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/rating/index.mjs +1 -1
- package/taglist/index.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -683,6 +683,7 @@ export declare type FormKitOverlaySlots<Props extends FormKitInputs<Props>> = Pr
|
|
|
683
683
|
*/
|
|
684
684
|
declare interface FormKitProExtendableSection<IsRoot extends boolean = false> {
|
|
685
685
|
(apiKey: string): ExtendableSchema<IsRoot>;
|
|
686
|
+
_s?: string;
|
|
686
687
|
}
|
|
687
688
|
|
|
688
689
|
/**
|
|
@@ -1512,7 +1513,7 @@ declare module '@formkit/inputs' {
|
|
|
1512
1513
|
debounce?: number | string
|
|
1513
1514
|
multiple?: Bool
|
|
1514
1515
|
popover?: Bool
|
|
1515
|
-
options:
|
|
1516
|
+
options: FormKitOptionsPropWithGroups
|
|
1516
1517
|
selectionAppearance?: 'option' | 'text-input'
|
|
1517
1518
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
1518
1519
|
optionLoader?: OptionLoader
|
|
@@ -1610,7 +1611,7 @@ declare module '@formkit/inputs' {
|
|
|
1610
1611
|
: OptionsProValue<Props['options']>
|
|
1611
1612
|
multiple?: Bool
|
|
1612
1613
|
popover?: Bool
|
|
1613
|
-
options?:
|
|
1614
|
+
options?: FormKitOptionsPropWithGroups
|
|
1614
1615
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1615
1616
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
1616
1617
|
optionLoader?: OptionLoader
|
|
@@ -1698,7 +1699,7 @@ declare module '@formkit/inputs' {
|
|
|
1698
1699
|
type: 'taglist'
|
|
1699
1700
|
value?: any[]
|
|
1700
1701
|
debounce?: number | string
|
|
1701
|
-
options?:
|
|
1702
|
+
options?: FormKitOptionsPropWithGroups
|
|
1702
1703
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1703
1704
|
popover?: Bool
|
|
1704
1705
|
openOnClick?: Bool
|