@fundamental-ngx/core 0.58.1 → 0.58.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/core",
3
- "version": "0.58.1",
3
+ "version": "0.58.2",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "ng-update": {
6
6
  "migrations": "./schematics/migrations.json"
@@ -23,8 +23,8 @@
23
23
  "@angular/forms": "^20.0.0",
24
24
  "@angular/platform-browser": "^20.0.0",
25
25
  "@angular/router": "^20.0.0",
26
- "@fundamental-ngx/cdk": "0.58.1",
27
- "@fundamental-ngx/i18n": "0.58.1",
26
+ "@fundamental-ngx/cdk": "0.58.2",
27
+ "@fundamental-ngx/i18n": "0.58.2",
28
28
  "@sap-theming/theming-base-content": "^11.31.0",
29
29
  "fundamental-styles": "0.40.1",
30
30
  "rxjs": "^7.8.0"
@@ -51,14 +51,14 @@
51
51
  "types": "./action-bar/index.d.ts",
52
52
  "default": "./fesm2022/fundamental-ngx-core-action-bar.mjs"
53
53
  },
54
- "./action-sheet": {
55
- "types": "./action-sheet/index.d.ts",
56
- "default": "./fesm2022/fundamental-ngx-core-action-sheet.mjs"
57
- },
58
54
  "./avatar": {
59
55
  "types": "./avatar/index.d.ts",
60
56
  "default": "./fesm2022/fundamental-ngx-core-avatar.mjs"
61
57
  },
58
+ "./action-sheet": {
59
+ "types": "./action-sheet/index.d.ts",
60
+ "default": "./fesm2022/fundamental-ngx-core-action-sheet.mjs"
61
+ },
62
62
  "./avatar-group": {
63
63
  "types": "./avatar-group/index.d.ts",
64
64
  "default": "./fesm2022/fundamental-ngx-core-avatar-group.mjs"
@@ -139,28 +139,36 @@ declare class ProductMenuComponent {
139
139
  * [glyph]="action.glyph"
140
140
  * [callback]="action.callback"
141
141
  * [label]="action.label"
142
+ * [ariaLabel]="action.ariaLabel"
143
+ * [title]="action.title"
142
144
  * [notificationCount]="action.notificationCount"
143
145
  * [notificationLabel]="action.notificationLabel">
144
146
  * </fd-shellbar-action>
145
147
  * ```
146
148
  */
147
149
  declare class ShellbarActionComponent {
148
- /** The glyph (icon) name */
149
- glyph: string;
150
- /** Glyph font family */
151
- glyphFont: IconFont;
152
- /** Callback that hanldles the response to clicks on any of the actions. */
153
- callback: Nullable<(event: MouseEvent) => void>;
154
- /** The action label. */
155
- label: string;
156
- /** The notification label. */
157
- notificationLabel: string;
158
- /** Represents the number of notifications. */
159
- notificationCount: number;
150
+ /** Icon name for the button. */
151
+ readonly glyph: i0.InputSignal<string | undefined>;
152
+ /** Icon font family. */
153
+ readonly glyphFont: i0.InputSignal<IconFont>;
154
+ /** Function to call when the action is clicked. */
155
+ readonly callback: i0.InputSignal<Nullable<(event: MouseEvent) => void>>;
156
+ /** Accessible label for the action. */
157
+ readonly label: i0.InputSignal<string>;
158
+ /** ARIA label for screen readers. */
159
+ readonly ariaLabel: i0.InputSignal<string>;
160
+ /** Tooltip text shown on hover. */
161
+ readonly title: i0.InputSignal<string>;
162
+ /** ARIA label for the notification badge. */
163
+ readonly notificationLabel: i0.InputSignal<string | undefined>;
164
+ /** Number of notifications to display in badge. */
165
+ readonly notificationCount: i0.InputSignal<number | undefined>;
160
166
  /** @hidden */
161
167
  _elRef: ElementRef<any>;
168
+ /** @hidden */
169
+ protected _handleClick(event: MouseEvent): void;
162
170
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellbarActionComponent, never>;
163
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellbarActionComponent, "fd-shellbar-action", never, { "glyph": { "alias": "glyph"; "required": false; }; "glyphFont": { "alias": "glyphFont"; "required": false; }; "callback": { "alias": "callback"; "required": false; }; "label": { "alias": "label"; "required": false; }; "notificationLabel": { "alias": "notificationLabel"; "required": false; }; "notificationCount": { "alias": "notificationCount"; "required": false; }; }, {}, never, never, true, never>;
171
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellbarActionComponent, "fd-shellbar-action", never, { "glyph": { "alias": "glyph"; "required": false; "isSignal": true; }; "glyphFont": { "alias": "glyphFont"; "required": false; "isSignal": true; }; "callback": { "alias": "callback"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "notificationLabel": { "alias": "notificationLabel"; "required": false; "isSignal": true; }; "notificationCount": { "alias": "notificationCount"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
164
172
  }
165
173
 
166
174
  declare class ShellbarActionsMobileComponent implements AfterContentChecked {