@provoly/dashboard 0.13.13 → 0.14.1
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/search/search.actions.mjs +3 -3
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +2 -2
- package/fesm2022/provoly-dashboard.mjs +3 -3
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/store/search/search.actions.d.ts +4 -4
- package/lib/core/store/search/search.effects.d.ts +4 -4
- package/package.json +42 -42
|
@@ -14,7 +14,7 @@ export declare const SearchActions: {
|
|
|
14
14
|
}) => {
|
|
15
15
|
id: string;
|
|
16
16
|
} & import("@ngrx/store/src/models").TypedAction<"[Search] (bus) search named">>;
|
|
17
|
-
searchSuccess: import("@ngrx/store").ActionCreator<"[Search Api] Search Success", (props: {
|
|
17
|
+
searchSuccess: import("@ngrx/store").ActionCreator<"[Search Api] (bus) Search Success", (props: {
|
|
18
18
|
resultSet: ResultSet;
|
|
19
19
|
id?: string | undefined;
|
|
20
20
|
params?: string | undefined;
|
|
@@ -22,12 +22,12 @@ export declare const SearchActions: {
|
|
|
22
22
|
resultSet: ResultSet;
|
|
23
23
|
id?: string | undefined;
|
|
24
24
|
params?: string | undefined;
|
|
25
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] Search Success">>;
|
|
26
|
-
searchFailure: import("@ngrx/store").ActionCreator<"[Search Api] Search Failure", (props: {
|
|
25
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) Search Success">>;
|
|
26
|
+
searchFailure: import("@ngrx/store").ActionCreator<"[Search Api] (bus) Search Failure", (props: {
|
|
27
27
|
error: any;
|
|
28
28
|
id?: string | undefined;
|
|
29
29
|
}) => {
|
|
30
30
|
error: any;
|
|
31
31
|
id?: string | undefined;
|
|
32
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] Search Failure">>;
|
|
32
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) Search Failure">>;
|
|
33
33
|
};
|
|
@@ -11,18 +11,18 @@ export declare class SearchEffects {
|
|
|
11
11
|
resultSet: import("@provoly/dashboard").ResultSet;
|
|
12
12
|
id?: string | undefined;
|
|
13
13
|
params?: string | undefined;
|
|
14
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] Search Success">) | ({
|
|
14
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) Search Success">) | ({
|
|
15
15
|
error: any;
|
|
16
16
|
id?: string | undefined;
|
|
17
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] Search Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
17
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) Search Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
18
18
|
search$: import("rxjs").Observable<({
|
|
19
19
|
resultSet: import("@provoly/dashboard").ResultSet;
|
|
20
20
|
id?: string | undefined;
|
|
21
21
|
params?: string | undefined;
|
|
22
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] Search Success">) | ({
|
|
22
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) Search Success">) | ({
|
|
23
23
|
error: any;
|
|
24
24
|
id?: string | undefined;
|
|
25
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] Search Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
25
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) Search Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
26
26
|
searchSuccess$: import("rxjs").Observable<{
|
|
27
27
|
id: string;
|
|
28
28
|
resultSet: import("@provoly/dashboard").ResultSet;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "15.x || 16.x",
|
|
@@ -86,23 +86,17 @@
|
|
|
86
86
|
"esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
|
|
87
87
|
"default": "./fesm2022/provoly-dashboard-admin.mjs"
|
|
88
88
|
},
|
|
89
|
-
"./dataset": {
|
|
90
|
-
"types": "./dataset/index.d.ts",
|
|
91
|
-
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
92
|
-
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
93
|
-
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
94
|
-
},
|
|
95
89
|
"./import": {
|
|
96
90
|
"types": "./import/index.d.ts",
|
|
97
91
|
"esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
98
92
|
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
99
93
|
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
100
94
|
},
|
|
101
|
-
"./
|
|
102
|
-
"types": "./
|
|
103
|
-
"esm2022": "./esm2022/
|
|
104
|
-
"esm": "./esm2022/
|
|
105
|
-
"default": "./fesm2022/provoly-dashboard-
|
|
95
|
+
"./dataset": {
|
|
96
|
+
"types": "./dataset/index.d.ts",
|
|
97
|
+
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
98
|
+
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
99
|
+
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
106
100
|
},
|
|
107
101
|
"./notification": {
|
|
108
102
|
"types": "./notification/index.d.ts",
|
|
@@ -110,6 +104,12 @@
|
|
|
110
104
|
"esm": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
111
105
|
"default": "./fesm2022/provoly-dashboard-notification.mjs"
|
|
112
106
|
},
|
|
107
|
+
"./pipeline": {
|
|
108
|
+
"types": "./pipeline/index.d.ts",
|
|
109
|
+
"esm2022": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
110
|
+
"esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
111
|
+
"default": "./fesm2022/provoly-dashboard-pipeline.mjs"
|
|
112
|
+
},
|
|
113
113
|
"./presentation": {
|
|
114
114
|
"types": "./presentation/index.d.ts",
|
|
115
115
|
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
@@ -140,30 +140,6 @@
|
|
|
140
140
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
141
141
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
142
142
|
},
|
|
143
|
-
"./filters/date": {
|
|
144
|
-
"types": "./filters/date/index.d.ts",
|
|
145
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
146
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
147
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
148
|
-
},
|
|
149
|
-
"./filters/list": {
|
|
150
|
-
"types": "./filters/list/index.d.ts",
|
|
151
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
152
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
153
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
154
|
-
},
|
|
155
|
-
"./filters/number": {
|
|
156
|
-
"types": "./filters/number/index.d.ts",
|
|
157
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
158
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
159
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
160
|
-
},
|
|
161
|
-
"./filters/text": {
|
|
162
|
-
"types": "./filters/text/index.d.ts",
|
|
163
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
164
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
165
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
166
|
-
},
|
|
167
143
|
"./components/card": {
|
|
168
144
|
"types": "./components/card/index.d.ts",
|
|
169
145
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -206,6 +182,30 @@
|
|
|
206
182
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
207
183
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
208
184
|
},
|
|
185
|
+
"./filters/date": {
|
|
186
|
+
"types": "./filters/date/index.d.ts",
|
|
187
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
188
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
189
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
190
|
+
},
|
|
191
|
+
"./filters/list": {
|
|
192
|
+
"types": "./filters/list/index.d.ts",
|
|
193
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
194
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
195
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
196
|
+
},
|
|
197
|
+
"./filters/number": {
|
|
198
|
+
"types": "./filters/number/index.d.ts",
|
|
199
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
200
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
201
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
202
|
+
},
|
|
203
|
+
"./filters/text": {
|
|
204
|
+
"types": "./filters/text/index.d.ts",
|
|
205
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
206
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
207
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
208
|
+
},
|
|
209
209
|
"./pipeline-components/filter": {
|
|
210
210
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
211
211
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -254,18 +254,18 @@
|
|
|
254
254
|
"esm": "./esm2022/widgets/widget-aggregated-chart/provoly-dashboard-widgets-widget-aggregated-chart.mjs",
|
|
255
255
|
"default": "./fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs"
|
|
256
256
|
},
|
|
257
|
-
"./widgets/widget-detail": {
|
|
258
|
-
"types": "./widgets/widget-detail/index.d.ts",
|
|
259
|
-
"esm2022": "./esm2022/widgets/widget-detail/provoly-dashboard-widgets-widget-detail.mjs",
|
|
260
|
-
"esm": "./esm2022/widgets/widget-detail/provoly-dashboard-widgets-widget-detail.mjs",
|
|
261
|
-
"default": "./fesm2022/provoly-dashboard-widgets-widget-detail.mjs"
|
|
262
|
-
},
|
|
263
257
|
"./widgets/widget-chart": {
|
|
264
258
|
"types": "./widgets/widget-chart/index.d.ts",
|
|
265
259
|
"esm2022": "./esm2022/widgets/widget-chart/provoly-dashboard-widgets-widget-chart.mjs",
|
|
266
260
|
"esm": "./esm2022/widgets/widget-chart/provoly-dashboard-widgets-widget-chart.mjs",
|
|
267
261
|
"default": "./fesm2022/provoly-dashboard-widgets-widget-chart.mjs"
|
|
268
262
|
},
|
|
263
|
+
"./widgets/widget-detail": {
|
|
264
|
+
"types": "./widgets/widget-detail/index.d.ts",
|
|
265
|
+
"esm2022": "./esm2022/widgets/widget-detail/provoly-dashboard-widgets-widget-detail.mjs",
|
|
266
|
+
"esm": "./esm2022/widgets/widget-detail/provoly-dashboard-widgets-widget-detail.mjs",
|
|
267
|
+
"default": "./fesm2022/provoly-dashboard-widgets-widget-detail.mjs"
|
|
268
|
+
},
|
|
269
269
|
"./widgets/widget-graph": {
|
|
270
270
|
"types": "./widgets/widget-graph/index.d.ts",
|
|
271
271
|
"esm2022": "./esm2022/widgets/widget-graph/provoly-dashboard-widgets-widget-graph.mjs",
|