@formkit/pro 0.123.1 → 0.123.2
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/index.cjs +1 -1
- package/index.d.ts +4 -4
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/unit/index.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -700,7 +700,7 @@ export declare type FormKitProInput = Omit<FormKitTypeDefinition, 'schema'> & {
|
|
|
700
700
|
*
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
export declare type FormKitProOptionsProp = FormKitOptionsProp | FormKitOptionsLoader;
|
|
703
|
+
export declare type FormKitProOptionsProp = FormKitOptionsProp | FormKitOptionsLoader | FormKitOptionsPropWithGroups;
|
|
704
704
|
|
|
705
705
|
/**
|
|
706
706
|
* The type definition of a FormKit pro schema.
|
|
@@ -1513,7 +1513,7 @@ declare module '@formkit/inputs' {
|
|
|
1513
1513
|
debounce?: number | string
|
|
1514
1514
|
multiple?: Bool
|
|
1515
1515
|
popover?: Bool
|
|
1516
|
-
options:
|
|
1516
|
+
options: FormKitProOptionsProp
|
|
1517
1517
|
selectionAppearance?: 'option' | 'text-input'
|
|
1518
1518
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
1519
1519
|
optionLoader?: OptionLoader
|
|
@@ -1611,7 +1611,7 @@ declare module '@formkit/inputs' {
|
|
|
1611
1611
|
: OptionsProValue<Props['options']>
|
|
1612
1612
|
multiple?: Bool
|
|
1613
1613
|
popover?: Bool
|
|
1614
|
-
options?:
|
|
1614
|
+
options?: FormKitProOptionsProp
|
|
1615
1615
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1616
1616
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
1617
1617
|
optionLoader?: OptionLoader
|
|
@@ -1699,7 +1699,7 @@ declare module '@formkit/inputs' {
|
|
|
1699
1699
|
type: 'taglist'
|
|
1700
1700
|
value?: any[]
|
|
1701
1701
|
debounce?: number | string
|
|
1702
|
-
options?:
|
|
1702
|
+
options?: FormKitProOptionsProp
|
|
1703
1703
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1704
1704
|
popover?: Bool
|
|
1705
1705
|
openOnClick?: Bool
|