@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.
@@ -640,7 +640,15 @@ class Bar {
640
640
 
641
641
  - 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.
642
642
  */
643
- this.accessibleRole = input("Toolbar", ...(ngDevMode ? [{ debugName: "accessibleRole" }] : [])); // className is now passed
643
+ this.accessibleRole = input("Toolbar", ...(ngDevMode ? [{ debugName: "accessibleRole" }] : []));
644
+ /**
645
+ * Defines the accessible ARIA name of the component.
646
+ */
647
+ this.accessibleName = input(...(ngDevMode ? [undefined, { debugName: "accessibleName" }] : []));
648
+ /**
649
+ * Receives id(or many ids) of the elements that label the bar.
650
+ */
651
+ this.accessibleNameRef = input(...(ngDevMode ? [undefined, { debugName: "accessibleNameRef" }] : [])); // className is now passed
644
652
  /**
645
653
  * Available slots for content projection in this component.
646
654
  *
@@ -687,6 +695,8 @@ class Bar {
687
695
  const inputsToSync = [
688
696
  'design',
689
697
  'accessibleRole',
698
+ 'accessibleName',
699
+ 'accessibleNameRef',
690
700
  ];
691
701
  // Synchronize inputs (properties)
692
702
  for (const inputName of inputsToSync) {
@@ -708,7 +718,7 @@ class Bar {
708
718
  }
709
719
  }
710
720
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: Bar, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
711
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.4", type: Bar, isStandalone: true, selector: "ui5-bar, [ui5-bar]", inputs: { design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null }, accessibleRole: { classPropertyName: "accessibleRole", publicName: "accessibleRole", isSignal: true, isRequired: false, transformFunction: null } }, exportAs: ["ui5Bar"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
721
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.4", type: Bar, isStandalone: true, selector: "ui5-bar, [ui5-bar]", inputs: { design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null }, accessibleRole: { classPropertyName: "accessibleRole", publicName: "accessibleRole", isSignal: true, isRequired: false, transformFunction: null }, accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, accessibleNameRef: { classPropertyName: "accessibleNameRef", publicName: "accessibleNameRef", isSignal: true, isRequired: false, transformFunction: null } }, exportAs: ["ui5Bar"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
712
722
  }
713
723
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: Bar, decorators: [{
714
724
  type: Component,
@@ -1368,6 +1378,9 @@ class Calendar {
1368
1378
  for this calendar as instances of `ui5-date` or `ui5-date-range`.
1369
1379
  Use `ui5-date` for single or multiple selection, and `ui5-date-range` for range selection.
1370
1380
  * - **specialDates**: Defines the special dates, visually emphasized in the calendar.
1381
+ * - **disabledDates**: Defines the disabled date ranges that cannot be selected in the calendar.
1382
+ Use `ui5-date-range` elements to specify ranges of disabled dates.
1383
+ Each range can define a start date, an end date, or both.
1371
1384
  *
1372
1385
  * @example
1373
1386
  * ```html
@@ -1394,6 +1407,11 @@ class Calendar {
1394
1407
  "name": "specialDates",
1395
1408
  "description": "Defines the special dates, visually emphasized in the calendar.",
1396
1409
  "since": "1.23.0"
1410
+ },
1411
+ {
1412
+ "name": "disabledDates",
1413
+ "description": "Defines the disabled date ranges that cannot be selected in the calendar.\nUse `ui5-date-range` elements to specify ranges of disabled dates.\nEach range can define a start date, an end date, or both.",
1414
+ "since": "2.16.0"
1397
1415
  }
1398
1416
  ];
1399
1417
  this.elementRef = inject(ElementRef);
@@ -13073,6 +13091,15 @@ class ToolbarButton {
13073
13091
  * Button text
13074
13092
  */
13075
13093
  this.text = input(...(ngDevMode ? [undefined, { debugName: "text" }] : []));
13094
+ /**
13095
+ * Defines whether the button text should only be displayed in the overflow popover.
13096
+
13097
+ When set to `true`, the button appears as icon-only in the main toolbar,
13098
+ but shows both icon and text when moved to the overflow popover.
13099
+
13100
+ **Note:** This property only takes effect when the `text` property is also set.
13101
+ */
13102
+ this.showOverflowText = input(false, ...(ngDevMode ? [{ debugName: "showOverflowText", transform: booleanAttribute }] : [{ transform: booleanAttribute }]));
13076
13103
  /**
13077
13104
  * Defines the width of the button.
13078
13105
 
@@ -13115,6 +13142,7 @@ class ToolbarButton {
13115
13142
  'accessibleNameRef',
13116
13143
  'accessibilityAttributes',
13117
13144
  'text',
13145
+ 'showOverflowText',
13118
13146
  'width',
13119
13147
  'overflowPriority',
13120
13148
  'preventOverflowClosing',
@@ -13154,7 +13182,7 @@ class ToolbarButton {
13154
13182
  }
13155
13183
  }
13156
13184
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ToolbarButton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13157
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.4", type: ToolbarButton, isStandalone: true, selector: "ui5-toolbar-button, [ui5-toolbar-button]", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, endIcon: { classPropertyName: "endIcon", publicName: "endIcon", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null }, accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, accessibleNameRef: { classPropertyName: "accessibleNameRef", publicName: "accessibleNameRef", isSignal: true, isRequired: false, transformFunction: null }, accessibilityAttributes: { classPropertyName: "accessibilityAttributes", publicName: "accessibilityAttributes", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, overflowPriority: { classPropertyName: "overflowPriority", publicName: "overflowPriority", isSignal: true, isRequired: false, transformFunction: null }, preventOverflowClosing: { classPropertyName: "preventOverflowClosing", publicName: "preventOverflowClosing", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Click: "ui5Click" }, exportAs: ["ui5ToolbarButton"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13185
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.4", type: ToolbarButton, isStandalone: true, selector: "ui5-toolbar-button, [ui5-toolbar-button]", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, endIcon: { classPropertyName: "endIcon", publicName: "endIcon", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null }, accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, accessibleNameRef: { classPropertyName: "accessibleNameRef", publicName: "accessibleNameRef", isSignal: true, isRequired: false, transformFunction: null }, accessibilityAttributes: { classPropertyName: "accessibilityAttributes", publicName: "accessibilityAttributes", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, showOverflowText: { classPropertyName: "showOverflowText", publicName: "showOverflowText", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, overflowPriority: { classPropertyName: "overflowPriority", publicName: "overflowPriority", isSignal: true, isRequired: false, transformFunction: null }, preventOverflowClosing: { classPropertyName: "preventOverflowClosing", publicName: "preventOverflowClosing", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Click: "ui5Click" }, exportAs: ["ui5ToolbarButton"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13158
13186
  }
13159
13187
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ToolbarButton, decorators: [{
13160
13188
  type: Component,