@fundamental-ngx/ui5-webcomponents 0.58.0-rc.65 → 0.58.0-rc.66

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/index.d.ts CHANGED
@@ -434,6 +434,14 @@ declare class Bar implements AfterViewInit {
434
434
  - If there is only one or no active element, it is recommended to avoid using the "toolbar" role, as it implies a grouping of multiple interactive controls.
435
435
  */
436
436
  accessibleRole: _angular_core.InputSignal<"Toolbar" | "None" | undefined>;
437
+ /**
438
+ * Defines the accessible ARIA name of the component.
439
+ */
440
+ accessibleName: _angular_core.InputSignal<string | undefined>;
441
+ /**
442
+ * Receives id(or many ids) of the elements that label the bar.
443
+ */
444
+ accessibleNameRef: _angular_core.InputSignal<string | undefined>;
437
445
  /**
438
446
  * Available slots for content projection in this component.
439
447
  *
@@ -464,7 +472,7 @@ declare class Bar implements AfterViewInit {
464
472
  get element(): _Bar;
465
473
  ngAfterViewInit(): void;
466
474
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<Bar, never>;
467
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<Bar, "ui5-bar, [ui5-bar]", ["ui5Bar"], { "design": { "alias": "design"; "required": false; "isSignal": true; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
475
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<Bar, "ui5-bar, [ui5-bar]", ["ui5Bar"], { "design": { "alias": "design"; "required": false; "isSignal": true; }; "accessibleRole": { "alias": "accessibleRole"; "required": false; "isSignal": true; }; "accessibleName": { "alias": "accessibleName"; "required": false; "isSignal": true; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
468
476
  }
469
477
 
470
478
  declare class Breadcrumbs implements AfterViewInit {
@@ -869,6 +877,9 @@ declare class Calendar implements AfterViewInit {
869
877
  for this calendar as instances of `ui5-date` or `ui5-date-range`.
870
878
  Use `ui5-date` for single or multiple selection, and `ui5-date-range` for range selection.
871
879
  * - **specialDates**: Defines the special dates, visually emphasized in the calendar.
880
+ * - **disabledDates**: Defines the disabled date ranges that cannot be selected in the calendar.
881
+ Use `ui5-date-range` elements to specify ranges of disabled dates.
882
+ Each range can define a start date, an end date, or both.
872
883
  *
873
884
  * @example
874
885
  * ```html
@@ -7524,6 +7535,15 @@ declare class ToolbarButton implements AfterViewInit {
7524
7535
  * Button text
7525
7536
  */
7526
7537
  text: _angular_core.InputSignal<string | undefined>;
7538
+ /**
7539
+ * Defines whether the button text should only be displayed in the overflow popover.
7540
+
7541
+ When set to `true`, the button appears as icon-only in the main toolbar,
7542
+ but shows both icon and text when moved to the overflow popover.
7543
+
7544
+ **Note:** This property only takes effect when the `text` property is also set.
7545
+ */
7546
+ showOverflowText: _angular_core.InputSignalWithTransform<boolean, unknown>;
7527
7547
  /**
7528
7548
  * Defines the width of the button.
7529
7549
 
@@ -7553,7 +7573,7 @@ declare class ToolbarButton implements AfterViewInit {
7553
7573
  get element(): _ToolbarButton;
7554
7574
  ngAfterViewInit(): void;
7555
7575
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToolbarButton, never>;
7556
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToolbarButton, "ui5-toolbar-button, [ui5-toolbar-button]", ["ui5ToolbarButton"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "design": { "alias": "design"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "endIcon": { "alias": "endIcon"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "accessibleName": { "alias": "accessibleName"; "required": false; "isSignal": true; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; "isSignal": true; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "overflowPriority": { "alias": "overflowPriority"; "required": false; "isSignal": true; }; "preventOverflowClosing": { "alias": "preventOverflowClosing"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
7576
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToolbarButton, "ui5-toolbar-button, [ui5-toolbar-button]", ["ui5ToolbarButton"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "design": { "alias": "design"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "endIcon": { "alias": "endIcon"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "accessibleName": { "alias": "accessibleName"; "required": false; "isSignal": true; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; "isSignal": true; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "showOverflowText": { "alias": "showOverflowText"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "overflowPriority": { "alias": "overflowPriority"; "required": false; "isSignal": true; }; "preventOverflowClosing": { "alias": "preventOverflowClosing"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
7557
7577
  }
7558
7578
 
7559
7579
  declare class ToolbarSelect implements AfterViewInit {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/ui5-webcomponents",
3
- "version": "0.58.0-rc.65",
3
+ "version": "0.58.0-rc.66",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "description": "Fundamental Library for Angular - UI5 Webcomponents Base",
6
6
  "license": "Apache-2.0",
@@ -47,10 +47,6 @@
47
47
  "types": "./avatar/index.d.ts",
48
48
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-avatar.mjs"
49
49
  },
50
- "./bar": {
51
- "types": "./bar/index.d.ts",
52
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-bar.mjs"
53
- },
54
50
  "./avatar-group": {
55
51
  "types": "./avatar-group/index.d.ts",
56
52
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-avatar-group.mjs"
@@ -67,6 +63,10 @@
67
63
  "types": "./busy-indicator/index.d.ts",
68
64
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-busy-indicator.mjs"
69
65
  },
66
+ "./bar": {
67
+ "types": "./bar/index.d.ts",
68
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-bar.mjs"
69
+ },
70
70
  "./button": {
71
71
  "types": "./button/index.d.ts",
72
72
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-button.mjs"
@@ -115,30 +115,30 @@
115
115
  "types": "./color-palette/index.d.ts",
116
116
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-color-palette.mjs"
117
117
  },
118
- "./color-palette-popover": {
119
- "types": "./color-palette-popover/index.d.ts",
120
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-color-palette-popover.mjs"
121
- },
122
118
  "./color-palette-item": {
123
119
  "types": "./color-palette-item/index.d.ts",
124
120
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-color-palette-item.mjs"
125
121
  },
126
- "./combo-box": {
127
- "types": "./combo-box/index.d.ts",
128
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box.mjs"
122
+ "./color-palette-popover": {
123
+ "types": "./color-palette-popover/index.d.ts",
124
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-color-palette-popover.mjs"
129
125
  },
130
126
  "./color-picker": {
131
127
  "types": "./color-picker/index.d.ts",
132
128
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-color-picker.mjs"
133
129
  },
134
- "./combo-box-item-group": {
135
- "types": "./combo-box-item-group/index.d.ts",
136
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item-group.mjs"
130
+ "./combo-box": {
131
+ "types": "./combo-box/index.d.ts",
132
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box.mjs"
137
133
  },
138
134
  "./combo-box-item": {
139
135
  "types": "./combo-box-item/index.d.ts",
140
136
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item.mjs"
141
137
  },
138
+ "./combo-box-item-group": {
139
+ "types": "./combo-box-item-group/index.d.ts",
140
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-combo-box-item-group.mjs"
141
+ },
142
142
  "./date-picker": {
143
143
  "types": "./date-picker/index.d.ts",
144
144
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-date-picker.mjs"
@@ -155,6 +155,10 @@
155
155
  "types": "./dialog/index.d.ts",
156
156
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-dialog.mjs"
157
157
  },
158
+ "./dynamic-date-range": {
159
+ "types": "./dynamic-date-range/index.d.ts",
160
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-dynamic-date-range.mjs"
161
+ },
158
162
  "./expandable-text": {
159
163
  "types": "./expandable-text/index.d.ts",
160
164
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-expandable-text.mjs"
@@ -163,17 +167,13 @@
163
167
  "types": "./file-uploader/index.d.ts",
164
168
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-file-uploader.mjs"
165
169
  },
166
- "./form-group": {
167
- "types": "./form-group/index.d.ts",
168
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-form-group.mjs"
169
- },
170
170
  "./form": {
171
171
  "types": "./form/index.d.ts",
172
172
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-form.mjs"
173
173
  },
174
- "./dynamic-date-range": {
175
- "types": "./dynamic-date-range/index.d.ts",
176
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-dynamic-date-range.mjs"
174
+ "./form-group": {
175
+ "types": "./form-group/index.d.ts",
176
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-form-group.mjs"
177
177
  },
178
178
  "./form-item": {
179
179
  "types": "./form-item/index.d.ts",
@@ -211,29 +211,25 @@
211
211
  "types": "./list-item-standard/index.d.ts",
212
212
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-list-item-standard.mjs"
213
213
  },
214
- "./menu-item": {
215
- "types": "./menu-item/index.d.ts",
216
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-menu-item.mjs"
217
- },
218
214
  "./menu": {
219
215
  "types": "./menu/index.d.ts",
220
216
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-menu.mjs"
221
217
  },
218
+ "./menu-item": {
219
+ "types": "./menu-item/index.d.ts",
220
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-menu-item.mjs"
221
+ },
222
222
  "./menu-item-group": {
223
223
  "types": "./menu-item-group/index.d.ts",
224
224
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-menu-item-group.mjs"
225
225
  },
226
- "./message-strip": {
227
- "types": "./message-strip/index.d.ts",
228
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-message-strip.mjs"
229
- },
230
226
  "./menu-separator": {
231
227
  "types": "./menu-separator/index.d.ts",
232
228
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-menu-separator.mjs"
233
229
  },
234
- "./multi-combo-box-item-group": {
235
- "types": "./multi-combo-box-item-group/index.d.ts",
236
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-group.mjs"
230
+ "./message-strip": {
231
+ "types": "./message-strip/index.d.ts",
232
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-message-strip.mjs"
237
233
  },
238
234
  "./multi-combo-box": {
239
235
  "types": "./multi-combo-box/index.d.ts",
@@ -243,9 +239,9 @@
243
239
  "types": "./multi-combo-box-item/index.d.ts",
244
240
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item.mjs"
245
241
  },
246
- "./option-custom": {
247
- "types": "./option-custom/index.d.ts",
248
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-option-custom.mjs"
242
+ "./multi-combo-box-item-group": {
243
+ "types": "./multi-combo-box-item-group/index.d.ts",
244
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-multi-combo-box-item-group.mjs"
249
245
  },
250
246
  "./multi-input": {
251
247
  "types": "./multi-input/index.d.ts",
@@ -255,14 +251,18 @@
255
251
  "types": "./option/index.d.ts",
256
252
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-option.mjs"
257
253
  },
258
- "./popover": {
259
- "types": "./popover/index.d.ts",
260
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-popover.mjs"
254
+ "./option-custom": {
255
+ "types": "./option-custom/index.d.ts",
256
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-option-custom.mjs"
261
257
  },
262
258
  "./panel": {
263
259
  "types": "./panel/index.d.ts",
264
260
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-panel.mjs"
265
261
  },
262
+ "./popover": {
263
+ "types": "./popover/index.d.ts",
264
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-popover.mjs"
265
+ },
266
266
  "./progress-indicator": {
267
267
  "types": "./progress-indicator/index.d.ts",
268
268
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-progress-indicator.mjs"
@@ -279,14 +279,14 @@
279
279
  "types": "./rating-indicator/index.d.ts",
280
280
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-rating-indicator.mjs"
281
281
  },
282
- "./segmented-button": {
283
- "types": "./segmented-button/index.d.ts",
284
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-segmented-button.mjs"
285
- },
286
282
  "./responsive-popover": {
287
283
  "types": "./responsive-popover/index.d.ts",
288
284
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-responsive-popover.mjs"
289
285
  },
286
+ "./segmented-button": {
287
+ "types": "./segmented-button/index.d.ts",
288
+ "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-segmented-button.mjs"
289
+ },
290
290
  "./segmented-button-item": {
291
291
  "types": "./segmented-button-item/index.d.ts",
292
292
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-segmented-button-item.mjs"
@@ -68,6 +68,15 @@ declare class ToolbarButton implements AfterViewInit {
68
68
  * Button text
69
69
  */
70
70
  text: _angular_core.InputSignal<string | undefined>;
71
+ /**
72
+ * Defines whether the button text should only be displayed in the overflow popover.
73
+
74
+ When set to `true`, the button appears as icon-only in the main toolbar,
75
+ but shows both icon and text when moved to the overflow popover.
76
+
77
+ **Note:** This property only takes effect when the `text` property is also set.
78
+ */
79
+ showOverflowText: _angular_core.InputSignalWithTransform<boolean, unknown>;
71
80
  /**
72
81
  * Defines the width of the button.
73
82
 
@@ -97,7 +106,7 @@ declare class ToolbarButton implements AfterViewInit {
97
106
  get element(): _ToolbarButton;
98
107
  ngAfterViewInit(): void;
99
108
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToolbarButton, never>;
100
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToolbarButton, "ui5-toolbar-button, [ui5-toolbar-button]", ["ui5ToolbarButton"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "design": { "alias": "design"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "endIcon": { "alias": "endIcon"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "accessibleName": { "alias": "accessibleName"; "required": false; "isSignal": true; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; "isSignal": true; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "overflowPriority": { "alias": "overflowPriority"; "required": false; "isSignal": true; }; "preventOverflowClosing": { "alias": "preventOverflowClosing"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
109
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToolbarButton, "ui5-toolbar-button, [ui5-toolbar-button]", ["ui5ToolbarButton"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "design": { "alias": "design"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "endIcon": { "alias": "endIcon"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "accessibleName": { "alias": "accessibleName"; "required": false; "isSignal": true; }; "accessibleNameRef": { "alias": "accessibleNameRef"; "required": false; "isSignal": true; }; "accessibilityAttributes": { "alias": "accessibilityAttributes"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "showOverflowText": { "alias": "showOverflowText"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "overflowPriority": { "alias": "overflowPriority"; "required": false; "isSignal": true; }; "preventOverflowClosing": { "alias": "preventOverflowClosing"; "required": false; "isSignal": true; }; }, { "ui5Click": "ui5Click"; }, never, ["*"], true, never>;
101
110
  }
102
111
 
103
112
  export { ToolbarButton };