@provoly/dashboard 0.20.2 → 0.20.3
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/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.d.ts +5 -2
- package/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.d.ts +1 -1
- package/admin/i18n/en.translations.d.ts +1 -0
- package/admin/i18n/fr.translations.d.ts +1 -0
- package/esm2022/admin/components/admin-classes/admin-classes-customize/admin-classes-customize.component.mjs +5 -5
- package/esm2022/admin/components/admin-classes/admin-classes-customize/tooltip/admin-classes-customize-tooltip.component.mjs +3 -3
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +36 -11
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-new/admin-attributes-new.component.mjs +1 -1
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-select/admin-attributes-select.component.mjs +3 -3
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-classes-view.component.mjs +3 -3
- package/esm2022/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.mjs +2 -2
- package/esm2022/admin/i18n/en.translations.mjs +3 -2
- package/esm2022/admin/i18n/fr.translations.mjs +3 -2
- package/esm2022/lib/core/model/admin-api.model.mjs +1 -1
- package/esm2022/lib/core/model/filter.interface.mjs +1 -1
- package/esm2022/lib/core/store/class/class.interface.mjs +1 -1
- package/esm2022/lib/core/store/class/class.selectors.mjs +6 -2
- package/esm2022/lib/core/store/search/search.service.mjs +1 -1
- package/esm2022/lib/dashboard/components/context-menu/object-edition/object-edition.component.mjs +26 -26
- package/esm2022/lib/dashboard/item-utils.mjs +7 -7
- package/esm2022/pipeline/store/pipeline.actions.mjs +1 -1
- package/esm2022/pipeline-components/filter/component/filter.component.mjs +4 -4
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -3
- package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +12 -12
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +4 -4
- package/esm2022/widgets/widget-map/pipe/widget-map-geometry-fields-for.pipe.mjs +3 -3
- package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +2 -2
- package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +6 -6
- package/esm2022/widgets/widget-table/component/widget-table.component.mjs +4 -4
- package/esm2022/widgets/widget-table/get-value/get-value.pipe.mjs +2 -2
- package/fesm2022/provoly-dashboard-admin.mjs +49 -22
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-pipeline-components-filter.mjs +3 -3
- package/fesm2022/provoly-dashboard-pipeline-components-filter.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-pipeline.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +2 -2
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +11 -11
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +11 -11
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +4 -4
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +36 -32
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/admin-api.model.d.ts +1 -0
- package/lib/core/model/filter.interface.d.ts +1 -1
- package/lib/core/store/class/class.interface.d.ts +1 -0
- package/lib/core/store/class/class.selectors.d.ts +105 -5
- package/lib/core/store/search/search.service.d.ts +1 -1
- package/package.json +7 -7
- package/pipeline/store/pipeline.actions.d.ts +1 -1
- package/styles-theme/components-theme/_a-pry-select.theme.scss +1 -1
- package/toolbox/components/filter-settings/filter-settings.component.d.ts +2 -2
|
@@ -3,12 +3,112 @@ import * as fromClass from './class.reducer';
|
|
|
3
3
|
export declare const ClassSelectors: {
|
|
4
4
|
feature: import("@ngrx/store").MemoizedSelector<object, fromClass.ClassState, import("@ngrx/store").DefaultProjectorFn<fromClass.ClassState>>;
|
|
5
5
|
entities: import("@ngrx/store").MemoizedSelector<object, import("@ngrx/entity").Dictionary<Class>, (s1: fromClass.ClassState) => import("@ngrx/entity").Dictionary<Class>>;
|
|
6
|
-
classes: import("@ngrx/store").MemoizedSelector<object,
|
|
6
|
+
classes: import("@ngrx/store").MemoizedSelector<object, {
|
|
7
|
+
attributes: {
|
|
8
|
+
technicalName: string;
|
|
9
|
+
id: string;
|
|
10
|
+
name: string;
|
|
11
|
+
field: string;
|
|
12
|
+
category?: string | undefined;
|
|
13
|
+
multiValued: boolean;
|
|
14
|
+
}[];
|
|
15
|
+
id: string;
|
|
16
|
+
name: string;
|
|
17
|
+
icon?: string | undefined;
|
|
18
|
+
storage?: string | undefined;
|
|
19
|
+
}[], (s1: Class[]) => {
|
|
20
|
+
attributes: {
|
|
21
|
+
technicalName: string;
|
|
22
|
+
id: string;
|
|
23
|
+
name: string;
|
|
24
|
+
field: string;
|
|
25
|
+
category?: string | undefined;
|
|
26
|
+
multiValued: boolean;
|
|
27
|
+
}[];
|
|
28
|
+
id: string;
|
|
29
|
+
name: string;
|
|
30
|
+
icon?: string | undefined;
|
|
31
|
+
storage?: string | undefined;
|
|
32
|
+
}[]>;
|
|
7
33
|
classById: (id: string) => any;
|
|
8
|
-
classByAttributeId: (attribute: string) => import("@ngrx/store").MemoizedSelector<object, Class | undefined, (s1:
|
|
9
|
-
|
|
10
|
-
|
|
34
|
+
classByAttributeId: (attribute: string) => import("@ngrx/store").MemoizedSelector<object, Class | undefined, (s1: {
|
|
35
|
+
attributes: {
|
|
36
|
+
technicalName: string;
|
|
37
|
+
id: string;
|
|
38
|
+
name: string;
|
|
39
|
+
field: string;
|
|
40
|
+
category?: string | undefined;
|
|
41
|
+
multiValued: boolean;
|
|
42
|
+
}[];
|
|
43
|
+
id: string;
|
|
44
|
+
name: string;
|
|
45
|
+
icon?: string | undefined;
|
|
46
|
+
storage?: string | undefined;
|
|
47
|
+
}[]) => Class | undefined>;
|
|
48
|
+
attributesByFieldId: (field: string) => import("@ngrx/store").MemoizedSelector<object, import("./class.interface").Attribute[], (s1: {
|
|
49
|
+
attributes: {
|
|
50
|
+
technicalName: string;
|
|
51
|
+
id: string;
|
|
52
|
+
name: string;
|
|
53
|
+
field: string;
|
|
54
|
+
category?: string | undefined;
|
|
55
|
+
multiValued: boolean;
|
|
56
|
+
}[];
|
|
57
|
+
id: string;
|
|
58
|
+
name: string;
|
|
59
|
+
icon?: string | undefined;
|
|
60
|
+
storage?: string | undefined;
|
|
61
|
+
}[]) => import("./class.interface").Attribute[]>;
|
|
62
|
+
allAttributes: import("@ngrx/store").MemoizedSelector<object, {
|
|
63
|
+
technicalName: string;
|
|
64
|
+
id: string;
|
|
65
|
+
name: string;
|
|
66
|
+
field: string;
|
|
67
|
+
category?: string | undefined;
|
|
68
|
+
multiValued: boolean;
|
|
69
|
+
}[], (s1: {
|
|
70
|
+
attributes: {
|
|
71
|
+
technicalName: string;
|
|
72
|
+
id: string;
|
|
73
|
+
name: string;
|
|
74
|
+
field: string;
|
|
75
|
+
category?: string | undefined;
|
|
76
|
+
multiValued: boolean;
|
|
77
|
+
}[];
|
|
78
|
+
id: string;
|
|
79
|
+
name: string;
|
|
80
|
+
icon?: string | undefined;
|
|
81
|
+
storage?: string | undefined;
|
|
82
|
+
}[]) => {
|
|
83
|
+
technicalName: string;
|
|
84
|
+
id: string;
|
|
85
|
+
name: string;
|
|
86
|
+
field: string;
|
|
87
|
+
category?: string | undefined;
|
|
88
|
+
multiValued: boolean;
|
|
89
|
+
}[]>;
|
|
11
90
|
classDatas: import("@ngrx/store").MemoizedSelector<object, import("./class.interface").BusinessData[], (s1: fromClass.ClassState) => import("./class.interface").BusinessData[]>;
|
|
12
91
|
datasetCounts: import("@ngrx/store").MemoizedSelector<object, import("@provoly/dashboard").DatasetCount[], (s1: fromClass.ClassState) => import("@provoly/dashboard").DatasetCount[]>;
|
|
13
|
-
getAttributeById: (id: string) => import("@ngrx/store").MemoizedSelector<object,
|
|
92
|
+
getAttributeById: (id: string) => import("@ngrx/store").MemoizedSelector<object, {
|
|
93
|
+
technicalName: string;
|
|
94
|
+
id: string;
|
|
95
|
+
name: string;
|
|
96
|
+
field: string;
|
|
97
|
+
category?: string | undefined;
|
|
98
|
+
multiValued: boolean;
|
|
99
|
+
}[], (s1: {
|
|
100
|
+
technicalName: string;
|
|
101
|
+
id: string;
|
|
102
|
+
name: string;
|
|
103
|
+
field: string;
|
|
104
|
+
category?: string | undefined;
|
|
105
|
+
multiValued: boolean;
|
|
106
|
+
}[]) => {
|
|
107
|
+
technicalName: string;
|
|
108
|
+
id: string;
|
|
109
|
+
name: string;
|
|
110
|
+
field: string;
|
|
111
|
+
category?: string | undefined;
|
|
112
|
+
multiValued: boolean;
|
|
113
|
+
}[]>;
|
|
14
114
|
};
|
|
@@ -42,7 +42,7 @@ export declare class SearchService {
|
|
|
42
42
|
applyTransformations(id: string, rs: ResultSet): ResultSet;
|
|
43
43
|
autocomplete(attributes: {
|
|
44
44
|
id: string;
|
|
45
|
-
|
|
45
|
+
technicalName: string;
|
|
46
46
|
label: string;
|
|
47
47
|
datasource: string;
|
|
48
48
|
}[] | undefined, search?: string, limit?: number): Observable<string[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.3",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "14.x || 15.x || 16.x",
|
|
@@ -301,6 +301,12 @@
|
|
|
301
301
|
"esm": "./esm2022/widgets/widget-image/provoly-dashboard-widgets-widget-image.mjs",
|
|
302
302
|
"default": "./fesm2022/provoly-dashboard-widgets-widget-image.mjs"
|
|
303
303
|
},
|
|
304
|
+
"./widgets/widget-map": {
|
|
305
|
+
"types": "./widgets/widget-map/index.d.ts",
|
|
306
|
+
"esm2022": "./esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs",
|
|
307
|
+
"esm": "./esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs",
|
|
308
|
+
"default": "./fesm2022/provoly-dashboard-widgets-widget-map.mjs"
|
|
309
|
+
},
|
|
304
310
|
"./widgets/widget-table": {
|
|
305
311
|
"types": "./widgets/widget-table/index.d.ts",
|
|
306
312
|
"esm2022": "./esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs",
|
|
@@ -313,12 +319,6 @@
|
|
|
313
319
|
"esm": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
|
|
314
320
|
"default": "./fesm2022/provoly-dashboard-widgets-widget-template.mjs"
|
|
315
321
|
},
|
|
316
|
-
"./widgets/widget-map": {
|
|
317
|
-
"types": "./widgets/widget-map/index.d.ts",
|
|
318
|
-
"esm2022": "./esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs",
|
|
319
|
-
"esm": "./esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs",
|
|
320
|
-
"default": "./fesm2022/provoly-dashboard-widgets-widget-map.mjs"
|
|
321
|
-
},
|
|
322
322
|
"./widgets/widget-tile": {
|
|
323
323
|
"types": "./widgets/widget-tile/index.d.ts",
|
|
324
324
|
"esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
|
|
@@ -13,7 +13,7 @@ export declare enum FilterSteps {
|
|
|
13
13
|
}
|
|
14
14
|
export interface Attribute {
|
|
15
15
|
id: string;
|
|
16
|
-
|
|
16
|
+
technicalName: string;
|
|
17
17
|
label: string;
|
|
18
18
|
datasource: string;
|
|
19
19
|
type: FieldType;
|
|
@@ -49,7 +49,7 @@ export declare class PryFilterSettingsComponent extends ToolboxActionComponent {
|
|
|
49
49
|
classes: Class[];
|
|
50
50
|
attributes$: Observable<{
|
|
51
51
|
id: string;
|
|
52
|
-
|
|
52
|
+
technicalName: string;
|
|
53
53
|
label: string;
|
|
54
54
|
datasource: string;
|
|
55
55
|
type: string;
|