@provoly/dashboard 1.1.10 → 1.1.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/assets/svgs/eye-fill.svg +11 -0
- package/assets/svgs/eye.svg +10 -4
- package/esm2022/import/components/import.component.mjs +6 -4
- package/esm2022/import/style/css.component.mjs +2 -2
- package/esm2022/lib/core/components/modal-status/modal-status.component.mjs +3 -3
- package/esm2022/lib/core/components/share/access-rights-share/access-rights-share.component.mjs +3 -3
- package/esm2022/lib/core/components/share/access-rights-share-modal/access-rights-share-modal.component.mjs +3 -1
- package/esm2022/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +8 -12
- package/esm2022/lib/core/i18n/en.translations.mjs +4 -1
- package/esm2022/lib/core/i18n/fr.translations.mjs +4 -1
- package/esm2022/lib/core/public-api.mjs +2 -1
- package/esm2022/lib/core/store/config/config.selectors.mjs +2 -2
- package/esm2022/lib/core/store/relation-types/relation-types.selectors.mjs +2 -2
- package/esm2022/lib/core/symbol/symbol.service.mjs +4 -4
- package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +2 -2
- package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +2 -2
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -4
- package/esm2022/widgets/widget-aggregated-chart/style/css.component.mjs +2 -2
- package/esm2022/widgets/widget-iframe/component/widget-iframe.component.mjs +3 -3
- package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +1 -1
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +7 -6
- package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
- package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +5 -2
- package/fesm2022/provoly-dashboard-import.mjs +7 -5
- package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +2 -3
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +2 -2
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs +2 -2
- package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +8 -7
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs +4 -1
- package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +24 -18
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/import/style/_o-import.scss +4 -0
- package/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.d.ts +1 -7
- package/lib/core/i18n/en.translations.d.ts +3 -0
- package/lib/core/i18n/fr.translations.d.ts +3 -0
- package/lib/core/public-api.d.ts +1 -0
- package/package.json +37 -37
- package/styles/abstracts/_mixins.scss +1 -1
- package/styles/components/_o-widget.scss +1 -1
- package/styles-theme/abstracts-theme/variables/_variables-typo.scss +5 -5
- package/widgets/widget-aggregated-chart/style/_o-widget-chart.scss +1 -1
- package/widgets/widget-map/style/_m-layer-legend.scss +7 -0
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { Store } from '@ngrx/store';
|
|
3
2
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { PryI18nService } from '../../i18n/i18n.service';
|
|
5
3
|
import { Item } from '../../model/item.interface';
|
|
6
|
-
import { ImageService } from '../../store/image/image.service';
|
|
7
4
|
import { SymbolService } from '../../symbol/symbol.service';
|
|
8
5
|
import * as i0 from "@angular/core";
|
|
9
6
|
export declare class TranslateItemToSymbolPipe implements PipeTransform {
|
|
10
|
-
private store;
|
|
11
|
-
private translateService;
|
|
12
|
-
private imageService;
|
|
13
7
|
private symbolService;
|
|
14
|
-
constructor(
|
|
8
|
+
constructor(symbolService: SymbolService);
|
|
15
9
|
transform(value: Item, ...args: unknown[]): Observable<string>;
|
|
16
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<TranslateItemToSymbolPipe, never>;
|
|
17
11
|
static ɵpipe: i0.ɵɵPipeDeclaration<TranslateItemToSymbolPipe, "translateItemToSymbol", false>;
|
package/lib/core/public-api.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from './store/search/search.constants';
|
|
|
23
23
|
export * from './store/search/search.selectors';
|
|
24
24
|
export * from './store/search/search.service';
|
|
25
25
|
export * from './store/search/search.reducer';
|
|
26
|
+
export * from './store/search/filter-param-encoder';
|
|
26
27
|
export * from './store/search/lat-lon-to-geographic-field-transformation.function';
|
|
27
28
|
export * from './store/category/category.actions';
|
|
28
29
|
export * from './store/category/category.interface';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -108,12 +108,6 @@
|
|
|
108
108
|
"esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
109
109
|
"default": "./fesm2022/provoly-dashboard-pipeline.mjs"
|
|
110
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
111
|
"./restitution": {
|
|
118
112
|
"types": "./restitution/index.d.ts",
|
|
119
113
|
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
@@ -126,42 +120,18 @@
|
|
|
126
120
|
"esm": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
127
121
|
"default": "./fesm2022/provoly-dashboard-search.mjs"
|
|
128
122
|
},
|
|
123
|
+
"./presentation": {
|
|
124
|
+
"types": "./presentation/index.d.ts",
|
|
125
|
+
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
126
|
+
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
127
|
+
"default": "./fesm2022/provoly-dashboard-presentation.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",
|
|
@@ -228,6 +198,36 @@
|
|
|
228
198
|
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
229
199
|
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
230
200
|
},
|
|
201
|
+
"./filters/autocomplete": {
|
|
202
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
203
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
204
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
205
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
206
|
+
},
|
|
207
|
+
"./filters/date": {
|
|
208
|
+
"types": "./filters/date/index.d.ts",
|
|
209
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
210
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
211
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
212
|
+
},
|
|
213
|
+
"./filters/list": {
|
|
214
|
+
"types": "./filters/list/index.d.ts",
|
|
215
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
216
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
217
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
218
|
+
},
|
|
219
|
+
"./filters/number": {
|
|
220
|
+
"types": "./filters/number/index.d.ts",
|
|
221
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
222
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
223
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
224
|
+
},
|
|
225
|
+
"./filters/text": {
|
|
226
|
+
"types": "./filters/text/index.d.ts",
|
|
227
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
228
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
229
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
230
|
+
},
|
|
231
231
|
"./pipeline-components/filter": {
|
|
232
232
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
233
233
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
#{themed($theme-map, 'font', 'font-family-alternative')};
|
|
85
85
|
}
|
|
86
86
|
@if not(empty($font-variation)) {
|
|
87
|
-
font-variation: $font-variation;
|
|
87
|
+
font-variation-settings: $font-variation;
|
|
88
88
|
}
|
|
89
89
|
@if not(empty($font-size)) {
|
|
90
90
|
@include setPropertySize($font-size, 'font-size');
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// Theme typography variables (elements font-family, font-size, line-height, font-weight, font-style)
|
|
2
2
|
|
|
3
|
-
// font-family (
|
|
4
|
-
// font-variation-settings (
|
|
3
|
+
// font-family (optional) - default set in font map ($default-font-family)
|
|
4
|
+
// font-variation-settings (optional)
|
|
5
5
|
// font-size (required) (px are automatically converted to rem) (use 'em' unit to force 'em')
|
|
6
6
|
// line-height (required) (px are automatically converted to rem) (use 'em' unit to force 'em')
|
|
7
|
-
// font-weight (
|
|
8
|
-
// letter-spacing (
|
|
9
|
-
// font-style (
|
|
7
|
+
// font-weight (recommended) - default set in font map ($default-font-weight)
|
|
8
|
+
// letter-spacing (optional) == 'normal' when omitted - (use 'em' unit to force 'em')
|
|
9
|
+
// font-style (optional) - default 'normal'
|
|
10
10
|
|
|
11
11
|
$typography-default-font-family: Ubuntu;
|
|
12
12
|
|
|
@@ -85,11 +85,18 @@
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
.m-layer-switcher {
|
|
88
|
+
max-height: toRem(510);
|
|
89
|
+
|
|
88
90
|
&__group-title {
|
|
89
91
|
font-weight: 700;
|
|
90
92
|
margin-bottom: toRem(5);
|
|
91
93
|
}
|
|
92
94
|
|
|
95
|
+
&__content {
|
|
96
|
+
max-height: toRem(420);
|
|
97
|
+
overflow-y: auto;
|
|
98
|
+
}
|
|
99
|
+
|
|
93
100
|
&__title {
|
|
94
101
|
align-items: flex-start;
|
|
95
102
|
word-break: break-word;
|