@fundamental-ngx/ui5-webcomponents 0.62.2-rc.8 → 0.62.2

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.
Files changed (37) hide show
  1. package/fesm2022/fundamental-ngx-ui5-webcomponents-avatar-badge.mjs +11 -3
  2. package/fesm2022/fundamental-ngx-ui5-webcomponents-avatar-badge.mjs.map +1 -1
  3. package/fesm2022/fundamental-ngx-ui5-webcomponents-breadcrumbs-item.mjs +24 -3
  4. package/fesm2022/fundamental-ngx-ui5-webcomponents-breadcrumbs-item.mjs.map +1 -1
  5. package/fesm2022/fundamental-ngx-ui5-webcomponents-color-palette-item.mjs +29 -3
  6. package/fesm2022/fundamental-ngx-ui5-webcomponents-color-palette-item.mjs.map +1 -1
  7. package/fesm2022/fundamental-ngx-ui5-webcomponents-date-range-picker.mjs +13 -2
  8. package/fesm2022/fundamental-ngx-ui5-webcomponents-date-range-picker.mjs.map +1 -1
  9. package/fesm2022/fundamental-ngx-ui5-webcomponents-date-time-input.mjs +4 -1
  10. package/fesm2022/fundamental-ngx-ui5-webcomponents-date-time-input.mjs.map +1 -1
  11. package/fesm2022/fundamental-ngx-ui5-webcomponents-input.mjs +4 -1
  12. package/fesm2022/fundamental-ngx-ui5-webcomponents-input.mjs.map +1 -1
  13. package/fesm2022/fundamental-ngx-ui5-webcomponents-multi-input.mjs +4 -1
  14. package/fesm2022/fundamental-ngx-ui5-webcomponents-multi-input.mjs.map +1 -1
  15. package/fesm2022/fundamental-ngx-ui5-webcomponents-segmented-button-item.mjs +24 -3
  16. package/fesm2022/fundamental-ngx-ui5-webcomponents-segmented-button-item.mjs.map +1 -1
  17. package/fesm2022/fundamental-ngx-ui5-webcomponents-slider-handle.mjs +4 -58
  18. package/fesm2022/fundamental-ngx-ui5-webcomponents-slider-handle.mjs.map +1 -1
  19. package/fesm2022/fundamental-ngx-ui5-webcomponents-table-cell.mjs +2 -2
  20. package/fesm2022/fundamental-ngx-ui5-webcomponents-table-cell.mjs.map +1 -1
  21. package/fesm2022/fundamental-ngx-ui5-webcomponents-toolbar.mjs +10 -3
  22. package/fesm2022/fundamental-ngx-ui5-webcomponents-toolbar.mjs.map +1 -1
  23. package/fesm2022/fundamental-ngx-ui5-webcomponents.mjs +125 -76
  24. package/fesm2022/fundamental-ngx-ui5-webcomponents.mjs.map +1 -1
  25. package/package.json +5 -5
  26. package/types/fundamental-ngx-ui5-webcomponents-avatar-badge.d.ts +8 -1
  27. package/types/fundamental-ngx-ui5-webcomponents-breadcrumbs-item.d.ts +8 -1
  28. package/types/fundamental-ngx-ui5-webcomponents-color-palette-item.d.ts +12 -1
  29. package/types/fundamental-ngx-ui5-webcomponents-date-range-picker.d.ts +11 -1
  30. package/types/fundamental-ngx-ui5-webcomponents-date-time-input.d.ts +3 -0
  31. package/types/fundamental-ngx-ui5-webcomponents-input.d.ts +3 -0
  32. package/types/fundamental-ngx-ui5-webcomponents-multi-input.d.ts +3 -0
  33. package/types/fundamental-ngx-ui5-webcomponents-segmented-button-item.d.ts +8 -1
  34. package/types/fundamental-ngx-ui5-webcomponents-slider-handle.d.ts +3 -33
  35. package/types/fundamental-ngx-ui5-webcomponents-table-cell.d.ts +2 -2
  36. package/types/fundamental-ngx-ui5-webcomponents-toolbar.d.ts +7 -1
  37. package/types/fundamental-ngx-ui5-webcomponents.d.ts +63 -39
