@fundamental-ngx/ui5-webcomponents 0.58.0-rc.64 → 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.64",
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",
@@ -51,10 +51,6 @@
51
51
  "types": "./avatar-group/index.d.ts",
52
52
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-avatar-group.mjs"
53
53
  },
54
- "./bar": {
55
- "types": "./bar/index.d.ts",
56
- "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-bar.mjs"
57
- },
58
54
  "./breadcrumbs": {
59
55
  "types": "./breadcrumbs/index.d.ts",
60
56
  "default": "./fesm2022/fundamental-ngx-ui5-webcomponents-breadcrumbs.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"
@@ -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 };