@formkit/pro 0.121.6 → 0.121.7
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.d.ts +10 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export declare interface AutocompleteSlotData {
|
|
|
50
50
|
activeValue?: unknown;
|
|
51
51
|
dropdownWrapperStyles: Record<string, boolean>;
|
|
52
52
|
expanded: boolean;
|
|
53
|
+
popover?: boolean;
|
|
53
54
|
forceExpanded: undefined | true;
|
|
54
55
|
hasNextPage: (data?: any) => void;
|
|
55
56
|
isLoadingOption?: boolean;
|
|
@@ -221,6 +222,7 @@ export declare type DatePickerSlotData = {
|
|
|
221
222
|
inputText: string;
|
|
222
223
|
renderedDate: Date;
|
|
223
224
|
expanded: boolean;
|
|
225
|
+
popover?: boolean;
|
|
224
226
|
showPagination: boolean;
|
|
225
227
|
localTime: string;
|
|
226
228
|
visibilityStyles: Record<string, boolean>;
|
|
@@ -282,6 +284,7 @@ export declare interface DropdownSlotData {
|
|
|
282
284
|
activeValue?: unknown;
|
|
283
285
|
dropdownWrapperStyles: Record<string, boolean>;
|
|
284
286
|
expanded: boolean;
|
|
287
|
+
popover?: boolean;
|
|
285
288
|
fns: FormKitFrameworkContext['fns'] & {
|
|
286
289
|
isSelected: (option: FormKitOptionsItem) => boolean;
|
|
287
290
|
isActive: (option: FormKitOptionsItem) => boolean;
|
|
@@ -389,6 +392,7 @@ declare interface FormKitColorpickerSlotData {
|
|
|
389
392
|
closeOnSelect?: undefined | true;
|
|
390
393
|
allowPaste: Bool;
|
|
391
394
|
expanded: Bool;
|
|
395
|
+
popover?: Bool;
|
|
392
396
|
h: number;
|
|
393
397
|
s: number;
|
|
394
398
|
v: number;
|
|
@@ -1183,6 +1187,7 @@ export declare interface TaglistSlotData {
|
|
|
1183
1187
|
activeValue?: unknown;
|
|
1184
1188
|
dropdownWrapperStyles: Record<string, boolean>;
|
|
1185
1189
|
expanded: boolean;
|
|
1190
|
+
popover?: boolean;
|
|
1186
1191
|
page: number;
|
|
1187
1192
|
search: string;
|
|
1188
1193
|
hasNextPage: (data?: any) => void;
|
|
@@ -1420,6 +1425,7 @@ declare module '@formkit/inputs' {
|
|
|
1420
1425
|
: OptionsProValue<Props['options']>
|
|
1421
1426
|
debounce?: number | string
|
|
1422
1427
|
multiple?: Bool
|
|
1428
|
+
popover?: Bool
|
|
1423
1429
|
options: FormKitProOptionsProp
|
|
1424
1430
|
selectionAppearance?: 'option' | 'text-input'
|
|
1425
1431
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
@@ -1444,6 +1450,7 @@ declare module '@formkit/inputs' {
|
|
|
1444
1450
|
options?: FormKitOptionsPropWithGroups
|
|
1445
1451
|
inline?: Bool
|
|
1446
1452
|
format?: 'hex' | 'rgba' | 'hsla'
|
|
1453
|
+
popover?: Bool
|
|
1447
1454
|
valueFormat?: 'hex' | 'rgba' | 'hsla'
|
|
1448
1455
|
panelControls?: Bool
|
|
1449
1456
|
panelFormat?: Bool
|
|
@@ -1460,6 +1467,7 @@ declare module '@formkit/inputs' {
|
|
|
1460
1467
|
disabledDays?: (node: FormKitNode, date: Date) => boolean
|
|
1461
1468
|
format?: string | FormatStyleObj
|
|
1462
1469
|
maxDate?: Date | string
|
|
1470
|
+
popover?: Bool
|
|
1463
1471
|
maxScan?: number
|
|
1464
1472
|
minDate?: Date | string
|
|
1465
1473
|
monthButtonFormat?: 'M' | 'MM' | 'MMM' | 'MMMM'
|
|
@@ -1483,6 +1491,7 @@ declare module '@formkit/inputs' {
|
|
|
1483
1491
|
? OptionsProValue<Props['options']>[]
|
|
1484
1492
|
: OptionsProValue<Props['options']>
|
|
1485
1493
|
multiple?: Bool
|
|
1494
|
+
popover?: Bool
|
|
1486
1495
|
options?: FormKitProOptionsProp
|
|
1487
1496
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1488
1497
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
@@ -1573,6 +1582,7 @@ declare module '@formkit/inputs' {
|
|
|
1573
1582
|
debounce?: number | string
|
|
1574
1583
|
options?: FormKitProOptionsProp
|
|
1575
1584
|
selectionAppearance?: 'truncate' | 'tags'
|
|
1585
|
+
popover?: Bool
|
|
1576
1586
|
openOnClick?: Bool
|
|
1577
1587
|
filter?: (option: FormKitOptionsItem, search: string) => boolean
|
|
1578
1588
|
optionLoader?: OptionLoader
|