@@ -599,7 +599,14 @@ class AvatarBadge {
599
599
  - `Negative` - Red, used for error/rejected states
600
600
  - `Information` - Blue, used for informational states
601
601
  */
602
- this.state = input("None", ...(ngDevMode ? [{ debugName: "state" }] : [])); // className is now passed
602
+ this.state = input("None", ...(ngDevMode ? [{ debugName: "state" }] : []));
603
+ /**
604
+ * Defines the tooltip text of the badge icon.
605
+
606
+ **Note:** If not provided, the badge uses the icon accessible name.
607
+ If no icon accessible name is available, a generic fallback text is used.
608
+ */
609
+ this.tooltip = input(...(ngDevMode ? [undefined, { debugName: "tooltip" }] : [])); // className is now passed
603
610
  this.elementRef = inject(ElementRef);
604
611
  this.injector = inject(Injector);
605
612
  /**
@@ -617,6 +624,7 @@ class AvatarBadge {
617
624
  const inputsToSync = [
618
625
  'icon',
619
626
  'state',
627
+ 'tooltip',
620
628
  ];
621
629
  // Synchronize inputs (properties)
622
630
  for (const inputName of inputsToSync) {
@@ -638,7 +646,7 @@ class AvatarBadge {
638
646
  }
639
647
  }
640
648
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: AvatarBadge, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
641
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: AvatarBadge, isStandalone: true, selector: "ui5-avatar-badge, [ui5-avatar-badge]", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, state: { classPropertyName: "state", publicName: "state", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
649
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: AvatarBadge, isStandalone: true, selector: "ui5-avatar-badge, [ui5-avatar-badge]", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, state: { classPropertyName: "state", publicName: "state", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
642
650
  contentDensityObserverProviders({
643
651
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
644
652
  })
@@ -658,7 +666,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
658
666
  ],
659
667
  changeDetection: ChangeDetectionStrategy.OnPush,
660
668
  }]
661
- }], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], state: [{ type: i0.Input, args: [{ isSignal: true, alias: "state", required: false }] }] } });
669
+ }], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], state: [{ type: i0.Input, args: [{ isSignal: true, alias: "state", required: false }] }], tooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "tooltip", required: false }] }] } });
662
670
 
663
671
  class AvatarGroup {
664
672
  constructor() {
@@ -1095,6 +1103,12 @@ class BreadcrumbsItem {
1095
1103
  **Note:** This property must only be used when the `href` property is set.
1096
1104
  */
1097
1105
  this.target = input(...(ngDevMode ? [undefined, { debugName: "target" }] : [])); // className is now passed
1106
+ /**
1107
+ * Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
1108
+
1109
+ **Note:** The event is also fired for the current page location item (the last item), which is not a link by design.
1110
+ */
1111
+ this.ui5Click = output();
1098
1112
  /**
1099
1113
  * Available slots for content projection in this component.
1100
1114
  *
@@ -1159,9 +1173,24 @@ class BreadcrumbsItem {
1159
1173
  });
1160
1174
  }
1161
1175
  }
1176
+ const outputsToSync = [
1177
+ 'ui5Click',
1178
+ ];
1179
+ // Synchronize outputs (events)
1180
+ for (const outputName of outputsToSync) {
1181
+ // Map Angular output name to UI5 web component event name
1182
+ const eventName = outputName.replace('ui5', '').replace(/([A-Z])/g, '-$1').toLowerCase().substring(1);
1183
+ // Ensure the output property exists and has an emit function before adding listener
1184
+ if (this[outputName] && typeof this[outputName].emit === 'function' && wcElement.addEventListener) {
1185
+ // Cast the listener to the correct type to satisfy TypeScript
1186
+ wcElement.addEventListener(eventName, (e) => {
1187
+ this[outputName].emit(e);
1188
+ });
1189
+ }
1190
+ }
1162
1191
  }
1163
1192
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: BreadcrumbsItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1164
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: BreadcrumbsItem, isStandalone: true, selector: "ui5-breadcrumbs-item, [ui5-breadcrumbs-item]", inputs: { accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, href: { classPropertyName: "href", publicName: "href", isSignal: true, isRequired: false, transformFunction: null }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
1193
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: BreadcrumbsItem, isStandalone: true, selector: "ui5-breadcrumbs-item, [ui5-breadcrumbs-item]", inputs: { accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, href: { classPropertyName: "href", publicName: "href", isSignal: true, isRequired: false, transformFunction: null }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Click: "ui5Click" }, providers: [
1165
1194
  contentDensityObserverProviders({
1166
1195
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
1167
1196
  })
@@ -1181,7 +1210,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
1181
1210
  ],
1182
1211
  changeDetection: ChangeDetectionStrategy.OnPush,
1183
1212
  }]
1184
- }], propDecorators: { accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], href: [{ type: i0.Input, args: [{ isSignal: true, alias: "href", required: false }] }], target: [{ type: i0.Input, args: [{ isSignal: true, alias: "target", required: false }] }] } });
1213
+ }], propDecorators: { accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], href: [{ type: i0.Input, args: [{ isSignal: true, alias: "href", required: false }] }], target: [{ type: i0.Input, args: [{ isSignal: true, alias: "target", required: false }] }], ui5Click: [{ type: i0.Output, args: ["ui5Click"] }] } });
1185
1214
 
1186
1215
  class BusyIndicator {
1187
1216
  constructor() {
@@ -2866,12 +2895,22 @@ class ColorPaletteItem {
2866
2895
  If more than one item is defined as selected, the last one would be considered as the selected one.
2867
2896
  */
2868
2897
  this.selected = input(false, { ...(ngDevMode ? { debugName: "selected" } : {}), transform: booleanAttribute });
2898
+ /**
2899
+ * Defines the tooltip of the component. When not set, the color value is used as the tooltip.
2900
+ */
2901
+ this.tooltip = input(...(ngDevMode ? [undefined, { debugName: "tooltip" }] : []));
2869
2902
  /**
2870
2903
  * Defines the colour of the component.
2871
2904
 
2872
2905
  **Note:** The value should be a valid CSS color.
2873
2906
  */
2874
2907
  this.value = input("", ...(ngDevMode ? [{ debugName: "value" }] : [])); // className is now passed
2908
+ /**
2909
+ * Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
2910
+
2911
+ **Note:** The event will not be fired if the `disabled` property is set to `true`.
2912
+ */
2913
+ this.ui5Click = output();
2875
2914
  this.elementRef = inject(ElementRef);
2876
2915
  this.injector = inject(Injector);
2877
2916
  /**
@@ -2888,6 +2927,7 @@ class ColorPaletteItem {
2888
2927
  const wcElement = this.element;
2889
2928
  const inputsToSync = [
2890
2929
  'selected',
2930
+ 'tooltip',
2891
2931
  'value',
2892
2932
  ];
2893
2933
  // Synchronize inputs (properties)
@@ -2908,9 +2948,24 @@ class ColorPaletteItem {
2908
2948
  });
2909
2949
  }
2910
2950
  }
2951
+ const outputsToSync = [
2952
+ 'ui5Click',
2953
+ ];
2954
+ // Synchronize outputs (events)
2955
+ for (const outputName of outputsToSync) {
2956
+ // Map Angular output name to UI5 web component event name
2957
+ const eventName = outputName.replace('ui5', '').replace(/([A-Z])/g, '-$1').toLowerCase().substring(1);
2958
+ // Ensure the output property exists and has an emit function before adding listener
2959
+ if (this[outputName] && typeof this[outputName].emit === 'function' && wcElement.addEventListener) {
2960
+ // Cast the listener to the correct type to satisfy TypeScript
2961
+ wcElement.addEventListener(eventName, (e) => {
2962
+ this[outputName].emit(e);
2963
+ });
2964
+ }
2965
+ }
2911
2966
  }
2912
2967
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ColorPaletteItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2913
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: ColorPaletteItem, isStandalone: true, selector: "ui5-color-palette-item, [ui5-color-palette-item]", inputs: { selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
2968
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: ColorPaletteItem, isStandalone: true, selector: "ui5-color-palette-item, [ui5-color-palette-item]", inputs: { selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Click: "ui5Click" }, providers: [
2914
2969
  contentDensityObserverProviders({
2915
2970
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
2916
2971
  })
@@ -2930,7 +2985,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
2930
2985
  ],
2931
2986
  changeDetection: ChangeDetectionStrategy.OnPush,
2932
2987
  }]
2933
- }], propDecorators: { selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }] } });
2988
+ }], propDecorators: { selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }], tooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "tooltip", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], ui5Click: [{ type: i0.Output, args: ["ui5Click"] }] } });
2934
2989
 
2935
2990
  class ColorPalettePopover {
2936
2991
  constructor() {
@@ -4081,6 +4136,16 @@ class DateRangePicker {
4081
4136
  * Defines whether the clear icon of the input will be shown.
4082
4137
  */
4083
4138
  this.showClearIcon = input(false, { ...(ngDevMode ? { debugName: "showClearIcon" } : {}), transform: booleanAttribute });
4139
+ /**
4140
+ * Defines whether the component displays two months side by side in the picker popup.
4141
+
4142
+ When enabled, two consecutive months are shown, making it easier to select date ranges
4143
+ that span multiple months without the need to navigate between months.
4144
+
4145
+ **Note:** On mobile devices only a single month
4146
+ will be displayed regardless of this setting.
4147
+ */
4148
+ this.showTwoMonths = input(false, { ...(ngDevMode ? { debugName: "showTwoMonths" } : {}), transform: booleanAttribute });
4084
4149
  /**
4085
4150
  * Defines a formatted date value.
4086
4151
  */
@@ -4216,6 +4281,7 @@ class DateRangePicker {
4216
4281
  'required',
4217
4282
  'secondaryCalendarType',
4218
4283
  'showClearIcon',
4284
+ 'showTwoMonths',
4219
4285
  'value',
4220
4286
  'valueFormat',
4221
4287
  'valueState',
@@ -4259,7 +4325,7 @@ class DateRangePicker {
4259
4325
  }
4260
4326
  }
4261
4327
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DateRangePicker, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
4262
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: DateRangePicker, isStandalone: true, selector: "ui5-daterange-picker, [ui5-daterange-picker]", inputs: { accessibleDescription: { classPropertyName: "accessibleDescription", publicName: "accessibleDescription", isSignal: true, isRequired: false, transformFunction: null }, accessibleDescriptionRef: { classPropertyName: "accessibleDescriptionRef", publicName: "accessibleDescriptionRef", 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 }, calendarWeekNumbering: { classPropertyName: "calendarWeekNumbering", publicName: "calendarWeekNumbering", isSignal: true, isRequired: false, transformFunction: null }, delimiter: { classPropertyName: "delimiter", publicName: "delimiter", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, displayFormat: { classPropertyName: "displayFormat", publicName: "displayFormat", isSignal: true, isRequired: false, transformFunction: null }, formatPattern: { classPropertyName: "formatPattern", publicName: "formatPattern", isSignal: true, isRequired: false, transformFunction: null }, hideWeekNumbers: { classPropertyName: "hideWeekNumbers", publicName: "hideWeekNumbers", isSignal: true, isRequired: false, transformFunction: null }, maxDate: { classPropertyName: "maxDate", publicName: "maxDate", isSignal: true, isRequired: false, transformFunction: null }, minDate: { classPropertyName: "minDate", publicName: "minDate", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, primaryCalendarType: { classPropertyName: "primaryCalendarType", publicName: "primaryCalendarType", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, secondaryCalendarType: { classPropertyName: "secondaryCalendarType", publicName: "secondaryCalendarType", isSignal: true, isRequired: false, transformFunction: null }, showClearIcon: { classPropertyName: "showClearIcon", publicName: "showClearIcon", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, valueFormat: { classPropertyName: "valueFormat", publicName: "valueFormat", isSignal: true, isRequired: false, transformFunction: null }, valueState: { classPropertyName: "valueState", publicName: "valueState", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Change: "ui5Change", ui5Close: "ui5Close", ui5Input: "ui5Input", ui5Open: "ui5Open", ui5ValueStateChange: "ui5ValueStateChange" }, providers: [
4328
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: DateRangePicker, isStandalone: true, selector: "ui5-daterange-picker, [ui5-daterange-picker]", inputs: { accessibleDescription: { classPropertyName: "accessibleDescription", publicName: "accessibleDescription", isSignal: true, isRequired: false, transformFunction: null }, accessibleDescriptionRef: { classPropertyName: "accessibleDescriptionRef", publicName: "accessibleDescriptionRef", 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 }, calendarWeekNumbering: { classPropertyName: "calendarWeekNumbering", publicName: "calendarWeekNumbering", isSignal: true, isRequired: false, transformFunction: null }, delimiter: { classPropertyName: "delimiter", publicName: "delimiter", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, displayFormat: { classPropertyName: "displayFormat", publicName: "displayFormat", isSignal: true, isRequired: false, transformFunction: null }, formatPattern: { classPropertyName: "formatPattern", publicName: "formatPattern", isSignal: true, isRequired: false, transformFunction: null }, hideWeekNumbers: { classPropertyName: "hideWeekNumbers", publicName: "hideWeekNumbers", isSignal: true, isRequired: false, transformFunction: null }, maxDate: { classPropertyName: "maxDate", publicName: "maxDate", isSignal: true, isRequired: false, transformFunction: null }, minDate: { classPropertyName: "minDate", publicName: "minDate", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, primaryCalendarType: { classPropertyName: "primaryCalendarType", publicName: "primaryCalendarType", isSignal: true, isRequired: false, transformFunction: null }, readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, secondaryCalendarType: { classPropertyName: "secondaryCalendarType", publicName: "secondaryCalendarType", isSignal: true, isRequired: false, transformFunction: null }, showClearIcon: { classPropertyName: "showClearIcon", publicName: "showClearIcon", isSignal: true, isRequired: false, transformFunction: null }, showTwoMonths: { classPropertyName: "showTwoMonths", publicName: "showTwoMonths", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, valueFormat: { classPropertyName: "valueFormat", publicName: "valueFormat", isSignal: true, isRequired: false, transformFunction: null }, valueState: { classPropertyName: "valueState", publicName: "valueState", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Change: "ui5Change", ui5Close: "ui5Close", ui5Input: "ui5Input", ui5Open: "ui5Open", ui5ValueStateChange: "ui5ValueStateChange" }, providers: [
4263
4329
  contentDensityObserverProviders({
4264
4330
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
4265
4331
  }),
@@ -4296,7 +4362,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
4296
4362
  ],
4297
4363
  changeDetection: ChangeDetectionStrategy.OnPush,
4298
4364
  }]
4299
- }], propDecorators: { accessibleDescription: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescription", required: false }] }], accessibleDescriptionRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescriptionRef", required: false }] }], accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], accessibleNameRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleNameRef", required: false }] }], calendarWeekNumbering: [{ type: i0.Input, args: [{ isSignal: true, alias: "calendarWeekNumbering", required: false }] }], delimiter: [{ type: i0.Input, args: [{ isSignal: true, alias: "delimiter", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], displayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "displayFormat", required: false }] }], formatPattern: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatPattern", required: false }] }], hideWeekNumbers: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideWeekNumbers", required: false }] }], maxDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxDate", required: false }] }], minDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "minDate", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], primaryCalendarType: [{ type: i0.Input, args: [{ isSignal: true, alias: "primaryCalendarType", required: false }] }], readonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], secondaryCalendarType: [{ type: i0.Input, args: [{ isSignal: true, alias: "secondaryCalendarType", required: false }] }], showClearIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showClearIcon", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], valueFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "valueFormat", required: false }] }], valueState: [{ type: i0.Input, args: [{ isSignal: true, alias: "valueState", required: false }] }], ui5Change: [{ type: i0.Output, args: ["ui5Change"] }], ui5Close: [{ type: i0.Output, args: ["ui5Close"] }], ui5Input: [{ type: i0.Output, args: ["ui5Input"] }], ui5Open: [{ type: i0.Output, args: ["ui5Open"] }], ui5ValueStateChange: [{ type: i0.Output, args: ["ui5ValueStateChange"] }] } });
4365
+ }], propDecorators: { accessibleDescription: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescription", required: false }] }], accessibleDescriptionRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescriptionRef", required: false }] }], accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], accessibleNameRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleNameRef", required: false }] }], calendarWeekNumbering: [{ type: i0.Input, args: [{ isSignal: true, alias: "calendarWeekNumbering", required: false }] }], delimiter: [{ type: i0.Input, args: [{ isSignal: true, alias: "delimiter", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], displayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "displayFormat", required: false }] }], formatPattern: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatPattern", required: false }] }], hideWeekNumbers: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideWeekNumbers", required: false }] }], maxDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxDate", required: false }] }], minDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "minDate", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], primaryCalendarType: [{ type: i0.Input, args: [{ isSignal: true, alias: "primaryCalendarType", required: false }] }], readonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readonly", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], secondaryCalendarType: [{ type: i0.Input, args: [{ isSignal: true, alias: "secondaryCalendarType", required: false }] }], showClearIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showClearIcon", required: false }] }], showTwoMonths: [{ type: i0.Input, args: [{ isSignal: true, alias: "showTwoMonths", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], valueFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "valueFormat", required: false }] }], valueState: [{ type: i0.Input, args: [{ isSignal: true, alias: "valueState", required: false }] }], ui5Change: [{ type: i0.Output, args: ["ui5Change"] }], ui5Close: [{ type: i0.Output, args: ["ui5Close"] }], ui5Input: [{ type: i0.Output, args: ["ui5Input"] }], ui5Open: [{ type: i0.Output, args: ["ui5Open"] }], ui5ValueStateChange: [{ type: i0.Output, args: ["ui5ValueStateChange"] }] } });
4300
4366
 
