@fundamental-ngx/ui5-webcomponents 0.63.1-rc.11 → 0.63.1-rc.13
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/fundamental-ngx-ui5-webcomponents-bar.mjs +4 -2
- package/fesm2022/fundamental-ngx-ui5-webcomponents-bar.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-breadcrumbs.mjs +7 -2
- package/fesm2022/fundamental-ngx-ui5-webcomponents-breadcrumbs.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item-custom.mjs +129 -0
- package/fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item-custom.mjs.map +1 -0
- package/fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-custom.mjs +129 -0
- package/fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-custom.mjs.map +1 -0
- package/fesm2022/fundamental-ngx-ui5-webcomponents.mjs +250 -5
- package/fesm2022/fundamental-ngx-ui5-webcomponents.mjs.map +1 -1
- package/package.json +13 -5
- package/types/fundamental-ngx-ui5-webcomponents-bar.d.ts +4 -2
- package/types/fundamental-ngx-ui5-webcomponents-breadcrumbs.d.ts +5 -1
- package/types/fundamental-ngx-ui5-webcomponents-combo-box-item-custom.d.ts +60 -0
- package/types/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-custom.d.ts +60 -0
- package/types/fundamental-ngx-ui5-webcomponents.d.ts +120 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/ui5-webcomponents",
|
|
3
|
-
"version": "0.63.1-rc.
|
|
3
|
+
"version": "0.63.1-rc.13",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"description": "Official SAP Angular wrappers for UI5 Web Components – part of the Fundamental Library for Angular.",
|
|
6
6
|
"keywords": [
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"@angular/forms": "^21.0.0",
|
|
39
39
|
"@angular/platform-browser": "^21.0.0",
|
|
40
40
|
"@angular/router": "^21.0.0",
|
|
41
|
-
"@fundamental-ngx/core": "0.63.1-rc.
|
|
42
|
-
"@ui5/webcomponents": "^2.
|
|
43
|
-
"fundamental-styles": "0.41.
|
|
41
|
+
"@fundamental-ngx/core": "0.63.1-rc.13",
|
|
42
|
+
"@ui5/webcomponents": "^2.24.0",
|
|
43
|
+
"fundamental-styles": "0.41.8",
|
|
44
44
|
"rxjs": "^7.8.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@fundamental-ngx/ui5-webcomponents-base": "0.63.1-rc.
|
|
47
|
+
"@fundamental-ngx/ui5-webcomponents-base": "0.63.1-rc.13",
|
|
48
48
|
"@sap-theming/theming-base-content": "^11.36.0",
|
|
49
49
|
"compare-versions": "^6.1.0",
|
|
50
50
|
"fast-equals": "^6.0.0",
|
|
@@ -160,6 +160,10 @@
|
|
|
160
160
|
"types": "./types/fundamental-ngx-ui5-webcomponents-combo-box-item.d.ts",
|
|
161
161
|
"default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item.mjs"
|
|
162
162
|
},
|
|
163
|
+
"./combo-box-item-custom": {
|
|
164
|
+
"types": "./types/fundamental-ngx-ui5-webcomponents-combo-box-item-custom.d.ts",
|
|
165
|
+
"default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item-custom.mjs"
|
|
166
|
+
},
|
|
163
167
|
"./combo-box-item-group": {
|
|
164
168
|
"types": "./types/fundamental-ngx-ui5-webcomponents-combo-box-item-group.d.ts",
|
|
165
169
|
"default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item-group.mjs"
|
|
@@ -284,6 +288,10 @@
|
|
|
284
288
|
"types": "./types/fundamental-ngx-ui5-webcomponents-multi-combo-box-item.d.ts",
|
|
285
289
|
"default": "./fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item.mjs"
|
|
286
290
|
},
|
|
291
|
+
"./multi-combo-box-item-custom": {
|
|
292
|
+
"types": "./types/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-custom.d.ts",
|
|
293
|
+
"default": "./fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-custom.mjs"
|
|
294
|
+
},
|
|
287
295
|
"./multi-combo-box-item-group": {
|
|
288
296
|
"types": "./types/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-group.d.ts",
|
|
289
297
|
"default": "./fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-group.mjs"
|
|
@@ -16,9 +16,11 @@ declare class Bar implements AfterViewInit {
|
|
|
16
16
|
|
|
17
17
|
**Note:**
|
|
18
18
|
|
|
19
|
-
-
|
|
19
|
+
- By default, accessibleRole is set to "Toolbar", which renders the ARIA role "toolbar".
|
|
20
20
|
|
|
21
|
-
-
|
|
21
|
+
- Use the default accessibleRole value "Toolbar" only when the component contains two or more active, interactive elements (such as buttons, links, or input fields) within the bar.
|
|
22
|
+
|
|
23
|
+
- If there is only one or no active element, set accessibleRole to "None" to avoid rendering the ARIA role "toolbar", as that role implies a grouping of multiple interactive controls.
|
|
22
24
|
*/
|
|
23
25
|
accessibleRole: _angular_core.InputSignal<"Toolbar" | "None" | undefined>;
|
|
24
26
|
/**
|
|
@@ -4,6 +4,10 @@ import _Breadcrumbs from '@ui5/webcomponents/dist/Breadcrumbs.js';
|
|
|
4
4
|
import { UI5CustomEvent } from '@ui5/webcomponents-base';
|
|
5
5
|
|
|
6
6
|
declare class Breadcrumbs implements AfterViewInit {
|
|
7
|
+
/**
|
|
8
|
+
* Defines the accessible name of the component.
|
|
9
|
+
*/
|
|
10
|
+
accessibleName: _angular_core.InputSignal<string | undefined>;
|
|
7
11
|
/**
|
|
8
12
|
* Defines the visual appearance of the last BreadcrumbsItem.
|
|
9
13
|
|
|
@@ -58,7 +62,7 @@ declare class Breadcrumbs implements AfterViewInit {
|
|
|
58
62
|
get element(): _Breadcrumbs;
|
|
59
63
|
ngAfterViewInit(): void;
|
|
60
64
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Breadcrumbs, never>;
|
|
61
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Breadcrumbs, "ui5-breadcrumbs, [ui5-breadcrumbs]", ["ui5Breadcrumbs"], { "design": { "alias": "design"; "required": false; "isSignal": true; }; "separators": { "alias": "separators"; "required": false; "isSignal": true; }; }, { "ui5ItemClick": "ui5ItemClick"; }, never, ["*"], true, never>;
|
|
65
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Breadcrumbs, "ui5-breadcrumbs, [ui5-breadcrumbs]", ["ui5Breadcrumbs"], { "accessibleName": { "alias": "accessibleName"; "required": false; "isSignal": true; }; "design": { "alias": "design"; "required": false; "isSignal": true; }; "separators": { "alias": "separators"; "required": false; "isSignal": true; }; }, { "ui5ItemClick": "ui5ItemClick"; }, never, ["*"], true, never>;
|
|
62
66
|
}
|
|
63
67
|
|
|
64
68
|
export { Breadcrumbs };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { AfterViewInit, ElementRef, Injector } from '@angular/core';
|
|
3
|
+
import _ComboBoxItemCustom from '@ui5/webcomponents/dist/ComboBoxItemCustom.js';
|
|
4
|
+
import { UI5CustomEvent } from '@ui5/webcomponents-base';
|
|
5
|
+
|
|
6
|
+
declare class ComboBoxItemCustom implements AfterViewInit {
|
|
7
|
+
/**
|
|
8
|
+
* Defines the text of the component.
|
|
9
|
+
Used for filtering, autocomplete, and mobile rendering.
|
|
10
|
+
*/
|
|
11
|
+
text: _angular_core.InputSignal<string | undefined>;
|
|
12
|
+
/**
|
|
13
|
+
* Defines the value of the component.
|
|
14
|
+
Used for programmatic selection via the `selectedValue` property.
|
|
15
|
+
*/
|
|
16
|
+
value: _angular_core.InputSignal<string | undefined>;
|
|
17
|
+
/**
|
|
18
|
+
* Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
|
|
19
|
+
|
|
20
|
+
**Note:** The event will not be fired if the `disabled` property is set to `true`.
|
|
21
|
+
*/
|
|
22
|
+
ui5Click: _angular_core.OutputEmitterRef<UI5CustomEvent<_ComboBoxItemCustom, "click">>;
|
|
23
|
+
/**
|
|
24
|
+
* Available slots for content projection in this component.
|
|
25
|
+
*
|
|
26
|
+
* Slots allow you to insert custom content into predefined areas of the web component.
|
|
27
|
+
* Use the `slot` attribute on child elements to target specific slots.
|
|
28
|
+
*
|
|
29
|
+
* - **(default)**: Defines the content of the component.
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* ```html
|
|
33
|
+
* <ui5-cb-item-custom>
|
|
34
|
+
* <div slot="header">Custom header content</div>
|
|
35
|
+
* <p>Default slot content</p>
|
|
36
|
+
* </ui5-cb-item-custom>
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* @readonly
|
|
40
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots | MDN Web Components Slots}
|
|
41
|
+
*/
|
|
42
|
+
readonly slots: {
|
|
43
|
+
name: string;
|
|
44
|
+
description: string;
|
|
45
|
+
}[];
|
|
46
|
+
elementRef: ElementRef<_ComboBoxItemCustom>;
|
|
47
|
+
injector: Injector;
|
|
48
|
+
/**
|
|
49
|
+
* Content density observer is injected to activate automatic CSS class and
|
|
50
|
+
* UI5 attribute application. The observer self-initializes, no explicit subscribe() needed.
|
|
51
|
+
* @private
|
|
52
|
+
*/
|
|
53
|
+
private readonly _contentDensityObserver;
|
|
54
|
+
get element(): _ComboBoxItemCustom;
|
|
55
|
+
ngAfterViewInit(): void;
|
|
56
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ComboBoxItemCustom, never>;
|
|
57
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ComboBoxItemCustom, "ui5-cb-item-custom, [ui5-cb-item-custom]", ["ui5ComboBoxItemCustom"], { "text": { "alias": "text"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export { ComboBoxItemCustom };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { AfterViewInit, ElementRef, Injector } from '@angular/core';
|
|
3
|
+
import _MultiComboBoxItemCustom from '@ui5/webcomponents/dist/MultiComboBoxItemCustom.js';
|
|
4
|
+
import { UI5CustomEvent } from '@ui5/webcomponents-base';
|
|
5
|
+
|
|
6
|
+
declare class MultiComboBoxItemCustom implements AfterViewInit {
|
|
7
|
+
/**
|
|
8
|
+
* Defines the text of the component.
|
|
9
|
+
Used for filtering and token display.
|
|
10
|
+
*/
|
|
11
|
+
text: _angular_core.InputSignal<string | undefined>;
|
|
12
|
+
/**
|
|
13
|
+
* Defines the value of the component.
|
|
14
|
+
Used for programmatic selection via selectedValues property.
|
|
15
|
+
*/
|
|
16
|
+
value: _angular_core.InputSignal<string | undefined>;
|
|
17
|
+
/**
|
|
18
|
+
* Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
|
|
19
|
+
|
|
20
|
+
**Note:** The event will not be fired if the `disabled` property is set to `true`.
|
|
21
|
+
*/
|
|
22
|
+
ui5Click: _angular_core.OutputEmitterRef<UI5CustomEvent<_MultiComboBoxItemCustom, "click">>;
|
|
23
|
+
/**
|
|
24
|
+
* Available slots for content projection in this component.
|
|
25
|
+
*
|
|
26
|
+
* Slots allow you to insert custom content into predefined areas of the web component.
|
|
27
|
+
* Use the `slot` attribute on child elements to target specific slots.
|
|
28
|
+
*
|
|
29
|
+
* - **(default)**: Defines the content of the component.
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* ```html
|
|
33
|
+
* <ui5-mcb-item-custom>
|
|
34
|
+
* <div slot="header">Custom header content</div>
|
|
35
|
+
* <p>Default slot content</p>
|
|
36
|
+
* </ui5-mcb-item-custom>
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* @readonly
|
|
40
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots | MDN Web Components Slots}
|
|
41
|
+
*/
|
|
42
|
+
readonly slots: {
|
|
43
|
+
name: string;
|
|
44
|
+
description: string;
|
|
45
|
+
}[];
|
|
46
|
+
elementRef: ElementRef<_MultiComboBoxItemCustom>;
|
|
47
|
+
injector: Injector;
|
|
48
|
+
/**
|
|
49
|
+
* Content density observer is injected to activate automatic CSS class and
|
|
50
|
+
* UI5 attribute application. The observer self-initializes, no explicit subscribe() needed.
|
|
51
|
+
* @private
|
|
52
|
+
*/
|
|
53
|
+
private readonly _contentDensityObserver;
|
|
54
|
+
get element(): _MultiComboBoxItemCustom;
|
|
55
|
+
ngAfterViewInit(): void;
|
|
56
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiComboBoxItemCustom, never>;
|
|
57
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiComboBoxItemCustom, "ui5-mcb-item-custom, [ui5-mcb-item-custom]", ["ui5MultiComboBoxItemCustom"], { "text": { "alias": "text"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export { MultiComboBoxItemCustom };
|
|
@@ -100,6 +100,7 @@ import _ColorPalettePopover from '@ui5/webcomponents/dist/ColorPalettePopover.js
|
|
|
100
100
|
import _ColorPicker from '@ui5/webcomponents/dist/ColorPicker.js';
|
|
101
101
|
import _ComboBox from '@ui5/webcomponents/dist/ComboBox.js';
|
|
102
102
|
import _ComboBoxItem from '@ui5/webcomponents/dist/ComboBoxItem.js';
|
|
103
|
+
import _ComboBoxItemCustom from '@ui5/webcomponents/dist/ComboBoxItemCustom.js';
|
|
103
104
|
import _ComboBoxItemGroup from '@ui5/webcomponents/dist/ComboBoxItemGroup.js';
|
|
104
105
|
import _DatePicker from '@ui5/webcomponents/dist/DatePicker.js';
|
|
105
106
|
import _DateRangePicker from '@ui5/webcomponents/dist/DateRangePicker.js';
|
|
@@ -133,6 +134,7 @@ import _MessageStrip from '@ui5/webcomponents/dist/MessageStrip.js';
|
|
|
133
134
|
import _MonthPicker from '@ui5/webcomponents/dist/MonthPicker.js';
|
|
134
135
|
import _MultiComboBox from '@ui5/webcomponents/dist/MultiComboBox.js';
|
|
135
136
|
import _MultiComboBoxItem from '@ui5/webcomponents/dist/MultiComboBoxItem.js';
|
|
137
|
+
import _MultiComboBoxItemCustom from '@ui5/webcomponents/dist/MultiComboBoxItemCustom.js';
|
|
136
138
|
import _MultiComboBoxItemGroup from '@ui5/webcomponents/dist/MultiComboBoxItemGroup.js';
|
|
137
139
|
import _MultiInput from '@ui5/webcomponents/dist/MultiInput.js';
|
|
138
140
|
import _Option from '@ui5/webcomponents/dist/Option.js';
|
|
@@ -549,9 +551,11 @@ declare class Bar implements AfterViewInit {
|
|
|
549
551
|
|
|
550
552
|
**Note:**
|
|
551
553
|
|
|
552
|
-
-
|
|
554
|
+
- By default, accessibleRole is set to "Toolbar", which renders the ARIA role "toolbar".
|
|
553
555
|
|
|
554
|
-
-
|
|
556
|
+
- Use the default accessibleRole value "Toolbar" only when the component contains two or more active, interactive elements (such as buttons, links, or input fields) within the bar.
|
|
557
|
+
|
|
558
|
+
- If there is only one or no active element, set accessibleRole to "None" to avoid rendering the ARIA role "toolbar", as that role implies a grouping of multiple interactive controls.
|
|
555
559
|
*/
|
|
556
560
|
accessibleRole: _angular_core.InputSignal<"None" | "Toolbar" | undefined>;
|
|
557
561
|
/**
|
|
@@ -598,6 +602,10 @@ declare class Bar implements AfterViewInit {
|
|
|
598
602
|
}
|
|
599
603
|
|
|
600
604
|
declare class Breadcrumbs implements AfterViewInit {
|
|
605
|
+
/**
|
|
606
|
+
* Defines the accessible name of the component.
|
|
607
|
+
*/
|
|
608
|
+
accessibleName: _angular_core.InputSignal<string | undefined>;
|
|
601
609
|
/**
|
|
602
610
|
* Defines the visual appearance of the last BreadcrumbsItem.
|
|
603
611
|
|
|
@@ -652,7 +660,7 @@ declare class Breadcrumbs implements AfterViewInit {
|
|
|
652
660
|
get element(): _Breadcrumbs;
|
|
653
661
|
ngAfterViewInit(): void;
|
|
654
662
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Breadcrumbs, never>;
|
|
655
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Breadcrumbs, "ui5-breadcrumbs, [ui5-breadcrumbs]", ["ui5Breadcrumbs"], { "design": { "alias": "design"; "required": false; "isSignal": true; }; "separators": { "alias": "separators"; "required": false; "isSignal": true; }; }, { "ui5ItemClick": "ui5ItemClick"; }, never, ["*"], true, never>;
|
|
663
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Breadcrumbs, "ui5-breadcrumbs, [ui5-breadcrumbs]", ["ui5Breadcrumbs"], { "accessibleName": { "alias": "accessibleName"; "required": false; "isSignal": true; }; "design": { "alias": "design"; "required": false; "isSignal": true; }; "separators": { "alias": "separators"; "required": false; "isSignal": true; }; }, { "ui5ItemClick": "ui5ItemClick"; }, never, ["*"], true, never>;
|
|
656
664
|
}
|
|
657
665
|
|
|
658
666
|
declare class BreadcrumbsItem implements AfterViewInit {
|
|
@@ -1971,6 +1979,60 @@ declare class ComboBoxItem implements AfterViewInit {
|
|
|
1971
1979
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ComboBoxItem, "ui5-cb-item, [ui5-cb-item]", ["ui5ComboBoxItem"], { "additionalText": { "alias": "additionalText"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
|
|
1972
1980
|
}
|
|
1973
1981
|
|
|
1982
|
+
declare class ComboBoxItemCustom implements AfterViewInit {
|
|
1983
|
+
/**
|
|
1984
|
+
* Defines the text of the component.
|
|
1985
|
+
Used for filtering, autocomplete, and mobile rendering.
|
|
1986
|
+
*/
|
|
1987
|
+
text: _angular_core.InputSignal<string | undefined>;
|
|
1988
|
+
/**
|
|
1989
|
+
* Defines the value of the component.
|
|
1990
|
+
Used for programmatic selection via the `selectedValue` property.
|
|
1991
|
+
*/
|
|
1992
|
+
value: _angular_core.InputSignal<string | undefined>;
|
|
1993
|
+
/**
|
|
1994
|
+
* Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
|
|
1995
|
+
|
|
1996
|
+
**Note:** The event will not be fired if the `disabled` property is set to `true`.
|
|
1997
|
+
*/
|
|
1998
|
+
ui5Click: _angular_core.OutputEmitterRef<UI5CustomEvent<_ComboBoxItemCustom, "click">>;
|
|
1999
|
+
/**
|
|
2000
|
+
* Available slots for content projection in this component.
|
|
2001
|
+
*
|
|
2002
|
+
* Slots allow you to insert custom content into predefined areas of the web component.
|
|
2003
|
+
* Use the `slot` attribute on child elements to target specific slots.
|
|
2004
|
+
*
|
|
2005
|
+
* - **(default)**: Defines the content of the component.
|
|
2006
|
+
*
|
|
2007
|
+
* @example
|
|
2008
|
+
* ```html
|
|
2009
|
+
* <ui5-cb-item-custom>
|
|
2010
|
+
* <div slot="header">Custom header content</div>
|
|
2011
|
+
* <p>Default slot content</p>
|
|
2012
|
+
* </ui5-cb-item-custom>
|
|
2013
|
+
* ```
|
|
2014
|
+
*
|
|
2015
|
+
* @readonly
|
|
2016
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots | MDN Web Components Slots}
|
|
2017
|
+
*/
|
|
2018
|
+
readonly slots: {
|
|
2019
|
+
name: string;
|
|
2020
|
+
description: string;
|
|
2021
|
+
}[];
|
|
2022
|
+
elementRef: ElementRef<_ComboBoxItemCustom>;
|
|
2023
|
+
injector: Injector;
|
|
2024
|
+
/**
|
|
2025
|
+
* Content density observer is injected to activate automatic CSS class and
|
|
2026
|
+
* UI5 attribute application. The observer self-initializes, no explicit subscribe() needed.
|
|
2027
|
+
* @private
|
|
2028
|
+
*/
|
|
2029
|
+
private readonly _contentDensityObserver;
|
|
2030
|
+
get element(): _ComboBoxItemCustom;
|
|
2031
|
+
ngAfterViewInit(): void;
|
|
2032
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ComboBoxItemCustom, never>;
|
|
2033
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ComboBoxItemCustom, "ui5-cb-item-custom, [ui5-cb-item-custom]", ["ui5ComboBoxItemCustom"], { "text": { "alias": "text"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
1974
2036
|
declare class ComboBoxItemGroup implements AfterViewInit {
|
|
1975
2037
|
/**
|
|
1976
2038
|
* Defines the accessible name of the header.
|
|
@@ -5252,6 +5314,60 @@ declare class MultiComboBoxItem implements AfterViewInit {
|
|
|
5252
5314
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiComboBoxItem, "ui5-mcb-item, [ui5-mcb-item]", ["ui5MultiComboBoxItem"], { "additionalText": { "alias": "additionalText"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
|
|
5253
5315
|
}
|
|
5254
5316
|
|
|
5317
|
+
declare class MultiComboBoxItemCustom implements AfterViewInit {
|
|
5318
|
+
/**
|
|
5319
|
+
* Defines the text of the component.
|
|
5320
|
+
Used for filtering and token display.
|
|
5321
|
+
*/
|
|
5322
|
+
text: _angular_core.InputSignal<string | undefined>;
|
|
5323
|
+
/**
|
|
5324
|
+
* Defines the value of the component.
|
|
5325
|
+
Used for programmatic selection via selectedValues property.
|
|
5326
|
+
*/
|
|
5327
|
+
value: _angular_core.InputSignal<string | undefined>;
|
|
5328
|
+
/**
|
|
5329
|
+
* Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
|
|
5330
|
+
|
|
5331
|
+
**Note:** The event will not be fired if the `disabled` property is set to `true`.
|
|
5332
|
+
*/
|
|
5333
|
+
ui5Click: _angular_core.OutputEmitterRef<UI5CustomEvent<_MultiComboBoxItemCustom, "click">>;
|
|
5334
|
+
/**
|
|
5335
|
+
* Available slots for content projection in this component.
|
|
5336
|
+
*
|
|
5337
|
+
* Slots allow you to insert custom content into predefined areas of the web component.
|
|
5338
|
+
* Use the `slot` attribute on child elements to target specific slots.
|
|
5339
|
+
*
|
|
5340
|
+
* - **(default)**: Defines the content of the component.
|
|
5341
|
+
*
|
|
5342
|
+
* @example
|
|
5343
|
+
* ```html
|
|
5344
|
+
* <ui5-mcb-item-custom>
|
|
5345
|
+
* <div slot="header">Custom header content</div>
|
|
5346
|
+
* <p>Default slot content</p>
|
|
5347
|
+
* </ui5-mcb-item-custom>
|
|
5348
|
+
* ```
|
|
5349
|
+
*
|
|
5350
|
+
* @readonly
|
|
5351
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots | MDN Web Components Slots}
|
|
5352
|
+
*/
|
|
5353
|
+
readonly slots: {
|
|
5354
|
+
name: string;
|
|
5355
|
+
description: string;
|
|
5356
|
+
}[];
|
|
5357
|
+
elementRef: ElementRef<_MultiComboBoxItemCustom>;
|
|
5358
|
+
injector: Injector;
|
|
5359
|
+
/**
|
|
5360
|
+
* Content density observer is injected to activate automatic CSS class and
|
|
5361
|
+
* UI5 attribute application. The observer self-initializes, no explicit subscribe() needed.
|
|
5362
|
+
* @private
|
|
5363
|
+
*/
|
|
5364
|
+
private readonly _contentDensityObserver;
|
|
5365
|
+
get element(): _MultiComboBoxItemCustom;
|
|
5366
|
+
ngAfterViewInit(): void;
|
|
5367
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiComboBoxItemCustom, never>;
|
|
5368
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiComboBoxItemCustom, "ui5-mcb-item-custom, [ui5-mcb-item-custom]", ["ui5MultiComboBoxItemCustom"], { "text": { "alias": "text"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
|
|
5369
|
+
}
|
|
5370
|
+
|
|
5255
5371
|
declare class MultiComboBoxItemGroup implements AfterViewInit {
|
|
5256
5372
|
/**
|
|
5257
5373
|
* Defines the accessible name of the header.
|
|
@@ -10361,4 +10477,4 @@ declare class Ui5WebcomponentsMainThemingService extends WebcomponentsThemingPro
|
|
|
10361
10477
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<Ui5WebcomponentsMainThemingService>;
|
|
10362
10478
|
}
|
|
10363
10479
|
|
|
10364
|
-
export { Avatar, AvatarBadge, AvatarGroup, Bar, Breadcrumbs, BreadcrumbsItem, BusyIndicator, Button, ButtonBadge, CVA_CONFIG, Calendar, CalendarDate, CalendarDateRange, CalendarLegend, CalendarLegendItem, Card, CardHeader, Carousel, CheckBox, ColorPalette, ColorPaletteItem, ColorPalettePopover, ColorPicker, ComboBox, ComboBoxItem, ComboBoxItemGroup, DatePicker, DateRangePicker, DateTimeInput, DateTimePicker, DayPicker, Dialog, DropIndicator, DynamicDateRange, ExpandableText, FileUploader, Form, FormGroup, FormItem, GenericControlValueAccessor, Icon, Input, Label, Link, List, ListItemCustom, ListItemGroup, ListItemGroupHeader, ListItemStandard, Menu, MenuItem, MenuItemGroup, MenuSeparator, MessageStrip, MonthPicker, MultiComboBox, MultiComboBoxItem, MultiComboBoxItemGroup, MultiInput, Option, OptionCustom, Panel, Popover, ProgressIndicator, RadioButton, RangeSlider, RatingIndicator, ResponsivePopover, SegmentedButton, SegmentedButtonItem, Select, Slider, SliderHandle, SliderTooltip, SpecialCalendarDate, SplitButton, StepInput, SuggestionItem, SuggestionItemCustom, SuggestionItemGroup, SuggestionListItem, Switch, Tab, TabContainer, TabSeparator, Table, TableCell, TableGroupRow, TableGrowing, TableHeaderCell, TableHeaderCellActionAI, TableHeaderRow, TableRow, TableRowAction, TableRowActionNavigation, TableSelection, TableSelectionMulti, TableSelectionSingle, TableVirtualizer, Tag, Text, TextArea, TimePicker, TimePickerClock, TimeSelectionClocks, TimeSelectionInputs, Title, Toast, ToggleButton, ToggleSpinButton, Token, Tokenizer, Toolbar, ToolbarButton, ToolbarItem, ToolbarSelect, ToolbarSelectOption, ToolbarSeparator, ToolbarSpacer, Tree, TreeItem, TreeItemCustom, Ui5WebcomponentsMainThemingService, YearPicker, YearRangePicker };
|
|
10480
|
+
export { Avatar, AvatarBadge, AvatarGroup, Bar, Breadcrumbs, BreadcrumbsItem, BusyIndicator, Button, ButtonBadge, CVA_CONFIG, Calendar, CalendarDate, CalendarDateRange, CalendarLegend, CalendarLegendItem, Card, CardHeader, Carousel, CheckBox, ColorPalette, ColorPaletteItem, ColorPalettePopover, ColorPicker, ComboBox, ComboBoxItem, ComboBoxItemCustom, ComboBoxItemGroup, DatePicker, DateRangePicker, DateTimeInput, DateTimePicker, DayPicker, Dialog, DropIndicator, DynamicDateRange, ExpandableText, FileUploader, Form, FormGroup, FormItem, GenericControlValueAccessor, Icon, Input, Label, Link, List, ListItemCustom, ListItemGroup, ListItemGroupHeader, ListItemStandard, Menu, MenuItem, MenuItemGroup, MenuSeparator, MessageStrip, MonthPicker, MultiComboBox, MultiComboBoxItem, MultiComboBoxItemCustom, MultiComboBoxItemGroup, MultiInput, Option, OptionCustom, Panel, Popover, ProgressIndicator, RadioButton, RangeSlider, RatingIndicator, ResponsivePopover, SegmentedButton, SegmentedButtonItem, Select, Slider, SliderHandle, SliderTooltip, SpecialCalendarDate, SplitButton, StepInput, SuggestionItem, SuggestionItemCustom, SuggestionItemGroup, SuggestionListItem, Switch, Tab, TabContainer, TabSeparator, Table, TableCell, TableGroupRow, TableGrowing, TableHeaderCell, TableHeaderCellActionAI, TableHeaderRow, TableRow, TableRowAction, TableRowActionNavigation, TableSelection, TableSelectionMulti, TableSelectionSingle, TableVirtualizer, Tag, Text, TextArea, TimePicker, TimePickerClock, TimeSelectionClocks, TimeSelectionInputs, Title, Toast, ToggleButton, ToggleSpinButton, Token, Tokenizer, Toolbar, ToolbarButton, ToolbarItem, ToolbarSelect, ToolbarSelectOption, ToolbarSeparator, ToolbarSpacer, Tree, TreeItem, TreeItemCustom, Ui5WebcomponentsMainThemingService, YearPicker, YearRangePicker };
|