@schneideress/dashboardframework 20.0.6 → 20.0.8
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/index.d.ts
CHANGED
|
@@ -893,9 +893,10 @@ declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
893
893
|
emptyDashboardButtonAction: any;
|
|
894
894
|
DownloadOnlyStateButtonAction1: any;
|
|
895
895
|
DownloadOnlyStateButtonAction2: any;
|
|
896
|
-
|
|
896
|
+
hasGrid: boolean;
|
|
897
897
|
private initialWidgetCount;
|
|
898
898
|
private currentLoadingCount;
|
|
899
|
+
isSiteDetailDashboard: boolean;
|
|
899
900
|
userDashboardId: number;
|
|
900
901
|
areaKey: string;
|
|
901
902
|
downloadDatastreamLimit: any;
|
|
@@ -909,6 +910,7 @@ declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
909
910
|
isIndicatorDashboard: boolean;
|
|
910
911
|
templateConfig: any;
|
|
911
912
|
bulkActionData: IBulkAction;
|
|
913
|
+
widgetCount: number;
|
|
912
914
|
hideDashboardBanner: EventEmitter<any>;
|
|
913
915
|
gridWrapper: ElementRef;
|
|
914
916
|
private scrollTrigger;
|
|
@@ -967,7 +969,7 @@ declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
967
969
|
updateAppliedFilters(data: any): void;
|
|
968
970
|
checkPAMWidgets(): void;
|
|
969
971
|
static ɵfac: i0.ɵɵFactoryDeclaration<RADashboardArea, never>;
|
|
970
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RADashboardArea, "ra-dashboard-area", never, { "userDashboardId": { "alias": "user-dashboard-id"; "required": false; }; "areaKey": { "alias": "area-key"; "required": false; }; "downloadDatastreamLimit": { "alias": "download-datastream-limit"; "required": false; }; "reportDatastreamLimit": { "alias": "report-datastream-limit"; "required": false; }; "globalFilter": { "alias": "global-filter"; "required": false; }; "raDashboardEventBus": { "alias": "event-bus"; "required": false; }; "widgetHeight": { "alias": "widget-height"; "required": false; }; "widgetWidth": { "alias": "widget-width"; "required": false; }; "appConfig": { "alias": "app-config"; "required": false; }; "dashboardInfo": { "alias": "dashboard-info"; "required": false; }; "isIndicatorDashboard": { "alias": "isIndicatorDashboard"; "required": false; }; "templateConfig": { "alias": "templateConfig"; "required": false; }; "bulkActionData": { "alias": "bulk_Action_Data"; "required": false; }; }, { "hideDashboardBanner": "hideDashboardBanner"; }, never, never, false, never>;
|
|
972
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RADashboardArea, "ra-dashboard-area", never, { "userDashboardId": { "alias": "user-dashboard-id"; "required": false; }; "areaKey": { "alias": "area-key"; "required": false; }; "downloadDatastreamLimit": { "alias": "download-datastream-limit"; "required": false; }; "reportDatastreamLimit": { "alias": "report-datastream-limit"; "required": false; }; "globalFilter": { "alias": "global-filter"; "required": false; }; "raDashboardEventBus": { "alias": "event-bus"; "required": false; }; "widgetHeight": { "alias": "widget-height"; "required": false; }; "widgetWidth": { "alias": "widget-width"; "required": false; }; "appConfig": { "alias": "app-config"; "required": false; }; "dashboardInfo": { "alias": "dashboard-info"; "required": false; }; "isIndicatorDashboard": { "alias": "isIndicatorDashboard"; "required": false; }; "templateConfig": { "alias": "templateConfig"; "required": false; }; "bulkActionData": { "alias": "bulk_Action_Data"; "required": false; }; "widgetCount": { "alias": "widget-count"; "required": false; }; }, { "hideDashboardBanner": "hideDashboardBanner"; }, never, never, false, never>;
|
|
971
973
|
}
|
|
972
974
|
|
|
973
975
|
declare class LockTooltip implements OnInit {
|
|
@@ -1206,7 +1208,9 @@ declare enum RAEvent {
|
|
|
1206
1208
|
/** Event on emission report snapshot button clicked*/
|
|
1207
1209
|
SnapShotClick = "SnapShotClick",
|
|
1208
1210
|
/** Event on emission report snapshot selected from list*/
|
|
1209
|
-
SnapShotSelected = "SnapShotSelected"
|
|
1211
|
+
SnapShotSelected = "SnapShotSelected",
|
|
1212
|
+
/** Event to update widget count */
|
|
1213
|
+
UpdateWidgetCount = "UpdateWidgetCount"
|
|
1210
1214
|
}
|
|
1211
1215
|
declare enum RAEventKey {
|
|
1212
1216
|
/** on edit widget click */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schneideress/dashboardframework",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.8",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^20.2.1",
|
|
6
6
|
"@angular/core": "^20.2.1",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"bootstrap": "^5.3.7",
|
|
9
9
|
"@schneideress/ra-common": "^20.0.14",
|
|
10
10
|
"@schneideress/common-controls": "^20.0.15",
|
|
11
|
-
"@schneideress/widgetframework": "^20.0.
|
|
11
|
+
"@schneideress/widgetframework": "^20.0.3",
|
|
12
12
|
"angular-notifier": "^14.0.0",
|
|
13
13
|
"ngx-ui-loader": "^19.0.0"
|
|
14
14
|
},
|