@provoly/dashboard 0.24.1 → 0.24.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/esm2022/lib/core/model/manifest.interface.mjs +1 -1
- package/esm2022/toolbox/components/dashboard-details/dashboard-details.component.mjs +12 -9
- package/esm2022/toolbox/style/css.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-toolbox.mjs +13 -9
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/manifest.interface.d.ts +1 -1
- package/lib/dashboard/store/dashboard.effects.d.ts +1 -0
- package/lib/dashboard/store/dashboard.selectors.d.ts +8 -0
- package/package.json +37 -37
- package/toolbox/components/dashboard-details/dashboard-details.component.d.ts +2 -2
- package/toolbox/style/_o-dashboard-details.component.scss +9 -7
|
@@ -23,7 +23,6 @@ export interface ManifestDescription {
|
|
|
23
23
|
owner: boolean;
|
|
24
24
|
datasource: string[];
|
|
25
25
|
metadata?: MetadataValue[];
|
|
26
|
-
html?: string;
|
|
27
26
|
}
|
|
28
27
|
export interface WidgetLayout {
|
|
29
28
|
x: number;
|
|
@@ -65,6 +64,7 @@ export interface GlobalManifest {
|
|
|
65
64
|
[key: string]: number;
|
|
66
65
|
};
|
|
67
66
|
filters?: Filter[];
|
|
67
|
+
html?: string;
|
|
68
68
|
}
|
|
69
69
|
export interface WidgetManifest {
|
|
70
70
|
title?: string;
|
|
@@ -151,6 +151,7 @@ export declare class DashboardEffects {
|
|
|
151
151
|
[key: string]: number;
|
|
152
152
|
} | undefined;
|
|
153
153
|
filters?: import("@provoly/dashboard").Filter[] | undefined;
|
|
154
|
+
html?: string | undefined;
|
|
154
155
|
}]> & import("@ngrx/effects").CreateEffectMetadata;
|
|
155
156
|
saveManifest$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) fetching available manifests"> | ({
|
|
156
157
|
initial?: GlobalManifest | undefined;
|
|
@@ -32,6 +32,7 @@ export declare const DashboardSelectors: {
|
|
|
32
32
|
[key: string]: number;
|
|
33
33
|
} | undefined;
|
|
34
34
|
filters?: Filter[] | undefined;
|
|
35
|
+
html?: string | undefined;
|
|
35
36
|
}, (s1: {
|
|
36
37
|
sender: string;
|
|
37
38
|
tenants: string[];
|
|
@@ -46,6 +47,7 @@ export declare const DashboardSelectors: {
|
|
|
46
47
|
[key: string]: number;
|
|
47
48
|
} | undefined;
|
|
48
49
|
filters?: Filter[] | undefined;
|
|
50
|
+
html?: string | undefined;
|
|
49
51
|
}>;
|
|
50
52
|
refreshRates: MemoizedSelector<object, {
|
|
51
53
|
[key: string]: number;
|
|
@@ -55,6 +57,7 @@ export declare const DashboardSelectors: {
|
|
|
55
57
|
[key: string]: number;
|
|
56
58
|
} | undefined;
|
|
57
59
|
filters?: Filter[] | undefined;
|
|
60
|
+
html?: string | undefined;
|
|
58
61
|
}) => {
|
|
59
62
|
[key: string]: number;
|
|
60
63
|
}>;
|
|
@@ -64,6 +67,7 @@ export declare const DashboardSelectors: {
|
|
|
64
67
|
[key: string]: number;
|
|
65
68
|
} | undefined;
|
|
66
69
|
filters?: Filter[] | undefined;
|
|
70
|
+
html?: string | undefined;
|
|
67
71
|
}, s2: number) => DashboardManifest>;
|
|
68
72
|
widgetManifest: (index: number) => MemoizedSelector<DashboardManifest, WidgetManifest, import("@ngrx/store").DefaultProjectorFn<WidgetManifest>>;
|
|
69
73
|
manifestsList: MemoizedSelector<object, import("../../core/model/manifest.interface").ManifestDescription[], (s1: {
|
|
@@ -133,6 +137,7 @@ export declare const DashboardSelectors: {
|
|
|
133
137
|
[key: string]: number;
|
|
134
138
|
} | undefined;
|
|
135
139
|
filters?: Filter[] | undefined;
|
|
140
|
+
html?: string | undefined;
|
|
136
141
|
}) => {
|
|
137
142
|
[key: string]: {
|
|
138
143
|
windowIndex: number;
|
|
@@ -252,6 +257,7 @@ export declare const DashboardSelectors: {
|
|
|
252
257
|
[key: string]: number;
|
|
253
258
|
} | undefined;
|
|
254
259
|
filters?: Filter[] | undefined;
|
|
260
|
+
html?: string | undefined;
|
|
255
261
|
}, (s1: {
|
|
256
262
|
sender: string;
|
|
257
263
|
tenants: string[];
|
|
@@ -266,6 +272,7 @@ export declare const DashboardSelectors: {
|
|
|
266
272
|
[key: string]: number;
|
|
267
273
|
} | undefined;
|
|
268
274
|
filters?: Filter[] | undefined;
|
|
275
|
+
html?: string | undefined;
|
|
269
276
|
}>;
|
|
270
277
|
loading: MemoizedSelector<object, boolean, (s1: {
|
|
271
278
|
sender: string;
|
|
@@ -315,6 +322,7 @@ export declare const DashboardSelectors: {
|
|
|
315
322
|
[key: string]: number;
|
|
316
323
|
} | undefined;
|
|
317
324
|
filters?: Filter[] | undefined;
|
|
325
|
+
html?: string | undefined;
|
|
318
326
|
}) => boolean>;
|
|
319
327
|
isCurrentPresentationOwner: MemoizedSelector<object, boolean, (s1: {
|
|
320
328
|
current: import("../../core/model/manifest.interface").ManifestDescription | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -102,18 +102,18 @@
|
|
|
102
102
|
"esm": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
103
103
|
"default": "./fesm2022/provoly-dashboard-notification.mjs"
|
|
104
104
|
},
|
|
105
|
-
"./presentation": {
|
|
106
|
-
"types": "./presentation/index.d.ts",
|
|
107
|
-
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
108
|
-
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
109
|
-
"default": "./fesm2022/provoly-dashboard-presentation.mjs"
|
|
110
|
-
},
|
|
111
105
|
"./pipeline": {
|
|
112
106
|
"types": "./pipeline/index.d.ts",
|
|
113
107
|
"esm2022": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
114
108
|
"esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
115
109
|
"default": "./fesm2022/provoly-dashboard-pipeline.mjs"
|
|
116
110
|
},
|
|
111
|
+
"./presentation": {
|
|
112
|
+
"types": "./presentation/index.d.ts",
|
|
113
|
+
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
114
|
+
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
115
|
+
"default": "./fesm2022/provoly-dashboard-presentation.mjs"
|
|
116
|
+
},
|
|
117
117
|
"./restitution": {
|
|
118
118
|
"types": "./restitution/index.d.ts",
|
|
119
119
|
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
@@ -132,6 +132,36 @@
|
|
|
132
132
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
133
133
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
134
134
|
},
|
|
135
|
+
"./filters/autocomplete": {
|
|
136
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
137
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
138
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
139
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
140
|
+
},
|
|
141
|
+
"./filters/date": {
|
|
142
|
+
"types": "./filters/date/index.d.ts",
|
|
143
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
144
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
145
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
146
|
+
},
|
|
147
|
+
"./filters/list": {
|
|
148
|
+
"types": "./filters/list/index.d.ts",
|
|
149
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
150
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
151
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
152
|
+
},
|
|
153
|
+
"./filters/number": {
|
|
154
|
+
"types": "./filters/number/index.d.ts",
|
|
155
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
156
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
157
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
158
|
+
},
|
|
159
|
+
"./filters/text": {
|
|
160
|
+
"types": "./filters/text/index.d.ts",
|
|
161
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
162
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
163
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
164
|
+
},
|
|
135
165
|
"./components/card": {
|
|
136
166
|
"types": "./components/card/index.d.ts",
|
|
137
167
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -186,36 +216,6 @@
|
|
|
186
216
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
187
217
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
188
218
|
},
|
|
189
|
-
"./filters/autocomplete": {
|
|
190
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
191
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
192
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
193
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
194
|
-
},
|
|
195
|
-
"./filters/date": {
|
|
196
|
-
"types": "./filters/date/index.d.ts",
|
|
197
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
198
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
199
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
200
|
-
},
|
|
201
|
-
"./filters/list": {
|
|
202
|
-
"types": "./filters/list/index.d.ts",
|
|
203
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
204
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
205
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
206
|
-
},
|
|
207
|
-
"./filters/number": {
|
|
208
|
-
"types": "./filters/number/index.d.ts",
|
|
209
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
210
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
211
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
212
|
-
},
|
|
213
|
-
"./filters/text": {
|
|
214
|
-
"types": "./filters/text/index.d.ts",
|
|
215
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
216
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
217
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
218
|
-
},
|
|
219
219
|
"./pipeline-components/filter": {
|
|
220
220
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
221
221
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Store } from '@ngrx/store';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import {
|
|
3
|
+
import { GlobalManifest } from '@provoly/dashboard';
|
|
4
4
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
5
5
|
import { ToolboxActionComponent } from '../toolbox-action/toolbox-action.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class DashboardDetailsComponent extends ToolboxActionComponent {
|
|
8
8
|
isPanelOpen: boolean;
|
|
9
9
|
panelPosition: ConnectedPosition[];
|
|
10
|
-
|
|
10
|
+
globalManifest$: Observable<GlobalManifest>;
|
|
11
11
|
constructor(store: Store);
|
|
12
12
|
openPanel($event: Event): void;
|
|
13
13
|
closePanel($event: Event | void): void;
|
|
@@ -16,6 +16,15 @@
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
#dashboard-details-panel {
|
|
19
|
+
background-color: themed($theme-map, 'color', 'primary', 50);
|
|
20
|
+
box-shadow: themed($theme-map, 'decoration', 'shadow', 'modal');
|
|
21
|
+
width: 100%;
|
|
22
|
+
max-width: toRem(500);
|
|
23
|
+
overflow-x: hidden;
|
|
24
|
+
overflow-y: auto;
|
|
25
|
+
max-height: toRem(400);
|
|
26
|
+
padding: toRem(8) toRem(15) toRem(15) toRem(10);
|
|
27
|
+
|
|
19
28
|
.o-modal__top {
|
|
20
29
|
margin: 0;
|
|
21
30
|
padding: 0;
|
|
@@ -58,10 +67,3 @@
|
|
|
58
67
|
}
|
|
59
68
|
}
|
|
60
69
|
|
|
61
|
-
.o-modal-wrapper {
|
|
62
|
-
&:has(#dashboard-details-panel) {
|
|
63
|
-
max-height: toRem(400);
|
|
64
|
-
padding: toRem(8) toRem(15) toRem(15) toRem(10);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|