@ui5/webcomponents-ngx 0.5.0 → 0.5.1-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/ui5-webcomponents-ngx-fiori-shell-bar-branding.mjs +42 -0
- package/fesm2022/ui5-webcomponents-ngx-fiori-shell-bar-branding.mjs.map +1 -0
- package/fesm2022/ui5-webcomponents-ngx-fiori-side-navigation-item.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-fiori-side-navigation-sub-item.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-fiori-user-menu-item-group.mjs +40 -0
- package/fesm2022/ui5-webcomponents-ngx-fiori-user-menu-item-group.mjs.map +1 -0
- package/fesm2022/ui5-webcomponents-ngx-fiori-user-menu-item.mjs +8 -1
- package/fesm2022/ui5-webcomponents-ngx-fiori-user-menu-item.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-fiori.mjs +8 -0
- package/fesm2022/ui5-webcomponents-ngx-fiori.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-avatar-group.mjs +13 -3
- package/fesm2022/ui5-webcomponents-ngx-main-avatar-group.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-check-box.mjs +3 -1
- package/fesm2022/ui5-webcomponents-ngx-main-check-box.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-dialog.mjs +5 -1
- package/fesm2022/ui5-webcomponents-ngx-main-dialog.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-menu-item-group.mjs +40 -0
- package/fesm2022/ui5-webcomponents-ngx-main-menu-item-group.mjs.map +1 -0
- package/fesm2022/ui5-webcomponents-ngx-main-menu-item.mjs +8 -1
- package/fesm2022/ui5-webcomponents-ngx-main-menu-item.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-popover.mjs +5 -1
- package/fesm2022/ui5-webcomponents-ngx-main-popover.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-responsive-popover.mjs +5 -1
- package/fesm2022/ui5-webcomponents-ngx-main-responsive-popover.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-switch.mjs +3 -1
- package/fesm2022/ui5-webcomponents-ngx-main-switch.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main-table-selection-multi.mjs +3 -3
- package/fesm2022/ui5-webcomponents-ngx-main-table-selection-multi.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx-main.mjs +4 -0
- package/fesm2022/ui5-webcomponents-ngx-main.mjs.map +1 -1
- package/fesm2022/ui5-webcomponents-ngx.mjs +3 -0
- package/fesm2022/ui5-webcomponents-ngx.mjs.map +1 -1
- package/fiori/index.d.ts +25 -23
- package/fiori/shell-bar-branding/index.d.ts +44 -0
- package/fiori/side-navigation-item/index.d.ts +10 -7
- package/fiori/side-navigation-sub-item/index.d.ts +10 -7
- package/fiori/user-menu-item/index.d.ts +20 -6
- package/fiori/user-menu-item-group/index.d.ts +18 -0
- package/index.d.ts +3 -0
- package/main/avatar-group/index.d.ts +11 -1
- package/main/check-box/index.d.ts +11 -1
- package/main/dialog/index.d.ts +9 -1
- package/main/index.d.ts +62 -61
- package/main/menu-item/index.d.ts +20 -6
- package/main/menu-item-group/index.d.ts +18 -0
- package/main/popover/index.d.ts +9 -1
- package/main/responsive-popover/index.d.ts +9 -1
- package/main/switch/index.d.ts +5 -1
- package/main/table-selection-multi/index.d.ts +5 -1
- package/package.json +41 -29
- package/ui5-webcomponents-ngx-0.5.1-rc.1.tgz +0 -0
- package/ui5-webcomponents-ngx-0.5.0.tgz +0 -0
|
@@ -63,25 +63,34 @@ declare class UserMenuItemComponent {
|
|
|
63
63
|
*/
|
|
64
64
|
icon: string | undefined;
|
|
65
65
|
/**
|
|
66
|
-
Defines whether
|
|
66
|
+
Defines whether menu item is in disabled state.
|
|
67
67
|
|
|
68
|
-
**Note:** A disabled
|
|
68
|
+
**Note:** A disabled menu item is noninteractive.
|
|
69
69
|
*/
|
|
70
70
|
disabled: boolean;
|
|
71
71
|
/**
|
|
72
|
-
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding
|
|
72
|
+
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.
|
|
73
73
|
|
|
74
|
-
**Note:** If set to `true` a
|
|
74
|
+
**Note:** If set to `true` a busy indicator component will be displayed into the related one to the current menu item sub-menu popover.
|
|
75
75
|
*/
|
|
76
76
|
loading: boolean;
|
|
77
77
|
/**
|
|
78
|
-
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding
|
|
78
|
+
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.
|
|
79
79
|
*/
|
|
80
80
|
loadingDelay: number;
|
|
81
81
|
/**
|
|
82
82
|
Defines the accessible ARIA name of the component.
|
|
83
83
|
*/
|
|
84
84
|
accessibleName: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
Defines whether menu item is in checked state.
|
|
87
|
+
|
|
88
|
+
**Note:** checked state is only taken into account when menu item is added to menu item group
|
|
89
|
+
with `checkMode` other than `None`.
|
|
90
|
+
|
|
91
|
+
**Note:** A checked menu item has a checkmark displayed at its end.
|
|
92
|
+
*/
|
|
93
|
+
checked: boolean;
|
|
85
94
|
/**
|
|
86
95
|
Fired when the user clicks on the detail button when type is `Detail`.
|
|
87
96
|
*/
|
|
@@ -104,17 +113,22 @@ declare class UserMenuItemComponent {
|
|
|
104
113
|
Fired after the menu is closed.
|
|
105
114
|
*/
|
|
106
115
|
ui5Close: EventEmitter<void>;
|
|
116
|
+
/**
|
|
117
|
+
Fired when an item is checked or unchecked.
|
|
118
|
+
*/
|
|
119
|
+
ui5Check: EventEmitter<void>;
|
|
107
120
|
private elementRef;
|
|
108
121
|
private zone;
|
|
109
122
|
private cdr;
|
|
110
123
|
get element(): UserMenuItem;
|
|
111
124
|
constructor();
|
|
112
125
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserMenuItemComponent, never>;
|
|
113
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuItemComponent, "ui5-user-menu-item", ["ui5UserMenuItem"], { "type": { "alias": "type"; "required": false; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; }; "navigated": { "alias": "navigated"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "text": { "alias": "text"; "required": false; }; "additionalText": { "alias": "additionalText"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; }, { "ui5DetailClick": "ui5DetailClick"; "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
126
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuItemComponent, "ui5-user-menu-item", ["ui5UserMenuItem"], { "type": { "alias": "type"; "required": false; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; }; "navigated": { "alias": "navigated"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "text": { "alias": "text"; "required": false; }; "additionalText": { "alias": "additionalText"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "ui5DetailClick": "ui5DetailClick"; "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; "ui5Check": "ui5Check"; }, never, ["*"], true, never>;
|
|
114
127
|
static ngAcceptInputType_navigated: unknown;
|
|
115
128
|
static ngAcceptInputType_selected: unknown;
|
|
116
129
|
static ngAcceptInputType_disabled: unknown;
|
|
117
130
|
static ngAcceptInputType_loading: unknown;
|
|
131
|
+
static ngAcceptInputType_checked: unknown;
|
|
118
132
|
}
|
|
119
133
|
|
|
120
134
|
export { UserMenuItemComponent };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import UserMenuItemGroup from '@ui5/webcomponents-fiori/dist/UserMenuItemGroup.js';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
|
|
4
|
+
declare class UserMenuItemGroupComponent {
|
|
5
|
+
/**
|
|
6
|
+
Defines the component's check mode.
|
|
7
|
+
*/
|
|
8
|
+
checkMode: 'None' | 'Single' | 'Multiple';
|
|
9
|
+
private elementRef;
|
|
10
|
+
private zone;
|
|
11
|
+
private cdr;
|
|
12
|
+
get element(): UserMenuItemGroup;
|
|
13
|
+
constructor();
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserMenuItemGroupComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuItemGroupComponent, "ui5-user-menu-item-group", ["ui5UserMenuItemGroup"], { "checkMode": { "alias": "checkMode"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { UserMenuItemGroupComponent };
|
package/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export { SearchItemGroupComponent } from '@ui5/webcomponents-ngx/fiori/search-it
|
|
|
22
22
|
export { SearchMessageAreaComponent } from '@ui5/webcomponents-ngx/fiori/search-message-area';
|
|
23
23
|
export { SearchScopeComponent } from '@ui5/webcomponents-ngx/fiori/search-scope';
|
|
24
24
|
export { ShellBarComponent } from '@ui5/webcomponents-ngx/fiori/shell-bar';
|
|
25
|
+
export { ShellBarBrandingComponent } from '@ui5/webcomponents-ngx/fiori/shell-bar-branding';
|
|
25
26
|
export { ShellBarItemComponent } from '@ui5/webcomponents-ngx/fiori/shell-bar-item';
|
|
26
27
|
export { ShellBarSearchComponent } from '@ui5/webcomponents-ngx/fiori/shell-bar-search';
|
|
27
28
|
export { ShellBarSpacerComponent } from '@ui5/webcomponents-ngx/fiori/shell-bar-spacer';
|
|
@@ -38,6 +39,7 @@ export { UploadCollectionItemComponent } from '@ui5/webcomponents-ngx/fiori/uplo
|
|
|
38
39
|
export { UserMenuComponent } from '@ui5/webcomponents-ngx/fiori/user-menu';
|
|
39
40
|
export { UserMenuAccountComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-account';
|
|
40
41
|
export { UserMenuItemComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item';
|
|
42
|
+
export { UserMenuItemGroupComponent } from '@ui5/webcomponents-ngx/fiori/user-menu-item-group';
|
|
41
43
|
export { UserSettingsDialogComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-dialog';
|
|
42
44
|
export { UserSettingsItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-item';
|
|
43
45
|
export { UserSettingsViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-view';
|
|
@@ -91,6 +93,7 @@ export { ListItemGroupComponent } from '@ui5/webcomponents-ngx/main/list-item-gr
|
|
|
91
93
|
export { ListItemStandardComponent } from '@ui5/webcomponents-ngx/main/list-item-standard';
|
|
92
94
|
export { MenuComponent } from '@ui5/webcomponents-ngx/main/menu';
|
|
93
95
|
export { MenuItemComponent } from '@ui5/webcomponents-ngx/main/menu-item';
|
|
96
|
+
export { MenuItemGroupComponent } from '@ui5/webcomponents-ngx/main/menu-item-group';
|
|
94
97
|
export { MenuSeparatorComponent } from '@ui5/webcomponents-ngx/main/menu-separator';
|
|
95
98
|
export { MessageStripComponent } from '@ui5/webcomponents-ngx/main/message-strip';
|
|
96
99
|
export { MultiComboBoxComponent } from '@ui5/webcomponents-ngx/main/multi-combo-box';
|
|
@@ -15,6 +15,16 @@ declare class AvatarGroupComponent {
|
|
|
15
15
|
Accepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.
|
|
16
16
|
*/
|
|
17
17
|
accessibilityAttributes: AvatarGroupAccessibilityAttributes;
|
|
18
|
+
/**
|
|
19
|
+
Defines the accessible name of the AvatarGroup.
|
|
20
|
+
When provided, this will override the default aria-label text.
|
|
21
|
+
*/
|
|
22
|
+
accessibleName: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
Receives id(s) of the elements that describe the AvatarGroup.
|
|
25
|
+
When provided, this will be used as aria-labelledby instead of aria-label.
|
|
26
|
+
*/
|
|
27
|
+
accessibleNameRef: string | undefined;
|
|
18
28
|
/**
|
|
19
29
|
Fired when the component is activated either with a
|
|
20
30
|
click/tap or by using the Enter or Space key.
|
|
@@ -31,7 +41,7 @@ declare class AvatarGroupComponent {
|
|
|
31
41
|
get element(): AvatarGroup;
|
|
32
42
|
constructor();
|
|
33
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarGroupComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupComponent, "ui5-avatar-group", ["ui5AvatarGroup"], { "type": { "alias": "type"; "required": false; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; }; }, { "ui5Click": "ui5Click"; "ui5Overflow": "ui5Overflow"; }, never, ["*"], true, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarGroupComponent, "ui5-avatar-group", ["ui5AvatarGroup"], { "type": { "alias": "type"; "required": false; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; }, { "ui5Click": "ui5Click"; "ui5Overflow": "ui5Overflow"; }, never, ["*"], true, never>;
|
|
35
45
|
}
|
|
36
46
|
|
|
37
47
|
export { AvatarGroupComponent };
|
|
@@ -83,6 +83,16 @@ declare class CheckBoxComponent {
|
|
|
83
83
|
**Note:** This property is only applicable within the context of an HTML Form element.
|
|
84
84
|
*/
|
|
85
85
|
name: string | undefined;
|
|
86
|
+
/**
|
|
87
|
+
Defines the form value of the component that is submitted when the checkbox is checked.
|
|
88
|
+
|
|
89
|
+
When a form containing `ui5-checkbox` elements is submitted, only the values of the
|
|
90
|
+
**checked** checkboxes are included in the form data sent to the server. Unchecked
|
|
91
|
+
checkboxes do not contribute any data to the form submission.
|
|
92
|
+
|
|
93
|
+
This property is particularly useful for **checkbox groups**, where multiple checkboxes with the same `name` but different `value` properties can be used to represent a set of related options.
|
|
94
|
+
*/
|
|
95
|
+
value: string;
|
|
86
96
|
/**
|
|
87
97
|
Fired when the component checked state changes.
|
|
88
98
|
*/
|
|
@@ -96,7 +106,7 @@ declare class CheckBoxComponent {
|
|
|
96
106
|
get cvaValue(): boolean;
|
|
97
107
|
constructor();
|
|
98
108
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, never>;
|
|
99
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "ui5-checkbox", ["ui5Checkbox"], { "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "displayOnly": { "alias": "displayOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "text": { "alias": "text"; "required": false; }; "valueState": { "alias": "valueState"; "required": false; }; "wrappingType": { "alias": "wrappingType"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "ui5Change": "ui5Change"; }, never, ["*"], true, [{ directive: typeof i1.GenericControlValueAccessor; inputs: {}; outputs: {}; }]>;
|
|
109
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "ui5-checkbox", ["ui5Checkbox"], { "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "displayOnly": { "alias": "displayOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "text": { "alias": "text"; "required": false; }; "valueState": { "alias": "valueState"; "required": false; }; "wrappingType": { "alias": "wrappingType"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ui5Change": "ui5Change"; }, never, ["*"], true, [{ directive: typeof i1.GenericControlValueAccessor; inputs: {}; outputs: {}; }]>;
|
|
100
110
|
static ngAcceptInputType_disabled: unknown;
|
|
101
111
|
static ngAcceptInputType_readonly: unknown;
|
|
102
112
|
static ngAcceptInputType_displayOnly: unknown;
|
package/main/dialog/index.d.ts
CHANGED
|
@@ -28,6 +28,14 @@ declare class DialogComponent {
|
|
|
28
28
|
Allows setting a custom role.
|
|
29
29
|
*/
|
|
30
30
|
accessibleRole: 'None' | 'Dialog' | 'AlertDialog';
|
|
31
|
+
/**
|
|
32
|
+
Defines the accessible description of the component.
|
|
33
|
+
*/
|
|
34
|
+
accessibleDescription: string | undefined;
|
|
35
|
+
/**
|
|
36
|
+
Receives id(or many ids) of the elements that describe the component.
|
|
37
|
+
*/
|
|
38
|
+
accessibleDescriptionRef: string | undefined;
|
|
31
39
|
/**
|
|
32
40
|
Indicates whether initial focus should be prevented.
|
|
33
41
|
*/
|
|
@@ -99,7 +107,7 @@ declare class DialogComponent {
|
|
|
99
107
|
get element(): Dialog;
|
|
100
108
|
constructor();
|
|
101
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
102
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui5-dialog", ["ui5Dialog"], { "initialFocus": { "alias": "initialFocus"; "required": false; }; "preventFocusRestore": { "alias": "preventFocusRestore"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; }; "preventInitialFocus": { "alias": "preventInitialFocus"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "state": { "alias": "state"; "required": false; }; }, { "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui5-dialog", ["ui5Dialog"], { "initialFocus": { "alias": "initialFocus"; "required": false; }; "preventFocusRestore": { "alias": "preventFocusRestore"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; }; "accessibleDescription": { "alias": "accessibleDescription"; "required": false; }; "accessibleDescriptionRef": { "alias": "accessibleDescriptionRef"; "required": false; }; "preventInitialFocus": { "alias": "preventInitialFocus"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "state": { "alias": "state"; "required": false; }; }, { "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
103
111
|
static ngAcceptInputType_preventFocusRestore: unknown;
|
|
104
112
|
static ngAcceptInputType_preventInitialFocus: unknown;
|
|
105
113
|
static ngAcceptInputType_open: unknown;
|
package/main/index.d.ts
CHANGED
|
@@ -44,71 +44,72 @@ import * as i41 from '@ui5/webcomponents-ngx/main/list-item-group';
|
|
|
44
44
|
import * as i42 from '@ui5/webcomponents-ngx/main/list-item-standard';
|
|
45
45
|
import * as i43 from '@ui5/webcomponents-ngx/main/menu';
|
|
46
46
|
import * as i44 from '@ui5/webcomponents-ngx/main/menu-item';
|
|
47
|
-
import * as i45 from '@ui5/webcomponents-ngx/main/menu-
|
|
48
|
-
import * as i46 from '@ui5/webcomponents-ngx/main/
|
|
49
|
-
import * as i47 from '@ui5/webcomponents-ngx/main/
|
|
50
|
-
import * as i48 from '@ui5/webcomponents-ngx/main/multi-combo-box
|
|
51
|
-
import * as i49 from '@ui5/webcomponents-ngx/main/multi-combo-box-item
|
|
52
|
-
import * as i50 from '@ui5/webcomponents-ngx/main/multi-
|
|
53
|
-
import * as i51 from '@ui5/webcomponents-ngx/main/
|
|
54
|
-
import * as i52 from '@ui5/webcomponents-ngx/main/option
|
|
55
|
-
import * as i53 from '@ui5/webcomponents-ngx/main/
|
|
56
|
-
import * as i54 from '@ui5/webcomponents-ngx/main/
|
|
57
|
-
import * as i55 from '@ui5/webcomponents-ngx/main/
|
|
58
|
-
import * as i56 from '@ui5/webcomponents-ngx/main/
|
|
59
|
-
import * as i57 from '@ui5/webcomponents-ngx/main/
|
|
60
|
-
import * as i58 from '@ui5/webcomponents-ngx/main/
|
|
61
|
-
import * as i59 from '@ui5/webcomponents-ngx/main/
|
|
62
|
-
import * as i60 from '@ui5/webcomponents-ngx/main/
|
|
63
|
-
import * as i61 from '@ui5/webcomponents-ngx/main/segmented-button
|
|
64
|
-
import * as i62 from '@ui5/webcomponents-ngx/main/
|
|
65
|
-
import * as i63 from '@ui5/webcomponents-ngx/main/
|
|
66
|
-
import * as i64 from '@ui5/webcomponents-ngx/main/
|
|
67
|
-
import * as i65 from '@ui5/webcomponents-ngx/main/
|
|
68
|
-
import * as i66 from '@ui5/webcomponents-ngx/main/
|
|
69
|
-
import * as i67 from '@ui5/webcomponents-ngx/main/
|
|
70
|
-
import * as i68 from '@ui5/webcomponents-ngx/main/suggestion-item
|
|
71
|
-
import * as i69 from '@ui5/webcomponents-ngx/main/suggestion-item-
|
|
72
|
-
import * as i70 from '@ui5/webcomponents-ngx/main/
|
|
73
|
-
import * as i71 from '@ui5/webcomponents-ngx/main/
|
|
74
|
-
import * as i72 from '@ui5/webcomponents-ngx/main/tab
|
|
75
|
-
import * as i73 from '@ui5/webcomponents-ngx/main/tab-
|
|
76
|
-
import * as i74 from '@ui5/webcomponents-ngx/main/
|
|
77
|
-
import * as i75 from '@ui5/webcomponents-ngx/main/table
|
|
78
|
-
import * as i76 from '@ui5/webcomponents-ngx/main/table-
|
|
79
|
-
import * as i77 from '@ui5/webcomponents-ngx/main/table-
|
|
80
|
-
import * as i78 from '@ui5/webcomponents-ngx/main/table-header-cell
|
|
81
|
-
import * as i79 from '@ui5/webcomponents-ngx/main/table-header-
|
|
82
|
-
import * as i80 from '@ui5/webcomponents-ngx/main/table-row';
|
|
83
|
-
import * as i81 from '@ui5/webcomponents-ngx/main/table-row
|
|
84
|
-
import * as i82 from '@ui5/webcomponents-ngx/main/table-row-action
|
|
85
|
-
import * as i83 from '@ui5/webcomponents-ngx/main/table-
|
|
86
|
-
import * as i84 from '@ui5/webcomponents-ngx/main/table-selection
|
|
87
|
-
import * as i85 from '@ui5/webcomponents-ngx/main/table-selection-
|
|
88
|
-
import * as i86 from '@ui5/webcomponents-ngx/main/table-
|
|
89
|
-
import * as i87 from '@ui5/webcomponents-ngx/main/
|
|
90
|
-
import * as i88 from '@ui5/webcomponents-ngx/main/
|
|
91
|
-
import * as i89 from '@ui5/webcomponents-ngx/main/text
|
|
92
|
-
import * as i90 from '@ui5/webcomponents-ngx/main/
|
|
93
|
-
import * as i91 from '@ui5/webcomponents-ngx/main/
|
|
94
|
-
import * as i92 from '@ui5/webcomponents-ngx/main/
|
|
95
|
-
import * as i93 from '@ui5/webcomponents-ngx/main/
|
|
96
|
-
import * as i94 from '@ui5/webcomponents-ngx/main/
|
|
97
|
-
import * as i95 from '@ui5/webcomponents-ngx/main/
|
|
98
|
-
import * as i96 from '@ui5/webcomponents-ngx/main/
|
|
99
|
-
import * as i97 from '@ui5/webcomponents-ngx/main/toolbar
|
|
100
|
-
import * as i98 from '@ui5/webcomponents-ngx/main/toolbar-
|
|
101
|
-
import * as i99 from '@ui5/webcomponents-ngx/main/toolbar-select
|
|
102
|
-
import * as i100 from '@ui5/webcomponents-ngx/main/toolbar-
|
|
103
|
-
import * as i101 from '@ui5/webcomponents-ngx/main/toolbar-
|
|
104
|
-
import * as i102 from '@ui5/webcomponents-ngx/main/
|
|
105
|
-
import * as i103 from '@ui5/webcomponents-ngx/main/tree
|
|
106
|
-
import * as i104 from '@ui5/webcomponents-ngx/main/tree-item
|
|
47
|
+
import * as i45 from '@ui5/webcomponents-ngx/main/menu-item-group';
|
|
48
|
+
import * as i46 from '@ui5/webcomponents-ngx/main/menu-separator';
|
|
49
|
+
import * as i47 from '@ui5/webcomponents-ngx/main/message-strip';
|
|
50
|
+
import * as i48 from '@ui5/webcomponents-ngx/main/multi-combo-box';
|
|
51
|
+
import * as i49 from '@ui5/webcomponents-ngx/main/multi-combo-box-item';
|
|
52
|
+
import * as i50 from '@ui5/webcomponents-ngx/main/multi-combo-box-item-group';
|
|
53
|
+
import * as i51 from '@ui5/webcomponents-ngx/main/multi-input';
|
|
54
|
+
import * as i52 from '@ui5/webcomponents-ngx/main/option';
|
|
55
|
+
import * as i53 from '@ui5/webcomponents-ngx/main/option-custom';
|
|
56
|
+
import * as i54 from '@ui5/webcomponents-ngx/main/panel';
|
|
57
|
+
import * as i55 from '@ui5/webcomponents-ngx/main/popover';
|
|
58
|
+
import * as i56 from '@ui5/webcomponents-ngx/main/progress-indicator';
|
|
59
|
+
import * as i57 from '@ui5/webcomponents-ngx/main/radio-button';
|
|
60
|
+
import * as i58 from '@ui5/webcomponents-ngx/main/range-slider';
|
|
61
|
+
import * as i59 from '@ui5/webcomponents-ngx/main/rating-indicator';
|
|
62
|
+
import * as i60 from '@ui5/webcomponents-ngx/main/responsive-popover';
|
|
63
|
+
import * as i61 from '@ui5/webcomponents-ngx/main/segmented-button';
|
|
64
|
+
import * as i62 from '@ui5/webcomponents-ngx/main/segmented-button-item';
|
|
65
|
+
import * as i63 from '@ui5/webcomponents-ngx/main/select';
|
|
66
|
+
import * as i64 from '@ui5/webcomponents-ngx/main/slider';
|
|
67
|
+
import * as i65 from '@ui5/webcomponents-ngx/main/special-calendar-date';
|
|
68
|
+
import * as i66 from '@ui5/webcomponents-ngx/main/split-button';
|
|
69
|
+
import * as i67 from '@ui5/webcomponents-ngx/main/step-input';
|
|
70
|
+
import * as i68 from '@ui5/webcomponents-ngx/main/suggestion-item';
|
|
71
|
+
import * as i69 from '@ui5/webcomponents-ngx/main/suggestion-item-custom';
|
|
72
|
+
import * as i70 from '@ui5/webcomponents-ngx/main/suggestion-item-group';
|
|
73
|
+
import * as i71 from '@ui5/webcomponents-ngx/main/switch';
|
|
74
|
+
import * as i72 from '@ui5/webcomponents-ngx/main/tab';
|
|
75
|
+
import * as i73 from '@ui5/webcomponents-ngx/main/tab-container';
|
|
76
|
+
import * as i74 from '@ui5/webcomponents-ngx/main/tab-separator';
|
|
77
|
+
import * as i75 from '@ui5/webcomponents-ngx/main/table';
|
|
78
|
+
import * as i76 from '@ui5/webcomponents-ngx/main/table-cell';
|
|
79
|
+
import * as i77 from '@ui5/webcomponents-ngx/main/table-growing';
|
|
80
|
+
import * as i78 from '@ui5/webcomponents-ngx/main/table-header-cell';
|
|
81
|
+
import * as i79 from '@ui5/webcomponents-ngx/main/table-header-cell-action-ai';
|
|
82
|
+
import * as i80 from '@ui5/webcomponents-ngx/main/table-header-row';
|
|
83
|
+
import * as i81 from '@ui5/webcomponents-ngx/main/table-row';
|
|
84
|
+
import * as i82 from '@ui5/webcomponents-ngx/main/table-row-action';
|
|
85
|
+
import * as i83 from '@ui5/webcomponents-ngx/main/table-row-action-navigation';
|
|
86
|
+
import * as i84 from '@ui5/webcomponents-ngx/main/table-selection';
|
|
87
|
+
import * as i85 from '@ui5/webcomponents-ngx/main/table-selection-multi';
|
|
88
|
+
import * as i86 from '@ui5/webcomponents-ngx/main/table-selection-single';
|
|
89
|
+
import * as i87 from '@ui5/webcomponents-ngx/main/table-virtualizer';
|
|
90
|
+
import * as i88 from '@ui5/webcomponents-ngx/main/tag';
|
|
91
|
+
import * as i89 from '@ui5/webcomponents-ngx/main/text';
|
|
92
|
+
import * as i90 from '@ui5/webcomponents-ngx/main/text-area';
|
|
93
|
+
import * as i91 from '@ui5/webcomponents-ngx/main/time-picker';
|
|
94
|
+
import * as i92 from '@ui5/webcomponents-ngx/main/title';
|
|
95
|
+
import * as i93 from '@ui5/webcomponents-ngx/main/toast';
|
|
96
|
+
import * as i94 from '@ui5/webcomponents-ngx/main/toggle-button';
|
|
97
|
+
import * as i95 from '@ui5/webcomponents-ngx/main/token';
|
|
98
|
+
import * as i96 from '@ui5/webcomponents-ngx/main/tokenizer';
|
|
99
|
+
import * as i97 from '@ui5/webcomponents-ngx/main/toolbar';
|
|
100
|
+
import * as i98 from '@ui5/webcomponents-ngx/main/toolbar-button';
|
|
101
|
+
import * as i99 from '@ui5/webcomponents-ngx/main/toolbar-select';
|
|
102
|
+
import * as i100 from '@ui5/webcomponents-ngx/main/toolbar-select-option';
|
|
103
|
+
import * as i101 from '@ui5/webcomponents-ngx/main/toolbar-separator';
|
|
104
|
+
import * as i102 from '@ui5/webcomponents-ngx/main/toolbar-spacer';
|
|
105
|
+
import * as i103 from '@ui5/webcomponents-ngx/main/tree';
|
|
106
|
+
import * as i104 from '@ui5/webcomponents-ngx/main/tree-item';
|
|
107
|
+
import * as i105 from '@ui5/webcomponents-ngx/main/tree-item-custom';
|
|
107
108
|
|
|
108
109
|
declare class Ui5MainModule {
|
|
109
110
|
constructor(ui5WebcomponentsMainThemingService: Ui5WebcomponentsMainThemingService);
|
|
110
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<Ui5MainModule, never>;
|
|
111
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<Ui5MainModule, never, [typeof i1.AvatarComponent, typeof i2.AvatarGroupComponent, typeof i3.BarComponent, typeof i4.BreadcrumbsComponent, typeof i5.BreadcrumbsItemComponent, typeof i6.BusyIndicatorComponent, typeof i7.ButtonComponent, typeof i8.ButtonBadgeComponent, typeof i9.CalendarComponent, typeof i10.CalendarDateComponent, typeof i11.CalendarDateRangeComponent, typeof i12.CalendarLegendComponent, typeof i13.CalendarLegendItemComponent, typeof i14.CardComponent, typeof i15.CardHeaderComponent, typeof i16.CarouselComponent, typeof i17.CheckBoxComponent, typeof i18.ColorPaletteComponent, typeof i19.ColorPaletteItemComponent, typeof i20.ColorPalettePopoverComponent, typeof i21.ColorPickerComponent, typeof i22.ComboBoxComponent, typeof i23.ComboBoxItemComponent, typeof i24.ComboBoxItemGroupComponent, typeof i25.DatePickerComponent, typeof i26.DateRangePickerComponent, typeof i27.DateTimePickerComponent, typeof i28.DialogComponent, typeof i29.DynamicDateRangeComponent, typeof i30.ExpandableTextComponent, typeof i31.FileUploaderComponent, typeof i32.FormComponent, typeof i33.FormGroupComponent, typeof i34.FormItemComponent, typeof i35.IconComponent, typeof i36.InputComponent, typeof i37.LabelComponent, typeof i38.LinkComponent, typeof i39.ListComponent, typeof i40.ListItemCustomComponent, typeof i41.ListItemGroupComponent, typeof i42.ListItemStandardComponent, typeof i43.MenuComponent, typeof i44.MenuItemComponent, typeof i45.
|
|
112
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Ui5MainModule, never, [typeof i1.AvatarComponent, typeof i2.AvatarGroupComponent, typeof i3.BarComponent, typeof i4.BreadcrumbsComponent, typeof i5.BreadcrumbsItemComponent, typeof i6.BusyIndicatorComponent, typeof i7.ButtonComponent, typeof i8.ButtonBadgeComponent, typeof i9.CalendarComponent, typeof i10.CalendarDateComponent, typeof i11.CalendarDateRangeComponent, typeof i12.CalendarLegendComponent, typeof i13.CalendarLegendItemComponent, typeof i14.CardComponent, typeof i15.CardHeaderComponent, typeof i16.CarouselComponent, typeof i17.CheckBoxComponent, typeof i18.ColorPaletteComponent, typeof i19.ColorPaletteItemComponent, typeof i20.ColorPalettePopoverComponent, typeof i21.ColorPickerComponent, typeof i22.ComboBoxComponent, typeof i23.ComboBoxItemComponent, typeof i24.ComboBoxItemGroupComponent, typeof i25.DatePickerComponent, typeof i26.DateRangePickerComponent, typeof i27.DateTimePickerComponent, typeof i28.DialogComponent, typeof i29.DynamicDateRangeComponent, typeof i30.ExpandableTextComponent, typeof i31.FileUploaderComponent, typeof i32.FormComponent, typeof i33.FormGroupComponent, typeof i34.FormItemComponent, typeof i35.IconComponent, typeof i36.InputComponent, typeof i37.LabelComponent, typeof i38.LinkComponent, typeof i39.ListComponent, typeof i40.ListItemCustomComponent, typeof i41.ListItemGroupComponent, typeof i42.ListItemStandardComponent, typeof i43.MenuComponent, typeof i44.MenuItemComponent, typeof i45.MenuItemGroupComponent, typeof i46.MenuSeparatorComponent, typeof i47.MessageStripComponent, typeof i48.MultiComboBoxComponent, typeof i49.MultiComboBoxItemComponent, typeof i50.MultiComboBoxItemGroupComponent, typeof i51.MultiInputComponent, typeof i52.OptionComponent, typeof i53.OptionCustomComponent, typeof i54.PanelComponent, typeof i55.PopoverComponent, typeof i56.ProgressIndicatorComponent, typeof i57.RadioButtonComponent, typeof i58.RangeSliderComponent, typeof i59.RatingIndicatorComponent, typeof i60.ResponsivePopoverComponent, typeof i61.SegmentedButtonComponent, typeof i62.SegmentedButtonItemComponent, typeof i63.SelectComponent, typeof i64.SliderComponent, typeof i65.SpecialCalendarDateComponent, typeof i66.SplitButtonComponent, typeof i67.StepInputComponent, typeof i68.SuggestionItemComponent, typeof i69.SuggestionItemCustomComponent, typeof i70.SuggestionItemGroupComponent, typeof i71.SwitchComponent, typeof i72.TabComponent, typeof i73.TabContainerComponent, typeof i74.TabSeparatorComponent, typeof i75.TableComponent, typeof i76.TableCellComponent, typeof i77.TableGrowingComponent, typeof i78.TableHeaderCellComponent, typeof i79.TableHeaderCellActionAIComponent, typeof i80.TableHeaderRowComponent, typeof i81.TableRowComponent, typeof i82.TableRowActionComponent, typeof i83.TableRowActionNavigationComponent, typeof i84.TableSelectionComponent, typeof i85.TableSelectionMultiComponent, typeof i86.TableSelectionSingleComponent, typeof i87.TableVirtualizerComponent, typeof i88.TagComponent, typeof i89.TextComponent, typeof i90.TextAreaComponent, typeof i91.TimePickerComponent, typeof i92.TitleComponent, typeof i93.ToastComponent, typeof i94.ToggleButtonComponent, typeof i95.TokenComponent, typeof i96.TokenizerComponent, typeof i97.ToolbarComponent, typeof i98.ToolbarButtonComponent, typeof i99.ToolbarSelectComponent, typeof i100.ToolbarSelectOptionComponent, typeof i101.ToolbarSeparatorComponent, typeof i102.ToolbarSpacerComponent, typeof i103.TreeComponent, typeof i104.TreeItemComponent, typeof i105.TreeItemCustomComponent], [typeof i1.AvatarComponent, typeof i2.AvatarGroupComponent, typeof i3.BarComponent, typeof i4.BreadcrumbsComponent, typeof i5.BreadcrumbsItemComponent, typeof i6.BusyIndicatorComponent, typeof i7.ButtonComponent, typeof i8.ButtonBadgeComponent, typeof i9.CalendarComponent, typeof i10.CalendarDateComponent, typeof i11.CalendarDateRangeComponent, typeof i12.CalendarLegendComponent, typeof i13.CalendarLegendItemComponent, typeof i14.CardComponent, typeof i15.CardHeaderComponent, typeof i16.CarouselComponent, typeof i17.CheckBoxComponent, typeof i18.ColorPaletteComponent, typeof i19.ColorPaletteItemComponent, typeof i20.ColorPalettePopoverComponent, typeof i21.ColorPickerComponent, typeof i22.ComboBoxComponent, typeof i23.ComboBoxItemComponent, typeof i24.ComboBoxItemGroupComponent, typeof i25.DatePickerComponent, typeof i26.DateRangePickerComponent, typeof i27.DateTimePickerComponent, typeof i28.DialogComponent, typeof i29.DynamicDateRangeComponent, typeof i30.ExpandableTextComponent, typeof i31.FileUploaderComponent, typeof i32.FormComponent, typeof i33.FormGroupComponent, typeof i34.FormItemComponent, typeof i35.IconComponent, typeof i36.InputComponent, typeof i37.LabelComponent, typeof i38.LinkComponent, typeof i39.ListComponent, typeof i40.ListItemCustomComponent, typeof i41.ListItemGroupComponent, typeof i42.ListItemStandardComponent, typeof i43.MenuComponent, typeof i44.MenuItemComponent, typeof i45.MenuItemGroupComponent, typeof i46.MenuSeparatorComponent, typeof i47.MessageStripComponent, typeof i48.MultiComboBoxComponent, typeof i49.MultiComboBoxItemComponent, typeof i50.MultiComboBoxItemGroupComponent, typeof i51.MultiInputComponent, typeof i52.OptionComponent, typeof i53.OptionCustomComponent, typeof i54.PanelComponent, typeof i55.PopoverComponent, typeof i56.ProgressIndicatorComponent, typeof i57.RadioButtonComponent, typeof i58.RangeSliderComponent, typeof i59.RatingIndicatorComponent, typeof i60.ResponsivePopoverComponent, typeof i61.SegmentedButtonComponent, typeof i62.SegmentedButtonItemComponent, typeof i63.SelectComponent, typeof i64.SliderComponent, typeof i65.SpecialCalendarDateComponent, typeof i66.SplitButtonComponent, typeof i67.StepInputComponent, typeof i68.SuggestionItemComponent, typeof i69.SuggestionItemCustomComponent, typeof i70.SuggestionItemGroupComponent, typeof i71.SwitchComponent, typeof i72.TabComponent, typeof i73.TabContainerComponent, typeof i74.TabSeparatorComponent, typeof i75.TableComponent, typeof i76.TableCellComponent, typeof i77.TableGrowingComponent, typeof i78.TableHeaderCellComponent, typeof i79.TableHeaderCellActionAIComponent, typeof i80.TableHeaderRowComponent, typeof i81.TableRowComponent, typeof i82.TableRowActionComponent, typeof i83.TableRowActionNavigationComponent, typeof i84.TableSelectionComponent, typeof i85.TableSelectionMultiComponent, typeof i86.TableSelectionSingleComponent, typeof i87.TableVirtualizerComponent, typeof i88.TagComponent, typeof i89.TextComponent, typeof i90.TextAreaComponent, typeof i91.TimePickerComponent, typeof i92.TitleComponent, typeof i93.ToastComponent, typeof i94.ToggleButtonComponent, typeof i95.TokenComponent, typeof i96.TokenizerComponent, typeof i97.ToolbarComponent, typeof i98.ToolbarButtonComponent, typeof i99.ToolbarSelectComponent, typeof i100.ToolbarSelectOptionComponent, typeof i101.ToolbarSeparatorComponent, typeof i102.ToolbarSpacerComponent, typeof i103.TreeComponent, typeof i104.TreeItemComponent, typeof i105.TreeItemCustomComponent]>;
|
|
112
113
|
static ɵinj: i0.ɵɵInjectorDeclaration<Ui5MainModule>;
|
|
113
114
|
}
|
|
114
115
|
|
|
@@ -62,25 +62,34 @@ declare class MenuItemComponent {
|
|
|
62
62
|
*/
|
|
63
63
|
icon: string | undefined;
|
|
64
64
|
/**
|
|
65
|
-
Defines whether
|
|
65
|
+
Defines whether menu item is in disabled state.
|
|
66
66
|
|
|
67
|
-
**Note:** A disabled
|
|
67
|
+
**Note:** A disabled menu item is noninteractive.
|
|
68
68
|
*/
|
|
69
69
|
disabled: boolean;
|
|
70
70
|
/**
|
|
71
|
-
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding
|
|
71
|
+
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.
|
|
72
72
|
|
|
73
|
-
**Note:** If set to `true` a
|
|
73
|
+
**Note:** If set to `true` a busy indicator component will be displayed into the related one to the current menu item sub-menu popover.
|
|
74
74
|
*/
|
|
75
75
|
loading: boolean;
|
|
76
76
|
/**
|
|
77
|
-
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding
|
|
77
|
+
Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.
|
|
78
78
|
*/
|
|
79
79
|
loadingDelay: number;
|
|
80
80
|
/**
|
|
81
81
|
Defines the accessible ARIA name of the component.
|
|
82
82
|
*/
|
|
83
83
|
accessibleName: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
Defines whether menu item is in checked state.
|
|
86
|
+
|
|
87
|
+
**Note:** checked state is only taken into account when menu item is added to menu item group
|
|
88
|
+
with `checkMode` other than `None`.
|
|
89
|
+
|
|
90
|
+
**Note:** A checked menu item has a checkmark displayed at its end.
|
|
91
|
+
*/
|
|
92
|
+
checked: boolean;
|
|
84
93
|
/**
|
|
85
94
|
Fired when the user clicks on the detail button when type is `Detail`.
|
|
86
95
|
*/
|
|
@@ -103,17 +112,22 @@ declare class MenuItemComponent {
|
|
|
103
112
|
Fired after the menu is closed.
|
|
104
113
|
*/
|
|
105
114
|
ui5Close: EventEmitter<void>;
|
|
115
|
+
/**
|
|
116
|
+
Fired when an item is checked or unchecked.
|
|
117
|
+
*/
|
|
118
|
+
ui5Check: EventEmitter<void>;
|
|
106
119
|
private elementRef;
|
|
107
120
|
private zone;
|
|
108
121
|
private cdr;
|
|
109
122
|
get element(): MenuItem;
|
|
110
123
|
constructor();
|
|
111
124
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemComponent, never>;
|
|
112
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemComponent, "ui5-menu-item", ["ui5MenuItem"], { "type": { "alias": "type"; "required": false; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; }; "navigated": { "alias": "navigated"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "text": { "alias": "text"; "required": false; }; "additionalText": { "alias": "additionalText"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; }, { "ui5DetailClick": "ui5DetailClick"; "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
125
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemComponent, "ui5-menu-item", ["ui5MenuItem"], { "type": { "alias": "type"; "required": false; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; }; "navigated": { "alias": "navigated"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "text": { "alias": "text"; "required": false; }; "additionalText": { "alias": "additionalText"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "ui5DetailClick": "ui5DetailClick"; "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; "ui5Check": "ui5Check"; }, never, ["*"], true, never>;
|
|
113
126
|
static ngAcceptInputType_navigated: unknown;
|
|
114
127
|
static ngAcceptInputType_selected: unknown;
|
|
115
128
|
static ngAcceptInputType_disabled: unknown;
|
|
116
129
|
static ngAcceptInputType_loading: unknown;
|
|
130
|
+
static ngAcceptInputType_checked: unknown;
|
|
117
131
|
}
|
|
118
132
|
|
|
119
133
|
export { MenuItemComponent };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import MenuItemGroup from '@ui5/webcomponents/dist/MenuItemGroup.js';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
|
|
4
|
+
declare class MenuItemGroupComponent {
|
|
5
|
+
/**
|
|
6
|
+
Defines the component's check mode.
|
|
7
|
+
*/
|
|
8
|
+
checkMode: 'None' | 'Single' | 'Multiple';
|
|
9
|
+
private elementRef;
|
|
10
|
+
private zone;
|
|
11
|
+
private cdr;
|
|
12
|
+
get element(): MenuItemGroup;
|
|
13
|
+
constructor();
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemGroupComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemGroupComponent, "ui5-menu-item-group", ["ui5MenuItemGroup"], { "checkMode": { "alias": "checkMode"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { MenuItemGroupComponent };
|
package/main/popover/index.d.ts
CHANGED
|
@@ -28,6 +28,14 @@ declare class PopoverComponent {
|
|
|
28
28
|
Allows setting a custom role.
|
|
29
29
|
*/
|
|
30
30
|
accessibleRole: 'None' | 'Dialog' | 'AlertDialog';
|
|
31
|
+
/**
|
|
32
|
+
Defines the accessible description of the component.
|
|
33
|
+
*/
|
|
34
|
+
accessibleDescription: string | undefined;
|
|
35
|
+
/**
|
|
36
|
+
Receives id(or many ids) of the elements that describe the component.
|
|
37
|
+
*/
|
|
38
|
+
accessibleDescriptionRef: string | undefined;
|
|
31
39
|
/**
|
|
32
40
|
Indicates whether initial focus should be prevented.
|
|
33
41
|
*/
|
|
@@ -97,7 +105,7 @@ declare class PopoverComponent {
|
|
|
97
105
|
get element(): Popover;
|
|
98
106
|
constructor();
|
|
99
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "ui5-popover", ["ui5Popover"], { "initialFocus": { "alias": "initialFocus"; "required": false; }; "preventFocusRestore": { "alias": "preventFocusRestore"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; }; "preventInitialFocus": { "alias": "preventInitialFocus"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "horizontalAlign": { "alias": "horizontalAlign"; "required": false; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "allowTargetOverlap": { "alias": "allowTargetOverlap"; "required": false; }; "opener": { "alias": "opener"; "required": false; }; }, { "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "ui5-popover", ["ui5Popover"], { "initialFocus": { "alias": "initialFocus"; "required": false; }; "preventFocusRestore": { "alias": "preventFocusRestore"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; }; "accessibleDescription": { "alias": "accessibleDescription"; "required": false; }; "accessibleDescriptionRef": { "alias": "accessibleDescriptionRef"; "required": false; }; "preventInitialFocus": { "alias": "preventInitialFocus"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "horizontalAlign": { "alias": "horizontalAlign"; "required": false; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "allowTargetOverlap": { "alias": "allowTargetOverlap"; "required": false; }; "opener": { "alias": "opener"; "required": false; }; }, { "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
101
109
|
static ngAcceptInputType_preventFocusRestore: unknown;
|
|
102
110
|
static ngAcceptInputType_preventInitialFocus: unknown;
|
|
103
111
|
static ngAcceptInputType_open: unknown;
|
|
@@ -28,6 +28,14 @@ declare class ResponsivePopoverComponent {
|
|
|
28
28
|
Allows setting a custom role.
|
|
29
29
|
*/
|
|
30
30
|
accessibleRole: 'None' | 'Dialog' | 'AlertDialog';
|
|
31
|
+
/**
|
|
32
|
+
Defines the accessible description of the component.
|
|
33
|
+
*/
|
|
34
|
+
accessibleDescription: string | undefined;
|
|
35
|
+
/**
|
|
36
|
+
Receives id(or many ids) of the elements that describe the component.
|
|
37
|
+
*/
|
|
38
|
+
accessibleDescriptionRef: string | undefined;
|
|
31
39
|
/**
|
|
32
40
|
Indicates whether initial focus should be prevented.
|
|
33
41
|
*/
|
|
@@ -97,7 +105,7 @@ declare class ResponsivePopoverComponent {
|
|
|
97
105
|
get element(): ResponsivePopover;
|
|
98
106
|
constructor();
|
|
99
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsivePopoverComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsivePopoverComponent, "ui5-responsive-popover", ["ui5ResponsivePopover"], { "initialFocus": { "alias": "initialFocus"; "required": false; }; "preventFocusRestore": { "alias": "preventFocusRestore"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; }; "preventInitialFocus": { "alias": "preventInitialFocus"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "horizontalAlign": { "alias": "horizontalAlign"; "required": false; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "allowTargetOverlap": { "alias": "allowTargetOverlap"; "required": false; }; "opener": { "alias": "opener"; "required": false; }; }, { "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResponsivePopoverComponent, "ui5-responsive-popover", ["ui5ResponsivePopover"], { "initialFocus": { "alias": "initialFocus"; "required": false; }; "preventFocusRestore": { "alias": "preventFocusRestore"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; }; "accessibleDescription": { "alias": "accessibleDescription"; "required": false; }; "accessibleDescriptionRef": { "alias": "accessibleDescriptionRef"; "required": false; }; "preventInitialFocus": { "alias": "preventInitialFocus"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "horizontalAlign": { "alias": "horizontalAlign"; "required": false; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "allowTargetOverlap": { "alias": "allowTargetOverlap"; "required": false; }; "opener": { "alias": "opener"; "required": false; }; }, { "ui5BeforeOpen": "ui5BeforeOpen"; "ui5Open": "ui5Open"; "ui5BeforeClose": "ui5BeforeClose"; "ui5Close": "ui5Close"; }, never, ["*"], true, never>;
|
|
101
109
|
static ngAcceptInputType_preventFocusRestore: unknown;
|
|
102
110
|
static ngAcceptInputType_preventInitialFocus: unknown;
|
|
103
111
|
static ngAcceptInputType_open: unknown;
|
package/main/switch/index.d.ts
CHANGED
|
@@ -67,6 +67,10 @@ declare class SwitchComponent {
|
|
|
67
67
|
**Note:** This property is only applicable within the context of an HTML Form element.
|
|
68
68
|
*/
|
|
69
69
|
name: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
Defines the form value of the component.
|
|
72
|
+
*/
|
|
73
|
+
value: string;
|
|
70
74
|
/**
|
|
71
75
|
Fired when the component checked state changes.
|
|
72
76
|
*/
|
|
@@ -80,7 +84,7 @@ declare class SwitchComponent {
|
|
|
80
84
|
get cvaValue(): boolean;
|
|
81
85
|
constructor();
|
|
82
86
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "ui5-switch", ["ui5Switch"], { "design": { "alias": "design"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "textOn": { "alias": "textOn"; "required": false; }; "textOff": { "alias": "textOff"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "required": { "alias": "required"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "ui5Change": "ui5Change"; }, never, ["*"], true, [{ directive: typeof i1.GenericControlValueAccessor; inputs: {}; outputs: {}; }]>;
|
|
87
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "ui5-switch", ["ui5Switch"], { "design": { "alias": "design"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "textOn": { "alias": "textOn"; "required": false; }; "textOff": { "alias": "textOff"; "required": false; }; "accessibleName": { "alias": "accessibleName"; "required": false; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "required": { "alias": "required"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ui5Change": "ui5Change"; }, never, ["*"], true, [{ directive: typeof i1.GenericControlValueAccessor; inputs: {}; outputs: {}; }]>;
|
|
84
88
|
static ngAcceptInputType_checked: unknown;
|
|
85
89
|
static ngAcceptInputType_disabled: unknown;
|
|
86
90
|
static ngAcceptInputType_required: unknown;
|
|
@@ -11,6 +11,10 @@ declare class TableSelectionMultiComponent {
|
|
|
11
11
|
Defines the selection behavior.
|
|
12
12
|
*/
|
|
13
13
|
behavior: 'RowSelector' | 'RowOnly';
|
|
14
|
+
/**
|
|
15
|
+
Defines the selector of the header row.
|
|
16
|
+
*/
|
|
17
|
+
headerSelector: 'SelectAll' | 'ClearAll';
|
|
14
18
|
/**
|
|
15
19
|
Fired when the selection is changed by user interaction.
|
|
16
20
|
*/
|
|
@@ -21,7 +25,7 @@ declare class TableSelectionMultiComponent {
|
|
|
21
25
|
get element(): TableSelectionMulti;
|
|
22
26
|
constructor();
|
|
23
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableSelectionMultiComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableSelectionMultiComponent, "ui5-table-selection-multi", ["ui5TableSelectionMulti"], { "selected": { "alias": "selected"; "required": false; }; "behavior": { "alias": "behavior"; "required": false; }; }, { "ui5Change": "ui5Change"; }, never, ["*"], true, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableSelectionMultiComponent, "ui5-table-selection-multi", ["ui5TableSelectionMulti"], { "selected": { "alias": "selected"; "required": false; }; "behavior": { "alias": "behavior"; "required": false; }; "headerSelector": { "alias": "headerSelector"; "required": false; }; }, { "ui5Change": "ui5Change"; }, never, ["*"], true, never>;
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
export { TableSelectionMultiComponent };
|