@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.
|
|
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.
|
|
27
|
-
"@fundamental-ngx/i18n": "0.58.
|
|
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"
|
package/shellbar/index.d.ts
CHANGED
|
@@ -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
|
-
/**
|
|
149
|
-
glyph: string
|
|
150
|
-
/**
|
|
151
|
-
glyphFont: IconFont
|
|
152
|
-
/**
|
|
153
|
-
callback: Nullable<(event: MouseEvent) => void
|
|
154
|
-
/**
|
|
155
|
-
label: string
|
|
156
|
-
/**
|
|
157
|
-
|
|
158
|
-
/**
|
|
159
|
-
|
|
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 {
|