@provoly/dashboard 1.1.3 → 1.1.5
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/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +2 -2
- package/esm2022/lib/dashboard/store/manifest.service.mjs +3 -3
- package/esm2022/presentation/components/presentation.component.mjs +2 -2
- package/esm2022/toolbox/components/share/share.component.mjs +4 -2
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +1 -5
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +4 -1
- package/esm2022/widgets/widget-template/component/widget-template.component.mjs +3 -3
- package/fesm2022/provoly-dashboard-presentation.mjs +1 -1
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +3 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +0 -4
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +3 -0
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs +2 -2
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +3 -3
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/store/manifest.service.d.ts +1 -1
- package/package.json +7 -7
- package/widgets/widget-template/component/widget-template.component.d.ts +1 -1
|
@@ -17,7 +17,7 @@ export declare class ManifestService {
|
|
|
17
17
|
save(name: string, manifest: GlobalManifest, id: string, description?: string, image?: string, metadata?: {
|
|
18
18
|
metadataDefId: string;
|
|
19
19
|
value: string;
|
|
20
|
-
}[],
|
|
20
|
+
}[], accessRightsByGroup?: {
|
|
21
21
|
[key: string]: string[];
|
|
22
22
|
}, additionalInformation?: string): Observable<ShareConflict>;
|
|
23
23
|
delete(id: string): Observable<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -84,18 +84,18 @@
|
|
|
84
84
|
"esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
|
|
85
85
|
"default": "./fesm2022/provoly-dashboard-admin.mjs"
|
|
86
86
|
},
|
|
87
|
-
"./dataset": {
|
|
88
|
-
"types": "./dataset/index.d.ts",
|
|
89
|
-
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
90
|
-
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
91
|
-
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
92
|
-
},
|
|
93
87
|
"./import": {
|
|
94
88
|
"types": "./import/index.d.ts",
|
|
95
89
|
"esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
96
90
|
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
97
91
|
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
98
92
|
},
|
|
93
|
+
"./dataset": {
|
|
94
|
+
"types": "./dataset/index.d.ts",
|
|
95
|
+
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
96
|
+
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
97
|
+
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
98
|
+
},
|
|
99
99
|
"./notification": {
|
|
100
100
|
"types": "./notification/index.d.ts",
|
|
101
101
|
"esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
@@ -19,5 +19,5 @@ export declare class WidgetTemplateComponent extends DataWidgetComponent {
|
|
|
19
19
|
changeHtml($event: Event): void;
|
|
20
20
|
changeCss($event: Event): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetTemplateComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetTemplateComponent, "pry-widget-
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetTemplateComponent, "pry-widget-template", never, {}, {}, never, never, false, never>;
|
|
23
23
|
}
|