4301
4367
  class DateTimeInput {
4302
4368
  constructor() {
@@ -4381,6 +4447,7 @@ class DateTimeInput {
4381
4447
  and the current language settings, especially for type `Number`.
4382
4448
  - The property is mostly intended to be used with touch devices
4383
4449
  that use different soft keyboard layouts depending on the given input type.
4450
+ - Type `Number` does not support suggestions.
4384
4451
  */
4385
4452
  this.type = input("Text", ...(ngDevMode ? [{ debugName: "type" }] : []));
4386
4453
  /**
@@ -4431,6 +4498,8 @@ class DateTimeInput {
4431
4498
  property is set to `true`.
4432
4499
 
4433
4500
  **Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.
4501
+
4502
+ **Note:** Input with type `Number` does not support suggestions.
4434
4503
  * - **icon**: Defines the icon to be displayed in the component.
4435
4504
  * - **valueStateMessage**: Defines the value state message that will be displayed as pop up under the component.
4436
4505
  The value state message slot should contain only one root element.
@@ -4457,7 +4526,7 @@ class DateTimeInput {
4457
4526
  this.slots = [
4458
4527
  {
4459
4528
  "name": "default",
4460
- "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items."
4529
+ "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions."
4461
4530
  },
4462
4531
  {
4463
4532
  "name": "icon",
@@ -6309,6 +6378,7 @@ class Input {
6309
6378
  and the current language settings, especially for type `Number`.
6310
6379
  - The property is mostly intended to be used with touch devices
6311
6380
  that use different soft keyboard layouts depending on the given input type.
6381
+ - Type `Number` does not support suggestions.
6312
6382
  */
6313
6383
  this.type = input("Text", ...(ngDevMode ? [{ debugName: "type" }] : []));
6314
6384
  /**
@@ -6359,6 +6429,8 @@ class Input {
6359
6429
  property is set to `true`.
6360
6430
 
6361
6431
  **Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.
6432
+
6433
+ **Note:** Input with type `Number` does not support suggestions.
6362
6434
  * - **icon**: Defines the icon to be displayed in the component.
6363
6435
  * - **valueStateMessage**: Defines the value state message that will be displayed as pop up under the component.
6364
6436
  The value state message slot should contain only one root element.
@@ -6385,7 +6457,7 @@ class Input {
6385
6457
  this.slots = [
6386
6458
  {
6387
6459
  "name": "default",
6388
- "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items."
6460
+ "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions."
6389
6461
  },
6390
6462
  {
6391
6463
  "name": "icon",
@@ -9202,6 +9274,7 @@ class MultiInput {
9202
9274
  and the current language settings, especially for type `Number`.
9203
9275
  - The property is mostly intended to be used with touch devices
9204
9276
  that use different soft keyboard layouts depending on the given input type.
9277
+ - Type `Number` does not support suggestions.
9205
9278
  */
9206
9279
  this.type = input("Text", ...(ngDevMode ? [{ debugName: "type" }] : []));
9207
9280
  /**
@@ -9261,6 +9334,8 @@ class MultiInput {
9261
9334
  property is set to `true`.
9262
9335
 
9263
9336
  **Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.
9337
+
9338
+ **Note:** Input with type `Number` does not support suggestions.
9264
9339
  * - **icon**: Defines the icon to be displayed in the component.
9265
9340
  * - **tokens**: Defines the component tokens.
9266
9341
  * - **valueStateMessage**: Defines the value state message that will be displayed as pop up under the component.
@@ -9288,7 +9363,7 @@ class MultiInput {
9288
9363
  this.slots = [
9289
9364
  {
9290
9365
  "name": "default",
9291
- "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items."
9366
+ "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions."
9292
9367
  },
9293
9368
  {
9294
9369
  "name": "icon",
@@ -11066,6 +11141,12 @@ class SegmentedButtonItem {
11066
11141
  **Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.
11067
11142
  */
11068
11143
  this.tooltip = input(...(ngDevMode ? [undefined, { debugName: "tooltip" }] : [])); // className is now passed
11144
+ /**
11145
+ * Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.
11146
+
11147
+ **Note:** The event will not be fired if the `disabled` property is set to `true`.
11148
+ */
11149
+ this.ui5Click = output();
11069
11150
  /**
11070
11151
  * Available slots for content projection in this component.
11071
11152
  *
@@ -11135,9 +11216,24 @@ class SegmentedButtonItem {
11135
11216
  });
11136
11217
  }
11137
11218
  }
11219
+ const outputsToSync = [
11220
+ 'ui5Click',
11221
+ ];
11222
+ // Synchronize outputs (events)
11223
+ for (const outputName of outputsToSync) {
11224
+ // Map Angular output name to UI5 web component event name
11225
+ const eventName = outputName.replace('ui5', '').replace(/([A-Z])/g, '-$1').toLowerCase().substring(1);
11226
+ // Ensure the output property exists and has an emit function before adding listener
11227
+ if (this[outputName] && typeof this[outputName].emit === 'function' && wcElement.addEventListener) {
11228
+ // Cast the listener to the correct type to satisfy TypeScript
11229
+ wcElement.addEventListener(eventName, (e) => {
11230
+ this[outputName].emit(e);
11231
+ });
11232
+ }
11233
+ }
11138
11234
  }
11139
11235
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SegmentedButtonItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11140
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: SegmentedButtonItem, isStandalone: true, selector: "ui5-segmented-button-item, [ui5-segmented-button-item]", inputs: { accessibleDescription: { classPropertyName: "accessibleDescription", publicName: "accessibleDescription", isSignal: true, isRequired: false, transformFunction: null }, accessibleDescriptionRef: { classPropertyName: "accessibleDescriptionRef", publicName: "accessibleDescriptionRef", 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 }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
11236
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: SegmentedButtonItem, isStandalone: true, selector: "ui5-segmented-button-item, [ui5-segmented-button-item]", inputs: { accessibleDescription: { classPropertyName: "accessibleDescription", publicName: "accessibleDescription", isSignal: true, isRequired: false, transformFunction: null }, accessibleDescriptionRef: { classPropertyName: "accessibleDescriptionRef", publicName: "accessibleDescriptionRef", 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 }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { ui5Click: "ui5Click" }, providers: [
11141
11237
  contentDensityObserverProviders({
11142
11238
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
11143
11239
  })
@@ -11157,7 +11253,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
11157
11253
  ],
11158
11254
  changeDetection: ChangeDetectionStrategy.OnPush,
11159
11255
  }]
11160
- }], propDecorators: { accessibleDescription: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescription", required: false }] }], accessibleDescriptionRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescriptionRef", required: false }] }], accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], accessibleNameRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleNameRef", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }], tooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "tooltip", required: false }] }] } });
11256
+ }], propDecorators: { accessibleDescription: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescription", required: false }] }], accessibleDescriptionRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleDescriptionRef", required: false }] }], accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], accessibleNameRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleNameRef", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }], tooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "tooltip", required: false }] }], ui5Click: [{ type: i0.Output, args: ["ui5Click"] }] } });
11161
11257
 
11162
11258
  class Select {
11163
11259
  constructor() {
@@ -11610,36 +11706,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
11610
11706
 
11611
11707
  class SliderHandle {
11612
11708
  constructor() {
11613
- /**
11614
- * Defines whether the slider handle is active.
11615
- <br><br>
11616
- <b>Note:</b> An active slider handle is currently being interacted with.
11617
- */
11618
- this.active = input(false, { ...(ngDevMode ? { debugName: "active" } : {}), transform: booleanAttribute });
11619
- /**
11620
- * Defines whether the slider handle is disabled.
11621
- <br><br>
11622
- <b>Note:</b> A disabled slider handle cannot be interacted with.
11623
- */
11624
- this.disabled = input(false, { ...(ngDevMode ? { debugName: "disabled" } : {}), transform: booleanAttribute });
11625
- /**
11626
- * Defines the maximum value of the slider handle.
11627
- <br><br>
11628
- <b>Note:</b> The value should be greater than the <code>min</code> property of the parent <code>ui5-slider</code>.
11629
- */
11630
- this.max = input(100, ...(ngDevMode ? [{ debugName: "max" }] : []));
11631
- /**
11632
- * Defines the minimum value of the slider handle.
11633
- <br><br>
11634
- <b>Note:</b> The value should be less than the <code>max</code> property of the parent <code>ui5-slider</code>.
11635
- */
11636
- this.min = input(0, ...(ngDevMode ? [{ debugName: "min" }] : []));
11637
- /**
11638
- * Defines the value of the slider handle.
11639
- <br><br>
11640
- <b>Note:</b> The value should be between the <code>min</code> and <code>max</code> properties of the parent <code>ui5-slider</code>.
11641
- */
11642
- this.value = input(0, ...(ngDevMode ? [{ debugName: "value" }] : [])); // className is now passed
11709
+ // className is now passed
11643
11710
  this.elementRef = inject(ElementRef);
11644
11711
  this.injector = inject(Injector);
11645
11712
  /**
@@ -11654,34 +11721,9 @@ class SliderHandle {
11654
11721
  }
11655
11722
  ngAfterViewInit() {
11656
11723
  const wcElement = this.element;
11657
- const inputsToSync = [
11658
- 'active',
11659
- 'disabled',
11660
- 'max',
11661
- 'min',
11662
- 'value',
11663
- ];
11664
- // Synchronize inputs (properties)
11665
- for (const inputName of inputsToSync) {
11666
- // Find the corresponding camelCase signal property on the Angular component
11667
- const signalName = inputName.replace(/-./g, (x) => x[1].toUpperCase());
11668
- // Use the Injector to run the effect in the correct context
11669
- if (this[signalName] && typeof this[signalName] === 'function') {
11670
- runInInjectionContext(this.injector, () => {
11671
- effect(() => {
11672
- // Read the signal value
11673
- const value = this[signalName]();
11674
- if (wcElement) {
11675
- // Write the value to the Web Component's property
11676
- wcElement[inputName] = value;
11677
- }
11678
- });
11679
- });
11680
- }
11681
- }
11682
11724
  }
11683
11725
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: SliderHandle, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11684
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: SliderHandle, isStandalone: true, selector: "ui5-slider-handle, [ui5-slider-handle]", inputs: { active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, min: { classPropertyName: "min", publicName: "min", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
11726
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: SliderHandle, isStandalone: true, selector: "ui5-slider-handle, [ui5-slider-handle]", providers: [
11685
11727
  contentDensityObserverProviders({
11686
11728
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
11687
11729
  })
@@ -11701,7 +11743,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
11701
11743
  ],
11702
11744
  changeDetection: ChangeDetectionStrategy.OnPush,
11703
11745
  }]
11704
- }], propDecorators: { active: [{ type: i0.Input, args: [{ isSignal: true, alias: "active", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], min: [{ type: i0.Input, args: [{ isSignal: true, alias: "min", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }] } });
11746
+ }] });
11705
11747
 
11706
11748
  class SliderTooltip {
11707
11749
  constructor() {
@@ -13468,9 +13510,9 @@ class TableCell {
13468
13510
  /**
13469
13511
  * Defines whether the cell is visually merged with the cell directly above it.
13470
13512
 
13471
- This is useful when consecutive cells in a column have the same value and should visually appear as a single merged cell.
13513
+ This is useful if consecutive cells in a column have the same value and should visually appear as a single merged cell.
13472
13514
  Although the cell is visually merged with the previous one, its content must still be provided for accessibility purposes.
13473
- **Note:** This feature is disabled when cells are rendered as popin, and should remain `false` for interactive cell content.
13515
+ **Note:** This feature is disabled when cells are rendered as a popin, and should remain `false` for interactive cell content.
13474
13516
  */
13475
13517
  this.merged = input(false, { ...(ngDevMode ? { debugName: "merged" } : {}), transform: booleanAttribute }); // className is now passed
13476
13518
  /**
@@ -16554,7 +16596,13 @@ class Toolbar {
16554
16596
  /**
16555
16597
  * Defines the toolbar design.
16556
16598
  */
16557
- this.design = input("Solid", ...(ngDevMode ? [{ debugName: "design" }] : [])); // className is now passed
16599
+ this.design = input("Solid", ...(ngDevMode ? [{ debugName: "design" }] : []));
16600
+ /**
16601
+ * Defines the accessible ARIA name of the overflow button of the component.
16602
+
16603
+ **Note:** When not set, the built-in translation for "Additional Options" is used.
16604
+ */
16605
+ this.overflowButtonAccessibleName = input(...(ngDevMode ? [undefined, { debugName: "overflowButtonAccessibleName" }] : [])); // className is now passed
16558
16606
  /**
16559
16607
  * Available slots for content projection in this component.
16560
16608
  *
@@ -16601,6 +16649,7 @@ class Toolbar {
16601
16649
  'accessibleNameRef',
16602
16650
  'alignContent',
16603
16651
  'design',
16652
+ 'overflowButtonAccessibleName',
16604
16653
  ];
16605
16654
  // Synchronize inputs (properties)
16606
16655
  for (const inputName of inputsToSync) {
@@ -16622,7 +16671,7 @@ class Toolbar {
16622
16671
  }
16623
16672
  }
16624
16673
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: Toolbar, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
16625
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: Toolbar, isStandalone: true, selector: "ui5-toolbar, [ui5-toolbar]", inputs: { accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, accessibleNameRef: { classPropertyName: "accessibleNameRef", publicName: "accessibleNameRef", isSignal: true, isRequired: false, transformFunction: null }, alignContent: { classPropertyName: "alignContent", publicName: "alignContent", isSignal: true, isRequired: false, transformFunction: null }, design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
16674
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.0", type: Toolbar, isStandalone: true, selector: "ui5-toolbar, [ui5-toolbar]", inputs: { accessibleName: { classPropertyName: "accessibleName", publicName: "accessibleName", isSignal: true, isRequired: false, transformFunction: null }, accessibleNameRef: { classPropertyName: "accessibleNameRef", publicName: "accessibleNameRef", isSignal: true, isRequired: false, transformFunction: null }, alignContent: { classPropertyName: "alignContent", publicName: "alignContent", isSignal: true, isRequired: false, transformFunction: null }, design: { classPropertyName: "design", publicName: "design", isSignal: true, isRequired: false, transformFunction: null }, overflowButtonAccessibleName: { classPropertyName: "overflowButtonAccessibleName", publicName: "overflowButtonAccessibleName", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
16626
16675
  contentDensityObserverProviders({
16627
16676
  supportedContentDensity: [ContentDensityMode.COMPACT, ContentDensityMode.COZY]
16628
16677
  })
@@ -16642,7 +16691,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
16642
16691
  ],
16643
16692
  changeDetection: ChangeDetectionStrategy.OnPush,
16644
16693
  }]
16645
- }], propDecorators: { accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], accessibleNameRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleNameRef", required: false }] }], alignContent: [{ type: i0.Input, args: [{ isSignal: true, alias: "alignContent", required: false }] }], design: [{ type: i0.Input, args: [{ isSignal: true, alias: "design", required: false }] }] } });
16694
+ }], propDecorators: { accessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleName", required: false }] }], accessibleNameRef: [{ type: i0.Input, args: [{ isSignal: true, alias: "accessibleNameRef", required: false }] }], alignContent: [{ type: i0.Input, args: [{ isSignal: true, alias: "alignContent", required: false }] }], design: [{ type: i0.Input, args: [{ isSignal: true, alias: "design", required: false }] }], overflowButtonAccessibleName: [{ type: i0.Input, args: [{ isSignal: true, alias: "overflowButtonAccessibleName", required: false }] }] } });
16646
16695
 
16647
16696
  class ToolbarButton {
16648
16697
  constructor() {