@fkui/vue 5.38.0 → 5.40.0
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/index.cjs.js +14784 -395
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/cjs/pageobject.js +117 -40
- package/dist/cjs/pageobject.js.map +3 -3
- package/dist/esm/index.esm.js +14784 -395
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +367 -657
- package/dist/types/pageobject.d.ts +70 -18
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/elements/components.js +16 -1
- package/htmlvalidate/elements/internal-components.js +2 -11
- package/package.json +6 -36
package/dist/types/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import { FocusOptions as FocusOptions_2 } from '@fkui/logic';
|
|
|
16
16
|
import { formatNumber } from '@fkui/logic';
|
|
17
17
|
import { formatPersonnummer } from '@fkui/logic';
|
|
18
18
|
import { formatPostalCode } from '@fkui/logic';
|
|
19
|
+
import { InjectionKey } from 'vue';
|
|
19
20
|
import { OrganisationsnummerString } from '@fkui/logic';
|
|
20
21
|
import { parseBankAccountNumber } from '@fkui/logic';
|
|
21
22
|
import { parseBankgiro } from '@fkui/logic';
|
|
@@ -46,6 +47,83 @@ import { ValidatorConfigs } from '@fkui/logic';
|
|
|
46
47
|
import { ValidityEvent } from '@fkui/logic';
|
|
47
48
|
import { WeekdayNaming } from '@fkui/date';
|
|
48
49
|
|
|
50
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes< {
|
|
51
|
+
/**
|
|
52
|
+
* The status of the badge, can be either 'default', 'warning', 'error', 'success' or 'info'.
|
|
53
|
+
*/
|
|
54
|
+
status: {
|
|
55
|
+
type: PropType<"default" | "warning" | "error" | "success" | "info">;
|
|
56
|
+
default: string;
|
|
57
|
+
validator(value: string): boolean;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* If badge should be inverted.
|
|
61
|
+
*/
|
|
62
|
+
inverted: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
67
|
+
/**
|
|
68
|
+
* The status of the badge, can be either 'default', 'warning', 'error', 'success' or 'info'.
|
|
69
|
+
*/
|
|
70
|
+
status: {
|
|
71
|
+
type: PropType<"default" | "warning" | "error" | "success" | "info">;
|
|
72
|
+
default: string;
|
|
73
|
+
validator(value: string): boolean;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* If badge should be inverted.
|
|
77
|
+
*/
|
|
78
|
+
inverted: {
|
|
79
|
+
type: BooleanConstructor;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
}>> & Readonly<{}>, {
|
|
83
|
+
status: "default" | "warning" | "error" | "success" | "info";
|
|
84
|
+
inverted: boolean;
|
|
85
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
86
|
+
|
|
87
|
+
declare const __VLS_component_2: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
88
|
+
|
|
89
|
+
declare function __VLS_template(): {
|
|
90
|
+
attrs: Partial<{}>;
|
|
91
|
+
slots: {
|
|
92
|
+
default?(_: {}): any;
|
|
93
|
+
};
|
|
94
|
+
refs: {};
|
|
95
|
+
rootEl: HTMLDivElement;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
declare function __VLS_template_2(): {
|
|
99
|
+
attrs: Partial<{}>;
|
|
100
|
+
slots: {
|
|
101
|
+
header?(_: {
|
|
102
|
+
headingSlotClass: string;
|
|
103
|
+
}): any;
|
|
104
|
+
default?(_: {}): any;
|
|
105
|
+
footer?(_: {}): any;
|
|
106
|
+
};
|
|
107
|
+
refs: {};
|
|
108
|
+
rootEl: HTMLDivElement;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
112
|
+
|
|
113
|
+
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
114
|
+
|
|
115
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
116
|
+
new (): {
|
|
117
|
+
$slots: S;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
122
|
+
new (): {
|
|
123
|
+
$slots: S;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
|
|
49
127
|
/* Excluded from this release type: actionFromKeyboardEvent */
|
|
50
128
|
|
|
51
129
|
/**
|
|
@@ -597,7 +675,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
597
675
|
enter(element: Element): void;
|
|
598
676
|
afterEnter(element: Element): void;
|
|
599
677
|
leave(element: Element): void;
|
|
600
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
678
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
601
679
|
/**
|
|
602
680
|
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
603
681
|
*/
|
|
@@ -707,7 +785,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
|
707
785
|
enter(element: Element): void;
|
|
708
786
|
afterEnter(element: Element): void;
|
|
709
787
|
leave(element: Element): void;
|
|
710
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
788
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
711
789
|
/**
|
|
712
790
|
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
713
791
|
*/
|
|
@@ -890,48 +968,7 @@ export declare interface ExpandableTable {
|
|
|
890
968
|
hasExpandableContent(row: ListItem): boolean;
|
|
891
969
|
}
|
|
892
970
|
|
|
893
|
-
export declare const FBadge:
|
|
894
|
-
/**
|
|
895
|
-
* The status of the badge, can be either 'default', 'warning', 'error', 'success' or 'info'.
|
|
896
|
-
*
|
|
897
|
-
*/
|
|
898
|
-
status: {
|
|
899
|
-
type: StringConstructor;
|
|
900
|
-
default: string;
|
|
901
|
-
validator: (value: string) => boolean;
|
|
902
|
-
};
|
|
903
|
-
/**
|
|
904
|
-
* If badge should be inverted.
|
|
905
|
-
*
|
|
906
|
-
*/
|
|
907
|
-
inverted: {
|
|
908
|
-
type: BooleanConstructor;
|
|
909
|
-
default: boolean;
|
|
910
|
-
};
|
|
911
|
-
}>, {}, {}, {
|
|
912
|
-
badgeClass(): string;
|
|
913
|
-
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
914
|
-
/**
|
|
915
|
-
* The status of the badge, can be either 'default', 'warning', 'error', 'success' or 'info'.
|
|
916
|
-
*
|
|
917
|
-
*/
|
|
918
|
-
status: {
|
|
919
|
-
type: StringConstructor;
|
|
920
|
-
default: string;
|
|
921
|
-
validator: (value: string) => boolean;
|
|
922
|
-
};
|
|
923
|
-
/**
|
|
924
|
-
* If badge should be inverted.
|
|
925
|
-
*
|
|
926
|
-
*/
|
|
927
|
-
inverted: {
|
|
928
|
-
type: BooleanConstructor;
|
|
929
|
-
default: boolean;
|
|
930
|
-
};
|
|
931
|
-
}>> & Readonly<{}>, {
|
|
932
|
-
status: string;
|
|
933
|
-
inverted: boolean;
|
|
934
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
971
|
+
export declare const FBadge: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
935
972
|
|
|
936
973
|
export declare const FBankAccountNumberTextField: DefineComponent<ExtractPropTypes< {
|
|
937
974
|
parser: {
|
|
@@ -992,6 +1029,7 @@ viewValue: string;
|
|
|
992
1029
|
lastModelValue: unknown;
|
|
993
1030
|
validationMessage: string;
|
|
994
1031
|
validityMode: string;
|
|
1032
|
+
isAfterInitialRender: boolean;
|
|
995
1033
|
defaultText: string;
|
|
996
1034
|
descriptionText: string;
|
|
997
1035
|
descriptionScreenReaderText: string;
|
|
@@ -1014,11 +1052,12 @@ onFocus(): void;
|
|
|
1014
1052
|
onBlur(): Promise<void>;
|
|
1015
1053
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
1016
1054
|
onPendingValidity(): void;
|
|
1055
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
1017
1056
|
resolveNewModelValue(viewValue: string): unknown;
|
|
1018
1057
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
1019
1058
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
1020
1059
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
1021
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
1060
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
1022
1061
|
id: {
|
|
1023
1062
|
type: StringConstructor;
|
|
1024
1063
|
required: false;
|
|
@@ -1080,7 +1119,7 @@ type: PropType<string | undefined>;
|
|
|
1080
1119
|
required: false;
|
|
1081
1120
|
default: undefined;
|
|
1082
1121
|
};
|
|
1083
|
-
}>,
|
|
1122
|
+
}>, void, {
|
|
1084
1123
|
descriptionClass: string[];
|
|
1085
1124
|
discreteDescriptionClass: string[];
|
|
1086
1125
|
}, {
|
|
@@ -1376,6 +1415,7 @@ viewValue: string;
|
|
|
1376
1415
|
lastModelValue: unknown;
|
|
1377
1416
|
validationMessage: string;
|
|
1378
1417
|
validityMode: string;
|
|
1418
|
+
isAfterInitialRender: boolean;
|
|
1379
1419
|
defaultText: string;
|
|
1380
1420
|
descriptionText: string;
|
|
1381
1421
|
descriptionScreenReaderText: string;
|
|
@@ -1398,11 +1438,12 @@ onFocus(): void;
|
|
|
1398
1438
|
onBlur(): Promise<void>;
|
|
1399
1439
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
1400
1440
|
onPendingValidity(): void;
|
|
1441
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
1401
1442
|
resolveNewModelValue(viewValue: string): unknown;
|
|
1402
1443
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
1403
1444
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
1404
1445
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
1405
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
1446
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
1406
1447
|
id: {
|
|
1407
1448
|
type: StringConstructor;
|
|
1408
1449
|
required: false;
|
|
@@ -1464,7 +1505,7 @@ type: PropType<string | undefined>;
|
|
|
1464
1505
|
required: false;
|
|
1465
1506
|
default: undefined;
|
|
1466
1507
|
};
|
|
1467
|
-
}>,
|
|
1508
|
+
}>, void, {
|
|
1468
1509
|
descriptionClass: string[];
|
|
1469
1510
|
discreteDescriptionClass: string[];
|
|
1470
1511
|
}, {
|
|
@@ -1738,7 +1779,7 @@ required: true;
|
|
|
1738
1779
|
}>, {}, {}, {}, {
|
|
1739
1780
|
onClickDay(date: FDate): void;
|
|
1740
1781
|
onChangeMonth(date: FDate): void;
|
|
1741
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
1782
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1742
1783
|
/**
|
|
1743
1784
|
* Active month.
|
|
1744
1785
|
* @model
|
|
@@ -1807,7 +1848,7 @@ onClickPreviousButton(): void;
|
|
|
1807
1848
|
onClickNextButton(): void;
|
|
1808
1849
|
getDateText(value: FDate): string;
|
|
1809
1850
|
isFocused(ref: string): boolean;
|
|
1810
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
1851
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1811
1852
|
modelValue: {
|
|
1812
1853
|
type: PropType<FDate>;
|
|
1813
1854
|
required: true;
|
|
@@ -1902,7 +1943,7 @@ onClickDay(date: FDate): void;
|
|
|
1902
1943
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
1903
1944
|
isDayFocused(date: FDate): boolean;
|
|
1904
1945
|
getTabindex(date: FDate): 0 | -1;
|
|
1905
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
1946
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1906
1947
|
modelValue: {
|
|
1907
1948
|
type: PropType<FDate>;
|
|
1908
1949
|
required: true;
|
|
@@ -1953,8 +1994,8 @@ days: FDate[];
|
|
|
1953
1994
|
onResize(): void;
|
|
1954
1995
|
onFocusin(): void;
|
|
1955
1996
|
onFocusout(e: FocusEvent): void;
|
|
1956
|
-
getDayStartOffset:
|
|
1957
|
-
getDayEndOffset:
|
|
1997
|
+
getDayStartOffset(days: FDate[]): number;
|
|
1998
|
+
getDayEndOffset(days: FDate[]): number;
|
|
1958
1999
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1959
2000
|
value: {
|
|
1960
2001
|
type: PropType<FDate>;
|
|
@@ -2061,15 +2102,7 @@ selected: boolean;
|
|
|
2061
2102
|
highlight: boolean;
|
|
2062
2103
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2063
2104
|
|
|
2064
|
-
|
|
2065
|
-
* Level: Beta
|
|
2066
|
-
*/
|
|
2067
|
-
export declare const FCard: DefineComponent< {}, {}, {
|
|
2068
|
-
headingClass: string[];
|
|
2069
|
-
}, {
|
|
2070
|
-
hasHeaderSlot(): boolean;
|
|
2071
|
-
hasFooterSlot(): boolean;
|
|
2072
|
-
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2105
|
+
export declare const FCard: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
2073
2106
|
|
|
2074
2107
|
/**
|
|
2075
2108
|
* @deprecated `<f-checkbox-group>` is deprecated.
|
|
@@ -2222,8 +2255,8 @@ default: string;
|
|
|
2222
2255
|
validator(value: string): boolean;
|
|
2223
2256
|
};
|
|
2224
2257
|
}>> & Readonly<{}>, {
|
|
2225
|
-
name: string;
|
|
2226
2258
|
horizontal: boolean;
|
|
2259
|
+
name: string;
|
|
2227
2260
|
id: string;
|
|
2228
2261
|
labelClass: string;
|
|
2229
2262
|
contentClass: string;
|
|
@@ -2347,6 +2380,7 @@ viewValue: string;
|
|
|
2347
2380
|
lastModelValue: unknown;
|
|
2348
2381
|
validationMessage: string;
|
|
2349
2382
|
validityMode: string;
|
|
2383
|
+
isAfterInitialRender: boolean;
|
|
2350
2384
|
defaultText: string;
|
|
2351
2385
|
descriptionText: string;
|
|
2352
2386
|
descriptionScreenReaderText: string;
|
|
@@ -2369,11 +2403,12 @@ onFocus(): void;
|
|
|
2369
2403
|
onBlur(): Promise<void>;
|
|
2370
2404
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
2371
2405
|
onPendingValidity(): void;
|
|
2406
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
2372
2407
|
resolveNewModelValue(viewValue: string): unknown;
|
|
2373
2408
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
2374
2409
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
2375
2410
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
2376
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
2411
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
2377
2412
|
id: {
|
|
2378
2413
|
type: StringConstructor;
|
|
2379
2414
|
required: false;
|
|
@@ -2435,7 +2470,7 @@ type: PropType<string | undefined>;
|
|
|
2435
2470
|
required: false;
|
|
2436
2471
|
default: undefined;
|
|
2437
2472
|
};
|
|
2438
|
-
}>,
|
|
2473
|
+
}>, void, {
|
|
2439
2474
|
descriptionClass: string[];
|
|
2440
2475
|
discreteDescriptionClass: string[];
|
|
2441
2476
|
}, {
|
|
@@ -2995,7 +3030,7 @@ doHandlePopupMenuTabKey(action: MenuAction): boolean;
|
|
|
2995
3030
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
2996
3031
|
setFocusOnItem(index: number): Promise<void>;
|
|
2997
3032
|
activateItem(index: number): Promise<void>;
|
|
2998
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
3033
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select")[], "close" | "select", PublicProps, Readonly<ExtractPropTypes< {
|
|
2999
3034
|
/**
|
|
3000
3035
|
* Toggle open/closed popup.
|
|
3001
3036
|
*/
|
|
@@ -3404,7 +3439,7 @@ reason: string;
|
|
|
3404
3439
|
onModalClose(): void;
|
|
3405
3440
|
onFormModalSubmit(): void;
|
|
3406
3441
|
updateItem(item: ListItem): void;
|
|
3407
|
-
}, ComponentOptions, ComponentOptionsMixin, ("created" | "updated" | "update:modelValue" | "
|
|
3442
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "created" | "updated" | "update:modelValue" | "deleted")[], "change" | "created" | "updated" | "update:modelValue" | "deleted", PublicProps, Readonly<ExtractPropTypes< {
|
|
3408
3443
|
/**
|
|
3409
3444
|
* The list of items that should be deleted, modified or added to.
|
|
3410
3445
|
* If the prop is not set an empty array will be used.
|
|
@@ -3560,7 +3595,7 @@ hasDeprecatedSlots(): boolean;
|
|
|
3560
3595
|
onClose(): void;
|
|
3561
3596
|
onSubmit(): Promise<void>;
|
|
3562
3597
|
onCancel(): void;
|
|
3563
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
3598
|
+
}, ComponentOptions, ComponentOptionsMixin, ("cancel" | "close" | "submit")[], "cancel" | "close" | "submit", PublicProps, Readonly<ExtractPropTypes< {
|
|
3564
3599
|
fullscreen: {
|
|
3565
3600
|
type: BooleanConstructor;
|
|
3566
3601
|
required: false;
|
|
@@ -4434,6 +4469,7 @@ viewValue: string;
|
|
|
4434
4469
|
lastModelValue: unknown;
|
|
4435
4470
|
validationMessage: string;
|
|
4436
4471
|
validityMode: string;
|
|
4472
|
+
isAfterInitialRender: boolean;
|
|
4437
4473
|
defaultText: string;
|
|
4438
4474
|
descriptionText: string;
|
|
4439
4475
|
descriptionScreenReaderText: string;
|
|
@@ -4456,11 +4492,12 @@ onFocus(): void;
|
|
|
4456
4492
|
onBlur(): Promise<void>;
|
|
4457
4493
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
4458
4494
|
onPendingValidity(): void;
|
|
4495
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
4459
4496
|
resolveNewModelValue(viewValue: string): unknown;
|
|
4460
4497
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
4461
4498
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
4462
4499
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
4463
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
4500
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
4464
4501
|
id: {
|
|
4465
4502
|
type: StringConstructor;
|
|
4466
4503
|
required: false;
|
|
@@ -4522,7 +4559,7 @@ type: PropType<string | undefined>;
|
|
|
4522
4559
|
required: false;
|
|
4523
4560
|
default: undefined;
|
|
4524
4561
|
};
|
|
4525
|
-
}>,
|
|
4562
|
+
}>, void, {
|
|
4526
4563
|
descriptionClass: string[];
|
|
4527
4564
|
discreteDescriptionClass: string[];
|
|
4528
4565
|
}, {
|
|
@@ -5016,7 +5053,7 @@ isDateEnabled(day: FDate): boolean;
|
|
|
5016
5053
|
isDaySelected(date: FDate): boolean;
|
|
5017
5054
|
highlightDay(date: FDate): boolean;
|
|
5018
5055
|
updateTextFieldValue(newValue: string): Promise<void>;
|
|
5019
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
5056
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5020
5057
|
/** Selected day.
|
|
5021
5058
|
* @model
|
|
5022
5059
|
*/
|
|
@@ -5114,7 +5151,7 @@ required: true;
|
|
|
5114
5151
|
}>, {}, {}, {}, {
|
|
5115
5152
|
onClickDay(date: FDate): void;
|
|
5116
5153
|
onChangeMonth(date: FDate): void;
|
|
5117
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
5154
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5118
5155
|
modelValue: {
|
|
5119
5156
|
type: PropType<FDate>;
|
|
5120
5157
|
required: true;
|
|
@@ -5167,7 +5204,7 @@ onClickPreviousButton(): void;
|
|
|
5167
5204
|
onClickNextButton(): void;
|
|
5168
5205
|
getDateText(value: FDate): string;
|
|
5169
5206
|
isFocused(ref: string): boolean;
|
|
5170
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
5207
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5171
5208
|
modelValue: {
|
|
5172
5209
|
type: PropType<FDate>;
|
|
5173
5210
|
required: true;
|
|
@@ -5262,7 +5299,7 @@ onClickDay(date: FDate): void;
|
|
|
5262
5299
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
5263
5300
|
isDayFocused(date: FDate): boolean;
|
|
5264
5301
|
getTabindex(date: FDate): 0 | -1;
|
|
5265
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
5302
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5266
5303
|
modelValue: {
|
|
5267
5304
|
type: PropType<FDate>;
|
|
5268
5305
|
required: true;
|
|
@@ -5313,8 +5350,8 @@ days: FDate[];
|
|
|
5313
5350
|
onResize(): void;
|
|
5314
5351
|
onFocusin(): void;
|
|
5315
5352
|
onFocusout(e: FocusEvent): void;
|
|
5316
|
-
getDayStartOffset:
|
|
5317
|
-
getDayEndOffset:
|
|
5353
|
+
getDayStartOffset(days: FDate[]): number;
|
|
5354
|
+
getDayEndOffset(days: FDate[]): number;
|
|
5318
5355
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
5319
5356
|
value: {
|
|
5320
5357
|
type: PropType<FDate>;
|
|
@@ -5498,6 +5535,7 @@ viewValue: string;
|
|
|
5498
5535
|
lastModelValue: unknown;
|
|
5499
5536
|
validationMessage: string;
|
|
5500
5537
|
validityMode: string;
|
|
5538
|
+
isAfterInitialRender: boolean;
|
|
5501
5539
|
defaultText: string;
|
|
5502
5540
|
descriptionText: string;
|
|
5503
5541
|
descriptionScreenReaderText: string;
|
|
@@ -5520,11 +5558,12 @@ onFocus(): void;
|
|
|
5520
5558
|
onBlur(): Promise<void>;
|
|
5521
5559
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
5522
5560
|
onPendingValidity(): void;
|
|
5561
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
5523
5562
|
resolveNewModelValue(viewValue: string): unknown;
|
|
5524
5563
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
5525
5564
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
5526
5565
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
5527
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
5566
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
5528
5567
|
id: {
|
|
5529
5568
|
type: StringConstructor;
|
|
5530
5569
|
required: false;
|
|
@@ -5586,7 +5625,7 @@ type: PropType<string | undefined>;
|
|
|
5586
5625
|
required: false;
|
|
5587
5626
|
default: undefined;
|
|
5588
5627
|
};
|
|
5589
|
-
}>,
|
|
5628
|
+
}>, void, {
|
|
5590
5629
|
descriptionClass: string[];
|
|
5591
5630
|
discreteDescriptionClass: string[];
|
|
5592
5631
|
}, {
|
|
@@ -5951,7 +5990,7 @@ options(): FDialogueTreeOption[];
|
|
|
5951
5990
|
}, {
|
|
5952
5991
|
onClickedOption(option: FDialogueTreeOption, index: number): Promise<void>;
|
|
5953
5992
|
emitChange(lastStep: boolean): void;
|
|
5954
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
5993
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5955
5994
|
/**
|
|
5956
5995
|
* Current dialogue question
|
|
5957
5996
|
* @model
|
|
@@ -6128,7 +6167,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
6128
6167
|
onPendingValidity(): void;
|
|
6129
6168
|
configureValidators(): void;
|
|
6130
6169
|
configureExtendedValidation(elements: HTMLInputElement[]): void;
|
|
6131
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
6170
|
+
}, ComponentOptions, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
6132
6171
|
/**
|
|
6133
6172
|
* The id for the input id attribute.
|
|
6134
6173
|
* The id for the label for attribute.
|
|
@@ -6227,6 +6266,7 @@ viewValue: string;
|
|
|
6227
6266
|
lastModelValue: unknown;
|
|
6228
6267
|
validationMessage: string;
|
|
6229
6268
|
validityMode: string;
|
|
6269
|
+
isAfterInitialRender: boolean;
|
|
6230
6270
|
defaultText: string;
|
|
6231
6271
|
descriptionText: string;
|
|
6232
6272
|
descriptionScreenReaderText: string;
|
|
@@ -6249,11 +6289,12 @@ onFocus(): void;
|
|
|
6249
6289
|
onBlur(): Promise<void>;
|
|
6250
6290
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
6251
6291
|
onPendingValidity(): void;
|
|
6292
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
6252
6293
|
resolveNewModelValue(viewValue: string): unknown;
|
|
6253
6294
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
6254
6295
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
6255
6296
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
6256
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
6297
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
6257
6298
|
id: {
|
|
6258
6299
|
type: StringConstructor;
|
|
6259
6300
|
required: false;
|
|
@@ -6315,7 +6356,7 @@ type: PropType<string | undefined>;
|
|
|
6315
6356
|
required: false;
|
|
6316
6357
|
default: undefined;
|
|
6317
6358
|
};
|
|
6318
|
-
}>,
|
|
6359
|
+
}>, void, {
|
|
6319
6360
|
descriptionClass: string[];
|
|
6320
6361
|
discreteDescriptionClass: string[];
|
|
6321
6362
|
}, {
|
|
@@ -7373,8 +7414,8 @@ default: string;
|
|
|
7373
7414
|
validator(value: string): boolean;
|
|
7374
7415
|
};
|
|
7375
7416
|
}>> & Readonly<{}>, {
|
|
7376
|
-
name: string;
|
|
7377
7417
|
horizontal: boolean;
|
|
7418
|
+
name: string;
|
|
7378
7419
|
id: string;
|
|
7379
7420
|
labelClass: string;
|
|
7380
7421
|
contentClass: string;
|
|
@@ -8249,7 +8290,7 @@ hasDeprecatedSlots(): boolean;
|
|
|
8249
8290
|
onClose(): void;
|
|
8250
8291
|
onSubmit(): Promise<void>;
|
|
8251
8292
|
onCancel(): void;
|
|
8252
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
8293
|
+
}, ComponentOptions, ComponentOptionsMixin, ("cancel" | "close" | "submit")[], "cancel" | "close" | "submit", PublicProps, Readonly<ExtractPropTypes< {
|
|
8253
8294
|
/**
|
|
8254
8295
|
* Enable fullscreen mode in mobile.
|
|
8255
8296
|
*/
|
|
@@ -9508,7 +9549,7 @@ callbackSortableColumns(columnNames: string[]): void;
|
|
|
9508
9549
|
callbackAfterItemAdd(item: ListItem): void;
|
|
9509
9550
|
callbackBeforeItemDelete(item: ListItem): void;
|
|
9510
9551
|
escapeNewlines(value: string): string;
|
|
9511
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
9552
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect")[], "change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect", PublicProps, Readonly<ExtractPropTypes< {
|
|
9512
9553
|
/**
|
|
9513
9554
|
* The rows to be listed.
|
|
9514
9555
|
* The rows will be listed in the given array order.
|
|
@@ -9594,8 +9635,8 @@ onUnselect?: ((...args: any[]) => any) | undefined;
|
|
|
9594
9635
|
onCollapse?: ((...args: any[]) => any) | undefined;
|
|
9595
9636
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
9596
9637
|
}>, {
|
|
9597
|
-
modelValue: ListArray | undefined;
|
|
9598
9638
|
scroll: TableScroll;
|
|
9639
|
+
modelValue: ListArray | undefined;
|
|
9599
9640
|
striped: boolean;
|
|
9600
9641
|
selectable: boolean;
|
|
9601
9642
|
hover: boolean;
|
|
@@ -9657,7 +9698,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
9657
9698
|
enter(element: Element): void;
|
|
9658
9699
|
afterEnter(element: Element): void;
|
|
9659
9700
|
leave(element: Element): void;
|
|
9660
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
9701
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
9661
9702
|
disabled: {
|
|
9662
9703
|
type: BooleanConstructor;
|
|
9663
9704
|
required: false;
|
|
@@ -9792,7 +9833,7 @@ type: PropType<string | undefined>;
|
|
|
9792
9833
|
required: false;
|
|
9793
9834
|
default: undefined;
|
|
9794
9835
|
};
|
|
9795
|
-
}>,
|
|
9836
|
+
}>, void, {
|
|
9796
9837
|
descriptionClass: string[];
|
|
9797
9838
|
discreteDescriptionClass: string[];
|
|
9798
9839
|
}, {
|
|
@@ -10185,7 +10226,7 @@ onItemBlur(event: FocusEvent): void;
|
|
|
10185
10226
|
callbackAfterItemAdd(item: ListItem): void;
|
|
10186
10227
|
callbackBeforeItemDelete(item: ListItem): void;
|
|
10187
10228
|
isActive(item: ListItem): boolean;
|
|
10188
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
10229
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "select" | "update:modelValue" | "update" | "unselect" | "update:active")[], "change" | "click" | "select" | "update:modelValue" | "update" | "unselect" | "update:active", PublicProps, Readonly<ExtractPropTypes< {
|
|
10189
10230
|
/**
|
|
10190
10231
|
* The items to be listed.
|
|
10191
10232
|
* The items will be listed in the given array order.
|
|
@@ -10313,7 +10354,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
10313
10354
|
enter(element: Element): void;
|
|
10314
10355
|
afterEnter(element: Element): void;
|
|
10315
10356
|
leave(element: Element): void;
|
|
10316
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
10357
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
10317
10358
|
disabled: {
|
|
10318
10359
|
type: BooleanConstructor;
|
|
10319
10360
|
required: false;
|
|
@@ -10383,6 +10424,18 @@ type: StringConstructor;
|
|
|
10383
10424
|
required: false;
|
|
10384
10425
|
default: string;
|
|
10385
10426
|
};
|
|
10427
|
+
/**
|
|
10428
|
+
* Set teleport target (when overlay is enabled).
|
|
10429
|
+
*
|
|
10430
|
+
* - When set to a string it is used as a selector.
|
|
10431
|
+
* - When set to a element it is used directly.
|
|
10432
|
+
* - Default uses {@link config#teleportTarget}.
|
|
10433
|
+
*/
|
|
10434
|
+
teleport: {
|
|
10435
|
+
type: PropType<string | HTMLElement | undefined>;
|
|
10436
|
+
required: false;
|
|
10437
|
+
default: undefined;
|
|
10438
|
+
};
|
|
10386
10439
|
}>, {}, {
|
|
10387
10440
|
oldFocus: HTMLElement;
|
|
10388
10441
|
}, {
|
|
@@ -10428,7 +10481,20 @@ type: StringConstructor;
|
|
|
10428
10481
|
required: false;
|
|
10429
10482
|
default: string;
|
|
10430
10483
|
};
|
|
10484
|
+
/**
|
|
10485
|
+
* Set teleport target (when overlay is enabled).
|
|
10486
|
+
*
|
|
10487
|
+
* - When set to a string it is used as a selector.
|
|
10488
|
+
* - When set to a element it is used directly.
|
|
10489
|
+
* - Default uses {@link config#teleportTarget}.
|
|
10490
|
+
*/
|
|
10491
|
+
teleport: {
|
|
10492
|
+
type: PropType<string | HTMLElement | undefined>;
|
|
10493
|
+
required: false;
|
|
10494
|
+
default: undefined;
|
|
10495
|
+
};
|
|
10431
10496
|
}>> & Readonly<{}>, {
|
|
10497
|
+
teleport: string | HTMLElement | undefined;
|
|
10432
10498
|
overlay: boolean;
|
|
10433
10499
|
delay: boolean;
|
|
10434
10500
|
language: string;
|
|
@@ -10893,8 +10959,8 @@ export declare interface FModalData {
|
|
|
10893
10959
|
}
|
|
10894
10960
|
|
|
10895
10961
|
export declare const FNavigationMenu: DefineComponent<ExtractPropTypes< {
|
|
10896
|
-
/**
|
|
10897
|
-
*
|
|
10962
|
+
/**
|
|
10963
|
+
* Current route.
|
|
10898
10964
|
*/
|
|
10899
10965
|
route: {
|
|
10900
10966
|
type: StringConstructor;
|
|
@@ -10956,52 +11022,37 @@ type: StringConstructor;
|
|
|
10956
11022
|
required: false;
|
|
10957
11023
|
default: string;
|
|
10958
11024
|
};
|
|
10959
|
-
}>, {}, {
|
|
10960
|
-
|
|
10961
|
-
|
|
10962
|
-
|
|
10963
|
-
|
|
10964
|
-
|
|
10965
|
-
|
|
10966
|
-
|
|
10967
|
-
|
|
10968
|
-
|
|
10969
|
-
|
|
10970
|
-
}, {
|
|
10971
|
-
items(): IMenuItem[];
|
|
10972
|
-
visibleItems(): IMenuItem[];
|
|
10973
|
-
popupItems(): IMenuItem[];
|
|
10974
|
-
hasPopupMenuSelectedItems(): boolean;
|
|
11025
|
+
}>, {}, FNavigationMenuData, {
|
|
11026
|
+
items(): MenuItem[];
|
|
11027
|
+
overflowItems(): MenuItem[];
|
|
11028
|
+
hasOverflow(): boolean;
|
|
11029
|
+
overflowItemSelected(): boolean;
|
|
11030
|
+
menuClasses(): string[];
|
|
11031
|
+
popupItemClasses(): string[];
|
|
11032
|
+
selectedItemSrText(): string;
|
|
11033
|
+
popupLabel(): string;
|
|
11034
|
+
popupMenuSrText(): string;
|
|
11035
|
+
popupMenuSelectedSrText(): string;
|
|
10975
11036
|
}, {
|
|
10976
|
-
|
|
10977
|
-
|
|
10978
|
-
|
|
10979
|
-
|
|
10980
|
-
|
|
10981
|
-
|
|
10982
|
-
|
|
10983
|
-
|
|
10984
|
-
|
|
10985
|
-
|
|
10986
|
-
|
|
10987
|
-
|
|
11037
|
+
itemClasses(item: MenuItem, index: number): string[];
|
|
11038
|
+
showItemSrText(index: number): boolean;
|
|
11039
|
+
getVisibleAnchors(): HTMLElement[];
|
|
11040
|
+
getAnchor(index: number): HTMLElement | undefined;
|
|
11041
|
+
findItemByKey(key: string): MenuItem | undefined;
|
|
11042
|
+
indexOfItemByKey(key: string): number;
|
|
11043
|
+
selectItem(key: string): void;
|
|
11044
|
+
activateItem(index: number): Promise<void>;
|
|
11045
|
+
onClickItem(event: Event, item: MenuItem): void;
|
|
11046
|
+
clickItemAnchor(item: MenuItem): void;
|
|
11047
|
+
onPopupMenuItemSelected(key: string): void;
|
|
11048
|
+
togglePopup(open: boolean): void;
|
|
11049
|
+
setFocusOnItem(index: number): Promise<void>;
|
|
11050
|
+
onResize(): Promise<void>;
|
|
10988
11051
|
onKeyUp(event: KeyboardEvent): void;
|
|
10989
|
-
doHandleMenuTabKey(action: MenuAction): boolean;
|
|
10990
|
-
doHandlePopupMenuTabKey(action: MenuAction): Promise<boolean>;
|
|
10991
|
-
setCurrentFocusedItemIndex(value: number): void;
|
|
10992
|
-
doInitPopupNavigationIndex(event: KeyboardEvent): void;
|
|
10993
11052
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
10994
|
-
setFocusOnItem(index: number): Promise<void>;
|
|
10995
|
-
hasOverflow(): boolean;
|
|
10996
|
-
activateItem(index: number): Promise<void>;
|
|
10997
|
-
activateInvisibleItem(item: IMenuItem): Promise<void>;
|
|
10998
|
-
setFocusedItemIndex(index: number): void;
|
|
10999
|
-
setFocusedPopupMenuItemKey(key: string): Promise<void>;
|
|
11000
|
-
setFocusedMenuItemKey(key: string): void;
|
|
11001
|
-
setSelectedMenuItemKey(key: string): Promise<void>;
|
|
11002
11053
|
}, ComponentOptions, ComponentOptionsMixin, ("selectedRoute" | "update:route")[], "selectedRoute" | "update:route", PublicProps, Readonly<ExtractPropTypes< {
|
|
11003
|
-
/**
|
|
11004
|
-
*
|
|
11054
|
+
/**
|
|
11055
|
+
* Current route.
|
|
11005
11056
|
*/
|
|
11006
11057
|
route: {
|
|
11007
11058
|
type: StringConstructor;
|
|
@@ -11075,111 +11126,6 @@ menuMoreWithSelectedItemsScreenReaderText: string;
|
|
|
11075
11126
|
menuAriaLabel: string;
|
|
11076
11127
|
popupAriaLabel: string;
|
|
11077
11128
|
}, {}, {
|
|
11078
|
-
IMenu: DefineComponent<ExtractPropTypes< {
|
|
11079
|
-
modelValue: {
|
|
11080
|
-
type: StringConstructor;
|
|
11081
|
-
required: false;
|
|
11082
|
-
default: string;
|
|
11083
|
-
};
|
|
11084
|
-
items: {
|
|
11085
|
-
type: PropType<IMenuItem[]>;
|
|
11086
|
-
required: true;
|
|
11087
|
-
};
|
|
11088
|
-
vertical: {
|
|
11089
|
-
type: BooleanConstructor;
|
|
11090
|
-
required: false;
|
|
11091
|
-
default: boolean;
|
|
11092
|
-
};
|
|
11093
|
-
focusedItemKey: {
|
|
11094
|
-
type: StringConstructor;
|
|
11095
|
-
required: false;
|
|
11096
|
-
default: string;
|
|
11097
|
-
};
|
|
11098
|
-
enableKeyboardNavigation: {
|
|
11099
|
-
type: BooleanConstructor;
|
|
11100
|
-
required: false;
|
|
11101
|
-
default: boolean;
|
|
11102
|
-
};
|
|
11103
|
-
selectedMenuItemScreenReaderText: {
|
|
11104
|
-
type: StringConstructor;
|
|
11105
|
-
required: false;
|
|
11106
|
-
default: string;
|
|
11107
|
-
};
|
|
11108
|
-
hasMenuMoreSelectedItems: {
|
|
11109
|
-
type: BooleanConstructor;
|
|
11110
|
-
required: false;
|
|
11111
|
-
default: boolean;
|
|
11112
|
-
};
|
|
11113
|
-
}>, {}, {
|
|
11114
|
-
resizeObserver: ResizeObserver | undefined;
|
|
11115
|
-
currentFocusedItemIndex: number;
|
|
11116
|
-
lastSelectedItem: string;
|
|
11117
|
-
}, {
|
|
11118
|
-
cssClasses(): Record<string, boolean>;
|
|
11119
|
-
}, {
|
|
11120
|
-
getAnchor(index: number): HTMLElement | undefined;
|
|
11121
|
-
getSelectedMenuItemScreenReaderText(index: number): string | undefined;
|
|
11122
|
-
isSelected(index: number): boolean;
|
|
11123
|
-
ariaHasPopup(index: number): boolean | undefined;
|
|
11124
|
-
findItemByKey(key: string): IMenuItem | undefined;
|
|
11125
|
-
indexOfItemByKey(key: string): number;
|
|
11126
|
-
onClickItem(item: IMenuItem, doClick?: boolean): Promise<void>;
|
|
11127
|
-
onResize(): void;
|
|
11128
|
-
cssClassHighlight(item: IMenuItem): string;
|
|
11129
|
-
ccsClassHighlightAnchor(item: IMenuItem): string;
|
|
11130
|
-
ccsClassHighlightAnchorContainer(item: IMenuItem): string;
|
|
11131
|
-
setFocusOnItem(index: number): Promise<void>;
|
|
11132
|
-
activateItem(index: number): Promise<void>;
|
|
11133
|
-
setFocusedItemIndex(index: number): void;
|
|
11134
|
-
onKeyUp(event: KeyboardEvent): void;
|
|
11135
|
-
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
11136
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "update:modelValue" | "overflow")[], "select" | "update:modelValue" | "overflow", PublicProps, Readonly<ExtractPropTypes< {
|
|
11137
|
-
modelValue: {
|
|
11138
|
-
type: StringConstructor;
|
|
11139
|
-
required: false;
|
|
11140
|
-
default: string;
|
|
11141
|
-
};
|
|
11142
|
-
items: {
|
|
11143
|
-
type: PropType<IMenuItem[]>;
|
|
11144
|
-
required: true;
|
|
11145
|
-
};
|
|
11146
|
-
vertical: {
|
|
11147
|
-
type: BooleanConstructor;
|
|
11148
|
-
required: false;
|
|
11149
|
-
default: boolean;
|
|
11150
|
-
};
|
|
11151
|
-
focusedItemKey: {
|
|
11152
|
-
type: StringConstructor;
|
|
11153
|
-
required: false;
|
|
11154
|
-
default: string;
|
|
11155
|
-
};
|
|
11156
|
-
enableKeyboardNavigation: {
|
|
11157
|
-
type: BooleanConstructor;
|
|
11158
|
-
required: false;
|
|
11159
|
-
default: boolean;
|
|
11160
|
-
};
|
|
11161
|
-
selectedMenuItemScreenReaderText: {
|
|
11162
|
-
type: StringConstructor;
|
|
11163
|
-
required: false;
|
|
11164
|
-
default: string;
|
|
11165
|
-
};
|
|
11166
|
-
hasMenuMoreSelectedItems: {
|
|
11167
|
-
type: BooleanConstructor;
|
|
11168
|
-
required: false;
|
|
11169
|
-
default: boolean;
|
|
11170
|
-
};
|
|
11171
|
-
}>> & Readonly<{
|
|
11172
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
11173
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11174
|
-
onOverflow?: ((...args: any[]) => any) | undefined;
|
|
11175
|
-
}>, {
|
|
11176
|
-
vertical: boolean;
|
|
11177
|
-
modelValue: string;
|
|
11178
|
-
focusedItemKey: string;
|
|
11179
|
-
enableKeyboardNavigation: boolean;
|
|
11180
|
-
selectedMenuItemScreenReaderText: string;
|
|
11181
|
-
hasMenuMoreSelectedItems: boolean;
|
|
11182
|
-
}, {}, {
|
|
11183
11129
|
FIcon: DefineComponent<ExtractPropTypes< {
|
|
11184
11130
|
name: {
|
|
11185
11131
|
type: StringConstructor;
|
|
@@ -11234,7 +11180,6 @@ library: string;
|
|
|
11234
11180
|
flip: string;
|
|
11235
11181
|
rotate: string;
|
|
11236
11182
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11237
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11238
11183
|
IPopupMenu: DefineComponent<ExtractPropTypes< {
|
|
11239
11184
|
modelValue: {
|
|
11240
11185
|
type: StringConstructor;
|
|
@@ -11255,7 +11200,7 @@ type: PropType<HTMLElement | undefined>;
|
|
|
11255
11200
|
default: undefined;
|
|
11256
11201
|
};
|
|
11257
11202
|
items: {
|
|
11258
|
-
type: PropType<
|
|
11203
|
+
type: PropType<MenuItem[]>;
|
|
11259
11204
|
required: true;
|
|
11260
11205
|
};
|
|
11261
11206
|
enableKeyboardNavigation: {
|
|
@@ -11279,16 +11224,18 @@ lastSelectedItem: string;
|
|
|
11279
11224
|
}, {}, {
|
|
11280
11225
|
isSelected(index: number): boolean;
|
|
11281
11226
|
focusElement(): HTMLElement | null;
|
|
11282
|
-
findItemByKey(key: string):
|
|
11227
|
+
findItemByKey(key: string): MenuItem | undefined;
|
|
11283
11228
|
indexOfItemByKey(key: string): number;
|
|
11284
|
-
onClickItem(
|
|
11285
|
-
|
|
11229
|
+
onClickItem(event: Event, item: MenuItem): void;
|
|
11230
|
+
clickItemAnchor(item: MenuItem): void;
|
|
11231
|
+
selectItem(key: string): void;
|
|
11232
|
+
itemClasses(item: MenuItem): string[];
|
|
11286
11233
|
setFocusOnItem(index: number): Promise<void>;
|
|
11287
11234
|
activateItem(index: number): Promise<void>;
|
|
11288
11235
|
setFocusedItemIndex(index: number): void;
|
|
11289
11236
|
onKeyUp(event: KeyboardEvent): void;
|
|
11290
11237
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
11291
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
11238
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select" | "update:modelValue" | "update:focusedItem")[], "close" | "select" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
|
|
11292
11239
|
modelValue: {
|
|
11293
11240
|
type: StringConstructor;
|
|
11294
11241
|
required: false;
|
|
@@ -11308,7 +11255,7 @@ type: PropType<HTMLElement | undefined>;
|
|
|
11308
11255
|
default: undefined;
|
|
11309
11256
|
};
|
|
11310
11257
|
items: {
|
|
11311
|
-
type: PropType<
|
|
11258
|
+
type: PropType<MenuItem[]>;
|
|
11312
11259
|
required: true;
|
|
11313
11260
|
};
|
|
11314
11261
|
enableKeyboardNavigation: {
|
|
@@ -11335,84 +11282,30 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
11335
11282
|
anchor: HTMLElement | undefined;
|
|
11336
11283
|
modelValue: string;
|
|
11337
11284
|
ariaLabel: string;
|
|
11285
|
+
focusedItem: string;
|
|
11338
11286
|
enableKeyboardNavigation: boolean;
|
|
11339
11287
|
selectedMenuItemScreenReaderText: string;
|
|
11340
|
-
focusedItem: string;
|
|
11341
11288
|
}, {}, {
|
|
11342
|
-
|
|
11343
|
-
|
|
11344
|
-
type:
|
|
11289
|
+
IPopup: DefineComponent<ExtractPropTypes< {
|
|
11290
|
+
isOpen: {
|
|
11291
|
+
type: BooleanConstructor;
|
|
11345
11292
|
required: true;
|
|
11346
11293
|
};
|
|
11347
|
-
|
|
11348
|
-
type:
|
|
11294
|
+
anchor: {
|
|
11295
|
+
type: PropType<HTMLElement | null | undefined>;
|
|
11349
11296
|
required: false;
|
|
11350
|
-
default:
|
|
11297
|
+
default: undefined;
|
|
11351
11298
|
};
|
|
11352
|
-
|
|
11353
|
-
type: PropType<
|
|
11354
|
-
default: null;
|
|
11299
|
+
inline: {
|
|
11300
|
+
type: PropType<"always" | "never" | "auto">;
|
|
11355
11301
|
required: false;
|
|
11356
11302
|
validator(value: string): boolean;
|
|
11303
|
+
default: string;
|
|
11357
11304
|
};
|
|
11358
|
-
|
|
11359
|
-
type:
|
|
11360
|
-
default: null;
|
|
11305
|
+
alwaysInline: {
|
|
11306
|
+
type: BooleanConstructor;
|
|
11361
11307
|
required: false;
|
|
11362
|
-
|
|
11363
|
-
};
|
|
11364
|
-
}>, {}, {}, {
|
|
11365
|
-
spriteKey(): string;
|
|
11366
|
-
spriteId(): string;
|
|
11367
|
-
modifiers(): string[];
|
|
11368
|
-
ariaHidden(): "true" | undefined;
|
|
11369
|
-
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
11370
|
-
name: {
|
|
11371
|
-
type: StringConstructor;
|
|
11372
|
-
required: true;
|
|
11373
|
-
};
|
|
11374
|
-
library: {
|
|
11375
|
-
type: StringConstructor;
|
|
11376
|
-
required: false;
|
|
11377
|
-
default: string;
|
|
11378
|
-
};
|
|
11379
|
-
flip: {
|
|
11380
|
-
type: PropType<string>;
|
|
11381
|
-
default: null;
|
|
11382
|
-
required: false;
|
|
11383
|
-
validator(value: string): boolean;
|
|
11384
|
-
};
|
|
11385
|
-
rotate: {
|
|
11386
|
-
type: PropType<string>;
|
|
11387
|
-
default: null;
|
|
11388
|
-
required: false;
|
|
11389
|
-
validator(value: string): boolean;
|
|
11390
|
-
};
|
|
11391
|
-
}>> & Readonly<{}>, {
|
|
11392
|
-
library: string;
|
|
11393
|
-
flip: string;
|
|
11394
|
-
rotate: string;
|
|
11395
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11396
|
-
IPopup: DefineComponent<ExtractPropTypes< {
|
|
11397
|
-
isOpen: {
|
|
11398
|
-
type: BooleanConstructor;
|
|
11399
|
-
required: true;
|
|
11400
|
-
};
|
|
11401
|
-
anchor: {
|
|
11402
|
-
type: PropType<HTMLElement | null | undefined>;
|
|
11403
|
-
required: false;
|
|
11404
|
-
default: undefined;
|
|
11405
|
-
};
|
|
11406
|
-
inline: {
|
|
11407
|
-
type: PropType<"always" | "never" | "auto">;
|
|
11408
|
-
required: false;
|
|
11409
|
-
validator(value: string): boolean;
|
|
11410
|
-
default: string;
|
|
11411
|
-
};
|
|
11412
|
-
alwaysInline: {
|
|
11413
|
-
type: BooleanConstructor;
|
|
11414
|
-
required: false;
|
|
11415
|
-
default: boolean;
|
|
11308
|
+
default: boolean;
|
|
11416
11309
|
};
|
|
11417
11310
|
container: {
|
|
11418
11311
|
type: PropType<HTMLElement | null | undefined>;
|
|
@@ -11515,6 +11408,18 @@ setFocus: boolean;
|
|
|
11515
11408
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11516
11409
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11517
11410
|
|
|
11411
|
+
/**
|
|
11412
|
+
* @public
|
|
11413
|
+
*/
|
|
11414
|
+
export declare interface FNavigationMenuData {
|
|
11415
|
+
selectedItem: string;
|
|
11416
|
+
focusedPopupMenuItem: string;
|
|
11417
|
+
overflowIndex: number;
|
|
11418
|
+
popupOpen: boolean;
|
|
11419
|
+
popupAnchor: HTMLElement | undefined;
|
|
11420
|
+
resizeObserver: ResizeObserver | undefined;
|
|
11421
|
+
}
|
|
11422
|
+
|
|
11518
11423
|
export declare const FNumericTextField: DefineComponent<ExtractPropTypes< {
|
|
11519
11424
|
/**
|
|
11520
11425
|
* The number of decimals to format number as.
|
|
@@ -11586,6 +11491,7 @@ viewValue: string;
|
|
|
11586
11491
|
lastModelValue: unknown;
|
|
11587
11492
|
validationMessage: string;
|
|
11588
11493
|
validityMode: string;
|
|
11494
|
+
isAfterInitialRender: boolean;
|
|
11589
11495
|
defaultText: string;
|
|
11590
11496
|
descriptionText: string;
|
|
11591
11497
|
descriptionScreenReaderText: string;
|
|
@@ -11608,11 +11514,12 @@ onFocus(): void;
|
|
|
11608
11514
|
onBlur(): Promise<void>;
|
|
11609
11515
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
11610
11516
|
onPendingValidity(): void;
|
|
11517
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
11611
11518
|
resolveNewModelValue(viewValue: string): unknown;
|
|
11612
11519
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
11613
11520
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
11614
11521
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
11615
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
11522
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
11616
11523
|
id: {
|
|
11617
11524
|
type: StringConstructor;
|
|
11618
11525
|
required: false;
|
|
@@ -11674,7 +11581,7 @@ type: PropType<string | undefined>;
|
|
|
11674
11581
|
required: false;
|
|
11675
11582
|
default: undefined;
|
|
11676
11583
|
};
|
|
11677
|
-
}>,
|
|
11584
|
+
}>, void, {
|
|
11678
11585
|
descriptionClass: string[];
|
|
11679
11586
|
discreteDescriptionClass: string[];
|
|
11680
11587
|
}, {
|
|
@@ -12151,6 +12058,7 @@ viewValue: string;
|
|
|
12151
12058
|
lastModelValue: unknown;
|
|
12152
12059
|
validationMessage: string;
|
|
12153
12060
|
validityMode: string;
|
|
12061
|
+
isAfterInitialRender: boolean;
|
|
12154
12062
|
defaultText: string;
|
|
12155
12063
|
descriptionText: string;
|
|
12156
12064
|
descriptionScreenReaderText: string;
|
|
@@ -12173,11 +12081,12 @@ onFocus(): void;
|
|
|
12173
12081
|
onBlur(): Promise<void>;
|
|
12174
12082
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
12175
12083
|
onPendingValidity(): void;
|
|
12084
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
12176
12085
|
resolveNewModelValue(viewValue: string): unknown;
|
|
12177
12086
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
12178
12087
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
12179
12088
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
12180
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
12089
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
12181
12090
|
id: {
|
|
12182
12091
|
type: StringConstructor;
|
|
12183
12092
|
required: false;
|
|
@@ -12239,7 +12148,7 @@ type: PropType<string | undefined>;
|
|
|
12239
12148
|
required: false;
|
|
12240
12149
|
default: undefined;
|
|
12241
12150
|
};
|
|
12242
|
-
}>,
|
|
12151
|
+
}>, void, {
|
|
12243
12152
|
descriptionClass: string[];
|
|
12244
12153
|
discreteDescriptionClass: string[];
|
|
12245
12154
|
}, {
|
|
@@ -12605,7 +12514,7 @@ type: PropType<string | undefined>;
|
|
|
12605
12514
|
required: false;
|
|
12606
12515
|
default: undefined;
|
|
12607
12516
|
};
|
|
12608
|
-
}>,
|
|
12517
|
+
}>, void, {
|
|
12609
12518
|
descriptionClass: string[];
|
|
12610
12519
|
discreteDescriptionClass: string[];
|
|
12611
12520
|
}, {
|
|
@@ -12923,6 +12832,7 @@ viewValue: string;
|
|
|
12923
12832
|
lastModelValue: unknown;
|
|
12924
12833
|
validationMessage: string;
|
|
12925
12834
|
validityMode: string;
|
|
12835
|
+
isAfterInitialRender: boolean;
|
|
12926
12836
|
defaultText: string;
|
|
12927
12837
|
descriptionText: string;
|
|
12928
12838
|
descriptionScreenReaderText: string;
|
|
@@ -12945,11 +12855,12 @@ onFocus(): void;
|
|
|
12945
12855
|
onBlur(): Promise<void>;
|
|
12946
12856
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
12947
12857
|
onPendingValidity(): void;
|
|
12858
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
12948
12859
|
resolveNewModelValue(viewValue: string): unknown;
|
|
12949
12860
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
12950
12861
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
12951
12862
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
12952
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
12863
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
12953
12864
|
id: {
|
|
12954
12865
|
type: StringConstructor;
|
|
12955
12866
|
required: false;
|
|
@@ -13011,7 +12922,7 @@ type: PropType<string | undefined>;
|
|
|
13011
12922
|
required: false;
|
|
13012
12923
|
default: undefined;
|
|
13013
12924
|
};
|
|
13014
|
-
}>,
|
|
12925
|
+
}>, void, {
|
|
13015
12926
|
descriptionClass: string[];
|
|
13016
12927
|
discreteDescriptionClass: string[];
|
|
13017
12928
|
}, {
|
|
@@ -13329,6 +13240,7 @@ viewValue: string;
|
|
|
13329
13240
|
lastModelValue: unknown;
|
|
13330
13241
|
validationMessage: string;
|
|
13331
13242
|
validityMode: string;
|
|
13243
|
+
isAfterInitialRender: boolean;
|
|
13332
13244
|
defaultText: string;
|
|
13333
13245
|
descriptionText: string;
|
|
13334
13246
|
descriptionScreenReaderText: string;
|
|
@@ -13351,11 +13263,12 @@ onFocus(): void;
|
|
|
13351
13263
|
onBlur(): Promise<void>;
|
|
13352
13264
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
13353
13265
|
onPendingValidity(): void;
|
|
13266
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
13354
13267
|
resolveNewModelValue(viewValue: string): unknown;
|
|
13355
13268
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
13356
13269
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
13357
13270
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
13358
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13271
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
13359
13272
|
id: {
|
|
13360
13273
|
type: StringConstructor;
|
|
13361
13274
|
required: false;
|
|
@@ -13417,7 +13330,7 @@ type: PropType<string | undefined>;
|
|
|
13417
13330
|
required: false;
|
|
13418
13331
|
default: undefined;
|
|
13419
13332
|
};
|
|
13420
|
-
}>,
|
|
13333
|
+
}>, void, {
|
|
13421
13334
|
descriptionClass: string[];
|
|
13422
13335
|
discreteDescriptionClass: string[];
|
|
13423
13336
|
}, {
|
|
@@ -13701,7 +13614,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
13701
13614
|
onPendingValidity(): void;
|
|
13702
13615
|
configureValidators(): void;
|
|
13703
13616
|
configureExtendedValidation(elements: HTMLInputElement[]): void;
|
|
13704
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
13617
|
+
}, ComponentOptions, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
13705
13618
|
/**
|
|
13706
13619
|
* The id for the input id attribute.
|
|
13707
13620
|
* The id for the label for attribute.
|
|
@@ -13790,6 +13703,7 @@ viewValue: string;
|
|
|
13790
13703
|
lastModelValue: unknown;
|
|
13791
13704
|
validationMessage: string;
|
|
13792
13705
|
validityMode: string;
|
|
13706
|
+
isAfterInitialRender: boolean;
|
|
13793
13707
|
defaultText: string;
|
|
13794
13708
|
descriptionText: string;
|
|
13795
13709
|
descriptionScreenReaderText: string;
|
|
@@ -13812,11 +13726,12 @@ onFocus(): void;
|
|
|
13812
13726
|
onBlur(): Promise<void>;
|
|
13813
13727
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
13814
13728
|
onPendingValidity(): void;
|
|
13729
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
13815
13730
|
resolveNewModelValue(viewValue: string): unknown;
|
|
13816
13731
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
13817
13732
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
13818
13733
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
13819
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13734
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
13820
13735
|
id: {
|
|
13821
13736
|
type: StringConstructor;
|
|
13822
13737
|
required: false;
|
|
@@ -13878,7 +13793,7 @@ type: PropType<string | undefined>;
|
|
|
13878
13793
|
required: false;
|
|
13879
13794
|
default: undefined;
|
|
13880
13795
|
};
|
|
13881
|
-
}>,
|
|
13796
|
+
}>, void, {
|
|
13882
13797
|
descriptionClass: string[];
|
|
13883
13798
|
discreteDescriptionClass: string[];
|
|
13884
13799
|
}, {
|
|
@@ -14167,6 +14082,7 @@ viewValue: string;
|
|
|
14167
14082
|
lastModelValue: unknown;
|
|
14168
14083
|
validationMessage: string;
|
|
14169
14084
|
validityMode: string;
|
|
14085
|
+
isAfterInitialRender: boolean;
|
|
14170
14086
|
defaultText: string;
|
|
14171
14087
|
descriptionText: string;
|
|
14172
14088
|
descriptionScreenReaderText: string;
|
|
@@ -14189,11 +14105,12 @@ onFocus(): void;
|
|
|
14189
14105
|
onBlur(): Promise<void>;
|
|
14190
14106
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
14191
14107
|
onPendingValidity(): void;
|
|
14108
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
14192
14109
|
resolveNewModelValue(viewValue: string): unknown;
|
|
14193
14110
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
14194
14111
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
14195
14112
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
14196
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
14113
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
14197
14114
|
id: {
|
|
14198
14115
|
type: StringConstructor;
|
|
14199
14116
|
required: false;
|
|
@@ -14255,7 +14172,7 @@ type: PropType<string | undefined>;
|
|
|
14255
14172
|
required: false;
|
|
14256
14173
|
default: undefined;
|
|
14257
14174
|
};
|
|
14258
|
-
}>,
|
|
14175
|
+
}>, void, {
|
|
14259
14176
|
descriptionClass: string[];
|
|
14260
14177
|
discreteDescriptionClass: string[];
|
|
14261
14178
|
}, {
|
|
@@ -14553,6 +14470,7 @@ viewValue: string;
|
|
|
14553
14470
|
lastModelValue: unknown;
|
|
14554
14471
|
validationMessage: string;
|
|
14555
14472
|
validityMode: string;
|
|
14473
|
+
isAfterInitialRender: boolean;
|
|
14556
14474
|
defaultText: string;
|
|
14557
14475
|
descriptionText: string;
|
|
14558
14476
|
descriptionScreenReaderText: string;
|
|
@@ -14575,11 +14493,12 @@ onFocus(): void;
|
|
|
14575
14493
|
onBlur(): Promise<void>;
|
|
14576
14494
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
14577
14495
|
onPendingValidity(): void;
|
|
14496
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
14578
14497
|
resolveNewModelValue(viewValue: string): unknown;
|
|
14579
14498
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
14580
14499
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
14581
14500
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
14582
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
14501
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
14583
14502
|
id: {
|
|
14584
14503
|
type: StringConstructor;
|
|
14585
14504
|
required: false;
|
|
@@ -14641,7 +14560,7 @@ type: PropType<string | undefined>;
|
|
|
14641
14560
|
required: false;
|
|
14642
14561
|
default: undefined;
|
|
14643
14562
|
};
|
|
14644
|
-
}>,
|
|
14563
|
+
}>, void, {
|
|
14645
14564
|
descriptionClass: string[];
|
|
14646
14565
|
discreteDescriptionClass: string[];
|
|
14647
14566
|
}, {
|
|
@@ -15104,8 +15023,8 @@ default: string;
|
|
|
15104
15023
|
validator(value: string): boolean;
|
|
15105
15024
|
};
|
|
15106
15025
|
}>> & Readonly<{}>, {
|
|
15107
|
-
name: string;
|
|
15108
15026
|
horizontal: boolean;
|
|
15027
|
+
name: string;
|
|
15109
15028
|
id: string;
|
|
15110
15029
|
labelClass: string;
|
|
15111
15030
|
contentClass: string;
|
|
@@ -15200,7 +15119,7 @@ onInput(event: Event): void;
|
|
|
15200
15119
|
onChange(event: Event): void;
|
|
15201
15120
|
onBlur(event: Event): void;
|
|
15202
15121
|
onUpdate(event: Event): void;
|
|
15203
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
15122
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
15204
15123
|
id: {
|
|
15205
15124
|
type: StringConstructor;
|
|
15206
15125
|
required: false;
|
|
@@ -15280,6 +15199,7 @@ viewValue: string;
|
|
|
15280
15199
|
lastModelValue: unknown;
|
|
15281
15200
|
validationMessage: string;
|
|
15282
15201
|
validityMode: string;
|
|
15202
|
+
isAfterInitialRender: boolean;
|
|
15283
15203
|
defaultText: string;
|
|
15284
15204
|
descriptionText: string;
|
|
15285
15205
|
descriptionScreenReaderText: string;
|
|
@@ -15302,11 +15222,12 @@ onFocus(): void;
|
|
|
15302
15222
|
onBlur(): Promise<void>;
|
|
15303
15223
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
15304
15224
|
onPendingValidity(): void;
|
|
15225
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
15305
15226
|
resolveNewModelValue(viewValue: string): unknown;
|
|
15306
15227
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
15307
15228
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
15308
15229
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
15309
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
15230
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
15310
15231
|
id: {
|
|
15311
15232
|
type: StringConstructor;
|
|
15312
15233
|
required: false;
|
|
@@ -15368,7 +15289,7 @@ type: PropType<string | undefined>;
|
|
|
15368
15289
|
required: false;
|
|
15369
15290
|
default: undefined;
|
|
15370
15291
|
};
|
|
15371
|
-
}>,
|
|
15292
|
+
}>, void, {
|
|
15372
15293
|
descriptionClass: string[];
|
|
15373
15294
|
discreteDescriptionClass: string[];
|
|
15374
15295
|
}, {
|
|
@@ -15723,7 +15644,7 @@ set(value: unknown): void;
|
|
|
15723
15644
|
};
|
|
15724
15645
|
}, {
|
|
15725
15646
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
15726
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
15647
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
15727
15648
|
/**
|
|
15728
15649
|
* The id for the select id attribute.
|
|
15729
15650
|
* The id for the label for attribute.
|
|
@@ -15846,7 +15767,7 @@ type: PropType<string | undefined>;
|
|
|
15846
15767
|
required: false;
|
|
15847
15768
|
default: undefined;
|
|
15848
15769
|
};
|
|
15849
|
-
}>,
|
|
15770
|
+
}>, void, {
|
|
15850
15771
|
descriptionClass: string[];
|
|
15851
15772
|
discreteDescriptionClass: string[];
|
|
15852
15773
|
}, {
|
|
@@ -16108,7 +16029,7 @@ set(value: unknown): void;
|
|
|
16108
16029
|
};
|
|
16109
16030
|
}, {
|
|
16110
16031
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
16111
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
16032
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
16112
16033
|
id: {
|
|
16113
16034
|
type: StringConstructor;
|
|
16114
16035
|
required: false;
|
|
@@ -16204,7 +16125,7 @@ type: PropType<string | undefined>;
|
|
|
16204
16125
|
required: false;
|
|
16205
16126
|
default: undefined;
|
|
16206
16127
|
};
|
|
16207
|
-
}>,
|
|
16128
|
+
}>, void, {
|
|
16208
16129
|
descriptionClass: string[];
|
|
16209
16130
|
discreteDescriptionClass: string[];
|
|
16210
16131
|
}, {
|
|
@@ -16326,6 +16247,7 @@ viewValue: string;
|
|
|
16326
16247
|
lastModelValue: unknown;
|
|
16327
16248
|
validationMessage: string;
|
|
16328
16249
|
validityMode: string;
|
|
16250
|
+
isAfterInitialRender: boolean;
|
|
16329
16251
|
defaultText: string;
|
|
16330
16252
|
descriptionText: string;
|
|
16331
16253
|
descriptionScreenReaderText: string;
|
|
@@ -16348,11 +16270,12 @@ onFocus(): void;
|
|
|
16348
16270
|
onBlur(): Promise<void>;
|
|
16349
16271
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
16350
16272
|
onPendingValidity(): void;
|
|
16273
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
16351
16274
|
resolveNewModelValue(viewValue: string): unknown;
|
|
16352
16275
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
16353
16276
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
16354
16277
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
16355
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
16278
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
16356
16279
|
id: {
|
|
16357
16280
|
type: StringConstructor;
|
|
16358
16281
|
required: false;
|
|
@@ -16414,7 +16337,7 @@ type: PropType<string | undefined>;
|
|
|
16414
16337
|
required: false;
|
|
16415
16338
|
default: undefined;
|
|
16416
16339
|
};
|
|
16417
|
-
}>,
|
|
16340
|
+
}>, void, {
|
|
16418
16341
|
descriptionClass: string[];
|
|
16419
16342
|
discreteDescriptionClass: string[];
|
|
16420
16343
|
}, {
|
|
@@ -16829,7 +16752,7 @@ type: PropType<string | undefined>;
|
|
|
16829
16752
|
required: false;
|
|
16830
16753
|
default: undefined;
|
|
16831
16754
|
};
|
|
16832
|
-
}>,
|
|
16755
|
+
}>, void, {
|
|
16833
16756
|
descriptionClass: string[];
|
|
16834
16757
|
discreteDescriptionClass: string[];
|
|
16835
16758
|
}, {
|
|
@@ -17318,7 +17241,7 @@ type: PropType<string | undefined>;
|
|
|
17318
17241
|
required: false;
|
|
17319
17242
|
default: undefined;
|
|
17320
17243
|
};
|
|
17321
|
-
}>,
|
|
17244
|
+
}>, void, {
|
|
17322
17245
|
descriptionClass: string[];
|
|
17323
17246
|
discreteDescriptionClass: string[];
|
|
17324
17247
|
}, {
|
|
@@ -17491,6 +17414,7 @@ viewValue: string;
|
|
|
17491
17414
|
lastModelValue: unknown;
|
|
17492
17415
|
validationMessage: string;
|
|
17493
17416
|
validityMode: string;
|
|
17417
|
+
isAfterInitialRender: boolean;
|
|
17494
17418
|
defaultText: string;
|
|
17495
17419
|
descriptionText: string;
|
|
17496
17420
|
descriptionScreenReaderText: string;
|
|
@@ -17513,11 +17437,12 @@ onFocus(): void;
|
|
|
17513
17437
|
onBlur(): Promise<void>;
|
|
17514
17438
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
17515
17439
|
onPendingValidity(): void;
|
|
17440
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
17516
17441
|
resolveNewModelValue(viewValue: string): unknown;
|
|
17517
17442
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
17518
17443
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
17519
17444
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
17520
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
17445
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
17521
17446
|
/**
|
|
17522
17447
|
* The id for the input id attribute.
|
|
17523
17448
|
* The id for the label for attribute.
|
|
@@ -17629,7 +17554,7 @@ type: PropType<string | undefined>;
|
|
|
17629
17554
|
required: false;
|
|
17630
17555
|
default: undefined;
|
|
17631
17556
|
};
|
|
17632
|
-
}>,
|
|
17557
|
+
}>, void, {
|
|
17633
17558
|
descriptionClass: string[];
|
|
17634
17559
|
discreteDescriptionClass: string[];
|
|
17635
17560
|
}, {
|
|
@@ -17860,6 +17785,20 @@ rotate: string;
|
|
|
17860
17785
|
|
|
17861
17786
|
export declare const FTooltip: DefineComponent<ExtractPropTypes< {
|
|
17862
17787
|
/**
|
|
17788
|
+
* Element to attach tooltip toggle button.
|
|
17789
|
+
*
|
|
17790
|
+
* Only needed when using with arbitrary elements, e.g. when using with
|
|
17791
|
+
* `FLabel` you do not need to set this prop.
|
|
17792
|
+
*/
|
|
17793
|
+
attachTo: {
|
|
17794
|
+
type: {
|
|
17795
|
+
new (): HTMLElement;
|
|
17796
|
+
prototype: HTMLElement;
|
|
17797
|
+
};
|
|
17798
|
+
required: false;
|
|
17799
|
+
default: null;
|
|
17800
|
+
};
|
|
17801
|
+
/**
|
|
17863
17802
|
* State (expanded or collapsed) of the tooltip. The value is `true` if the tooltip is expanded.
|
|
17864
17803
|
*
|
|
17865
17804
|
* @model
|
|
@@ -17902,14 +17841,31 @@ default: string;
|
|
|
17902
17841
|
required: false;
|
|
17903
17842
|
validator(value: string): boolean;
|
|
17904
17843
|
};
|
|
17905
|
-
}>, {
|
|
17844
|
+
}>, {
|
|
17845
|
+
animate: (state: "expand" | "collapse") => void;
|
|
17846
|
+
iconTarget: ComputedRef<HTMLElement | null>;
|
|
17847
|
+
ready: Ref<boolean, boolean>;
|
|
17848
|
+
}, {
|
|
17906
17849
|
isOpen: boolean;
|
|
17907
17850
|
}, {
|
|
17908
17851
|
hasHeader(): boolean;
|
|
17909
17852
|
}, {
|
|
17910
17853
|
/* Excluded from this release type: onClickToggle */
|
|
17911
|
-
|
|
17912
|
-
|
|
17854
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("toggle" | "update:modelValue")[], "toggle" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
17855
|
+
/**
|
|
17856
|
+
* Element to attach tooltip toggle button.
|
|
17857
|
+
*
|
|
17858
|
+
* Only needed when using with arbitrary elements, e.g. when using with
|
|
17859
|
+
* `FLabel` you do not need to set this prop.
|
|
17860
|
+
*/
|
|
17861
|
+
attachTo: {
|
|
17862
|
+
type: {
|
|
17863
|
+
new (): HTMLElement;
|
|
17864
|
+
prototype: HTMLElement;
|
|
17865
|
+
};
|
|
17866
|
+
required: false;
|
|
17867
|
+
default: null;
|
|
17868
|
+
};
|
|
17913
17869
|
/**
|
|
17914
17870
|
* State (expanded or collapsed) of the tooltip. The value is `true` if the tooltip is expanded.
|
|
17915
17871
|
*
|
|
@@ -17957,9 +17913,10 @@ validator(value: string): boolean;
|
|
|
17957
17913
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17958
17914
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
17959
17915
|
}>, {
|
|
17916
|
+
attachTo: HTMLElement;
|
|
17960
17917
|
modelValue: boolean;
|
|
17961
|
-
headerTag: string;
|
|
17962
17918
|
closeButtonText: string;
|
|
17919
|
+
headerTag: string;
|
|
17963
17920
|
}, {}, {
|
|
17964
17921
|
FExpand: DefineComponent< {}, {}, {
|
|
17965
17922
|
height: number;
|
|
@@ -18235,8 +18192,8 @@ getCurrentOpen(): FWizardStepDefinition | null;
|
|
|
18235
18192
|
openStep(step: FWizardStepDefinition): void;
|
|
18236
18193
|
openNext(step: FWizardStepDefinition): Promise<void>;
|
|
18237
18194
|
doOpen(open: StepNumber | -1): Promise<void>;
|
|
18238
|
-
cancel(): void;
|
|
18239
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "
|
|
18195
|
+
cancel(isFinalStep: boolean): void;
|
|
18196
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "completed")[], "cancel" | "change" | "update:modelValue" | "completed", PublicProps, Readonly<ExtractPropTypes< {
|
|
18240
18197
|
modelValue: {
|
|
18241
18198
|
type: StringConstructor;
|
|
18242
18199
|
default: null;
|
|
@@ -18277,7 +18234,7 @@ export declare interface FWizardApi {
|
|
|
18277
18234
|
getStepCount(): number;
|
|
18278
18235
|
openStep(step: FWizardStepDefinition): void;
|
|
18279
18236
|
openNext(self: FWizardStepDefinition): void;
|
|
18280
|
-
cancel(): void;
|
|
18237
|
+
cancel(isFinalStep: boolean): void;
|
|
18281
18238
|
inheritedProps: {
|
|
18282
18239
|
readonly headerTag: string;
|
|
18283
18240
|
readonly disableInitialFocus: boolean;
|
|
@@ -18920,6 +18877,8 @@ export declare interface FWizardStepDefinition {
|
|
|
18920
18877
|
currentOpen: StepNumber | -1;
|
|
18921
18878
|
}
|
|
18922
18879
|
|
|
18880
|
+
/* Excluded from this release type: getAbsolutePosition */
|
|
18881
|
+
|
|
18923
18882
|
/**
|
|
18924
18883
|
* Returns remaining days in week after last day in array.
|
|
18925
18884
|
*
|
|
@@ -19235,7 +19194,7 @@ onClickDay(date: FDate): void;
|
|
|
19235
19194
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
19236
19195
|
isDayFocused(date: FDate): boolean;
|
|
19237
19196
|
getTabindex(date: FDate): 0 | -1;
|
|
19238
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
19197
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
19239
19198
|
/**
|
|
19240
19199
|
* Active month.
|
|
19241
19200
|
* @model
|
|
@@ -19302,8 +19261,8 @@ days: FDate[];
|
|
|
19302
19261
|
onResize(): void;
|
|
19303
19262
|
onFocusin(): void;
|
|
19304
19263
|
onFocusout(e: FocusEvent): void;
|
|
19305
|
-
getDayStartOffset:
|
|
19306
|
-
getDayEndOffset:
|
|
19264
|
+
getDayStartOffset(days: FDate[]): number;
|
|
19265
|
+
getDayEndOffset(days: FDate[]): number;
|
|
19307
19266
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
19308
19267
|
value: {
|
|
19309
19268
|
type: PropType<FDate>;
|
|
@@ -19352,8 +19311,8 @@ days: FDate[];
|
|
|
19352
19311
|
onResize(): void;
|
|
19353
19312
|
onFocusin(): void;
|
|
19354
19313
|
onFocusout(e: FocusEvent): void;
|
|
19355
|
-
getDayStartOffset:
|
|
19356
|
-
getDayEndOffset:
|
|
19314
|
+
getDayStartOffset(days: FDate[]): number;
|
|
19315
|
+
getDayEndOffset(days: FDate[]): number;
|
|
19357
19316
|
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
19358
19317
|
/**
|
|
19359
19318
|
* Focused month.
|
|
@@ -19412,7 +19371,7 @@ onClickPreviousButton(): void;
|
|
|
19412
19371
|
onClickNextButton(): void;
|
|
19413
19372
|
getDateText(value: FDate): string;
|
|
19414
19373
|
isFocused(ref: string): boolean;
|
|
19415
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
19374
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
19416
19375
|
/**
|
|
19417
19376
|
* Focused month.
|
|
19418
19377
|
*/
|
|
@@ -19665,246 +19624,6 @@ shrink: boolean;
|
|
|
19665
19624
|
align: string;
|
|
19666
19625
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
19667
19626
|
|
|
19668
|
-
export declare const IMenu: DefineComponent<ExtractPropTypes< {
|
|
19669
|
-
/**
|
|
19670
|
-
* The currently highlighted menu item key
|
|
19671
|
-
* @model
|
|
19672
|
-
*/
|
|
19673
|
-
modelValue: {
|
|
19674
|
-
type: StringConstructor;
|
|
19675
|
-
required: false;
|
|
19676
|
-
default: string;
|
|
19677
|
-
};
|
|
19678
|
-
/**
|
|
19679
|
-
* The items to be diplayed in the menu
|
|
19680
|
-
*/
|
|
19681
|
-
items: {
|
|
19682
|
-
type: PropType<IMenuItem[]>;
|
|
19683
|
-
required: true;
|
|
19684
|
-
};
|
|
19685
|
-
/**
|
|
19686
|
-
* If true, show the menu vertically
|
|
19687
|
-
*/
|
|
19688
|
-
vertical: {
|
|
19689
|
-
type: BooleanConstructor;
|
|
19690
|
-
required: false;
|
|
19691
|
-
default: boolean;
|
|
19692
|
-
};
|
|
19693
|
-
/**
|
|
19694
|
-
* The key of the currently selected focused item
|
|
19695
|
-
*/
|
|
19696
|
-
focusedItemKey: {
|
|
19697
|
-
type: StringConstructor;
|
|
19698
|
-
required: false;
|
|
19699
|
-
default: string;
|
|
19700
|
-
};
|
|
19701
|
-
/**
|
|
19702
|
-
* If true, enable built-in keyboard navigation
|
|
19703
|
-
*/
|
|
19704
|
-
enableKeyboardNavigation: {
|
|
19705
|
-
type: BooleanConstructor;
|
|
19706
|
-
required: false;
|
|
19707
|
-
default: boolean;
|
|
19708
|
-
};
|
|
19709
|
-
/**
|
|
19710
|
-
* Text for selected item for screen reader
|
|
19711
|
-
*/
|
|
19712
|
-
selectedMenuItemScreenReaderText: {
|
|
19713
|
-
type: StringConstructor;
|
|
19714
|
-
required: false;
|
|
19715
|
-
default: string;
|
|
19716
|
-
};
|
|
19717
|
-
/**
|
|
19718
|
-
* If true, indicates that the menu "Mer/More" has selected items
|
|
19719
|
-
*/
|
|
19720
|
-
hasMenuMoreSelectedItems: {
|
|
19721
|
-
type: BooleanConstructor;
|
|
19722
|
-
required: false;
|
|
19723
|
-
default: boolean;
|
|
19724
|
-
};
|
|
19725
|
-
}>, {}, {
|
|
19726
|
-
resizeObserver: ResizeObserver | undefined;
|
|
19727
|
-
currentFocusedItemIndex: number;
|
|
19728
|
-
lastSelectedItem: string;
|
|
19729
|
-
}, {
|
|
19730
|
-
cssClasses(): Record<string, boolean>;
|
|
19731
|
-
}, {
|
|
19732
|
-
getAnchor(index: number): HTMLElement | undefined;
|
|
19733
|
-
getSelectedMenuItemScreenReaderText(index: number): string | undefined;
|
|
19734
|
-
isSelected(index: number): boolean;
|
|
19735
|
-
ariaHasPopup(index: number): boolean | undefined;
|
|
19736
|
-
findItemByKey(key: string): IMenuItem | undefined;
|
|
19737
|
-
indexOfItemByKey(key: string): number;
|
|
19738
|
-
onClickItem(item: IMenuItem, doClick?: boolean): Promise<void>;
|
|
19739
|
-
onResize(): void;
|
|
19740
|
-
cssClassHighlight(item: IMenuItem): string;
|
|
19741
|
-
ccsClassHighlightAnchor(item: IMenuItem): string;
|
|
19742
|
-
ccsClassHighlightAnchorContainer(item: IMenuItem): string;
|
|
19743
|
-
setFocusOnItem(index: number): Promise<void>;
|
|
19744
|
-
activateItem(index: number): Promise<void>;
|
|
19745
|
-
setFocusedItemIndex(index: number): void;
|
|
19746
|
-
onKeyUp(event: KeyboardEvent): void;
|
|
19747
|
-
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
19748
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "update:modelValue" | "overflow")[], "select" | "update:modelValue" | "overflow", PublicProps, Readonly<ExtractPropTypes< {
|
|
19749
|
-
/**
|
|
19750
|
-
* The currently highlighted menu item key
|
|
19751
|
-
* @model
|
|
19752
|
-
*/
|
|
19753
|
-
modelValue: {
|
|
19754
|
-
type: StringConstructor;
|
|
19755
|
-
required: false;
|
|
19756
|
-
default: string;
|
|
19757
|
-
};
|
|
19758
|
-
/**
|
|
19759
|
-
* The items to be diplayed in the menu
|
|
19760
|
-
*/
|
|
19761
|
-
items: {
|
|
19762
|
-
type: PropType<IMenuItem[]>;
|
|
19763
|
-
required: true;
|
|
19764
|
-
};
|
|
19765
|
-
/**
|
|
19766
|
-
* If true, show the menu vertically
|
|
19767
|
-
*/
|
|
19768
|
-
vertical: {
|
|
19769
|
-
type: BooleanConstructor;
|
|
19770
|
-
required: false;
|
|
19771
|
-
default: boolean;
|
|
19772
|
-
};
|
|
19773
|
-
/**
|
|
19774
|
-
* The key of the currently selected focused item
|
|
19775
|
-
*/
|
|
19776
|
-
focusedItemKey: {
|
|
19777
|
-
type: StringConstructor;
|
|
19778
|
-
required: false;
|
|
19779
|
-
default: string;
|
|
19780
|
-
};
|
|
19781
|
-
/**
|
|
19782
|
-
* If true, enable built-in keyboard navigation
|
|
19783
|
-
*/
|
|
19784
|
-
enableKeyboardNavigation: {
|
|
19785
|
-
type: BooleanConstructor;
|
|
19786
|
-
required: false;
|
|
19787
|
-
default: boolean;
|
|
19788
|
-
};
|
|
19789
|
-
/**
|
|
19790
|
-
* Text for selected item for screen reader
|
|
19791
|
-
*/
|
|
19792
|
-
selectedMenuItemScreenReaderText: {
|
|
19793
|
-
type: StringConstructor;
|
|
19794
|
-
required: false;
|
|
19795
|
-
default: string;
|
|
19796
|
-
};
|
|
19797
|
-
/**
|
|
19798
|
-
* If true, indicates that the menu "Mer/More" has selected items
|
|
19799
|
-
*/
|
|
19800
|
-
hasMenuMoreSelectedItems: {
|
|
19801
|
-
type: BooleanConstructor;
|
|
19802
|
-
required: false;
|
|
19803
|
-
default: boolean;
|
|
19804
|
-
};
|
|
19805
|
-
}>> & Readonly<{
|
|
19806
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
19807
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
19808
|
-
onOverflow?: ((...args: any[]) => any) | undefined;
|
|
19809
|
-
}>, {
|
|
19810
|
-
vertical: boolean;
|
|
19811
|
-
modelValue: string;
|
|
19812
|
-
focusedItemKey: string;
|
|
19813
|
-
enableKeyboardNavigation: boolean;
|
|
19814
|
-
selectedMenuItemScreenReaderText: string;
|
|
19815
|
-
hasMenuMoreSelectedItems: boolean;
|
|
19816
|
-
}, {}, {
|
|
19817
|
-
FIcon: DefineComponent<ExtractPropTypes< {
|
|
19818
|
-
name: {
|
|
19819
|
-
type: StringConstructor;
|
|
19820
|
-
required: true;
|
|
19821
|
-
};
|
|
19822
|
-
library: {
|
|
19823
|
-
type: StringConstructor;
|
|
19824
|
-
required: false;
|
|
19825
|
-
default: string;
|
|
19826
|
-
};
|
|
19827
|
-
flip: {
|
|
19828
|
-
type: PropType<string>;
|
|
19829
|
-
default: null;
|
|
19830
|
-
required: false;
|
|
19831
|
-
validator(value: string): boolean;
|
|
19832
|
-
};
|
|
19833
|
-
rotate: {
|
|
19834
|
-
type: PropType<string>;
|
|
19835
|
-
default: null;
|
|
19836
|
-
required: false;
|
|
19837
|
-
validator(value: string): boolean;
|
|
19838
|
-
};
|
|
19839
|
-
}>, {}, {}, {
|
|
19840
|
-
spriteKey(): string;
|
|
19841
|
-
spriteId(): string;
|
|
19842
|
-
modifiers(): string[];
|
|
19843
|
-
ariaHidden(): "true" | undefined;
|
|
19844
|
-
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
19845
|
-
name: {
|
|
19846
|
-
type: StringConstructor;
|
|
19847
|
-
required: true;
|
|
19848
|
-
};
|
|
19849
|
-
library: {
|
|
19850
|
-
type: StringConstructor;
|
|
19851
|
-
required: false;
|
|
19852
|
-
default: string;
|
|
19853
|
-
};
|
|
19854
|
-
flip: {
|
|
19855
|
-
type: PropType<string>;
|
|
19856
|
-
default: null;
|
|
19857
|
-
required: false;
|
|
19858
|
-
validator(value: string): boolean;
|
|
19859
|
-
};
|
|
19860
|
-
rotate: {
|
|
19861
|
-
type: PropType<string>;
|
|
19862
|
-
default: null;
|
|
19863
|
-
required: false;
|
|
19864
|
-
validator(value: string): boolean;
|
|
19865
|
-
};
|
|
19866
|
-
}>> & Readonly<{}>, {
|
|
19867
|
-
library: string;
|
|
19868
|
-
flip: string;
|
|
19869
|
-
rotate: string;
|
|
19870
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
19871
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
19872
|
-
|
|
19873
|
-
/**
|
|
19874
|
-
* @public
|
|
19875
|
-
*/
|
|
19876
|
-
export declare interface IMenuItem {
|
|
19877
|
-
/**
|
|
19878
|
-
* Menu item label text
|
|
19879
|
-
*/
|
|
19880
|
-
label: string;
|
|
19881
|
-
/**
|
|
19882
|
-
* Menu item key for referencing upon for example item selection
|
|
19883
|
-
*/
|
|
19884
|
-
key: string;
|
|
19885
|
-
/**
|
|
19886
|
-
* Optional href attribute to use on menu item link
|
|
19887
|
-
*/
|
|
19888
|
-
href?: string;
|
|
19889
|
-
/**
|
|
19890
|
-
* Optional target attribute on menu item link
|
|
19891
|
-
*/
|
|
19892
|
-
target?: string;
|
|
19893
|
-
/**
|
|
19894
|
-
* Optional name of an icon to show on the right side of the label
|
|
19895
|
-
*/
|
|
19896
|
-
iconRight?: string;
|
|
19897
|
-
/**
|
|
19898
|
-
* Optional aria-haspopup attribute
|
|
19899
|
-
*/
|
|
19900
|
-
ariaHasPopup?: boolean;
|
|
19901
|
-
/**
|
|
19902
|
-
* Optional screen reader text for the item menu "mer/more"
|
|
19903
|
-
*/
|
|
19904
|
-
srMenuMoreTextContents?: string;
|
|
19905
|
-
srMenuMoreTextSelectedContents?: string;
|
|
19906
|
-
}
|
|
19907
|
-
|
|
19908
19627
|
/**
|
|
19909
19628
|
* @public
|
|
19910
19629
|
*/
|
|
@@ -20272,7 +19991,7 @@ default: undefined;
|
|
|
20272
19991
|
* The items to be diplayed in the menu
|
|
20273
19992
|
*/
|
|
20274
19993
|
items: {
|
|
20275
|
-
type: PropType<
|
|
19994
|
+
type: PropType<MenuItem[]>;
|
|
20276
19995
|
required: true;
|
|
20277
19996
|
};
|
|
20278
19997
|
/**
|
|
@@ -20305,16 +20024,18 @@ lastSelectedItem: string;
|
|
|
20305
20024
|
}, {}, {
|
|
20306
20025
|
isSelected(index: number): boolean;
|
|
20307
20026
|
focusElement(): HTMLElement | null;
|
|
20308
|
-
findItemByKey(key: string):
|
|
20027
|
+
findItemByKey(key: string): MenuItem | undefined;
|
|
20309
20028
|
indexOfItemByKey(key: string): number;
|
|
20310
|
-
onClickItem(
|
|
20311
|
-
|
|
20029
|
+
onClickItem(event: Event, item: MenuItem): void;
|
|
20030
|
+
clickItemAnchor(item: MenuItem): void;
|
|
20031
|
+
selectItem(key: string): void;
|
|
20032
|
+
itemClasses(item: MenuItem): string[];
|
|
20312
20033
|
setFocusOnItem(index: number): Promise<void>;
|
|
20313
20034
|
activateItem(index: number): Promise<void>;
|
|
20314
20035
|
setFocusedItemIndex(index: number): void;
|
|
20315
20036
|
onKeyUp(event: KeyboardEvent): void;
|
|
20316
20037
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
20317
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
20038
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select" | "update:modelValue" | "update:focusedItem")[], "close" | "select" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
|
|
20318
20039
|
/**
|
|
20319
20040
|
* Key of the currently selected and highlighted item.
|
|
20320
20041
|
*
|
|
@@ -20354,7 +20075,7 @@ default: undefined;
|
|
|
20354
20075
|
* The items to be diplayed in the menu
|
|
20355
20076
|
*/
|
|
20356
20077
|
items: {
|
|
20357
|
-
type: PropType<
|
|
20078
|
+
type: PropType<MenuItem[]>;
|
|
20358
20079
|
required: true;
|
|
20359
20080
|
};
|
|
20360
20081
|
/**
|
|
@@ -20390,64 +20111,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
20390
20111
|
anchor: HTMLElement | undefined;
|
|
20391
20112
|
modelValue: string;
|
|
20392
20113
|
ariaLabel: string;
|
|
20114
|
+
focusedItem: string;
|
|
20393
20115
|
enableKeyboardNavigation: boolean;
|
|
20394
20116
|
selectedMenuItemScreenReaderText: string;
|
|
20395
|
-
focusedItem: string;
|
|
20396
20117
|
}, {}, {
|
|
20397
|
-
FIcon: DefineComponent<ExtractPropTypes< {
|
|
20398
|
-
name: {
|
|
20399
|
-
type: StringConstructor;
|
|
20400
|
-
required: true;
|
|
20401
|
-
};
|
|
20402
|
-
library: {
|
|
20403
|
-
type: StringConstructor;
|
|
20404
|
-
required: false;
|
|
20405
|
-
default: string;
|
|
20406
|
-
};
|
|
20407
|
-
flip: {
|
|
20408
|
-
type: PropType<string>;
|
|
20409
|
-
default: null;
|
|
20410
|
-
required: false;
|
|
20411
|
-
validator(value: string): boolean;
|
|
20412
|
-
};
|
|
20413
|
-
rotate: {
|
|
20414
|
-
type: PropType<string>;
|
|
20415
|
-
default: null;
|
|
20416
|
-
required: false;
|
|
20417
|
-
validator(value: string): boolean;
|
|
20418
|
-
};
|
|
20419
|
-
}>, {}, {}, {
|
|
20420
|
-
spriteKey(): string;
|
|
20421
|
-
spriteId(): string;
|
|
20422
|
-
modifiers(): string[];
|
|
20423
|
-
ariaHidden(): "true" | undefined;
|
|
20424
|
-
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
20425
|
-
name: {
|
|
20426
|
-
type: StringConstructor;
|
|
20427
|
-
required: true;
|
|
20428
|
-
};
|
|
20429
|
-
library: {
|
|
20430
|
-
type: StringConstructor;
|
|
20431
|
-
required: false;
|
|
20432
|
-
default: string;
|
|
20433
|
-
};
|
|
20434
|
-
flip: {
|
|
20435
|
-
type: PropType<string>;
|
|
20436
|
-
default: null;
|
|
20437
|
-
required: false;
|
|
20438
|
-
validator(value: string): boolean;
|
|
20439
|
-
};
|
|
20440
|
-
rotate: {
|
|
20441
|
-
type: PropType<string>;
|
|
20442
|
-
default: null;
|
|
20443
|
-
required: false;
|
|
20444
|
-
validator(value: string): boolean;
|
|
20445
|
-
};
|
|
20446
|
-
}>> & Readonly<{}>, {
|
|
20447
|
-
library: string;
|
|
20448
|
-
flip: string;
|
|
20449
|
-
rotate: string;
|
|
20450
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
20451
20118
|
IPopup: DefineComponent<ExtractPropTypes< {
|
|
20452
20119
|
isOpen: {
|
|
20453
20120
|
type: BooleanConstructor;
|
|
@@ -20660,6 +20327,31 @@ export declare enum MenuAction {
|
|
|
20660
20327
|
ACTIVATE = 4
|
|
20661
20328
|
}
|
|
20662
20329
|
|
|
20330
|
+
/**
|
|
20331
|
+
* Used to define items by `FNavigationMenu`
|
|
20332
|
+
* internal logic and `IPopupMenu` public API.
|
|
20333
|
+
*
|
|
20334
|
+
* @public
|
|
20335
|
+
*/
|
|
20336
|
+
export declare interface MenuItem {
|
|
20337
|
+
/**
|
|
20338
|
+
* Menu item label text
|
|
20339
|
+
*/
|
|
20340
|
+
label: string;
|
|
20341
|
+
/**
|
|
20342
|
+
* Menu item key for referencing upon for example item selection
|
|
20343
|
+
*/
|
|
20344
|
+
key: string;
|
|
20345
|
+
/**
|
|
20346
|
+
* Optional href attribute to use on menu item link
|
|
20347
|
+
*/
|
|
20348
|
+
href?: string;
|
|
20349
|
+
/**
|
|
20350
|
+
* Optional target attribute on menu item link
|
|
20351
|
+
*/
|
|
20352
|
+
target?: string;
|
|
20353
|
+
}
|
|
20354
|
+
|
|
20663
20355
|
/**
|
|
20664
20356
|
* Predefined reasons the modal was closed.
|
|
20665
20357
|
*
|
|
@@ -20843,6 +20535,10 @@ export declare enum Placement {
|
|
|
20843
20535
|
"NotCalculated" = "NotCalculated"
|
|
20844
20536
|
}
|
|
20845
20537
|
|
|
20538
|
+
/* Excluded from this release type: Point */
|
|
20539
|
+
|
|
20540
|
+
/* Excluded from this release type: Rect */
|
|
20541
|
+
|
|
20846
20542
|
/**
|
|
20847
20543
|
* Verifies that a ref is a single `Element` and nothing else.
|
|
20848
20544
|
*
|
|
@@ -20986,6 +20682,8 @@ export declare function tableScrollClasses(val: TableScroll): string[];
|
|
|
20986
20682
|
*/
|
|
20987
20683
|
export declare const TestPlugin: Plugin_2;
|
|
20988
20684
|
|
|
20685
|
+
/* Excluded from this release type: tooltipAttachTo */
|
|
20686
|
+
|
|
20989
20687
|
/**
|
|
20990
20688
|
* @public
|
|
20991
20689
|
*/
|
|
@@ -21090,6 +20788,18 @@ export declare interface UseModal {
|
|
|
21090
20788
|
*/
|
|
21091
20789
|
export declare function useModal(): UseModal;
|
|
21092
20790
|
|
|
20791
|
+
/**
|
|
20792
|
+
* @public
|
|
20793
|
+
*/
|
|
20794
|
+
export declare interface UseSlotUtils {
|
|
20795
|
+
hasSlot(name: string): boolean;
|
|
20796
|
+
}
|
|
20797
|
+
|
|
20798
|
+
/**
|
|
20799
|
+
* @public
|
|
20800
|
+
*/
|
|
20801
|
+
export declare function useSlotUtils(): UseSlotUtils;
|
|
20802
|
+
|
|
21093
20803
|
/**
|
|
21094
20804
|
* Translation function.
|
|
21095
20805
|
* @public
|