@acorex/modules 21.0.0-next.33 → 21.0.0-next.37
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,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/modules",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.37",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/platform": "21.0.0-next.
|
|
5
|
+
"@acorex/platform": "21.0.0-next.37",
|
|
6
6
|
"@angular/service-worker": "^20.0.0",
|
|
7
7
|
"d3": "^7.0.0",
|
|
8
8
|
"html2canvas": "^1.0.0",
|
|
@@ -13,7 +13,7 @@ import { ActivatedRoute, Router } from '@angular/router';
|
|
|
13
13
|
import { AXDialogService } from '@acorex/components/dialog';
|
|
14
14
|
import { AXPPageLayoutBaseComponent } from '@acorex/platform/layout/views';
|
|
15
15
|
import { AXPopupService } from '@acorex/components/popup';
|
|
16
|
-
import {
|
|
16
|
+
import { AXPActionMenuItem, AXPExecuteCommand, AXPMultiLanguageString } from '@acorex/platform/core';
|
|
17
17
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
18
18
|
import { AXPWidgetPropertiesChangedEvent } from '@acorex/platform/layout/components';
|
|
19
19
|
import { AXItemClickEvent, AXEvent, AXValueChangedEvent } from '@acorex/cdk/common';
|
|
@@ -232,7 +232,6 @@ declare class AXMDashboardHomeComponent extends AXPPageLayoutBaseComponent imple
|
|
|
232
232
|
menuOrientation: _acorex_platform_themes_shared.AXPMenuOrientation;
|
|
233
233
|
isPrinting: boolean;
|
|
234
234
|
}>;
|
|
235
|
-
protected readonly deviceService: AXPDeviceService;
|
|
236
235
|
protected readonly context: _angular_core.WritableSignal<{}>;
|
|
237
236
|
private dashboardsLoaded;
|
|
238
237
|
ngOnInit(): Promise<void>;
|
|
@@ -308,12 +307,13 @@ declare class AXMAddDashboardPopup extends AXBasePageComponent implements OnInit
|
|
|
308
307
|
protected isDisabled: _angular_core.ModelSignal<boolean>;
|
|
309
308
|
protected isLocked: _angular_core.ModelSignal<boolean>;
|
|
310
309
|
protected isAdmin: _angular_core.ModelSignal<boolean>;
|
|
310
|
+
protected showAdminFields: _angular_core.ModelSignal<boolean>;
|
|
311
311
|
protected roles: any[];
|
|
312
312
|
protected get isValid(): boolean;
|
|
313
313
|
ngOnInit(): Promise<void>;
|
|
314
314
|
protected handleClose(isCanceled?: boolean): Promise<void>;
|
|
315
315
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXMAddDashboardPopup, never>;
|
|
316
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXMAddDashboardPopup, "ng-component", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "selectedRoleIds": { "alias": "selectedRoleIds"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isLocked": { "alias": "isLocked"; "required": false; "isSignal": true; }; "isAdmin": { "alias": "isAdmin"; "required": false; "isSignal": true; }; }, { "title": "titleChange"; "description": "descriptionChange"; "selectedRoleIds": "selectedRoleIdsChange"; "isDisabled": "isDisabledChange"; "isLocked": "isLockedChange"; "isAdmin": "isAdminChange"; }, never, never, true, never>;
|
|
316
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXMAddDashboardPopup, "ng-component", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "selectedRoleIds": { "alias": "selectedRoleIds"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isLocked": { "alias": "isLocked"; "required": false; "isSignal": true; }; "isAdmin": { "alias": "isAdmin"; "required": false; "isSignal": true; }; "showAdminFields": { "alias": "showAdminFields"; "required": false; "isSignal": true; }; }, { "title": "titleChange"; "description": "descriptionChange"; "selectedRoleIds": "selectedRoleIdsChange"; "isDisabled": "isDisabledChange"; "isLocked": "isLockedChange"; "isAdmin": "isAdminChange"; "showAdminFields": "showAdminFieldsChange"; }, never, never, true, never>;
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
declare class AXMConfigurationPopup extends AXBasePageComponent implements OnInit {
|