@fkui/vue 5.39.0 → 5.41.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 +6749 -6903
- 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 +6750 -6904
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +379 -655
- 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 +3 -5
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;
|
|
@@ -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
|
*/
|
|
@@ -3081,15 +3116,18 @@ default: boolean;
|
|
|
3081
3116
|
};
|
|
3082
3117
|
}>, {}, IPopupData, {
|
|
3083
3118
|
popupClasses(): string[];
|
|
3119
|
+
isInline(): boolean;
|
|
3084
3120
|
forceInline(): boolean;
|
|
3085
3121
|
forceOverlay(): boolean;
|
|
3086
3122
|
teleportTarget(): string | Element;
|
|
3087
3123
|
}, {
|
|
3088
3124
|
toggleIsOpen(isOpen: boolean): Promise<void>;
|
|
3125
|
+
calculatePlacement(): Promise<void>;
|
|
3089
3126
|
applyFocus(): void;
|
|
3090
3127
|
isMobileSize(): boolean;
|
|
3091
3128
|
onDocumentClickHandler(): void;
|
|
3092
|
-
|
|
3129
|
+
onWindowResizeDebounced(): void;
|
|
3130
|
+
onWindowResize(): Promise<void>;
|
|
3093
3131
|
onPopupClickHandler(event: Event): void;
|
|
3094
3132
|
onKeyEsc(): void;
|
|
3095
3133
|
onKeyTab(event: KeyboardEvent): void;
|
|
@@ -3404,7 +3442,7 @@ reason: string;
|
|
|
3404
3442
|
onModalClose(): void;
|
|
3405
3443
|
onFormModalSubmit(): void;
|
|
3406
3444
|
updateItem(item: ListItem): void;
|
|
3407
|
-
}, ComponentOptions, ComponentOptionsMixin, ("created" | "updated" | "update:modelValue" | "
|
|
3445
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "created" | "updated" | "update:modelValue" | "deleted")[], "change" | "created" | "updated" | "update:modelValue" | "deleted", PublicProps, Readonly<ExtractPropTypes< {
|
|
3408
3446
|
/**
|
|
3409
3447
|
* The list of items that should be deleted, modified or added to.
|
|
3410
3448
|
* If the prop is not set an empty array will be used.
|
|
@@ -3560,7 +3598,7 @@ hasDeprecatedSlots(): boolean;
|
|
|
3560
3598
|
onClose(): void;
|
|
3561
3599
|
onSubmit(): Promise<void>;
|
|
3562
3600
|
onCancel(): void;
|
|
3563
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
3601
|
+
}, ComponentOptions, ComponentOptionsMixin, ("cancel" | "close" | "submit")[], "cancel" | "close" | "submit", PublicProps, Readonly<ExtractPropTypes< {
|
|
3564
3602
|
fullscreen: {
|
|
3565
3603
|
type: BooleanConstructor;
|
|
3566
3604
|
required: false;
|
|
@@ -4434,6 +4472,7 @@ viewValue: string;
|
|
|
4434
4472
|
lastModelValue: unknown;
|
|
4435
4473
|
validationMessage: string;
|
|
4436
4474
|
validityMode: string;
|
|
4475
|
+
isAfterInitialRender: boolean;
|
|
4437
4476
|
defaultText: string;
|
|
4438
4477
|
descriptionText: string;
|
|
4439
4478
|
descriptionScreenReaderText: string;
|
|
@@ -4456,11 +4495,12 @@ onFocus(): void;
|
|
|
4456
4495
|
onBlur(): Promise<void>;
|
|
4457
4496
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
4458
4497
|
onPendingValidity(): void;
|
|
4498
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
4459
4499
|
resolveNewModelValue(viewValue: string): unknown;
|
|
4460
4500
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
4461
4501
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
4462
4502
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
4463
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
4503
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
4464
4504
|
id: {
|
|
4465
4505
|
type: StringConstructor;
|
|
4466
4506
|
required: false;
|
|
@@ -4522,7 +4562,7 @@ type: PropType<string | undefined>;
|
|
|
4522
4562
|
required: false;
|
|
4523
4563
|
default: undefined;
|
|
4524
4564
|
};
|
|
4525
|
-
}>,
|
|
4565
|
+
}>, void, {
|
|
4526
4566
|
descriptionClass: string[];
|
|
4527
4567
|
discreteDescriptionClass: string[];
|
|
4528
4568
|
}, {
|
|
@@ -5016,7 +5056,7 @@ isDateEnabled(day: FDate): boolean;
|
|
|
5016
5056
|
isDaySelected(date: FDate): boolean;
|
|
5017
5057
|
highlightDay(date: FDate): boolean;
|
|
5018
5058
|
updateTextFieldValue(newValue: string): Promise<void>;
|
|
5019
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
5059
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5020
5060
|
/** Selected day.
|
|
5021
5061
|
* @model
|
|
5022
5062
|
*/
|
|
@@ -5114,7 +5154,7 @@ required: true;
|
|
|
5114
5154
|
}>, {}, {}, {}, {
|
|
5115
5155
|
onClickDay(date: FDate): void;
|
|
5116
5156
|
onChangeMonth(date: FDate): void;
|
|
5117
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
5157
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5118
5158
|
modelValue: {
|
|
5119
5159
|
type: PropType<FDate>;
|
|
5120
5160
|
required: true;
|
|
@@ -5167,7 +5207,7 @@ onClickPreviousButton(): void;
|
|
|
5167
5207
|
onClickNextButton(): void;
|
|
5168
5208
|
getDateText(value: FDate): string;
|
|
5169
5209
|
isFocused(ref: string): boolean;
|
|
5170
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
5210
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5171
5211
|
modelValue: {
|
|
5172
5212
|
type: PropType<FDate>;
|
|
5173
5213
|
required: true;
|
|
@@ -5262,7 +5302,7 @@ onClickDay(date: FDate): void;
|
|
|
5262
5302
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
5263
5303
|
isDayFocused(date: FDate): boolean;
|
|
5264
5304
|
getTabindex(date: FDate): 0 | -1;
|
|
5265
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
5305
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5266
5306
|
modelValue: {
|
|
5267
5307
|
type: PropType<FDate>;
|
|
5268
5308
|
required: true;
|
|
@@ -5378,15 +5418,18 @@ default: boolean;
|
|
|
5378
5418
|
};
|
|
5379
5419
|
}>, {}, IPopupData, {
|
|
5380
5420
|
popupClasses(): string[];
|
|
5421
|
+
isInline(): boolean;
|
|
5381
5422
|
forceInline(): boolean;
|
|
5382
5423
|
forceOverlay(): boolean;
|
|
5383
5424
|
teleportTarget(): string | Element;
|
|
5384
5425
|
}, {
|
|
5385
5426
|
toggleIsOpen(isOpen: boolean): Promise<void>;
|
|
5427
|
+
calculatePlacement(): Promise<void>;
|
|
5386
5428
|
applyFocus(): void;
|
|
5387
5429
|
isMobileSize(): boolean;
|
|
5388
5430
|
onDocumentClickHandler(): void;
|
|
5389
|
-
|
|
5431
|
+
onWindowResizeDebounced(): void;
|
|
5432
|
+
onWindowResize(): Promise<void>;
|
|
5390
5433
|
onPopupClickHandler(event: Event): void;
|
|
5391
5434
|
onKeyEsc(): void;
|
|
5392
5435
|
onKeyTab(event: KeyboardEvent): void;
|
|
@@ -5498,6 +5541,7 @@ viewValue: string;
|
|
|
5498
5541
|
lastModelValue: unknown;
|
|
5499
5542
|
validationMessage: string;
|
|
5500
5543
|
validityMode: string;
|
|
5544
|
+
isAfterInitialRender: boolean;
|
|
5501
5545
|
defaultText: string;
|
|
5502
5546
|
descriptionText: string;
|
|
5503
5547
|
descriptionScreenReaderText: string;
|
|
@@ -5520,11 +5564,12 @@ onFocus(): void;
|
|
|
5520
5564
|
onBlur(): Promise<void>;
|
|
5521
5565
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
5522
5566
|
onPendingValidity(): void;
|
|
5567
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
5523
5568
|
resolveNewModelValue(viewValue: string): unknown;
|
|
5524
5569
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
5525
5570
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
5526
5571
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
5527
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
5572
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
5528
5573
|
id: {
|
|
5529
5574
|
type: StringConstructor;
|
|
5530
5575
|
required: false;
|
|
@@ -5586,7 +5631,7 @@ type: PropType<string | undefined>;
|
|
|
5586
5631
|
required: false;
|
|
5587
5632
|
default: undefined;
|
|
5588
5633
|
};
|
|
5589
|
-
}>,
|
|
5634
|
+
}>, void, {
|
|
5590
5635
|
descriptionClass: string[];
|
|
5591
5636
|
discreteDescriptionClass: string[];
|
|
5592
5637
|
}, {
|
|
@@ -5951,7 +5996,7 @@ options(): FDialogueTreeOption[];
|
|
|
5951
5996
|
}, {
|
|
5952
5997
|
onClickedOption(option: FDialogueTreeOption, index: number): Promise<void>;
|
|
5953
5998
|
emitChange(lastStep: boolean): void;
|
|
5954
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
5999
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
5955
6000
|
/**
|
|
5956
6001
|
* Current dialogue question
|
|
5957
6002
|
* @model
|
|
@@ -6128,7 +6173,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
6128
6173
|
onPendingValidity(): void;
|
|
6129
6174
|
configureValidators(): void;
|
|
6130
6175
|
configureExtendedValidation(elements: HTMLInputElement[]): void;
|
|
6131
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
6176
|
+
}, ComponentOptions, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
6132
6177
|
/**
|
|
6133
6178
|
* The id for the input id attribute.
|
|
6134
6179
|
* The id for the label for attribute.
|
|
@@ -6227,6 +6272,7 @@ viewValue: string;
|
|
|
6227
6272
|
lastModelValue: unknown;
|
|
6228
6273
|
validationMessage: string;
|
|
6229
6274
|
validityMode: string;
|
|
6275
|
+
isAfterInitialRender: boolean;
|
|
6230
6276
|
defaultText: string;
|
|
6231
6277
|
descriptionText: string;
|
|
6232
6278
|
descriptionScreenReaderText: string;
|
|
@@ -6249,11 +6295,12 @@ onFocus(): void;
|
|
|
6249
6295
|
onBlur(): Promise<void>;
|
|
6250
6296
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
6251
6297
|
onPendingValidity(): void;
|
|
6298
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
6252
6299
|
resolveNewModelValue(viewValue: string): unknown;
|
|
6253
6300
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
6254
6301
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
6255
6302
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
6256
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
6303
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
6257
6304
|
id: {
|
|
6258
6305
|
type: StringConstructor;
|
|
6259
6306
|
required: false;
|
|
@@ -6315,7 +6362,7 @@ type: PropType<string | undefined>;
|
|
|
6315
6362
|
required: false;
|
|
6316
6363
|
default: undefined;
|
|
6317
6364
|
};
|
|
6318
|
-
}>,
|
|
6365
|
+
}>, void, {
|
|
6319
6366
|
descriptionClass: string[];
|
|
6320
6367
|
discreteDescriptionClass: string[];
|
|
6321
6368
|
}, {
|
|
@@ -7373,8 +7420,8 @@ default: string;
|
|
|
7373
7420
|
validator(value: string): boolean;
|
|
7374
7421
|
};
|
|
7375
7422
|
}>> & Readonly<{}>, {
|
|
7376
|
-
name: string;
|
|
7377
7423
|
horizontal: boolean;
|
|
7424
|
+
name: string;
|
|
7378
7425
|
id: string;
|
|
7379
7426
|
labelClass: string;
|
|
7380
7427
|
contentClass: string;
|
|
@@ -8249,7 +8296,7 @@ hasDeprecatedSlots(): boolean;
|
|
|
8249
8296
|
onClose(): void;
|
|
8250
8297
|
onSubmit(): Promise<void>;
|
|
8251
8298
|
onCancel(): void;
|
|
8252
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
8299
|
+
}, ComponentOptions, ComponentOptionsMixin, ("cancel" | "close" | "submit")[], "cancel" | "close" | "submit", PublicProps, Readonly<ExtractPropTypes< {
|
|
8253
8300
|
/**
|
|
8254
8301
|
* Enable fullscreen mode in mobile.
|
|
8255
8302
|
*/
|
|
@@ -9508,7 +9555,7 @@ callbackSortableColumns(columnNames: string[]): void;
|
|
|
9508
9555
|
callbackAfterItemAdd(item: ListItem): void;
|
|
9509
9556
|
callbackBeforeItemDelete(item: ListItem): void;
|
|
9510
9557
|
escapeNewlines(value: string): string;
|
|
9511
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
9558
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect")[], "change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect", PublicProps, Readonly<ExtractPropTypes< {
|
|
9512
9559
|
/**
|
|
9513
9560
|
* The rows to be listed.
|
|
9514
9561
|
* The rows will be listed in the given array order.
|
|
@@ -9594,8 +9641,8 @@ onUnselect?: ((...args: any[]) => any) | undefined;
|
|
|
9594
9641
|
onCollapse?: ((...args: any[]) => any) | undefined;
|
|
9595
9642
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
9596
9643
|
}>, {
|
|
9597
|
-
modelValue: ListArray | undefined;
|
|
9598
9644
|
scroll: TableScroll;
|
|
9645
|
+
modelValue: ListArray | undefined;
|
|
9599
9646
|
striped: boolean;
|
|
9600
9647
|
selectable: boolean;
|
|
9601
9648
|
hover: boolean;
|
|
@@ -9657,7 +9704,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
9657
9704
|
enter(element: Element): void;
|
|
9658
9705
|
afterEnter(element: Element): void;
|
|
9659
9706
|
leave(element: Element): void;
|
|
9660
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
9707
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
9661
9708
|
disabled: {
|
|
9662
9709
|
type: BooleanConstructor;
|
|
9663
9710
|
required: false;
|
|
@@ -9792,7 +9839,7 @@ type: PropType<string | undefined>;
|
|
|
9792
9839
|
required: false;
|
|
9793
9840
|
default: undefined;
|
|
9794
9841
|
};
|
|
9795
|
-
}>,
|
|
9842
|
+
}>, void, {
|
|
9796
9843
|
descriptionClass: string[];
|
|
9797
9844
|
discreteDescriptionClass: string[];
|
|
9798
9845
|
}, {
|
|
@@ -10185,7 +10232,7 @@ onItemBlur(event: FocusEvent): void;
|
|
|
10185
10232
|
callbackAfterItemAdd(item: ListItem): void;
|
|
10186
10233
|
callbackBeforeItemDelete(item: ListItem): void;
|
|
10187
10234
|
isActive(item: ListItem): boolean;
|
|
10188
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
10235
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "select" | "update:modelValue" | "update" | "unselect" | "update:active")[], "change" | "click" | "select" | "update:modelValue" | "update" | "unselect" | "update:active", PublicProps, Readonly<ExtractPropTypes< {
|
|
10189
10236
|
/**
|
|
10190
10237
|
* The items to be listed.
|
|
10191
10238
|
* The items will be listed in the given array order.
|
|
@@ -10313,7 +10360,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
10313
10360
|
enter(element: Element): void;
|
|
10314
10361
|
afterEnter(element: Element): void;
|
|
10315
10362
|
leave(element: Element): void;
|
|
10316
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
10363
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
10317
10364
|
disabled: {
|
|
10318
10365
|
type: BooleanConstructor;
|
|
10319
10366
|
required: false;
|
|
@@ -10383,6 +10430,18 @@ type: StringConstructor;
|
|
|
10383
10430
|
required: false;
|
|
10384
10431
|
default: string;
|
|
10385
10432
|
};
|
|
10433
|
+
/**
|
|
10434
|
+
* Set teleport target (when overlay is enabled).
|
|
10435
|
+
*
|
|
10436
|
+
* - When set to a string it is used as a selector.
|
|
10437
|
+
* - When set to a element it is used directly.
|
|
10438
|
+
* - Default uses {@link config#teleportTarget}.
|
|
10439
|
+
*/
|
|
10440
|
+
teleport: {
|
|
10441
|
+
type: PropType<string | HTMLElement | undefined>;
|
|
10442
|
+
required: false;
|
|
10443
|
+
default: undefined;
|
|
10444
|
+
};
|
|
10386
10445
|
}>, {}, {
|
|
10387
10446
|
oldFocus: HTMLElement;
|
|
10388
10447
|
}, {
|
|
@@ -10428,7 +10487,20 @@ type: StringConstructor;
|
|
|
10428
10487
|
required: false;
|
|
10429
10488
|
default: string;
|
|
10430
10489
|
};
|
|
10490
|
+
/**
|
|
10491
|
+
* Set teleport target (when overlay is enabled).
|
|
10492
|
+
*
|
|
10493
|
+
* - When set to a string it is used as a selector.
|
|
10494
|
+
* - When set to a element it is used directly.
|
|
10495
|
+
* - Default uses {@link config#teleportTarget}.
|
|
10496
|
+
*/
|
|
10497
|
+
teleport: {
|
|
10498
|
+
type: PropType<string | HTMLElement | undefined>;
|
|
10499
|
+
required: false;
|
|
10500
|
+
default: undefined;
|
|
10501
|
+
};
|
|
10431
10502
|
}>> & Readonly<{}>, {
|
|
10503
|
+
teleport: string | HTMLElement | undefined;
|
|
10432
10504
|
overlay: boolean;
|
|
10433
10505
|
delay: boolean;
|
|
10434
10506
|
language: string;
|
|
@@ -10893,8 +10965,8 @@ export declare interface FModalData {
|
|
|
10893
10965
|
}
|
|
10894
10966
|
|
|
10895
10967
|
export declare const FNavigationMenu: DefineComponent<ExtractPropTypes< {
|
|
10896
|
-
/**
|
|
10897
|
-
*
|
|
10968
|
+
/**
|
|
10969
|
+
* Current route.
|
|
10898
10970
|
*/
|
|
10899
10971
|
route: {
|
|
10900
10972
|
type: StringConstructor;
|
|
@@ -10956,52 +11028,37 @@ type: StringConstructor;
|
|
|
10956
11028
|
required: false;
|
|
10957
11029
|
default: string;
|
|
10958
11030
|
};
|
|
10959
|
-
}>, {}, {
|
|
10960
|
-
|
|
10961
|
-
|
|
10962
|
-
|
|
10963
|
-
|
|
10964
|
-
|
|
10965
|
-
|
|
10966
|
-
|
|
10967
|
-
|
|
10968
|
-
|
|
10969
|
-
|
|
10970
|
-
}, {
|
|
10971
|
-
items(): IMenuItem[];
|
|
10972
|
-
visibleItems(): IMenuItem[];
|
|
10973
|
-
popupItems(): IMenuItem[];
|
|
10974
|
-
hasPopupMenuSelectedItems(): boolean;
|
|
11031
|
+
}>, {}, FNavigationMenuData, {
|
|
11032
|
+
items(): MenuItem[];
|
|
11033
|
+
overflowItems(): MenuItem[];
|
|
11034
|
+
hasOverflow(): boolean;
|
|
11035
|
+
overflowItemSelected(): boolean;
|
|
11036
|
+
menuClasses(): string[];
|
|
11037
|
+
popupItemClasses(): string[];
|
|
11038
|
+
selectedItemSrText(): string;
|
|
11039
|
+
popupLabel(): string;
|
|
11040
|
+
popupMenuSrText(): string;
|
|
11041
|
+
popupMenuSelectedSrText(): string;
|
|
10975
11042
|
}, {
|
|
10976
|
-
|
|
10977
|
-
|
|
10978
|
-
|
|
10979
|
-
|
|
10980
|
-
|
|
10981
|
-
|
|
10982
|
-
|
|
10983
|
-
|
|
10984
|
-
|
|
10985
|
-
|
|
10986
|
-
|
|
10987
|
-
|
|
11043
|
+
itemClasses(item: MenuItem, index: number): string[];
|
|
11044
|
+
showItemSrText(index: number): boolean;
|
|
11045
|
+
getVisibleAnchors(): HTMLElement[];
|
|
11046
|
+
getAnchor(index: number): HTMLElement | undefined;
|
|
11047
|
+
findItemByKey(key: string): MenuItem | undefined;
|
|
11048
|
+
indexOfItemByKey(key: string): number;
|
|
11049
|
+
selectItem(key: string): void;
|
|
11050
|
+
activateItem(index: number): Promise<void>;
|
|
11051
|
+
onClickItem(event: Event, item: MenuItem): void;
|
|
11052
|
+
clickItemAnchor(item: MenuItem): void;
|
|
11053
|
+
onPopupMenuItemSelected(key: string): void;
|
|
11054
|
+
togglePopup(open: boolean): void;
|
|
11055
|
+
setFocusOnItem(index: number): Promise<void>;
|
|
11056
|
+
onResize(): Promise<void>;
|
|
10988
11057
|
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
11058
|
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
11059
|
}, ComponentOptions, ComponentOptionsMixin, ("selectedRoute" | "update:route")[], "selectedRoute" | "update:route", PublicProps, Readonly<ExtractPropTypes< {
|
|
11003
|
-
/**
|
|
11004
|
-
*
|
|
11060
|
+
/**
|
|
11061
|
+
* Current route.
|
|
11005
11062
|
*/
|
|
11006
11063
|
route: {
|
|
11007
11064
|
type: StringConstructor;
|
|
@@ -11075,111 +11132,6 @@ menuMoreWithSelectedItemsScreenReaderText: string;
|
|
|
11075
11132
|
menuAriaLabel: string;
|
|
11076
11133
|
popupAriaLabel: string;
|
|
11077
11134
|
}, {}, {
|
|
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
11135
|
FIcon: DefineComponent<ExtractPropTypes< {
|
|
11184
11136
|
name: {
|
|
11185
11137
|
type: StringConstructor;
|
|
@@ -11234,7 +11186,6 @@ library: string;
|
|
|
11234
11186
|
flip: string;
|
|
11235
11187
|
rotate: string;
|
|
11236
11188
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11237
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11238
11189
|
IPopupMenu: DefineComponent<ExtractPropTypes< {
|
|
11239
11190
|
modelValue: {
|
|
11240
11191
|
type: StringConstructor;
|
|
@@ -11255,7 +11206,7 @@ type: PropType<HTMLElement | undefined>;
|
|
|
11255
11206
|
default: undefined;
|
|
11256
11207
|
};
|
|
11257
11208
|
items: {
|
|
11258
|
-
type: PropType<
|
|
11209
|
+
type: PropType<MenuItem[]>;
|
|
11259
11210
|
required: true;
|
|
11260
11211
|
};
|
|
11261
11212
|
enableKeyboardNavigation: {
|
|
@@ -11279,16 +11230,18 @@ lastSelectedItem: string;
|
|
|
11279
11230
|
}, {}, {
|
|
11280
11231
|
isSelected(index: number): boolean;
|
|
11281
11232
|
focusElement(): HTMLElement | null;
|
|
11282
|
-
findItemByKey(key: string):
|
|
11233
|
+
findItemByKey(key: string): MenuItem | undefined;
|
|
11283
11234
|
indexOfItemByKey(key: string): number;
|
|
11284
|
-
onClickItem(
|
|
11285
|
-
|
|
11235
|
+
onClickItem(event: Event, item: MenuItem): void;
|
|
11236
|
+
clickItemAnchor(item: MenuItem): void;
|
|
11237
|
+
selectItem(key: string): void;
|
|
11238
|
+
itemClasses(item: MenuItem): string[];
|
|
11286
11239
|
setFocusOnItem(index: number): Promise<void>;
|
|
11287
11240
|
activateItem(index: number): Promise<void>;
|
|
11288
11241
|
setFocusedItemIndex(index: number): void;
|
|
11289
11242
|
onKeyUp(event: KeyboardEvent): void;
|
|
11290
11243
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
11291
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
11244
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select" | "update:modelValue" | "update:focusedItem")[], "close" | "select" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
|
|
11292
11245
|
modelValue: {
|
|
11293
11246
|
type: StringConstructor;
|
|
11294
11247
|
required: false;
|
|
@@ -11308,7 +11261,7 @@ type: PropType<HTMLElement | undefined>;
|
|
|
11308
11261
|
default: undefined;
|
|
11309
11262
|
};
|
|
11310
11263
|
items: {
|
|
11311
|
-
type: PropType<
|
|
11264
|
+
type: PropType<MenuItem[]>;
|
|
11312
11265
|
required: true;
|
|
11313
11266
|
};
|
|
11314
11267
|
enableKeyboardNavigation: {
|
|
@@ -11335,84 +11288,30 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
11335
11288
|
anchor: HTMLElement | undefined;
|
|
11336
11289
|
modelValue: string;
|
|
11337
11290
|
ariaLabel: string;
|
|
11291
|
+
focusedItem: string;
|
|
11338
11292
|
enableKeyboardNavigation: boolean;
|
|
11339
11293
|
selectedMenuItemScreenReaderText: string;
|
|
11340
|
-
focusedItem: string;
|
|
11341
11294
|
}, {}, {
|
|
11342
|
-
|
|
11343
|
-
|
|
11344
|
-
type:
|
|
11295
|
+
IPopup: DefineComponent<ExtractPropTypes< {
|
|
11296
|
+
isOpen: {
|
|
11297
|
+
type: BooleanConstructor;
|
|
11345
11298
|
required: true;
|
|
11346
11299
|
};
|
|
11347
|
-
|
|
11348
|
-
type:
|
|
11300
|
+
anchor: {
|
|
11301
|
+
type: PropType<HTMLElement | null | undefined>;
|
|
11349
11302
|
required: false;
|
|
11350
|
-
default:
|
|
11303
|
+
default: undefined;
|
|
11351
11304
|
};
|
|
11352
|
-
|
|
11353
|
-
type: PropType<
|
|
11354
|
-
default: null;
|
|
11305
|
+
inline: {
|
|
11306
|
+
type: PropType<"always" | "never" | "auto">;
|
|
11355
11307
|
required: false;
|
|
11356
11308
|
validator(value: string): boolean;
|
|
11309
|
+
default: string;
|
|
11357
11310
|
};
|
|
11358
|
-
|
|
11359
|
-
type:
|
|
11360
|
-
default: null;
|
|
11311
|
+
alwaysInline: {
|
|
11312
|
+
type: BooleanConstructor;
|
|
11361
11313
|
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;
|
|
11314
|
+
default: boolean;
|
|
11416
11315
|
};
|
|
11417
11316
|
container: {
|
|
11418
11317
|
type: PropType<HTMLElement | null | undefined>;
|
|
@@ -11441,15 +11340,18 @@ default: boolean;
|
|
|
11441
11340
|
};
|
|
11442
11341
|
}>, {}, IPopupData, {
|
|
11443
11342
|
popupClasses(): string[];
|
|
11343
|
+
isInline(): boolean;
|
|
11444
11344
|
forceInline(): boolean;
|
|
11445
11345
|
forceOverlay(): boolean;
|
|
11446
11346
|
teleportTarget(): string | Element;
|
|
11447
11347
|
}, {
|
|
11448
11348
|
toggleIsOpen(isOpen: boolean): Promise<void>;
|
|
11349
|
+
calculatePlacement(): Promise<void>;
|
|
11449
11350
|
applyFocus(): void;
|
|
11450
11351
|
isMobileSize(): boolean;
|
|
11451
11352
|
onDocumentClickHandler(): void;
|
|
11452
|
-
|
|
11353
|
+
onWindowResizeDebounced(): void;
|
|
11354
|
+
onWindowResize(): Promise<void>;
|
|
11453
11355
|
onPopupClickHandler(event: Event): void;
|
|
11454
11356
|
onKeyEsc(): void;
|
|
11455
11357
|
onKeyTab(event: KeyboardEvent): void;
|
|
@@ -11515,6 +11417,18 @@ setFocus: boolean;
|
|
|
11515
11417
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11516
11418
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11517
11419
|
|
|
11420
|
+
/**
|
|
11421
|
+
* @public
|
|
11422
|
+
*/
|
|
11423
|
+
export declare interface FNavigationMenuData {
|
|
11424
|
+
selectedItem: string;
|
|
11425
|
+
focusedPopupMenuItem: string;
|
|
11426
|
+
overflowIndex: number;
|
|
11427
|
+
popupOpen: boolean;
|
|
11428
|
+
popupAnchor: HTMLElement | undefined;
|
|
11429
|
+
resizeObserver: ResizeObserver | undefined;
|
|
11430
|
+
}
|
|
11431
|
+
|
|
11518
11432
|
export declare const FNumericTextField: DefineComponent<ExtractPropTypes< {
|
|
11519
11433
|
/**
|
|
11520
11434
|
* The number of decimals to format number as.
|
|
@@ -11586,6 +11500,7 @@ viewValue: string;
|
|
|
11586
11500
|
lastModelValue: unknown;
|
|
11587
11501
|
validationMessage: string;
|
|
11588
11502
|
validityMode: string;
|
|
11503
|
+
isAfterInitialRender: boolean;
|
|
11589
11504
|
defaultText: string;
|
|
11590
11505
|
descriptionText: string;
|
|
11591
11506
|
descriptionScreenReaderText: string;
|
|
@@ -11608,11 +11523,12 @@ onFocus(): void;
|
|
|
11608
11523
|
onBlur(): Promise<void>;
|
|
11609
11524
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
11610
11525
|
onPendingValidity(): void;
|
|
11526
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
11611
11527
|
resolveNewModelValue(viewValue: string): unknown;
|
|
11612
11528
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
11613
11529
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
11614
11530
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
11615
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
11531
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
11616
11532
|
id: {
|
|
11617
11533
|
type: StringConstructor;
|
|
11618
11534
|
required: false;
|
|
@@ -11674,7 +11590,7 @@ type: PropType<string | undefined>;
|
|
|
11674
11590
|
required: false;
|
|
11675
11591
|
default: undefined;
|
|
11676
11592
|
};
|
|
11677
|
-
}>,
|
|
11593
|
+
}>, void, {
|
|
11678
11594
|
descriptionClass: string[];
|
|
11679
11595
|
discreteDescriptionClass: string[];
|
|
11680
11596
|
}, {
|
|
@@ -12151,6 +12067,7 @@ viewValue: string;
|
|
|
12151
12067
|
lastModelValue: unknown;
|
|
12152
12068
|
validationMessage: string;
|
|
12153
12069
|
validityMode: string;
|
|
12070
|
+
isAfterInitialRender: boolean;
|
|
12154
12071
|
defaultText: string;
|
|
12155
12072
|
descriptionText: string;
|
|
12156
12073
|
descriptionScreenReaderText: string;
|
|
@@ -12173,11 +12090,12 @@ onFocus(): void;
|
|
|
12173
12090
|
onBlur(): Promise<void>;
|
|
12174
12091
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
12175
12092
|
onPendingValidity(): void;
|
|
12093
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
12176
12094
|
resolveNewModelValue(viewValue: string): unknown;
|
|
12177
12095
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
12178
12096
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
12179
12097
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
12180
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
12098
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
12181
12099
|
id: {
|
|
12182
12100
|
type: StringConstructor;
|
|
12183
12101
|
required: false;
|
|
@@ -12239,7 +12157,7 @@ type: PropType<string | undefined>;
|
|
|
12239
12157
|
required: false;
|
|
12240
12158
|
default: undefined;
|
|
12241
12159
|
};
|
|
12242
|
-
}>,
|
|
12160
|
+
}>, void, {
|
|
12243
12161
|
descriptionClass: string[];
|
|
12244
12162
|
discreteDescriptionClass: string[];
|
|
12245
12163
|
}, {
|
|
@@ -12605,7 +12523,7 @@ type: PropType<string | undefined>;
|
|
|
12605
12523
|
required: false;
|
|
12606
12524
|
default: undefined;
|
|
12607
12525
|
};
|
|
12608
|
-
}>,
|
|
12526
|
+
}>, void, {
|
|
12609
12527
|
descriptionClass: string[];
|
|
12610
12528
|
discreteDescriptionClass: string[];
|
|
12611
12529
|
}, {
|
|
@@ -12923,6 +12841,7 @@ viewValue: string;
|
|
|
12923
12841
|
lastModelValue: unknown;
|
|
12924
12842
|
validationMessage: string;
|
|
12925
12843
|
validityMode: string;
|
|
12844
|
+
isAfterInitialRender: boolean;
|
|
12926
12845
|
defaultText: string;
|
|
12927
12846
|
descriptionText: string;
|
|
12928
12847
|
descriptionScreenReaderText: string;
|
|
@@ -12945,11 +12864,12 @@ onFocus(): void;
|
|
|
12945
12864
|
onBlur(): Promise<void>;
|
|
12946
12865
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
12947
12866
|
onPendingValidity(): void;
|
|
12867
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
12948
12868
|
resolveNewModelValue(viewValue: string): unknown;
|
|
12949
12869
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
12950
12870
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
12951
12871
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
12952
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
12872
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
12953
12873
|
id: {
|
|
12954
12874
|
type: StringConstructor;
|
|
12955
12875
|
required: false;
|
|
@@ -13011,7 +12931,7 @@ type: PropType<string | undefined>;
|
|
|
13011
12931
|
required: false;
|
|
13012
12932
|
default: undefined;
|
|
13013
12933
|
};
|
|
13014
|
-
}>,
|
|
12934
|
+
}>, void, {
|
|
13015
12935
|
descriptionClass: string[];
|
|
13016
12936
|
discreteDescriptionClass: string[];
|
|
13017
12937
|
}, {
|
|
@@ -13329,6 +13249,7 @@ viewValue: string;
|
|
|
13329
13249
|
lastModelValue: unknown;
|
|
13330
13250
|
validationMessage: string;
|
|
13331
13251
|
validityMode: string;
|
|
13252
|
+
isAfterInitialRender: boolean;
|
|
13332
13253
|
defaultText: string;
|
|
13333
13254
|
descriptionText: string;
|
|
13334
13255
|
descriptionScreenReaderText: string;
|
|
@@ -13351,11 +13272,12 @@ onFocus(): void;
|
|
|
13351
13272
|
onBlur(): Promise<void>;
|
|
13352
13273
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
13353
13274
|
onPendingValidity(): void;
|
|
13275
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
13354
13276
|
resolveNewModelValue(viewValue: string): unknown;
|
|
13355
13277
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
13356
13278
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
13357
13279
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
13358
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13280
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
13359
13281
|
id: {
|
|
13360
13282
|
type: StringConstructor;
|
|
13361
13283
|
required: false;
|
|
@@ -13417,7 +13339,7 @@ type: PropType<string | undefined>;
|
|
|
13417
13339
|
required: false;
|
|
13418
13340
|
default: undefined;
|
|
13419
13341
|
};
|
|
13420
|
-
}>,
|
|
13342
|
+
}>, void, {
|
|
13421
13343
|
descriptionClass: string[];
|
|
13422
13344
|
discreteDescriptionClass: string[];
|
|
13423
13345
|
}, {
|
|
@@ -13701,7 +13623,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
|
13701
13623
|
onPendingValidity(): void;
|
|
13702
13624
|
configureValidators(): void;
|
|
13703
13625
|
configureExtendedValidation(elements: HTMLInputElement[]): void;
|
|
13704
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
13626
|
+
}, ComponentOptions, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
13705
13627
|
/**
|
|
13706
13628
|
* The id for the input id attribute.
|
|
13707
13629
|
* The id for the label for attribute.
|
|
@@ -13790,6 +13712,7 @@ viewValue: string;
|
|
|
13790
13712
|
lastModelValue: unknown;
|
|
13791
13713
|
validationMessage: string;
|
|
13792
13714
|
validityMode: string;
|
|
13715
|
+
isAfterInitialRender: boolean;
|
|
13793
13716
|
defaultText: string;
|
|
13794
13717
|
descriptionText: string;
|
|
13795
13718
|
descriptionScreenReaderText: string;
|
|
@@ -13812,11 +13735,12 @@ onFocus(): void;
|
|
|
13812
13735
|
onBlur(): Promise<void>;
|
|
13813
13736
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
13814
13737
|
onPendingValidity(): void;
|
|
13738
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
13815
13739
|
resolveNewModelValue(viewValue: string): unknown;
|
|
13816
13740
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
13817
13741
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
13818
13742
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
13819
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
13743
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
13820
13744
|
id: {
|
|
13821
13745
|
type: StringConstructor;
|
|
13822
13746
|
required: false;
|
|
@@ -13878,7 +13802,7 @@ type: PropType<string | undefined>;
|
|
|
13878
13802
|
required: false;
|
|
13879
13803
|
default: undefined;
|
|
13880
13804
|
};
|
|
13881
|
-
}>,
|
|
13805
|
+
}>, void, {
|
|
13882
13806
|
descriptionClass: string[];
|
|
13883
13807
|
discreteDescriptionClass: string[];
|
|
13884
13808
|
}, {
|
|
@@ -14167,6 +14091,7 @@ viewValue: string;
|
|
|
14167
14091
|
lastModelValue: unknown;
|
|
14168
14092
|
validationMessage: string;
|
|
14169
14093
|
validityMode: string;
|
|
14094
|
+
isAfterInitialRender: boolean;
|
|
14170
14095
|
defaultText: string;
|
|
14171
14096
|
descriptionText: string;
|
|
14172
14097
|
descriptionScreenReaderText: string;
|
|
@@ -14189,11 +14114,12 @@ onFocus(): void;
|
|
|
14189
14114
|
onBlur(): Promise<void>;
|
|
14190
14115
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
14191
14116
|
onPendingValidity(): void;
|
|
14117
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
14192
14118
|
resolveNewModelValue(viewValue: string): unknown;
|
|
14193
14119
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
14194
14120
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
14195
14121
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
14196
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
14122
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
14197
14123
|
id: {
|
|
14198
14124
|
type: StringConstructor;
|
|
14199
14125
|
required: false;
|
|
@@ -14255,7 +14181,7 @@ type: PropType<string | undefined>;
|
|
|
14255
14181
|
required: false;
|
|
14256
14182
|
default: undefined;
|
|
14257
14183
|
};
|
|
14258
|
-
}>,
|
|
14184
|
+
}>, void, {
|
|
14259
14185
|
descriptionClass: string[];
|
|
14260
14186
|
discreteDescriptionClass: string[];
|
|
14261
14187
|
}, {
|
|
@@ -14553,6 +14479,7 @@ viewValue: string;
|
|
|
14553
14479
|
lastModelValue: unknown;
|
|
14554
14480
|
validationMessage: string;
|
|
14555
14481
|
validityMode: string;
|
|
14482
|
+
isAfterInitialRender: boolean;
|
|
14556
14483
|
defaultText: string;
|
|
14557
14484
|
descriptionText: string;
|
|
14558
14485
|
descriptionScreenReaderText: string;
|
|
@@ -14575,11 +14502,12 @@ onFocus(): void;
|
|
|
14575
14502
|
onBlur(): Promise<void>;
|
|
14576
14503
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
14577
14504
|
onPendingValidity(): void;
|
|
14505
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
14578
14506
|
resolveNewModelValue(viewValue: string): unknown;
|
|
14579
14507
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
14580
14508
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
14581
14509
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
14582
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
14510
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
14583
14511
|
id: {
|
|
14584
14512
|
type: StringConstructor;
|
|
14585
14513
|
required: false;
|
|
@@ -14641,7 +14569,7 @@ type: PropType<string | undefined>;
|
|
|
14641
14569
|
required: false;
|
|
14642
14570
|
default: undefined;
|
|
14643
14571
|
};
|
|
14644
|
-
}>,
|
|
14572
|
+
}>, void, {
|
|
14645
14573
|
descriptionClass: string[];
|
|
14646
14574
|
discreteDescriptionClass: string[];
|
|
14647
14575
|
}, {
|
|
@@ -15104,8 +15032,8 @@ default: string;
|
|
|
15104
15032
|
validator(value: string): boolean;
|
|
15105
15033
|
};
|
|
15106
15034
|
}>> & Readonly<{}>, {
|
|
15107
|
-
name: string;
|
|
15108
15035
|
horizontal: boolean;
|
|
15036
|
+
name: string;
|
|
15109
15037
|
id: string;
|
|
15110
15038
|
labelClass: string;
|
|
15111
15039
|
contentClass: string;
|
|
@@ -15200,7 +15128,7 @@ onInput(event: Event): void;
|
|
|
15200
15128
|
onChange(event: Event): void;
|
|
15201
15129
|
onBlur(event: Event): void;
|
|
15202
15130
|
onUpdate(event: Event): void;
|
|
15203
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
15131
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
15204
15132
|
id: {
|
|
15205
15133
|
type: StringConstructor;
|
|
15206
15134
|
required: false;
|
|
@@ -15280,6 +15208,7 @@ viewValue: string;
|
|
|
15280
15208
|
lastModelValue: unknown;
|
|
15281
15209
|
validationMessage: string;
|
|
15282
15210
|
validityMode: string;
|
|
15211
|
+
isAfterInitialRender: boolean;
|
|
15283
15212
|
defaultText: string;
|
|
15284
15213
|
descriptionText: string;
|
|
15285
15214
|
descriptionScreenReaderText: string;
|
|
@@ -15302,11 +15231,12 @@ onFocus(): void;
|
|
|
15302
15231
|
onBlur(): Promise<void>;
|
|
15303
15232
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
15304
15233
|
onPendingValidity(): void;
|
|
15234
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
15305
15235
|
resolveNewModelValue(viewValue: string): unknown;
|
|
15306
15236
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
15307
15237
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
15308
15238
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
15309
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
15239
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
15310
15240
|
id: {
|
|
15311
15241
|
type: StringConstructor;
|
|
15312
15242
|
required: false;
|
|
@@ -15368,7 +15298,7 @@ type: PropType<string | undefined>;
|
|
|
15368
15298
|
required: false;
|
|
15369
15299
|
default: undefined;
|
|
15370
15300
|
};
|
|
15371
|
-
}>,
|
|
15301
|
+
}>, void, {
|
|
15372
15302
|
descriptionClass: string[];
|
|
15373
15303
|
discreteDescriptionClass: string[];
|
|
15374
15304
|
}, {
|
|
@@ -15723,7 +15653,7 @@ set(value: unknown): void;
|
|
|
15723
15653
|
};
|
|
15724
15654
|
}, {
|
|
15725
15655
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
15726
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
15656
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
15727
15657
|
/**
|
|
15728
15658
|
* The id for the select id attribute.
|
|
15729
15659
|
* The id for the label for attribute.
|
|
@@ -15846,7 +15776,7 @@ type: PropType<string | undefined>;
|
|
|
15846
15776
|
required: false;
|
|
15847
15777
|
default: undefined;
|
|
15848
15778
|
};
|
|
15849
|
-
}>,
|
|
15779
|
+
}>, void, {
|
|
15850
15780
|
descriptionClass: string[];
|
|
15851
15781
|
discreteDescriptionClass: string[];
|
|
15852
15782
|
}, {
|
|
@@ -16108,7 +16038,7 @@ set(value: unknown): void;
|
|
|
16108
16038
|
};
|
|
16109
16039
|
}, {
|
|
16110
16040
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
16111
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
16041
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
16112
16042
|
id: {
|
|
16113
16043
|
type: StringConstructor;
|
|
16114
16044
|
required: false;
|
|
@@ -16204,7 +16134,7 @@ type: PropType<string | undefined>;
|
|
|
16204
16134
|
required: false;
|
|
16205
16135
|
default: undefined;
|
|
16206
16136
|
};
|
|
16207
|
-
}>,
|
|
16137
|
+
}>, void, {
|
|
16208
16138
|
descriptionClass: string[];
|
|
16209
16139
|
discreteDescriptionClass: string[];
|
|
16210
16140
|
}, {
|
|
@@ -16326,6 +16256,7 @@ viewValue: string;
|
|
|
16326
16256
|
lastModelValue: unknown;
|
|
16327
16257
|
validationMessage: string;
|
|
16328
16258
|
validityMode: string;
|
|
16259
|
+
isAfterInitialRender: boolean;
|
|
16329
16260
|
defaultText: string;
|
|
16330
16261
|
descriptionText: string;
|
|
16331
16262
|
descriptionScreenReaderText: string;
|
|
@@ -16348,11 +16279,12 @@ onFocus(): void;
|
|
|
16348
16279
|
onBlur(): Promise<void>;
|
|
16349
16280
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
16350
16281
|
onPendingValidity(): void;
|
|
16282
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
16351
16283
|
resolveNewModelValue(viewValue: string): unknown;
|
|
16352
16284
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
16353
16285
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
16354
16286
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
16355
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
16287
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
16356
16288
|
id: {
|
|
16357
16289
|
type: StringConstructor;
|
|
16358
16290
|
required: false;
|
|
@@ -16414,7 +16346,7 @@ type: PropType<string | undefined>;
|
|
|
16414
16346
|
required: false;
|
|
16415
16347
|
default: undefined;
|
|
16416
16348
|
};
|
|
16417
|
-
}>,
|
|
16349
|
+
}>, void, {
|
|
16418
16350
|
descriptionClass: string[];
|
|
16419
16351
|
discreteDescriptionClass: string[];
|
|
16420
16352
|
}, {
|
|
@@ -16829,7 +16761,7 @@ type: PropType<string | undefined>;
|
|
|
16829
16761
|
required: false;
|
|
16830
16762
|
default: undefined;
|
|
16831
16763
|
};
|
|
16832
|
-
}>,
|
|
16764
|
+
}>, void, {
|
|
16833
16765
|
descriptionClass: string[];
|
|
16834
16766
|
discreteDescriptionClass: string[];
|
|
16835
16767
|
}, {
|
|
@@ -17318,7 +17250,7 @@ type: PropType<string | undefined>;
|
|
|
17318
17250
|
required: false;
|
|
17319
17251
|
default: undefined;
|
|
17320
17252
|
};
|
|
17321
|
-
}>,
|
|
17253
|
+
}>, void, {
|
|
17322
17254
|
descriptionClass: string[];
|
|
17323
17255
|
discreteDescriptionClass: string[];
|
|
17324
17256
|
}, {
|
|
@@ -17491,6 +17423,7 @@ viewValue: string;
|
|
|
17491
17423
|
lastModelValue: unknown;
|
|
17492
17424
|
validationMessage: string;
|
|
17493
17425
|
validityMode: string;
|
|
17426
|
+
isAfterInitialRender: boolean;
|
|
17494
17427
|
defaultText: string;
|
|
17495
17428
|
descriptionText: string;
|
|
17496
17429
|
descriptionScreenReaderText: string;
|
|
@@ -17513,11 +17446,12 @@ onFocus(): void;
|
|
|
17513
17446
|
onBlur(): Promise<void>;
|
|
17514
17447
|
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
17515
17448
|
onPendingValidity(): void;
|
|
17449
|
+
onValidationConfigUpdate(): Promise<void>;
|
|
17516
17450
|
resolveNewModelValue(viewValue: string): unknown;
|
|
17517
17451
|
syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
|
|
17518
17452
|
triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
|
|
17519
17453
|
setViewValueToFormattedValueOrFallbackToValue(): void;
|
|
17520
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
17454
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
|
|
17521
17455
|
/**
|
|
17522
17456
|
* The id for the input id attribute.
|
|
17523
17457
|
* The id for the label for attribute.
|
|
@@ -17629,7 +17563,7 @@ type: PropType<string | undefined>;
|
|
|
17629
17563
|
required: false;
|
|
17630
17564
|
default: undefined;
|
|
17631
17565
|
};
|
|
17632
|
-
}>,
|
|
17566
|
+
}>, void, {
|
|
17633
17567
|
descriptionClass: string[];
|
|
17634
17568
|
discreteDescriptionClass: string[];
|
|
17635
17569
|
}, {
|
|
@@ -17860,6 +17794,20 @@ rotate: string;
|
|
|
17860
17794
|
|
|
17861
17795
|
export declare const FTooltip: DefineComponent<ExtractPropTypes< {
|
|
17862
17796
|
/**
|
|
17797
|
+
* Element to attach tooltip toggle button.
|
|
17798
|
+
*
|
|
17799
|
+
* Only needed when using with arbitrary elements, e.g. when using with
|
|
17800
|
+
* `FLabel` you do not need to set this prop.
|
|
17801
|
+
*/
|
|
17802
|
+
attachTo: {
|
|
17803
|
+
type: {
|
|
17804
|
+
new (): HTMLElement;
|
|
17805
|
+
prototype: HTMLElement;
|
|
17806
|
+
};
|
|
17807
|
+
required: false;
|
|
17808
|
+
default: null;
|
|
17809
|
+
};
|
|
17810
|
+
/**
|
|
17863
17811
|
* State (expanded or collapsed) of the tooltip. The value is `true` if the tooltip is expanded.
|
|
17864
17812
|
*
|
|
17865
17813
|
* @model
|
|
@@ -17902,14 +17850,31 @@ default: string;
|
|
|
17902
17850
|
required: false;
|
|
17903
17851
|
validator(value: string): boolean;
|
|
17904
17852
|
};
|
|
17905
|
-
}>, {
|
|
17853
|
+
}>, {
|
|
17854
|
+
animate: (state: "expand" | "collapse") => void;
|
|
17855
|
+
iconTarget: ComputedRef<HTMLElement | null>;
|
|
17856
|
+
ready: Ref<boolean, boolean>;
|
|
17857
|
+
}, {
|
|
17906
17858
|
isOpen: boolean;
|
|
17907
17859
|
}, {
|
|
17908
17860
|
hasHeader(): boolean;
|
|
17909
17861
|
}, {
|
|
17910
17862
|
/* Excluded from this release type: onClickToggle */
|
|
17911
|
-
|
|
17912
|
-
|
|
17863
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("toggle" | "update:modelValue")[], "toggle" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
17864
|
+
/**
|
|
17865
|
+
* Element to attach tooltip toggle button.
|
|
17866
|
+
*
|
|
17867
|
+
* Only needed when using with arbitrary elements, e.g. when using with
|
|
17868
|
+
* `FLabel` you do not need to set this prop.
|
|
17869
|
+
*/
|
|
17870
|
+
attachTo: {
|
|
17871
|
+
type: {
|
|
17872
|
+
new (): HTMLElement;
|
|
17873
|
+
prototype: HTMLElement;
|
|
17874
|
+
};
|
|
17875
|
+
required: false;
|
|
17876
|
+
default: null;
|
|
17877
|
+
};
|
|
17913
17878
|
/**
|
|
17914
17879
|
* State (expanded or collapsed) of the tooltip. The value is `true` if the tooltip is expanded.
|
|
17915
17880
|
*
|
|
@@ -17957,9 +17922,10 @@ validator(value: string): boolean;
|
|
|
17957
17922
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17958
17923
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
17959
17924
|
}>, {
|
|
17925
|
+
attachTo: HTMLElement;
|
|
17960
17926
|
modelValue: boolean;
|
|
17961
|
-
headerTag: string;
|
|
17962
17927
|
closeButtonText: string;
|
|
17928
|
+
headerTag: string;
|
|
17963
17929
|
}, {}, {
|
|
17964
17930
|
FExpand: DefineComponent< {}, {}, {
|
|
17965
17931
|
height: number;
|
|
@@ -18235,8 +18201,8 @@ getCurrentOpen(): FWizardStepDefinition | null;
|
|
|
18235
18201
|
openStep(step: FWizardStepDefinition): void;
|
|
18236
18202
|
openNext(step: FWizardStepDefinition): Promise<void>;
|
|
18237
18203
|
doOpen(open: StepNumber | -1): Promise<void>;
|
|
18238
|
-
cancel(): void;
|
|
18239
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "
|
|
18204
|
+
cancel(isFinalStep: boolean): void;
|
|
18205
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "completed")[], "cancel" | "change" | "update:modelValue" | "completed", PublicProps, Readonly<ExtractPropTypes< {
|
|
18240
18206
|
modelValue: {
|
|
18241
18207
|
type: StringConstructor;
|
|
18242
18208
|
default: null;
|
|
@@ -18277,7 +18243,7 @@ export declare interface FWizardApi {
|
|
|
18277
18243
|
getStepCount(): number;
|
|
18278
18244
|
openStep(step: FWizardStepDefinition): void;
|
|
18279
18245
|
openNext(self: FWizardStepDefinition): void;
|
|
18280
|
-
cancel(): void;
|
|
18246
|
+
cancel(isFinalStep: boolean): void;
|
|
18281
18247
|
inheritedProps: {
|
|
18282
18248
|
readonly headerTag: string;
|
|
18283
18249
|
readonly disableInitialFocus: boolean;
|
|
@@ -18920,6 +18886,8 @@ export declare interface FWizardStepDefinition {
|
|
|
18920
18886
|
currentOpen: StepNumber | -1;
|
|
18921
18887
|
}
|
|
18922
18888
|
|
|
18889
|
+
/* Excluded from this release type: getAbsolutePosition */
|
|
18890
|
+
|
|
18923
18891
|
/**
|
|
18924
18892
|
* Returns remaining days in week after last day in array.
|
|
18925
18893
|
*
|
|
@@ -19235,7 +19203,7 @@ onClickDay(date: FDate): void;
|
|
|
19235
19203
|
onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
|
|
19236
19204
|
isDayFocused(date: FDate): boolean;
|
|
19237
19205
|
getTabindex(date: FDate): 0 | -1;
|
|
19238
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
19206
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
19239
19207
|
/**
|
|
19240
19208
|
* Active month.
|
|
19241
19209
|
* @model
|
|
@@ -19412,7 +19380,7 @@ onClickPreviousButton(): void;
|
|
|
19412
19380
|
onClickNextButton(): void;
|
|
19413
19381
|
getDateText(value: FDate): string;
|
|
19414
19382
|
isFocused(ref: string): boolean;
|
|
19415
|
-
}, ComponentOptions, ComponentOptionsMixin, ("
|
|
19383
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
19416
19384
|
/**
|
|
19417
19385
|
* Focused month.
|
|
19418
19386
|
*/
|
|
@@ -19665,246 +19633,6 @@ shrink: boolean;
|
|
|
19665
19633
|
align: string;
|
|
19666
19634
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
19667
19635
|
|
|
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
19636
|
/**
|
|
19909
19637
|
* @public
|
|
19910
19638
|
*/
|
|
@@ -19989,15 +19717,18 @@ default: boolean;
|
|
|
19989
19717
|
};
|
|
19990
19718
|
}>, {}, IPopupData, {
|
|
19991
19719
|
popupClasses(): string[];
|
|
19720
|
+
isInline(): boolean;
|
|
19992
19721
|
forceInline(): boolean;
|
|
19993
19722
|
forceOverlay(): boolean;
|
|
19994
19723
|
teleportTarget(): string | Element;
|
|
19995
19724
|
}, {
|
|
19996
19725
|
toggleIsOpen(isOpen: boolean): Promise<void>;
|
|
19726
|
+
calculatePlacement(): Promise<void>;
|
|
19997
19727
|
applyFocus(): void;
|
|
19998
19728
|
isMobileSize(): boolean;
|
|
19999
19729
|
onDocumentClickHandler(): void;
|
|
20000
|
-
|
|
19730
|
+
onWindowResizeDebounced(): void;
|
|
19731
|
+
onWindowResize(): Promise<void>;
|
|
20001
19732
|
onPopupClickHandler(event: Event): void;
|
|
20002
19733
|
onKeyEsc(): void;
|
|
20003
19734
|
onKeyTab(event: KeyboardEvent): void;
|
|
@@ -20099,7 +19830,6 @@ export declare interface IPopupData {
|
|
|
20099
19830
|
teleportDisabled: boolean;
|
|
20100
19831
|
placement: Placement;
|
|
20101
19832
|
focus: StackHandle | null;
|
|
20102
|
-
noCloseOnResize: boolean;
|
|
20103
19833
|
}
|
|
20104
19834
|
|
|
20105
19835
|
export declare const IPopupError: DefineComponent<ExtractPropTypes< {
|
|
@@ -20272,7 +20002,7 @@ default: undefined;
|
|
|
20272
20002
|
* The items to be diplayed in the menu
|
|
20273
20003
|
*/
|
|
20274
20004
|
items: {
|
|
20275
|
-
type: PropType<
|
|
20005
|
+
type: PropType<MenuItem[]>;
|
|
20276
20006
|
required: true;
|
|
20277
20007
|
};
|
|
20278
20008
|
/**
|
|
@@ -20305,16 +20035,18 @@ lastSelectedItem: string;
|
|
|
20305
20035
|
}, {}, {
|
|
20306
20036
|
isSelected(index: number): boolean;
|
|
20307
20037
|
focusElement(): HTMLElement | null;
|
|
20308
|
-
findItemByKey(key: string):
|
|
20038
|
+
findItemByKey(key: string): MenuItem | undefined;
|
|
20309
20039
|
indexOfItemByKey(key: string): number;
|
|
20310
|
-
onClickItem(
|
|
20311
|
-
|
|
20040
|
+
onClickItem(event: Event, item: MenuItem): void;
|
|
20041
|
+
clickItemAnchor(item: MenuItem): void;
|
|
20042
|
+
selectItem(key: string): void;
|
|
20043
|
+
itemClasses(item: MenuItem): string[];
|
|
20312
20044
|
setFocusOnItem(index: number): Promise<void>;
|
|
20313
20045
|
activateItem(index: number): Promise<void>;
|
|
20314
20046
|
setFocusedItemIndex(index: number): void;
|
|
20315
20047
|
onKeyUp(event: KeyboardEvent): void;
|
|
20316
20048
|
onKeyDown(event: KeyboardEvent): Promise<void>;
|
|
20317
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
20049
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select" | "update:modelValue" | "update:focusedItem")[], "close" | "select" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
|
|
20318
20050
|
/**
|
|
20319
20051
|
* Key of the currently selected and highlighted item.
|
|
20320
20052
|
*
|
|
@@ -20354,7 +20086,7 @@ default: undefined;
|
|
|
20354
20086
|
* The items to be diplayed in the menu
|
|
20355
20087
|
*/
|
|
20356
20088
|
items: {
|
|
20357
|
-
type: PropType<
|
|
20089
|
+
type: PropType<MenuItem[]>;
|
|
20358
20090
|
required: true;
|
|
20359
20091
|
};
|
|
20360
20092
|
/**
|
|
@@ -20390,64 +20122,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
20390
20122
|
anchor: HTMLElement | undefined;
|
|
20391
20123
|
modelValue: string;
|
|
20392
20124
|
ariaLabel: string;
|
|
20125
|
+
focusedItem: string;
|
|
20393
20126
|
enableKeyboardNavigation: boolean;
|
|
20394
20127
|
selectedMenuItemScreenReaderText: string;
|
|
20395
|
-
focusedItem: string;
|
|
20396
20128
|
}, {}, {
|
|
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
20129
|
IPopup: DefineComponent<ExtractPropTypes< {
|
|
20452
20130
|
isOpen: {
|
|
20453
20131
|
type: BooleanConstructor;
|
|
@@ -20496,15 +20174,18 @@ default: boolean;
|
|
|
20496
20174
|
};
|
|
20497
20175
|
}>, {}, IPopupData, {
|
|
20498
20176
|
popupClasses(): string[];
|
|
20177
|
+
isInline(): boolean;
|
|
20499
20178
|
forceInline(): boolean;
|
|
20500
20179
|
forceOverlay(): boolean;
|
|
20501
20180
|
teleportTarget(): string | Element;
|
|
20502
20181
|
}, {
|
|
20503
20182
|
toggleIsOpen(isOpen: boolean): Promise<void>;
|
|
20183
|
+
calculatePlacement(): Promise<void>;
|
|
20504
20184
|
applyFocus(): void;
|
|
20505
20185
|
isMobileSize(): boolean;
|
|
20506
20186
|
onDocumentClickHandler(): void;
|
|
20507
|
-
|
|
20187
|
+
onWindowResizeDebounced(): void;
|
|
20188
|
+
onWindowResize(): Promise<void>;
|
|
20508
20189
|
onPopupClickHandler(event: Event): void;
|
|
20509
20190
|
onKeyEsc(): void;
|
|
20510
20191
|
onKeyTab(event: KeyboardEvent): void;
|
|
@@ -20660,6 +20341,31 @@ export declare enum MenuAction {
|
|
|
20660
20341
|
ACTIVATE = 4
|
|
20661
20342
|
}
|
|
20662
20343
|
|
|
20344
|
+
/**
|
|
20345
|
+
* Used to define items by `FNavigationMenu`
|
|
20346
|
+
* internal logic and `IPopupMenu` public API.
|
|
20347
|
+
*
|
|
20348
|
+
* @public
|
|
20349
|
+
*/
|
|
20350
|
+
export declare interface MenuItem {
|
|
20351
|
+
/**
|
|
20352
|
+
* Menu item label text
|
|
20353
|
+
*/
|
|
20354
|
+
label: string;
|
|
20355
|
+
/**
|
|
20356
|
+
* Menu item key for referencing upon for example item selection
|
|
20357
|
+
*/
|
|
20358
|
+
key: string;
|
|
20359
|
+
/**
|
|
20360
|
+
* Optional href attribute to use on menu item link
|
|
20361
|
+
*/
|
|
20362
|
+
href?: string;
|
|
20363
|
+
/**
|
|
20364
|
+
* Optional target attribute on menu item link
|
|
20365
|
+
*/
|
|
20366
|
+
target?: string;
|
|
20367
|
+
}
|
|
20368
|
+
|
|
20663
20369
|
/**
|
|
20664
20370
|
* Predefined reasons the modal was closed.
|
|
20665
20371
|
*
|
|
@@ -20843,6 +20549,10 @@ export declare enum Placement {
|
|
|
20843
20549
|
"NotCalculated" = "NotCalculated"
|
|
20844
20550
|
}
|
|
20845
20551
|
|
|
20552
|
+
/* Excluded from this release type: Point */
|
|
20553
|
+
|
|
20554
|
+
/* Excluded from this release type: Rect */
|
|
20555
|
+
|
|
20846
20556
|
/**
|
|
20847
20557
|
* Verifies that a ref is a single `Element` and nothing else.
|
|
20848
20558
|
*
|
|
@@ -20986,6 +20696,8 @@ export declare function tableScrollClasses(val: TableScroll): string[];
|
|
|
20986
20696
|
*/
|
|
20987
20697
|
export declare const TestPlugin: Plugin_2;
|
|
20988
20698
|
|
|
20699
|
+
/* Excluded from this release type: tooltipAttachTo */
|
|
20700
|
+
|
|
20989
20701
|
/**
|
|
20990
20702
|
* @public
|
|
20991
20703
|
*/
|
|
@@ -21090,6 +20802,18 @@ export declare interface UseModal {
|
|
|
21090
20802
|
*/
|
|
21091
20803
|
export declare function useModal(): UseModal;
|
|
21092
20804
|
|
|
20805
|
+
/**
|
|
20806
|
+
* @public
|
|
20807
|
+
*/
|
|
20808
|
+
export declare interface UseSlotUtils {
|
|
20809
|
+
hasSlot(name: string): boolean;
|
|
20810
|
+
}
|
|
20811
|
+
|
|
20812
|
+
/**
|
|
20813
|
+
* @public
|
|
20814
|
+
*/
|
|
20815
|
+
export declare function useSlotUtils(): UseSlotUtils;
|
|
20816
|
+
|
|
21093
20817
|
/**
|
|
21094
20818
|
* Translation function.
|
|
21095
20819
|
* @public
|