@provoly/dashboard 0.19.10 → 0.19.12
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/dashboard/components/dashboard.component.mjs +2 -3
- package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +7 -3
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -2
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +3 -17
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +2 -2
- package/esm2022/presentation/components/presentation.component.mjs +4 -3
- package/esm2022/presentation/style/css.component.mjs +2 -2
- package/esm2022/restitution/style/css.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-presentation.mjs +5 -4
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +2 -2
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +10 -22
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +0 -15
- package/lib/dashboard/store/dashboard.effects.d.ts +0 -15
- package/package.json +37 -37
- package/presentation/style/_o-pry-new-presentation.scss +0 -1
- package/presentation/style/_o-pry-presentation.scss +10 -0
- package/styles/layout/_o-manifest-layout.scss +0 -1
- package/styles-theme/components-theme/_o-pry-presentation.theme.scss +8 -0
|
@@ -85,21 +85,6 @@ export declare const DashboardActions: {
|
|
|
85
85
|
manifestId?: string | undefined;
|
|
86
86
|
selectedIds: string[];
|
|
87
87
|
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest but do not activate it">>;
|
|
88
|
-
updateManifestAfterResize: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) updating manifest after resize", (props: {
|
|
89
|
-
tenants?: string[] | undefined;
|
|
90
|
-
manifest: GlobalManifest;
|
|
91
|
-
resultSets?: ResultSets | undefined;
|
|
92
|
-
joining?: boolean | undefined;
|
|
93
|
-
manifestId?: string | undefined;
|
|
94
|
-
selectedIds: string[];
|
|
95
|
-
}) => {
|
|
96
|
-
tenants?: string[] | undefined;
|
|
97
|
-
manifest: GlobalManifest;
|
|
98
|
-
resultSets?: ResultSets | undefined;
|
|
99
|
-
joining?: boolean | undefined;
|
|
100
|
-
manifestId?: string | undefined;
|
|
101
|
-
selectedIds: string[];
|
|
102
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest after resize">>;
|
|
103
88
|
updateManifestAfterTenantJoin: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) updating manifest after tenant join", (props: {
|
|
104
89
|
tenants?: string[] | undefined;
|
|
105
90
|
manifest: GlobalManifest;
|
|
@@ -102,14 +102,6 @@ export declare class DashboardEffects {
|
|
|
102
102
|
sendAggregatesEvent$: import("rxjs").Observable<{
|
|
103
103
|
id: string;
|
|
104
104
|
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) Triggering aggregates for datasource">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
105
|
-
resize$: import("rxjs").Observable<{
|
|
106
|
-
tenants?: string[] | undefined;
|
|
107
|
-
manifest: GlobalManifest;
|
|
108
|
-
resultSets?: import("@provoly/dashboard").ResultSets | undefined;
|
|
109
|
-
joining?: boolean | undefined;
|
|
110
|
-
manifestId?: string | undefined;
|
|
111
|
-
selectedIds: string[];
|
|
112
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest after resize">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
113
105
|
startMissingViewAfterViewUpdate$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] solving collisions"> | import("@ngrx/store/src/models").TypedAction<"[Dashboard] opening missing views for manifest"> | ({
|
|
114
106
|
id?: string | undefined;
|
|
115
107
|
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] request resultSet if not present or params changed">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
@@ -134,13 +126,6 @@ export declare class DashboardEffects {
|
|
|
134
126
|
joining?: boolean | undefined;
|
|
135
127
|
manifestId?: string | undefined;
|
|
136
128
|
selectedIds: string[];
|
|
137
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest after resize">) | ({
|
|
138
|
-
tenants?: string[] | undefined;
|
|
139
|
-
manifest: GlobalManifest;
|
|
140
|
-
resultSets?: import("@provoly/dashboard").ResultSets | undefined;
|
|
141
|
-
joining?: boolean | undefined;
|
|
142
|
-
manifestId?: string | undefined;
|
|
143
|
-
selectedIds: string[];
|
|
144
129
|
presentation?: {
|
|
145
130
|
current?: import("../../core/model/manifest.interface").ManifestDescription | undefined;
|
|
146
131
|
initial?: GlobalManifest | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.12",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "14.x || 15.x || 16.x",
|
|
@@ -139,36 +139,6 @@
|
|
|
139
139
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
140
140
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
141
141
|
},
|
|
142
|
-
"./filters/autocomplete": {
|
|
143
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
144
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
145
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
146
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
147
|
-
},
|
|
148
|
-
"./filters/date": {
|
|
149
|
-
"types": "./filters/date/index.d.ts",
|
|
150
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
151
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
152
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
153
|
-
},
|
|
154
|
-
"./filters/list": {
|
|
155
|
-
"types": "./filters/list/index.d.ts",
|
|
156
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
157
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
158
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
159
|
-
},
|
|
160
|
-
"./filters/number": {
|
|
161
|
-
"types": "./filters/number/index.d.ts",
|
|
162
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
163
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
164
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
165
|
-
},
|
|
166
|
-
"./filters/text": {
|
|
167
|
-
"types": "./filters/text/index.d.ts",
|
|
168
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
169
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
170
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
171
|
-
},
|
|
172
142
|
"./components/card": {
|
|
173
143
|
"types": "./components/card/index.d.ts",
|
|
174
144
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -223,6 +193,36 @@
|
|
|
223
193
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
224
194
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
225
195
|
},
|
|
196
|
+
"./filters/autocomplete": {
|
|
197
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
198
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
199
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
200
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
201
|
+
},
|
|
202
|
+
"./filters/date": {
|
|
203
|
+
"types": "./filters/date/index.d.ts",
|
|
204
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
205
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
206
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
207
|
+
},
|
|
208
|
+
"./filters/list": {
|
|
209
|
+
"types": "./filters/list/index.d.ts",
|
|
210
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
211
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
212
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
213
|
+
},
|
|
214
|
+
"./filters/number": {
|
|
215
|
+
"types": "./filters/number/index.d.ts",
|
|
216
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
217
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
218
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
219
|
+
},
|
|
220
|
+
"./filters/text": {
|
|
221
|
+
"types": "./filters/text/index.d.ts",
|
|
222
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
223
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
224
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
225
|
+
},
|
|
226
226
|
"./pipeline-components/filter": {
|
|
227
227
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
228
228
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -253,18 +253,18 @@
|
|
|
253
253
|
"esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
254
254
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
|
|
255
255
|
},
|
|
256
|
-
"./tooltips/attribute": {
|
|
257
|
-
"types": "./tooltips/attribute/index.d.ts",
|
|
258
|
-
"esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
|
|
259
|
-
"esm": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
|
|
260
|
-
"default": "./fesm2022/provoly-dashboard-tooltips-attribute.mjs"
|
|
261
|
-
},
|
|
262
256
|
"./tooltips/cluster": {
|
|
263
257
|
"types": "./tooltips/cluster/index.d.ts",
|
|
264
258
|
"esm2022": "./esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs",
|
|
265
259
|
"esm": "./esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs",
|
|
266
260
|
"default": "./fesm2022/provoly-dashboard-tooltips-cluster.mjs"
|
|
267
261
|
},
|
|
262
|
+
"./tooltips/attribute": {
|
|
263
|
+
"types": "./tooltips/attribute/index.d.ts",
|
|
264
|
+
"esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
|
|
265
|
+
"esm": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
|
|
266
|
+
"default": "./fesm2022/provoly-dashboard-tooltips-attribute.mjs"
|
|
267
|
+
},
|
|
268
268
|
"./widgets/widget-aggregated-chart": {
|
|
269
269
|
"types": "./widgets/widget-aggregated-chart/index.d.ts",
|
|
270
270
|
"esm2022": "./esm2022/widgets/widget-aggregated-chart/provoly-dashboard-widgets-widget-aggregated-chart.mjs",
|
|
@@ -118,6 +118,9 @@
|
|
|
118
118
|
&__txt {
|
|
119
119
|
flex-grow: 1;
|
|
120
120
|
padding: toRem(10) toRem(15);
|
|
121
|
+
display: flex;
|
|
122
|
+
flex-direction: column;
|
|
123
|
+
justify-content: space-between;
|
|
121
124
|
|
|
122
125
|
.a-h3 {
|
|
123
126
|
font-size: toRem(14);
|
|
@@ -137,6 +140,8 @@
|
|
|
137
140
|
align-content: center;
|
|
138
141
|
justify-content: center;
|
|
139
142
|
font-size: toRem(14);
|
|
143
|
+
line-height: toRem(18);
|
|
144
|
+
padding: toRem(3) 0;
|
|
140
145
|
|
|
141
146
|
.a-btn {
|
|
142
147
|
margin-left: toRem(20); // needed for centering the footer text
|
|
@@ -256,6 +261,11 @@ h1.a-presentation-title {
|
|
|
256
261
|
position: absolute;
|
|
257
262
|
top: toRem(6);
|
|
258
263
|
right: toRem(10);
|
|
264
|
+
|
|
265
|
+
.a-btn {
|
|
266
|
+
padding: toRem(2) 0;
|
|
267
|
+
border-radius: 50%;
|
|
268
|
+
}
|
|
259
269
|
}
|
|
260
270
|
|
|
261
271
|
.m-context-menu {
|