@provoly/dashboard 0.24.11 → 0.24.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/filters/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2022/lib/core/components/edit-input/edit-input.component.mjs +3 -3
- package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
- package/esm2022/lib/core/store/search/search.service.mjs +1 -1
- package/esm2022/lib/dashboard/components/dashboard.component.mjs +6 -3
- package/esm2022/search/i18n/en.translations.mjs +5 -4
- package/esm2022/search/i18n/fr.translations.mjs +3 -2
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +8 -4
- package/esm2022/widgets/widget-template/component/widget-template.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +1 -1
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-search.mjs +6 -4
- package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +7 -3
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +6 -4
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/store/search/search.actions.d.ts +0 -4
- package/lib/core/store/search/search.service.d.ts +0 -2
- package/package.json +43 -43
- package/search/i18n/en.translations.d.ts +1 -0
- package/search/i18n/fr.translations.d.ts +1 -0
|
@@ -45,8 +45,6 @@ export declare const SearchActions: {
|
|
|
45
45
|
filterId: string;
|
|
46
46
|
attributes: {
|
|
47
47
|
id: string;
|
|
48
|
-
technicalName: string;
|
|
49
|
-
label: string;
|
|
50
48
|
datasource: string;
|
|
51
49
|
}[];
|
|
52
50
|
limit: number;
|
|
@@ -54,8 +52,6 @@ export declare const SearchActions: {
|
|
|
54
52
|
filterId: string;
|
|
55
53
|
attributes: {
|
|
56
54
|
id: string;
|
|
57
|
-
technicalName: string;
|
|
58
|
-
label: string;
|
|
59
55
|
datasource: string;
|
|
60
56
|
}[];
|
|
61
57
|
limit: number;
|
|
@@ -45,8 +45,6 @@ export declare class SearchService {
|
|
|
45
45
|
applyTransformations(id: string, rs: ResultSet): ResultSet;
|
|
46
46
|
autocomplete(attributes: {
|
|
47
47
|
id: string;
|
|
48
|
-
technicalName: string;
|
|
49
|
-
label: string;
|
|
50
48
|
datasource: string;
|
|
51
49
|
}[] | undefined, search?: string, limit?: number): Observable<string[]>;
|
|
52
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchService, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.12",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -114,54 +114,24 @@
|
|
|
114
114
|
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
115
115
|
"default": "./fesm2022/provoly-dashboard-presentation.mjs"
|
|
116
116
|
},
|
|
117
|
-
"./restitution": {
|
|
118
|
-
"types": "./restitution/index.d.ts",
|
|
119
|
-
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
120
|
-
"esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
121
|
-
"default": "./fesm2022/provoly-dashboard-restitution.mjs"
|
|
122
|
-
},
|
|
123
117
|
"./search": {
|
|
124
118
|
"types": "./search/index.d.ts",
|
|
125
119
|
"esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
126
120
|
"esm": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
127
121
|
"default": "./fesm2022/provoly-dashboard-search.mjs"
|
|
128
122
|
},
|
|
123
|
+
"./restitution": {
|
|
124
|
+
"types": "./restitution/index.d.ts",
|
|
125
|
+
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
126
|
+
"esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
127
|
+
"default": "./fesm2022/provoly-dashboard-restitution.mjs"
|
|
128
|
+
},
|
|
129
129
|
"./toolbox": {
|
|
130
130
|
"types": "./toolbox/index.d.ts",
|
|
131
131
|
"esm2022": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
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
|
-
},
|
|
165
135
|
"./components/card": {
|
|
166
136
|
"types": "./components/card/index.d.ts",
|
|
167
137
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -216,6 +186,36 @@
|
|
|
216
186
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
217
187
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
218
188
|
},
|
|
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",
|
|
@@ -234,18 +234,18 @@
|
|
|
234
234
|
"esm": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
|
|
235
235
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-noop.mjs"
|
|
236
236
|
},
|
|
237
|
-
"./pipeline-components/subgraph": {
|
|
238
|
-
"types": "./pipeline-components/subgraph/index.d.ts",
|
|
239
|
-
"esm2022": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
240
|
-
"esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
241
|
-
"default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
|
|
242
|
-
},
|
|
243
237
|
"./pipeline-components/output-dataset": {
|
|
244
238
|
"types": "./pipeline-components/output-dataset/index.d.ts",
|
|
245
239
|
"esm2022": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
246
240
|
"esm": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
247
241
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs"
|
|
248
242
|
},
|
|
243
|
+
"./pipeline-components/subgraph": {
|
|
244
|
+
"types": "./pipeline-components/subgraph/index.d.ts",
|
|
245
|
+
"esm2022": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
246
|
+
"esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
247
|
+
"default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
|
|
248
|
+
},
|
|
249
249
|
"./tooltips/attribute": {
|
|
250
250
|
"types": "./tooltips/attribute/index.d.ts",
|
|
251
251
|
"esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
|