@openmfp/ngx 0.12.8 → 0.12.10
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": "@openmfp/ngx",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.10",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/openmfp/webcomponents.git"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@angular/platform-browser": "^21.2.1",
|
|
20
20
|
"@fundamental-ngx/ui5-webcomponents": "^0.59.1",
|
|
21
21
|
"@fundamental-ngx/ui5-webcomponents-fiori": "^0.59.1",
|
|
22
|
-
"jsonpath": "^
|
|
22
|
+
"jsonpath-plus": "^10.4.0",
|
|
23
23
|
"rxjs": "^7.8.2"
|
|
24
24
|
},
|
|
25
25
|
"type": "module",
|
package/types/openmfp-ngx.d.ts
CHANGED
|
@@ -422,6 +422,8 @@ interface DashboardConfig {
|
|
|
422
422
|
customActions?: ButtonSettings[];
|
|
423
423
|
/** When `true`, shows the Edit View button in the toolbar, allowing the user to enter edit mode. */
|
|
424
424
|
editable?: boolean;
|
|
425
|
+
/** When `true`, the Edit View button is rendered before the custom actions instead of after. Defaults to `false`. */
|
|
426
|
+
editButtonFirst?: boolean;
|
|
425
427
|
}
|
|
426
428
|
|
|
427
429
|
declare class Dashboard implements OnInit, OnDestroy {
|
|
@@ -438,6 +440,7 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
438
440
|
event: MouseEvent;
|
|
439
441
|
action: ButtonSettings;
|
|
440
442
|
}>;
|
|
443
|
+
readonly unsavedChangesChange: _angular_core.OutputEmitterRef<boolean>;
|
|
441
444
|
editMode: _angular_core.WritableSignal<boolean>;
|
|
442
445
|
compactToolbar: _angular_core.WritableSignal<boolean>;
|
|
443
446
|
toolbarMenuOpen: _angular_core.WritableSignal<boolean>;
|
|
@@ -499,6 +502,7 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
499
502
|
}>;
|
|
500
503
|
looseCards: _angular_core.WritableSignal<CardConfig[]>;
|
|
501
504
|
private newGridStackNodes;
|
|
505
|
+
constructor();
|
|
502
506
|
ngOnInit(): void;
|
|
503
507
|
ngOnDestroy(): void;
|
|
504
508
|
onMenuItemClick(actionId: string, event: Event): void;
|
|
@@ -558,7 +562,7 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
558
562
|
onGridChange(event: nodesCB): void;
|
|
559
563
|
private saveCardsPosition;
|
|
560
564
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Dashboard, never>;
|
|
561
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Dashboard, "mfp-dashboard", never, { "config": { "alias": "config"; "required": true; "isSignal": true; }; "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "cards": { "alias": "cards"; "required": false; "isSignal": true; }; "availableCards": { "alias": "availableCards"; "required": false; "isSignal": true; }; }, { "sections": "sectionsChange"; "cards": "cardsChange"; "saved": "saved"; "actionButtonClick": "actionButtonClick"; }, never, ["[slot=dashboard-subheader]"], true, never>;
|
|
565
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Dashboard, "mfp-dashboard", never, { "config": { "alias": "config"; "required": true; "isSignal": true; }; "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "cards": { "alias": "cards"; "required": false; "isSignal": true; }; "availableCards": { "alias": "availableCards"; "required": false; "isSignal": true; }; }, { "sections": "sectionsChange"; "cards": "cardsChange"; "saved": "saved"; "actionButtonClick": "actionButtonClick"; "unsavedChangesChange": "unsavedChangesChange"; }, never, ["[slot=dashboard-subheader]"], true, never>;
|
|
562
566
|
}
|
|
563
567
|
|
|
564
568
|
declare class EditCardsDialog {
|