@fkui/vue 6.2.0 → 6.3.1
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/dist/cjs/cypress.cjs.js +3 -0
- package/dist/cjs/cypress.cjs.js.map +2 -2
- package/dist/cjs/index.cjs.js +1542 -454
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +3 -0
- package/dist/esm/cypress.esm.js.map +2 -2
- package/dist/esm/index.esm.js +1543 -455
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +1 -0
- package/dist/types/index.d.ts +213 -148
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/elements/components.js +23 -3
- package/htmlvalidate/elements/internal-components.js +1 -0
- package/package.json +6 -6
- package/tsconfig-consumer.json +1 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -129,9 +129,20 @@ id: string;
|
|
|
129
129
|
focusRef: HTMLElement | null;
|
|
130
130
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
131
131
|
|
|
132
|
-
declare const __VLS_component_3: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
132
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
133
|
+
update: () => any;
|
|
134
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
135
|
+
onUpdate?: (() => any) | undefined;
|
|
136
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
133
137
|
|
|
134
|
-
declare const __VLS_component_4: DefineComponent<
|
|
138
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
|
|
139
|
+
disabled: boolean;
|
|
140
|
+
min: string;
|
|
141
|
+
max: string;
|
|
142
|
+
initial: string;
|
|
143
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
144
|
+
|
|
145
|
+
declare const __VLS_component_5: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
135
146
|
close: () => any;
|
|
136
147
|
}, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
|
|
137
148
|
onClose?: (() => any) | undefined;
|
|
@@ -166,6 +177,34 @@ declare type __VLS_Props = {
|
|
|
166
177
|
};
|
|
167
178
|
|
|
168
179
|
declare type __VLS_Props_2 = {
|
|
180
|
+
/**
|
|
181
|
+
* Disables resizing. The current size is locked.
|
|
182
|
+
*/
|
|
183
|
+
disabled?: boolean;
|
|
184
|
+
/**
|
|
185
|
+
* Minimal size of pane.
|
|
186
|
+
*
|
|
187
|
+
* Can be set in `px`, `%` (percent of application layout total size)
|
|
188
|
+
* or both as a space-separated list, e.g. `200px 20%`.
|
|
189
|
+
*/
|
|
190
|
+
min?: string;
|
|
191
|
+
/**
|
|
192
|
+
* Maximum size of pane.
|
|
193
|
+
*
|
|
194
|
+
* Can be set in `px`, `%` (percent of application layout total size)
|
|
195
|
+
* or both as a space-separated list, e.g. `600px 50%`.
|
|
196
|
+
*/
|
|
197
|
+
max?: string;
|
|
198
|
+
/**
|
|
199
|
+
* Initial size of pane used when the pane is used for the first time.
|
|
200
|
+
*
|
|
201
|
+
* Can be set in `px` or `%` (percent of application layout total
|
|
202
|
+
* size)
|
|
203
|
+
*/
|
|
204
|
+
initial?: string;
|
|
205
|
+
};
|
|
206
|
+
|
|
207
|
+
declare type __VLS_Props_3 = {
|
|
169
208
|
id: string;
|
|
170
209
|
isOpen: boolean;
|
|
171
210
|
options: string[];
|
|
@@ -211,6 +250,15 @@ declare function __VLS_template_3(): {
|
|
|
211
250
|
};
|
|
212
251
|
|
|
213
252
|
declare function __VLS_template_4(): {
|
|
253
|
+
attrs: Partial<{}>;
|
|
254
|
+
slots: {
|
|
255
|
+
default?(_: {}): any;
|
|
256
|
+
};
|
|
257
|
+
refs: {};
|
|
258
|
+
rootEl: any;
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
declare function __VLS_template_5(): {
|
|
214
262
|
attrs: Partial<{}>;
|
|
215
263
|
slots: {
|
|
216
264
|
default?(_: {}): any;
|
|
@@ -231,6 +279,8 @@ declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
|
231
279
|
|
|
232
280
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
233
281
|
|
|
282
|
+
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
283
|
+
|
|
234
284
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
235
285
|
new (): {
|
|
236
286
|
$slots: S;
|
|
@@ -255,6 +305,12 @@ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
|
255
305
|
};
|
|
256
306
|
};
|
|
257
307
|
|
|
308
|
+
declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
309
|
+
new (): {
|
|
310
|
+
$slots: S;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
|
|
258
314
|
/* Excluded from this release type: actionFromKeyboardEvent */
|
|
259
315
|
|
|
260
316
|
/**
|
|
@@ -865,7 +921,7 @@ required: false;
|
|
|
865
921
|
default: boolean;
|
|
866
922
|
};
|
|
867
923
|
modelValue: {
|
|
868
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
924
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
869
925
|
required: false;
|
|
870
926
|
default: string;
|
|
871
927
|
};
|
|
@@ -951,7 +1007,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
951
1007
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
952
1008
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
953
1009
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
954
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
1010
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
955
1011
|
id: {
|
|
956
1012
|
type: StringConstructor;
|
|
957
1013
|
required: false;
|
|
@@ -963,7 +1019,7 @@ required: false;
|
|
|
963
1019
|
default: boolean;
|
|
964
1020
|
};
|
|
965
1021
|
modelValue: {
|
|
966
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1022
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
967
1023
|
required: false;
|
|
968
1024
|
default: string;
|
|
969
1025
|
};
|
|
@@ -1009,7 +1065,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
1009
1065
|
}>, {
|
|
1010
1066
|
type: string;
|
|
1011
1067
|
id: string;
|
|
1012
|
-
modelValue: string | number;
|
|
1068
|
+
modelValue: string | number | null;
|
|
1013
1069
|
inline: boolean;
|
|
1014
1070
|
disabled: boolean;
|
|
1015
1071
|
options: string[] | undefined;
|
|
@@ -1260,8 +1316,8 @@ activeOption: string | null;
|
|
|
1260
1316
|
activeOptionId: string;
|
|
1261
1317
|
inputNode: HTMLInputElement;
|
|
1262
1318
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1263
|
-
close: () => any;
|
|
1264
1319
|
select: (option: string) => any;
|
|
1320
|
+
close: () => any;
|
|
1265
1321
|
}, string, PublicProps, Readonly<{
|
|
1266
1322
|
id: string;
|
|
1267
1323
|
isOpen: boolean;
|
|
@@ -1270,8 +1326,8 @@ activeOption: string | null;
|
|
|
1270
1326
|
activeOptionId: string;
|
|
1271
1327
|
inputNode: HTMLInputElement;
|
|
1272
1328
|
}> & Readonly<{
|
|
1273
|
-
onClose?: (() => any) | undefined;
|
|
1274
1329
|
onSelect?: ((option: string) => any) | undefined;
|
|
1330
|
+
onClose?: (() => any) | undefined;
|
|
1275
1331
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1276
1332
|
listbox: HTMLUListElement;
|
|
1277
1333
|
}, HTMLDivElement>;
|
|
@@ -1322,7 +1378,7 @@ required: false;
|
|
|
1322
1378
|
default: boolean;
|
|
1323
1379
|
};
|
|
1324
1380
|
modelValue: {
|
|
1325
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1381
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
1326
1382
|
required: false;
|
|
1327
1383
|
default: string;
|
|
1328
1384
|
};
|
|
@@ -1408,7 +1464,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
1408
1464
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
1409
1465
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
1410
1466
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
1411
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
1467
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
1412
1468
|
id: {
|
|
1413
1469
|
type: StringConstructor;
|
|
1414
1470
|
required: false;
|
|
@@ -1420,7 +1476,7 @@ required: false;
|
|
|
1420
1476
|
default: boolean;
|
|
1421
1477
|
};
|
|
1422
1478
|
modelValue: {
|
|
1423
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1479
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
1424
1480
|
required: false;
|
|
1425
1481
|
default: string;
|
|
1426
1482
|
};
|
|
@@ -1466,7 +1522,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
1466
1522
|
}>, {
|
|
1467
1523
|
type: string;
|
|
1468
1524
|
id: string;
|
|
1469
|
-
modelValue: string | number;
|
|
1525
|
+
modelValue: string | number | null;
|
|
1470
1526
|
inline: boolean;
|
|
1471
1527
|
disabled: boolean;
|
|
1472
1528
|
options: string[] | undefined;
|
|
@@ -1717,8 +1773,8 @@ activeOption: string | null;
|
|
|
1717
1773
|
activeOptionId: string;
|
|
1718
1774
|
inputNode: HTMLInputElement;
|
|
1719
1775
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1720
|
-
close: () => any;
|
|
1721
1776
|
select: (option: string) => any;
|
|
1777
|
+
close: () => any;
|
|
1722
1778
|
}, string, PublicProps, Readonly<{
|
|
1723
1779
|
id: string;
|
|
1724
1780
|
isOpen: boolean;
|
|
@@ -1727,8 +1783,8 @@ activeOption: string | null;
|
|
|
1727
1783
|
activeOptionId: string;
|
|
1728
1784
|
inputNode: HTMLInputElement;
|
|
1729
1785
|
}> & Readonly<{
|
|
1730
|
-
onClose?: (() => any) | undefined;
|
|
1731
1786
|
onSelect?: ((option: string) => any) | undefined;
|
|
1787
|
+
onClose?: (() => any) | undefined;
|
|
1732
1788
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1733
1789
|
listbox: HTMLUListElement;
|
|
1734
1790
|
}, HTMLDivElement>;
|
|
@@ -1784,7 +1840,7 @@ required: true;
|
|
|
1784
1840
|
}>, {}, {}, {}, {
|
|
1785
1841
|
onClickDay(date: FDate): void;
|
|
1786
1842
|
onChangeMonth(date: FDate): void;
|
|
1787
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
1843
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click")[], "update:modelValue" | "click", PublicProps, Readonly<ExtractPropTypes< {
|
|
1788
1844
|
/**
|
|
1789
1845
|
* Active month.
|
|
1790
1846
|
* @model
|
|
@@ -1852,7 +1908,7 @@ onClickPreviousButton(): void;
|
|
|
1852
1908
|
onClickNextButton(): void;
|
|
1853
1909
|
getDateText(value: FDate): string;
|
|
1854
1910
|
isFocused(ref: string): boolean;
|
|
1855
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
1911
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
1856
1912
|
modelValue: {
|
|
1857
1913
|
type: PropType<FDate>;
|
|
1858
1914
|
required: true;
|
|
@@ -1947,7 +2003,7 @@ onClickDay(date: FDate): void;
|
|
|
1947
2003
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
1948
2004
|
isDayFocused(date: FDate): boolean;
|
|
1949
2005
|
getTabindex(date: FDate): 0 | -1;
|
|
1950
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
2006
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "click")[], "update:modelValue" | "change" | "click", PublicProps, Readonly<ExtractPropTypes< {
|
|
1951
2007
|
modelValue: {
|
|
1952
2008
|
type: PropType<FDate>;
|
|
1953
2009
|
required: true;
|
|
@@ -2179,7 +2235,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
2179
2235
|
enter(element: Element): void;
|
|
2180
2236
|
afterEnter(element: Element): void;
|
|
2181
2237
|
leave(element: Element): void;
|
|
2182
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
2238
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
2183
2239
|
/**
|
|
2184
2240
|
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
2185
2241
|
*/
|
|
@@ -2253,7 +2309,7 @@ required: false;
|
|
|
2253
2309
|
default: boolean;
|
|
2254
2310
|
};
|
|
2255
2311
|
modelValue: {
|
|
2256
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
2312
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
2257
2313
|
required: false;
|
|
2258
2314
|
default: string;
|
|
2259
2315
|
};
|
|
@@ -2339,7 +2395,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
2339
2395
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
2340
2396
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
2341
2397
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
2342
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
2398
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
2343
2399
|
id: {
|
|
2344
2400
|
type: StringConstructor;
|
|
2345
2401
|
required: false;
|
|
@@ -2351,7 +2407,7 @@ required: false;
|
|
|
2351
2407
|
default: boolean;
|
|
2352
2408
|
};
|
|
2353
2409
|
modelValue: {
|
|
2354
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
2410
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
2355
2411
|
required: false;
|
|
2356
2412
|
default: string;
|
|
2357
2413
|
};
|
|
@@ -2397,7 +2453,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
2397
2453
|
}>, {
|
|
2398
2454
|
type: string;
|
|
2399
2455
|
id: string;
|
|
2400
|
-
modelValue: string | number;
|
|
2456
|
+
modelValue: string | number | null;
|
|
2401
2457
|
inline: boolean;
|
|
2402
2458
|
disabled: boolean;
|
|
2403
2459
|
options: string[] | undefined;
|
|
@@ -2648,8 +2704,8 @@ activeOption: string | null;
|
|
|
2648
2704
|
activeOptionId: string;
|
|
2649
2705
|
inputNode: HTMLInputElement;
|
|
2650
2706
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2651
|
-
close: () => any;
|
|
2652
2707
|
select: (option: string) => any;
|
|
2708
|
+
close: () => any;
|
|
2653
2709
|
}, string, PublicProps, Readonly<{
|
|
2654
2710
|
id: string;
|
|
2655
2711
|
isOpen: boolean;
|
|
@@ -2658,8 +2714,8 @@ activeOption: string | null;
|
|
|
2658
2714
|
activeOptionId: string;
|
|
2659
2715
|
inputNode: HTMLInputElement;
|
|
2660
2716
|
}> & Readonly<{
|
|
2661
|
-
onClose?: (() => any) | undefined;
|
|
2662
2717
|
onSelect?: ((option: string) => any) | undefined;
|
|
2718
|
+
onClose?: (() => any) | undefined;
|
|
2663
2719
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2664
2720
|
listbox: HTMLUListElement;
|
|
2665
2721
|
}, HTMLDivElement>;
|
|
@@ -2825,12 +2881,12 @@ validator(value: string): boolean;
|
|
|
2825
2881
|
}>> & Readonly<{
|
|
2826
2882
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
2827
2883
|
}>, {
|
|
2828
|
-
focus: "on" | "off" | "open";
|
|
2829
2884
|
size: string;
|
|
2830
2885
|
content: string;
|
|
2831
2886
|
isOpen: boolean;
|
|
2832
2887
|
fullscreen: boolean;
|
|
2833
2888
|
ariaCloseText: string;
|
|
2889
|
+
focus: "on" | "off" | "open";
|
|
2834
2890
|
heading: string;
|
|
2835
2891
|
buttons: FModalButtonDescriptor[];
|
|
2836
2892
|
}, {}, {
|
|
@@ -2921,12 +2977,12 @@ validator(value: string): boolean;
|
|
|
2921
2977
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
2922
2978
|
}>, {
|
|
2923
2979
|
type: "" | "warning" | "error" | "information";
|
|
2924
|
-
focus: "on" | "off" | "open";
|
|
2925
2980
|
size: string;
|
|
2926
2981
|
isOpen: boolean;
|
|
2927
2982
|
fullscreen: boolean;
|
|
2928
2983
|
id: string;
|
|
2929
2984
|
ariaCloseText: string;
|
|
2985
|
+
focus: "on" | "off" | "open";
|
|
2930
2986
|
}, {}, {
|
|
2931
2987
|
FIcon: DefineComponent<ExtractPropTypes< {
|
|
2932
2988
|
name: {
|
|
@@ -3035,7 +3091,7 @@ doHandlePopupMenuTabKey(action: MenuAction): boolean;
|
|
|
3035
3091
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
3036
3092
|
setFocusOnItem(index: number): Promise<void>;
|
|
3037
3093
|
activateItem(index: number): Promise<void>;
|
|
3038
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
3094
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "close")[], "select" | "close", PublicProps, Readonly<ExtractPropTypes< {
|
|
3039
3095
|
/**
|
|
3040
3096
|
* Toggle open/closed popup.
|
|
3041
3097
|
*/
|
|
@@ -3432,7 +3488,7 @@ required: false;
|
|
|
3432
3488
|
default: boolean;
|
|
3433
3489
|
};
|
|
3434
3490
|
modelValue: {
|
|
3435
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
3491
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
3436
3492
|
required: false;
|
|
3437
3493
|
default: string;
|
|
3438
3494
|
};
|
|
@@ -3518,7 +3574,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
3518
3574
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
3519
3575
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
3520
3576
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
3521
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
3577
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
3522
3578
|
id: {
|
|
3523
3579
|
type: StringConstructor;
|
|
3524
3580
|
required: false;
|
|
@@ -3530,7 +3586,7 @@ required: false;
|
|
|
3530
3586
|
default: boolean;
|
|
3531
3587
|
};
|
|
3532
3588
|
modelValue: {
|
|
3533
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
3589
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
3534
3590
|
required: false;
|
|
3535
3591
|
default: string;
|
|
3536
3592
|
};
|
|
@@ -3576,7 +3632,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
3576
3632
|
}>, {
|
|
3577
3633
|
type: string;
|
|
3578
3634
|
id: string;
|
|
3579
|
-
modelValue: string | number;
|
|
3635
|
+
modelValue: string | number | null;
|
|
3580
3636
|
inline: boolean;
|
|
3581
3637
|
disabled: boolean;
|
|
3582
3638
|
options: string[] | undefined;
|
|
@@ -3827,8 +3883,8 @@ activeOption: string | null;
|
|
|
3827
3883
|
activeOptionId: string;
|
|
3828
3884
|
inputNode: HTMLInputElement;
|
|
3829
3885
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3830
|
-
close: () => any;
|
|
3831
3886
|
select: (option: string) => any;
|
|
3887
|
+
close: () => any;
|
|
3832
3888
|
}, string, PublicProps, Readonly<{
|
|
3833
3889
|
id: string;
|
|
3834
3890
|
isOpen: boolean;
|
|
@@ -3837,8 +3893,8 @@ activeOption: string | null;
|
|
|
3837
3893
|
activeOptionId: string;
|
|
3838
3894
|
inputNode: HTMLInputElement;
|
|
3839
3895
|
}> & Readonly<{
|
|
3840
|
-
onClose?: (() => any) | undefined;
|
|
3841
3896
|
onSelect?: ((option: string) => any) | undefined;
|
|
3897
|
+
onClose?: (() => any) | undefined;
|
|
3842
3898
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
3843
3899
|
listbox: HTMLUListElement;
|
|
3844
3900
|
}, HTMLDivElement>;
|
|
@@ -3866,13 +3922,14 @@ parser: ParseFunction<number>;
|
|
|
3866
3922
|
export declare const FDataTable: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3867
3923
|
props: __VLS_PrettifyLocal_2<Pick<Partial<{
|
|
3868
3924
|
scroll: TableScroll;
|
|
3925
|
+
keyAttribute: string;
|
|
3869
3926
|
striped: boolean;
|
|
3870
3927
|
}> & Omit<{
|
|
3871
3928
|
readonly scroll: TableScroll;
|
|
3872
3929
|
readonly rows: T[];
|
|
3873
|
-
readonly keyAttribute: string;
|
|
3874
3930
|
readonly striped: boolean;
|
|
3875
|
-
|
|
3931
|
+
readonly keyAttribute?: string | undefined;
|
|
3932
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "scroll" | "keyAttribute" | "striped">, "rows" | ("scroll" | "keyAttribute" | "striped")> & {} & Partial<{}>> & PublicProps;
|
|
3876
3933
|
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
3877
3934
|
attrs: any;
|
|
3878
3935
|
slots: {
|
|
@@ -3987,7 +4044,7 @@ isDateEnabled(day: FDate): boolean;
|
|
|
3987
4044
|
isDaySelected(date: FDate): boolean;
|
|
3988
4045
|
highlightDay(date: FDate): boolean;
|
|
3989
4046
|
updateTextFieldValue(newValue: string): Promise<void>;
|
|
3990
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
4047
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
3991
4048
|
/** Selected day.
|
|
3992
4049
|
* @model
|
|
3993
4050
|
*/
|
|
@@ -4085,7 +4142,7 @@ required: true;
|
|
|
4085
4142
|
}>, {}, {}, {}, {
|
|
4086
4143
|
onClickDay(date: FDate): void;
|
|
4087
4144
|
onChangeMonth(date: FDate): void;
|
|
4088
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
4145
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click")[], "update:modelValue" | "click", PublicProps, Readonly<ExtractPropTypes< {
|
|
4089
4146
|
modelValue: {
|
|
4090
4147
|
type: PropType<FDate>;
|
|
4091
4148
|
required: true;
|
|
@@ -4137,7 +4194,7 @@ onClickPreviousButton(): void;
|
|
|
4137
4194
|
onClickNextButton(): void;
|
|
4138
4195
|
getDateText(value: FDate): string;
|
|
4139
4196
|
isFocused(ref: string): boolean;
|
|
4140
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
4197
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
4141
4198
|
modelValue: {
|
|
4142
4199
|
type: PropType<FDate>;
|
|
4143
4200
|
required: true;
|
|
@@ -4232,7 +4289,7 @@ onClickDay(date: FDate): void;
|
|
|
4232
4289
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
4233
4290
|
isDayFocused(date: FDate): boolean;
|
|
4234
4291
|
getTabindex(date: FDate): 0 | -1;
|
|
4235
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
4292
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "click")[], "update:modelValue" | "change" | "click", PublicProps, Readonly<ExtractPropTypes< {
|
|
4236
4293
|
modelValue: {
|
|
4237
4294
|
type: PropType<FDate>;
|
|
4238
4295
|
required: true;
|
|
@@ -4424,7 +4481,7 @@ required: false;
|
|
|
4424
4481
|
default: boolean;
|
|
4425
4482
|
};
|
|
4426
4483
|
modelValue: {
|
|
4427
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
4484
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
4428
4485
|
required: false;
|
|
4429
4486
|
default: string;
|
|
4430
4487
|
};
|
|
@@ -4510,7 +4567,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
4510
4567
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
4511
4568
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
4512
4569
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
4513
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
4570
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
4514
4571
|
id: {
|
|
4515
4572
|
type: StringConstructor;
|
|
4516
4573
|
required: false;
|
|
@@ -4522,7 +4579,7 @@ required: false;
|
|
|
4522
4579
|
default: boolean;
|
|
4523
4580
|
};
|
|
4524
4581
|
modelValue: {
|
|
4525
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
4582
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
4526
4583
|
required: false;
|
|
4527
4584
|
default: string;
|
|
4528
4585
|
};
|
|
@@ -4568,7 +4625,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
4568
4625
|
}>, {
|
|
4569
4626
|
type: string;
|
|
4570
4627
|
id: string;
|
|
4571
|
-
modelValue: string | number;
|
|
4628
|
+
modelValue: string | number | null;
|
|
4572
4629
|
inline: boolean;
|
|
4573
4630
|
disabled: boolean;
|
|
4574
4631
|
options: string[] | undefined;
|
|
@@ -4819,8 +4876,8 @@ activeOption: string | null;
|
|
|
4819
4876
|
activeOptionId: string;
|
|
4820
4877
|
inputNode: HTMLInputElement;
|
|
4821
4878
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4822
|
-
close: () => any;
|
|
4823
4879
|
select: (option: string) => any;
|
|
4880
|
+
close: () => any;
|
|
4824
4881
|
}, string, PublicProps, Readonly<{
|
|
4825
4882
|
id: string;
|
|
4826
4883
|
isOpen: boolean;
|
|
@@ -4829,8 +4886,8 @@ activeOption: string | null;
|
|
|
4829
4886
|
activeOptionId: string;
|
|
4830
4887
|
inputNode: HTMLInputElement;
|
|
4831
4888
|
}> & Readonly<{
|
|
4832
|
-
onClose?: (() => any) | undefined;
|
|
4833
4889
|
onSelect?: ((option: string) => any) | undefined;
|
|
4890
|
+
onClose?: (() => any) | undefined;
|
|
4834
4891
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
4835
4892
|
listbox: HTMLUListElement;
|
|
4836
4893
|
}, HTMLDivElement>;
|
|
@@ -5118,7 +5175,7 @@ default: () => string;
|
|
|
5118
5175
|
* @model
|
|
5119
5176
|
*/
|
|
5120
5177
|
modelValue: {
|
|
5121
|
-
type: StringConstructor;
|
|
5178
|
+
type: (StringConstructor | null)[];
|
|
5122
5179
|
required: false;
|
|
5123
5180
|
default: undefined;
|
|
5124
5181
|
};
|
|
@@ -5153,7 +5210,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
5153
5210
|
onPendingValidity(): void;
|
|
5154
5211
|
configureValidators(): void;
|
|
5155
5212
|
configureExtendedValidation(elements: HTMLInputElement[]): void;
|
|
5156
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
5213
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
5157
5214
|
/**
|
|
5158
5215
|
* The id for the input id attribute.
|
|
5159
5216
|
* The id for the label for attribute.
|
|
@@ -5170,7 +5227,7 @@ default: () => string;
|
|
|
5170
5227
|
* @model
|
|
5171
5228
|
*/
|
|
5172
5229
|
modelValue: {
|
|
5173
|
-
type: StringConstructor;
|
|
5230
|
+
type: (StringConstructor | null)[];
|
|
5174
5231
|
required: false;
|
|
5175
5232
|
default: undefined;
|
|
5176
5233
|
};
|
|
@@ -5197,7 +5254,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
5197
5254
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5198
5255
|
}>, {
|
|
5199
5256
|
id: string;
|
|
5200
|
-
modelValue: string;
|
|
5257
|
+
modelValue: string | null;
|
|
5201
5258
|
maxLength: number;
|
|
5202
5259
|
extendedValidation: boolean;
|
|
5203
5260
|
pasteErrorText: string;
|
|
@@ -5214,7 +5271,7 @@ required: false;
|
|
|
5214
5271
|
default: boolean;
|
|
5215
5272
|
};
|
|
5216
5273
|
modelValue: {
|
|
5217
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
5274
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
5218
5275
|
required: false;
|
|
5219
5276
|
default: string;
|
|
5220
5277
|
};
|
|
@@ -5300,7 +5357,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
5300
5357
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
5301
5358
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
5302
5359
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
5303
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
5360
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
5304
5361
|
id: {
|
|
5305
5362
|
type: StringConstructor;
|
|
5306
5363
|
required: false;
|
|
@@ -5312,7 +5369,7 @@ required: false;
|
|
|
5312
5369
|
default: boolean;
|
|
5313
5370
|
};
|
|
5314
5371
|
modelValue: {
|
|
5315
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
5372
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
5316
5373
|
required: false;
|
|
5317
5374
|
default: string;
|
|
5318
5375
|
};
|
|
@@ -5358,7 +5415,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
5358
5415
|
}>, {
|
|
5359
5416
|
type: string;
|
|
5360
5417
|
id: string;
|
|
5361
|
-
modelValue: string | number;
|
|
5418
|
+
modelValue: string | number | null;
|
|
5362
5419
|
inline: boolean;
|
|
5363
5420
|
disabled: boolean;
|
|
5364
5421
|
options: string[] | undefined;
|
|
@@ -5609,8 +5666,8 @@ activeOption: string | null;
|
|
|
5609
5666
|
activeOptionId: string;
|
|
5610
5667
|
inputNode: HTMLInputElement;
|
|
5611
5668
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5612
|
-
close: () => any;
|
|
5613
5669
|
select: (option: string) => any;
|
|
5670
|
+
close: () => any;
|
|
5614
5671
|
}, string, PublicProps, Readonly<{
|
|
5615
5672
|
id: string;
|
|
5616
5673
|
isOpen: boolean;
|
|
@@ -5619,8 +5676,8 @@ activeOption: string | null;
|
|
|
5619
5676
|
activeOptionId: string;
|
|
5620
5677
|
inputNode: HTMLInputElement;
|
|
5621
5678
|
}> & Readonly<{
|
|
5622
|
-
onClose?: (() => any) | undefined;
|
|
5623
5679
|
onSelect?: ((option: string) => any) | undefined;
|
|
5680
|
+
onClose?: (() => any) | undefined;
|
|
5624
5681
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
5625
5682
|
listbox: HTMLUListElement;
|
|
5626
5683
|
}, HTMLDivElement>;
|
|
@@ -6876,7 +6933,7 @@ preparedButtons(): FModalButton[];
|
|
|
6876
6933
|
onClose(): void;
|
|
6877
6934
|
onSubmit(): Promise<void>;
|
|
6878
6935
|
onCancel(): void;
|
|
6879
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
6936
|
+
}, ComponentOptions, ComponentOptionsMixin, ("close" | "submit" | "cancel")[], "close" | "submit" | "cancel", PublicProps, Readonly<ExtractPropTypes< {
|
|
6880
6937
|
/**
|
|
6881
6938
|
* Enable fullscreen mode in mobile.
|
|
6882
6939
|
*/
|
|
@@ -7069,12 +7126,12 @@ validator(value: string): boolean;
|
|
|
7069
7126
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
7070
7127
|
}>, {
|
|
7071
7128
|
type: "" | "warning" | "error" | "information";
|
|
7072
|
-
focus: "on" | "off" | "open";
|
|
7073
7129
|
size: string;
|
|
7074
7130
|
isOpen: boolean;
|
|
7075
7131
|
fullscreen: boolean;
|
|
7076
7132
|
id: string;
|
|
7077
7133
|
ariaCloseText: string;
|
|
7134
|
+
focus: "on" | "off" | "open";
|
|
7078
7135
|
}, {}, {
|
|
7079
7136
|
FIcon: DefineComponent<ExtractPropTypes< {
|
|
7080
7137
|
name: {
|
|
@@ -7557,8 +7614,9 @@ export declare function findParentByName(vm: ComponentPublicInstance | undefined
|
|
|
7557
7614
|
|
|
7558
7615
|
export declare const FInteractiveTable: <T extends object, K extends keyof T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7559
7616
|
props: __VLS_PrettifyLocal_3<Pick<Partial<{
|
|
7560
|
-
scroll: TableScroll;
|
|
7561
7617
|
modelValue: T[] | undefined;
|
|
7618
|
+
scroll: TableScroll;
|
|
7619
|
+
keyAttribute: string;
|
|
7562
7620
|
striped: boolean;
|
|
7563
7621
|
hover: boolean;
|
|
7564
7622
|
expandableAttribute: string;
|
|
@@ -7577,7 +7635,6 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
7577
7635
|
}> & Omit<{
|
|
7578
7636
|
readonly scroll: TableScroll;
|
|
7579
7637
|
readonly rows: T[];
|
|
7580
|
-
readonly keyAttribute: string;
|
|
7581
7638
|
readonly striped: boolean;
|
|
7582
7639
|
readonly hover: boolean;
|
|
7583
7640
|
readonly expandableAttribute: string;
|
|
@@ -7585,6 +7642,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
7585
7642
|
readonly selectable: boolean;
|
|
7586
7643
|
readonly showActive: boolean;
|
|
7587
7644
|
readonly modelValue?: T[] | undefined;
|
|
7645
|
+
readonly keyAttribute?: string | undefined;
|
|
7588
7646
|
readonly active?: ([{
|
|
7589
7647
|
type: PropType<T | undefined>;
|
|
7590
7648
|
required: false;
|
|
@@ -7594,15 +7652,15 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
7594
7652
|
required: false;
|
|
7595
7653
|
default: () => undefined;
|
|
7596
7654
|
}) | undefined;
|
|
7597
|
-
readonly onChange?: ((row: T) => any) | undefined;
|
|
7598
|
-
readonly onClick?: ((row: T) => any) | undefined;
|
|
7599
7655
|
readonly onSelect?: ((row: T) => any) | undefined;
|
|
7600
7656
|
readonly onCollapse?: ((row: T) => any) | undefined;
|
|
7601
7657
|
readonly "onUpdate:modelValue"?: ((rows: T[]) => any) | undefined;
|
|
7658
|
+
readonly onChange?: ((row: T) => any) | undefined;
|
|
7659
|
+
readonly onClick?: ((row: T) => any) | undefined;
|
|
7602
7660
|
readonly onExpand?: ((row: T) => any) | undefined;
|
|
7603
7661
|
readonly onUnselect?: ((row: T) => any) | undefined;
|
|
7604
7662
|
readonly "onUpdate:active"?: ((row: T) => any) | undefined;
|
|
7605
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "scroll" | "
|
|
7663
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "modelValue" | "scroll" | "keyAttribute" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active">, "onChange" | "onClick" | "onSelect" | "onUpdate:modelValue" | "rows" | "onCollapse" | "onExpand" | "onUnselect" | "onUpdate:active" | ("modelValue" | "scroll" | "keyAttribute" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active")> & {} & Partial<{}>> & PublicProps;
|
|
7606
7664
|
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
7607
7665
|
attrs: any;
|
|
7608
7666
|
slots: {
|
|
@@ -7629,7 +7687,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
7629
7687
|
}): any;
|
|
7630
7688
|
empty?(_: {}): any;
|
|
7631
7689
|
};
|
|
7632
|
-
emit: ((evt: "
|
|
7690
|
+
emit: ((evt: "select", row: T) => void) & ((evt: "collapse", row: T) => void) & ((evt: "update:modelValue", rows: T[]) => void) & ((evt: "change", row: T) => void) & ((evt: "click", row: T) => void) & ((evt: "expand", row: T) => void) & ((evt: "unselect", row: T) => void) & ((evt: "update:active", row: T) => void);
|
|
7633
7691
|
}>) => VNode & {
|
|
7634
7692
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
7635
7693
|
};
|
|
@@ -7986,6 +8044,7 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
|
|
|
7986
8044
|
elementId: string;
|
|
7987
8045
|
modelValue: T[] | undefined;
|
|
7988
8046
|
checkbox: boolean;
|
|
8047
|
+
keyAttribute: string;
|
|
7989
8048
|
selectable: boolean;
|
|
7990
8049
|
active: [{
|
|
7991
8050
|
type: PropType<T | undefined>;
|
|
@@ -8000,9 +8059,9 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
|
|
|
8000
8059
|
readonly elementId: string;
|
|
8001
8060
|
readonly items: T[];
|
|
8002
8061
|
readonly checkbox: boolean;
|
|
8003
|
-
readonly keyAttribute: string;
|
|
8004
8062
|
readonly selectable: boolean;
|
|
8005
8063
|
readonly modelValue?: T[] | undefined;
|
|
8064
|
+
readonly keyAttribute?: string | undefined;
|
|
8006
8065
|
readonly active?: ([{
|
|
8007
8066
|
type: PropType<T | undefined>;
|
|
8008
8067
|
required: false;
|
|
@@ -8012,13 +8071,13 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
|
|
|
8012
8071
|
required: false;
|
|
8013
8072
|
default: () => undefined;
|
|
8014
8073
|
}) | undefined;
|
|
8015
|
-
readonly onChange?: ((item: T) => any) | undefined;
|
|
8016
|
-
readonly onClick?: ((item: T) => any) | undefined;
|
|
8017
8074
|
readonly onSelect?: ((item: T) => any) | undefined;
|
|
8018
8075
|
readonly "onUpdate:modelValue"?: ((item: T[]) => any) | undefined;
|
|
8076
|
+
readonly onChange?: ((item: T) => any) | undefined;
|
|
8077
|
+
readonly onClick?: ((item: T) => any) | undefined;
|
|
8019
8078
|
readonly onUnselect?: ((item: T) => any) | undefined;
|
|
8020
8079
|
readonly "onUpdate:active"?: ((item: T) => any) | undefined;
|
|
8021
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "elementId" | "modelValue" | "checkbox" | "selectable" | "active">, "onChange" | "onClick" | "onSelect" | "items" | "onUpdate:modelValue" | "
|
|
8080
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "elementId" | "modelValue" | "checkbox" | "keyAttribute" | "selectable" | "active">, "onChange" | "onClick" | "onSelect" | "items" | "onUpdate:modelValue" | "onUnselect" | "onUpdate:active" | ("elementId" | "modelValue" | "checkbox" | "keyAttribute" | "selectable" | "active")> & {} & Partial<{}>> & PublicProps;
|
|
8022
8081
|
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
8023
8082
|
attrs: any;
|
|
8024
8083
|
slots: {
|
|
@@ -8034,7 +8093,7 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
|
|
|
8034
8093
|
item: T;
|
|
8035
8094
|
}): any;
|
|
8036
8095
|
};
|
|
8037
|
-
emit: ((evt: "
|
|
8096
|
+
emit: ((evt: "select", item: T) => void) & ((evt: "update:modelValue", item: T[]) => void) & ((evt: "change", item: T) => void) & ((evt: "click", item: T) => void) & ((evt: "unselect", item: T) => void) & ((evt: "update:active", item: T) => void);
|
|
8038
8097
|
}>) => VNode & {
|
|
8039
8098
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
8040
8099
|
};
|
|
@@ -8560,12 +8619,12 @@ validator(value: string): boolean;
|
|
|
8560
8619
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8561
8620
|
}>, {
|
|
8562
8621
|
type: "" | "warning" | "error" | "information";
|
|
8563
|
-
focus: "on" | "off" | "open";
|
|
8564
8622
|
size: string;
|
|
8565
8623
|
isOpen: boolean;
|
|
8566
8624
|
fullscreen: boolean;
|
|
8567
8625
|
id: string;
|
|
8568
8626
|
ariaCloseText: string;
|
|
8627
|
+
focus: "on" | "off" | "open";
|
|
8569
8628
|
}, {}, {
|
|
8570
8629
|
FIcon: DefineComponent<ExtractPropTypes< {
|
|
8571
8630
|
name: {
|
|
@@ -8935,7 +8994,7 @@ activateItem(index: number): Promise<void>;
|
|
|
8935
8994
|
setFocusedItemIndex(index: number): void;
|
|
8936
8995
|
onKeyUp(event: KeyboardEvent): void;
|
|
8937
8996
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
8938
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
8997
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "close" | "update:modelValue" | "update:focusedItem")[], "select" | "close" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
|
|
8939
8998
|
modelValue: {
|
|
8940
8999
|
type: StringConstructor;
|
|
8941
9000
|
required: false;
|
|
@@ -9156,7 +9215,7 @@ required: false;
|
|
|
9156
9215
|
default: boolean;
|
|
9157
9216
|
};
|
|
9158
9217
|
modelValue: {
|
|
9159
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9218
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9160
9219
|
required: false;
|
|
9161
9220
|
default: string;
|
|
9162
9221
|
};
|
|
@@ -9242,7 +9301,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
9242
9301
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
9243
9302
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
9244
9303
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
9245
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
9304
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
9246
9305
|
id: {
|
|
9247
9306
|
type: StringConstructor;
|
|
9248
9307
|
required: false;
|
|
@@ -9254,7 +9313,7 @@ required: false;
|
|
|
9254
9313
|
default: boolean;
|
|
9255
9314
|
};
|
|
9256
9315
|
modelValue: {
|
|
9257
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9316
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9258
9317
|
required: false;
|
|
9259
9318
|
default: string;
|
|
9260
9319
|
};
|
|
@@ -9300,7 +9359,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
9300
9359
|
}>, {
|
|
9301
9360
|
type: string;
|
|
9302
9361
|
id: string;
|
|
9303
|
-
modelValue: string | number;
|
|
9362
|
+
modelValue: string | number | null;
|
|
9304
9363
|
inline: boolean;
|
|
9305
9364
|
disabled: boolean;
|
|
9306
9365
|
options: string[] | undefined;
|
|
@@ -9551,8 +9610,8 @@ activeOption: string | null;
|
|
|
9551
9610
|
activeOptionId: string;
|
|
9552
9611
|
inputNode: HTMLInputElement;
|
|
9553
9612
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9554
|
-
close: () => any;
|
|
9555
9613
|
select: (option: string) => any;
|
|
9614
|
+
close: () => any;
|
|
9556
9615
|
}, string, PublicProps, Readonly<{
|
|
9557
9616
|
id: string;
|
|
9558
9617
|
isOpen: boolean;
|
|
@@ -9561,8 +9620,8 @@ activeOption: string | null;
|
|
|
9561
9620
|
activeOptionId: string;
|
|
9562
9621
|
inputNode: HTMLInputElement;
|
|
9563
9622
|
}> & Readonly<{
|
|
9564
|
-
onClose?: (() => any) | undefined;
|
|
9565
9623
|
onSelect?: ((option: string) => any) | undefined;
|
|
9624
|
+
onClose?: (() => any) | undefined;
|
|
9566
9625
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
9567
9626
|
listbox: HTMLUListElement;
|
|
9568
9627
|
}, HTMLDivElement>;
|
|
@@ -9794,7 +9853,7 @@ required: false;
|
|
|
9794
9853
|
default: boolean;
|
|
9795
9854
|
};
|
|
9796
9855
|
modelValue: {
|
|
9797
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9856
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9798
9857
|
required: false;
|
|
9799
9858
|
default: string;
|
|
9800
9859
|
};
|
|
@@ -9880,7 +9939,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
9880
9939
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
9881
9940
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
9882
9941
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
9883
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
9942
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
9884
9943
|
id: {
|
|
9885
9944
|
type: StringConstructor;
|
|
9886
9945
|
required: false;
|
|
@@ -9892,7 +9951,7 @@ required: false;
|
|
|
9892
9951
|
default: boolean;
|
|
9893
9952
|
};
|
|
9894
9953
|
modelValue: {
|
|
9895
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9954
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9896
9955
|
required: false;
|
|
9897
9956
|
default: string;
|
|
9898
9957
|
};
|
|
@@ -9938,7 +9997,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
9938
9997
|
}>, {
|
|
9939
9998
|
type: string;
|
|
9940
9999
|
id: string;
|
|
9941
|
-
modelValue: string | number;
|
|
10000
|
+
modelValue: string | number | null;
|
|
9942
10001
|
inline: boolean;
|
|
9943
10002
|
disabled: boolean;
|
|
9944
10003
|
options: string[] | undefined;
|
|
@@ -10189,8 +10248,8 @@ activeOption: string | null;
|
|
|
10189
10248
|
activeOptionId: string;
|
|
10190
10249
|
inputNode: HTMLInputElement;
|
|
10191
10250
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10192
|
-
close: () => any;
|
|
10193
10251
|
select: (option: string) => any;
|
|
10252
|
+
close: () => any;
|
|
10194
10253
|
}, string, PublicProps, Readonly<{
|
|
10195
10254
|
id: string;
|
|
10196
10255
|
isOpen: boolean;
|
|
@@ -10199,8 +10258,8 @@ activeOption: string | null;
|
|
|
10199
10258
|
activeOptionId: string;
|
|
10200
10259
|
inputNode: HTMLInputElement;
|
|
10201
10260
|
}> & Readonly<{
|
|
10202
|
-
onClose?: (() => any) | undefined;
|
|
10203
10261
|
onSelect?: ((option: string) => any) | undefined;
|
|
10262
|
+
onClose?: (() => any) | undefined;
|
|
10204
10263
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
10205
10264
|
listbox: HTMLUListElement;
|
|
10206
10265
|
}, HTMLDivElement>;
|
|
@@ -10513,7 +10572,7 @@ required: false;
|
|
|
10513
10572
|
default: boolean;
|
|
10514
10573
|
};
|
|
10515
10574
|
modelValue: {
|
|
10516
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
10575
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
10517
10576
|
required: false;
|
|
10518
10577
|
default: string;
|
|
10519
10578
|
};
|
|
@@ -10599,7 +10658,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
10599
10658
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
10600
10659
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
10601
10660
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
10602
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
10661
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
10603
10662
|
id: {
|
|
10604
10663
|
type: StringConstructor;
|
|
10605
10664
|
required: false;
|
|
@@ -10611,7 +10670,7 @@ required: false;
|
|
|
10611
10670
|
default: boolean;
|
|
10612
10671
|
};
|
|
10613
10672
|
modelValue: {
|
|
10614
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
10673
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
10615
10674
|
required: false;
|
|
10616
10675
|
default: string;
|
|
10617
10676
|
};
|
|
@@ -10657,7 +10716,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
10657
10716
|
}>, {
|
|
10658
10717
|
type: string;
|
|
10659
10718
|
id: string;
|
|
10660
|
-
modelValue: string | number;
|
|
10719
|
+
modelValue: string | number | null;
|
|
10661
10720
|
inline: boolean;
|
|
10662
10721
|
disabled: boolean;
|
|
10663
10722
|
options: string[] | undefined;
|
|
@@ -10908,8 +10967,8 @@ activeOption: string | null;
|
|
|
10908
10967
|
activeOptionId: string;
|
|
10909
10968
|
inputNode: HTMLInputElement;
|
|
10910
10969
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10911
|
-
close: () => any;
|
|
10912
10970
|
select: (option: string) => any;
|
|
10971
|
+
close: () => any;
|
|
10913
10972
|
}, string, PublicProps, Readonly<{
|
|
10914
10973
|
id: string;
|
|
10915
10974
|
isOpen: boolean;
|
|
@@ -10918,8 +10977,8 @@ activeOption: string | null;
|
|
|
10918
10977
|
activeOptionId: string;
|
|
10919
10978
|
inputNode: HTMLInputElement;
|
|
10920
10979
|
}> & Readonly<{
|
|
10921
|
-
onClose?: (() => any) | undefined;
|
|
10922
10980
|
onSelect?: ((option: string) => any) | undefined;
|
|
10981
|
+
onClose?: (() => any) | undefined;
|
|
10923
10982
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
10924
10983
|
listbox: HTMLUListElement;
|
|
10925
10984
|
}, HTMLDivElement>;
|
|
@@ -10992,7 +11051,7 @@ required: false;
|
|
|
10992
11051
|
default: boolean;
|
|
10993
11052
|
};
|
|
10994
11053
|
modelValue: {
|
|
10995
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11054
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
10996
11055
|
required: false;
|
|
10997
11056
|
default: string;
|
|
10998
11057
|
};
|
|
@@ -11078,7 +11137,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
11078
11137
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
11079
11138
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
11080
11139
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
11081
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
11140
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
11082
11141
|
id: {
|
|
11083
11142
|
type: StringConstructor;
|
|
11084
11143
|
required: false;
|
|
@@ -11090,7 +11149,7 @@ required: false;
|
|
|
11090
11149
|
default: boolean;
|
|
11091
11150
|
};
|
|
11092
11151
|
modelValue: {
|
|
11093
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11152
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11094
11153
|
required: false;
|
|
11095
11154
|
default: string;
|
|
11096
11155
|
};
|
|
@@ -11136,7 +11195,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
11136
11195
|
}>, {
|
|
11137
11196
|
type: string;
|
|
11138
11197
|
id: string;
|
|
11139
|
-
modelValue: string | number;
|
|
11198
|
+
modelValue: string | number | null;
|
|
11140
11199
|
inline: boolean;
|
|
11141
11200
|
disabled: boolean;
|
|
11142
11201
|
options: string[] | undefined;
|
|
@@ -11387,8 +11446,8 @@ activeOption: string | null;
|
|
|
11387
11446
|
activeOptionId: string;
|
|
11388
11447
|
inputNode: HTMLInputElement;
|
|
11389
11448
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11390
|
-
close: () => any;
|
|
11391
11449
|
select: (option: string) => any;
|
|
11450
|
+
close: () => any;
|
|
11392
11451
|
}, string, PublicProps, Readonly<{
|
|
11393
11452
|
id: string;
|
|
11394
11453
|
isOpen: boolean;
|
|
@@ -11397,8 +11456,8 @@ activeOption: string | null;
|
|
|
11397
11456
|
activeOptionId: string;
|
|
11398
11457
|
inputNode: HTMLInputElement;
|
|
11399
11458
|
}> & Readonly<{
|
|
11400
|
-
onClose?: (() => any) | undefined;
|
|
11401
11459
|
onSelect?: ((option: string) => any) | undefined;
|
|
11460
|
+
onClose?: (() => any) | undefined;
|
|
11402
11461
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
11403
11462
|
listbox: HTMLUListElement;
|
|
11404
11463
|
}, HTMLDivElement>;
|
|
@@ -11436,11 +11495,12 @@ default: () => string;
|
|
|
11436
11495
|
};
|
|
11437
11496
|
/**
|
|
11438
11497
|
* The value for the input.
|
|
11439
|
-
* If the prop is not
|
|
11498
|
+
* If the prop is not used or set to undefined
|
|
11499
|
+
* or null then the default value will be used.
|
|
11440
11500
|
* @model
|
|
11441
11501
|
*/
|
|
11442
11502
|
modelValue: {
|
|
11443
|
-
type: StringConstructor;
|
|
11503
|
+
type: (StringConstructor | null)[];
|
|
11444
11504
|
required: false;
|
|
11445
11505
|
default: undefined;
|
|
11446
11506
|
};
|
|
@@ -11464,7 +11524,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
11464
11524
|
onPendingValidity(): void;
|
|
11465
11525
|
configureValidators(): void;
|
|
11466
11526
|
configureExtendedValidation(elements: HTMLInputElement[]): void;
|
|
11467
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
11527
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
11468
11528
|
/**
|
|
11469
11529
|
* The id for the input id attribute.
|
|
11470
11530
|
* The id for the label for attribute.
|
|
@@ -11477,11 +11537,12 @@ default: () => string;
|
|
|
11477
11537
|
};
|
|
11478
11538
|
/**
|
|
11479
11539
|
* The value for the input.
|
|
11480
|
-
* If the prop is not
|
|
11540
|
+
* If the prop is not used or set to undefined
|
|
11541
|
+
* or null then the default value will be used.
|
|
11481
11542
|
* @model
|
|
11482
11543
|
*/
|
|
11483
11544
|
modelValue: {
|
|
11484
|
-
type: StringConstructor;
|
|
11545
|
+
type: (StringConstructor | null)[];
|
|
11485
11546
|
required: false;
|
|
11486
11547
|
default: undefined;
|
|
11487
11548
|
};
|
|
@@ -11499,7 +11560,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
11499
11560
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11500
11561
|
}>, {
|
|
11501
11562
|
id: string;
|
|
11502
|
-
modelValue: string;
|
|
11563
|
+
modelValue: string | null;
|
|
11503
11564
|
maxLength: number;
|
|
11504
11565
|
extendedValidation: boolean;
|
|
11505
11566
|
}, {}, {
|
|
@@ -11515,7 +11576,7 @@ required: false;
|
|
|
11515
11576
|
default: boolean;
|
|
11516
11577
|
};
|
|
11517
11578
|
modelValue: {
|
|
11518
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11579
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11519
11580
|
required: false;
|
|
11520
11581
|
default: string;
|
|
11521
11582
|
};
|
|
@@ -11601,7 +11662,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
11601
11662
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
11602
11663
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
11603
11664
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
11604
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
11665
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
11605
11666
|
id: {
|
|
11606
11667
|
type: StringConstructor;
|
|
11607
11668
|
required: false;
|
|
@@ -11613,7 +11674,7 @@ required: false;
|
|
|
11613
11674
|
default: boolean;
|
|
11614
11675
|
};
|
|
11615
11676
|
modelValue: {
|
|
11616
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11677
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11617
11678
|
required: false;
|
|
11618
11679
|
default: string;
|
|
11619
11680
|
};
|
|
@@ -11659,7 +11720,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
11659
11720
|
}>, {
|
|
11660
11721
|
type: string;
|
|
11661
11722
|
id: string;
|
|
11662
|
-
modelValue: string | number;
|
|
11723
|
+
modelValue: string | number | null;
|
|
11663
11724
|
inline: boolean;
|
|
11664
11725
|
disabled: boolean;
|
|
11665
11726
|
options: string[] | undefined;
|
|
@@ -11910,8 +11971,8 @@ activeOption: string | null;
|
|
|
11910
11971
|
activeOptionId: string;
|
|
11911
11972
|
inputNode: HTMLInputElement;
|
|
11912
11973
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11913
|
-
close: () => any;
|
|
11914
11974
|
select: (option: string) => any;
|
|
11975
|
+
close: () => any;
|
|
11915
11976
|
}, string, PublicProps, Readonly<{
|
|
11916
11977
|
id: string;
|
|
11917
11978
|
isOpen: boolean;
|
|
@@ -11920,8 +11981,8 @@ activeOption: string | null;
|
|
|
11920
11981
|
activeOptionId: string;
|
|
11921
11982
|
inputNode: HTMLInputElement;
|
|
11922
11983
|
}> & Readonly<{
|
|
11923
|
-
onClose?: (() => any) | undefined;
|
|
11924
11984
|
onSelect?: ((option: string) => any) | undefined;
|
|
11985
|
+
onClose?: (() => any) | undefined;
|
|
11925
11986
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
11926
11987
|
listbox: HTMLUListElement;
|
|
11927
11988
|
}, HTMLDivElement>;
|
|
@@ -11965,7 +12026,7 @@ required: false;
|
|
|
11965
12026
|
default: boolean;
|
|
11966
12027
|
};
|
|
11967
12028
|
modelValue: {
|
|
11968
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12029
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11969
12030
|
required: false;
|
|
11970
12031
|
default: string;
|
|
11971
12032
|
};
|
|
@@ -12051,7 +12112,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
12051
12112
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
12052
12113
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
12053
12114
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
12054
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
12115
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
12055
12116
|
id: {
|
|
12056
12117
|
type: StringConstructor;
|
|
12057
12118
|
required: false;
|
|
@@ -12063,7 +12124,7 @@ required: false;
|
|
|
12063
12124
|
default: boolean;
|
|
12064
12125
|
};
|
|
12065
12126
|
modelValue: {
|
|
12066
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12127
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
12067
12128
|
required: false;
|
|
12068
12129
|
default: string;
|
|
12069
12130
|
};
|
|
@@ -12109,7 +12170,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12109
12170
|
}>, {
|
|
12110
12171
|
type: string;
|
|
12111
12172
|
id: string;
|
|
12112
|
-
modelValue: string | number;
|
|
12173
|
+
modelValue: string | number | null;
|
|
12113
12174
|
inline: boolean;
|
|
12114
12175
|
disabled: boolean;
|
|
12115
12176
|
options: string[] | undefined;
|
|
@@ -12360,8 +12421,8 @@ activeOption: string | null;
|
|
|
12360
12421
|
activeOptionId: string;
|
|
12361
12422
|
inputNode: HTMLInputElement;
|
|
12362
12423
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12363
|
-
close: () => any;
|
|
12364
12424
|
select: (option: string) => any;
|
|
12425
|
+
close: () => any;
|
|
12365
12426
|
}, string, PublicProps, Readonly<{
|
|
12366
12427
|
id: string;
|
|
12367
12428
|
isOpen: boolean;
|
|
@@ -12370,8 +12431,8 @@ activeOption: string | null;
|
|
|
12370
12431
|
activeOptionId: string;
|
|
12371
12432
|
inputNode: HTMLInputElement;
|
|
12372
12433
|
}> & Readonly<{
|
|
12373
|
-
onClose?: (() => any) | undefined;
|
|
12374
12434
|
onSelect?: ((option: string) => any) | undefined;
|
|
12435
|
+
onClose?: (() => any) | undefined;
|
|
12375
12436
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
12376
12437
|
listbox: HTMLUListElement;
|
|
12377
12438
|
}, HTMLDivElement>;
|
|
@@ -12424,7 +12485,7 @@ required: false;
|
|
|
12424
12485
|
default: boolean;
|
|
12425
12486
|
};
|
|
12426
12487
|
modelValue: {
|
|
12427
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12488
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
12428
12489
|
required: false;
|
|
12429
12490
|
default: string;
|
|
12430
12491
|
};
|
|
@@ -12510,7 +12571,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
12510
12571
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
12511
12572
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
12512
12573
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
12513
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
12574
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
12514
12575
|
id: {
|
|
12515
12576
|
type: StringConstructor;
|
|
12516
12577
|
required: false;
|
|
@@ -12522,7 +12583,7 @@ required: false;
|
|
|
12522
12583
|
default: boolean;
|
|
12523
12584
|
};
|
|
12524
12585
|
modelValue: {
|
|
12525
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12586
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
12526
12587
|
required: false;
|
|
12527
12588
|
default: string;
|
|
12528
12589
|
};
|
|
@@ -12568,7 +12629,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12568
12629
|
}>, {
|
|
12569
12630
|
type: string;
|
|
12570
12631
|
id: string;
|
|
12571
|
-
modelValue: string | number;
|
|
12632
|
+
modelValue: string | number | null;
|
|
12572
12633
|
inline: boolean;
|
|
12573
12634
|
disabled: boolean;
|
|
12574
12635
|
options: string[] | undefined;
|
|
@@ -12819,8 +12880,8 @@ activeOption: string | null;
|
|
|
12819
12880
|
activeOptionId: string;
|
|
12820
12881
|
inputNode: HTMLInputElement;
|
|
12821
12882
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12822
|
-
close: () => any;
|
|
12823
12883
|
select: (option: string) => any;
|
|
12884
|
+
close: () => any;
|
|
12824
12885
|
}, string, PublicProps, Readonly<{
|
|
12825
12886
|
id: string;
|
|
12826
12887
|
isOpen: boolean;
|
|
@@ -12829,8 +12890,8 @@ activeOption: string | null;
|
|
|
12829
12890
|
activeOptionId: string;
|
|
12830
12891
|
inputNode: HTMLInputElement;
|
|
12831
12892
|
}> & Readonly<{
|
|
12832
|
-
onClose?: (() => any) | undefined;
|
|
12833
12893
|
onSelect?: ((option: string) => any) | undefined;
|
|
12894
|
+
onClose?: (() => any) | undefined;
|
|
12834
12895
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
12835
12896
|
listbox: HTMLUListElement;
|
|
12836
12897
|
}, HTMLDivElement>;
|
|
@@ -12979,7 +13040,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
|
12979
13040
|
enter(element: Element): void;
|
|
12980
13041
|
afterEnter(element: Element): void;
|
|
12981
13042
|
leave(element: Element): void;
|
|
12982
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13043
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
12983
13044
|
/**
|
|
12984
13045
|
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
12985
13046
|
*/
|
|
@@ -13021,6 +13082,8 @@ id: string;
|
|
|
13021
13082
|
disabled: boolean;
|
|
13022
13083
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13023
13084
|
|
|
13085
|
+
export declare const FResizePane: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
13086
|
+
|
|
13024
13087
|
export declare const FSearchTextField: DefineComponent<ExtractPropTypes< {
|
|
13025
13088
|
id: {
|
|
13026
13089
|
type: StringConstructor;
|
|
@@ -13028,7 +13091,7 @@ required: false;
|
|
|
13028
13091
|
default: () => string;
|
|
13029
13092
|
};
|
|
13030
13093
|
modelValue: {
|
|
13031
|
-
type: StringConstructor;
|
|
13094
|
+
type: (StringConstructor | null)[];
|
|
13032
13095
|
required: false;
|
|
13033
13096
|
default: string;
|
|
13034
13097
|
};
|
|
@@ -13051,14 +13114,14 @@ onInput(event: Event): void;
|
|
|
13051
13114
|
onChange(event: Event): void;
|
|
13052
13115
|
onBlur(event: Event): void;
|
|
13053
13116
|
onUpdate(event: Event): void;
|
|
13054
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13117
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur" | "update")[], "update:modelValue" | "change" | "blur" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
13055
13118
|
id: {
|
|
13056
13119
|
type: StringConstructor;
|
|
13057
13120
|
required: false;
|
|
13058
13121
|
default: () => string;
|
|
13059
13122
|
};
|
|
13060
13123
|
modelValue: {
|
|
13061
|
-
type: StringConstructor;
|
|
13124
|
+
type: (StringConstructor | null)[];
|
|
13062
13125
|
required: false;
|
|
13063
13126
|
default: string;
|
|
13064
13127
|
};
|
|
@@ -13078,7 +13141,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13078
13141
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
13079
13142
|
}>, {
|
|
13080
13143
|
id: string;
|
|
13081
|
-
modelValue: string;
|
|
13144
|
+
modelValue: string | null;
|
|
13082
13145
|
maxLength: number;
|
|
13083
13146
|
clearableScreenReaderText: string;
|
|
13084
13147
|
}, {}, {
|
|
@@ -13094,7 +13157,7 @@ required: false;
|
|
|
13094
13157
|
default: boolean;
|
|
13095
13158
|
};
|
|
13096
13159
|
modelValue: {
|
|
13097
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
13160
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
13098
13161
|
required: false;
|
|
13099
13162
|
default: string;
|
|
13100
13163
|
};
|
|
@@ -13180,7 +13243,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
13180
13243
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
13181
13244
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
13182
13245
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
13183
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13246
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
13184
13247
|
id: {
|
|
13185
13248
|
type: StringConstructor;
|
|
13186
13249
|
required: false;
|
|
@@ -13192,7 +13255,7 @@ required: false;
|
|
|
13192
13255
|
default: boolean;
|
|
13193
13256
|
};
|
|
13194
13257
|
modelValue: {
|
|
13195
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
13258
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
13196
13259
|
required: false;
|
|
13197
13260
|
default: string;
|
|
13198
13261
|
};
|
|
@@ -13238,7 +13301,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13238
13301
|
}>, {
|
|
13239
13302
|
type: string;
|
|
13240
13303
|
id: string;
|
|
13241
|
-
modelValue: string | number;
|
|
13304
|
+
modelValue: string | number | null;
|
|
13242
13305
|
inline: boolean;
|
|
13243
13306
|
disabled: boolean;
|
|
13244
13307
|
options: string[] | undefined;
|
|
@@ -13489,8 +13552,8 @@ activeOption: string | null;
|
|
|
13489
13552
|
activeOptionId: string;
|
|
13490
13553
|
inputNode: HTMLInputElement;
|
|
13491
13554
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13492
|
-
close: () => any;
|
|
13493
13555
|
select: (option: string) => any;
|
|
13556
|
+
close: () => any;
|
|
13494
13557
|
}, string, PublicProps, Readonly<{
|
|
13495
13558
|
id: string;
|
|
13496
13559
|
isOpen: boolean;
|
|
@@ -13499,8 +13562,8 @@ activeOption: string | null;
|
|
|
13499
13562
|
activeOptionId: string;
|
|
13500
13563
|
inputNode: HTMLInputElement;
|
|
13501
13564
|
}> & Readonly<{
|
|
13502
|
-
onClose?: (() => any) | undefined;
|
|
13503
13565
|
onSelect?: ((option: string) => any) | undefined;
|
|
13566
|
+
onClose?: (() => any) | undefined;
|
|
13504
13567
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
13505
13568
|
listbox: HTMLUListElement;
|
|
13506
13569
|
}, HTMLDivElement>;
|
|
@@ -13637,7 +13700,7 @@ set(value: unknown): void;
|
|
|
13637
13700
|
};
|
|
13638
13701
|
}, {
|
|
13639
13702
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
13640
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13703
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
13641
13704
|
/**
|
|
13642
13705
|
* The id for the select id attribute.
|
|
13643
13706
|
* The id for the label for attribute.
|
|
@@ -14502,11 +14565,12 @@ default: boolean;
|
|
|
14502
14565
|
};
|
|
14503
14566
|
/**
|
|
14504
14567
|
* The value for the input.
|
|
14505
|
-
* If the prop is not
|
|
14568
|
+
* If the prop is not used or set to undefined
|
|
14569
|
+
* or null then the default value will be used.
|
|
14506
14570
|
* @model
|
|
14507
14571
|
*/
|
|
14508
14572
|
modelValue: {
|
|
14509
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
14573
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
14510
14574
|
required: false;
|
|
14511
14575
|
default: string;
|
|
14512
14576
|
};
|
|
@@ -14641,7 +14705,7 @@ resolveNewModelValue(viewValue: string): unknown;
|
|
|
14641
14705
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
14642
14706
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
14643
14707
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
14644
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
14708
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
|
|
14645
14709
|
/**
|
|
14646
14710
|
* The id for the input id attribute.
|
|
14647
14711
|
* The id for the label for attribute.
|
|
@@ -14662,11 +14726,12 @@ default: boolean;
|
|
|
14662
14726
|
};
|
|
14663
14727
|
/**
|
|
14664
14728
|
* The value for the input.
|
|
14665
|
-
* If the prop is not
|
|
14729
|
+
* If the prop is not used or set to undefined
|
|
14730
|
+
* or null then the default value will be used.
|
|
14666
14731
|
* @model
|
|
14667
14732
|
*/
|
|
14668
14733
|
modelValue: {
|
|
14669
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
14734
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
14670
14735
|
required: false;
|
|
14671
14736
|
default: string;
|
|
14672
14737
|
};
|
|
@@ -14761,7 +14826,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
14761
14826
|
}>, {
|
|
14762
14827
|
type: string;
|
|
14763
14828
|
id: string;
|
|
14764
|
-
modelValue: string | number;
|
|
14829
|
+
modelValue: string | number | null;
|
|
14765
14830
|
inline: boolean;
|
|
14766
14831
|
disabled: boolean;
|
|
14767
14832
|
options: string[] | undefined;
|
|
@@ -15012,8 +15077,8 @@ activeOption: string | null;
|
|
|
15012
15077
|
activeOptionId: string;
|
|
15013
15078
|
inputNode: HTMLInputElement;
|
|
15014
15079
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15015
|
-
close: () => any;
|
|
15016
15080
|
select: (option: string) => any;
|
|
15081
|
+
close: () => any;
|
|
15017
15082
|
}, string, PublicProps, Readonly<{
|
|
15018
15083
|
id: string;
|
|
15019
15084
|
isOpen: boolean;
|
|
@@ -15022,8 +15087,8 @@ activeOption: string | null;
|
|
|
15022
15087
|
activeOptionId: string;
|
|
15023
15088
|
inputNode: HTMLInputElement;
|
|
15024
15089
|
}> & Readonly<{
|
|
15025
|
-
onClose?: (() => any) | undefined;
|
|
15026
15090
|
onSelect?: ((option: string) => any) | undefined;
|
|
15091
|
+
onClose?: (() => any) | undefined;
|
|
15027
15092
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
15028
15093
|
listbox: HTMLUListElement;
|
|
15029
15094
|
}, HTMLDivElement>;
|
|
@@ -15100,7 +15165,7 @@ isOpen: boolean;
|
|
|
15100
15165
|
hasHeader(): boolean;
|
|
15101
15166
|
}, {
|
|
15102
15167
|
/* Excluded from this release type: onClickToggle */
|
|
15103
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
15168
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "toggle")[], "update:modelValue" | "toggle", PublicProps, Readonly<ExtractPropTypes< {
|
|
15104
15169
|
/**
|
|
15105
15170
|
* Element to attach tooltip toggle button.
|
|
15106
15171
|
*
|
|
@@ -16444,7 +16509,7 @@ onClickDay(date: FDate): void;
|
|
|
16444
16509
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
16445
16510
|
isDayFocused(date: FDate): boolean;
|
|
16446
16511
|
getTabindex(date: FDate): 0 | -1;
|
|
16447
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
16512
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "click")[], "update:modelValue" | "change" | "click", PublicProps, Readonly<ExtractPropTypes< {
|
|
16448
16513
|
/**
|
|
16449
16514
|
* Active month.
|
|
16450
16515
|
* @model
|
|
@@ -16623,7 +16688,7 @@ onClickPreviousButton(): void;
|
|
|
16623
16688
|
onClickNextButton(): void;
|
|
16624
16689
|
getDateText(value: FDate): string;
|
|
16625
16690
|
isFocused(ref: string): boolean;
|
|
16626
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
16691
|
+
}, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
16627
16692
|
/**
|
|
16628
16693
|
* Focused month.
|
|
16629
16694
|
*/
|
|
@@ -16705,12 +16770,12 @@ rotate: string;
|
|
|
16705
16770
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16706
16771
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16707
16772
|
|
|
16708
|
-
export declare const IComboboxDropdown: DefineComponent<
|
|
16709
|
-
close: () => any;
|
|
16773
|
+
export declare const IComboboxDropdown: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16710
16774
|
select: (option: string) => any;
|
|
16711
|
-
|
|
16712
|
-
|
|
16775
|
+
close: () => any;
|
|
16776
|
+
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
16713
16777
|
onSelect?: ((option: string) => any) | undefined;
|
|
16778
|
+
onClose?: (() => any) | undefined;
|
|
16714
16779
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
16715
16780
|
listbox: HTMLUListElement;
|
|
16716
16781
|
}, HTMLDivElement>;
|
|
@@ -17203,7 +17268,7 @@ export declare interface IPopupErrorData {
|
|
|
17203
17268
|
arrowOffset: number;
|
|
17204
17269
|
}
|
|
17205
17270
|
|
|
17206
|
-
export declare const IPopupListbox:
|
|
17271
|
+
export declare const IPopupListbox: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
17207
17272
|
|
|
17208
17273
|
declare interface IPopupListboxProps {
|
|
17209
17274
|
isOpen: boolean;
|
|
@@ -17297,7 +17362,7 @@ activateItem(index: number): Promise<void>;
|
|
|
17297
17362
|
setFocusedItemIndex(index: number): void;
|
|
17298
17363
|
onKeyUp(event: KeyboardEvent): void;
|
|
17299
17364
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
17300
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
17365
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "close" | "update:modelValue" | "update:focusedItem")[], "select" | "close" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
|
|
17301
17366
|
/**
|
|
17302
17367
|
* Key of the currently selected and highlighted item.
|
|
17303
17368
|
*
|
|
@@ -17957,7 +18022,7 @@ export declare const TestPlugin: Plugin_2;
|
|
|
17957
18022
|
export declare interface TextFieldSetupProps {
|
|
17958
18023
|
id: string;
|
|
17959
18024
|
inline: boolean;
|
|
17960
|
-
modelValue: string | number;
|
|
18025
|
+
modelValue: string | number | null;
|
|
17961
18026
|
type: string;
|
|
17962
18027
|
formatter?: FormatFunction<unknown>;
|
|
17963
18028
|
parser?: ParseFunction<unknown>;
|