@provoly/dashboard 1.2.1 → 1.2.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-dataset/admin-select-dataset/admin-select-dataset.component.d.ts +3 -3
- package/components/data-format/data-format.module.d.ts +7 -0
- package/components/data-format/data-format.pipe.d.ts +8 -0
- package/components/data-format/index.d.ts +5 -0
- package/components/data-format/public-api.d.ts +2 -0
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +6 -6
- package/esm2022/components/data-format/data-format.module.mjs +16 -0
- package/esm2022/components/data-format/data-format.pipe.mjs +32 -0
- package/esm2022/components/data-format/provoly-dashboard-components-data-format.mjs +5 -0
- package/esm2022/components/data-format/public-api.mjs +3 -0
- package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +28 -21
- package/esm2022/lib/core/components/share/legacy-share/share.component.mjs +25 -37
- package/esm2022/lib/core/components/share/share.model.mjs +2 -7
- package/esm2022/lib/core/model/widget.interface.mjs +1 -1
- package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +2 -2
- package/esm2022/lib/core/store/data-source/data-source.actions.mjs +1 -1
- package/esm2022/lib/core/store/data-source/data-source.model.mjs +7 -2
- package/esm2022/lib/core/toolbox/toolbox-menu.service.mjs +3 -6
- package/esm2022/restitution/components/restitution/restitution.component.mjs +8 -12
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +4 -5
- package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +2 -2
- package/esm2022/restitution/components/restitution-list-item/restitution-list-item.component.mjs +4 -5
- package/esm2022/search/components/save-query/save-query.component.mjs +2 -2
- package/esm2022/search/search-tools/search-tools.component.mjs +1 -1
- package/esm2022/widgets/widget-analytic/component/widget-analytic.component.mjs +4 -3
- package/esm2022/widgets/widget-analytic/widget-analytic.module.mjs +8 -4
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +21 -11
- package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
- package/esm2022/widgets/widget-table/expand-value/format-number.pipe.mjs +7 -12
- package/fesm2022/provoly-dashboard-admin.mjs +5 -5
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-components-data-format.mjs +52 -0
- package/fesm2022/provoly-dashboard-components-data-format.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-restitution.mjs +11 -17
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-search.mjs +2 -2
- package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs +10 -5
- package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +22 -12
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +13 -17
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +102 -107
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/components/share/group-share/group-share.component.d.ts +15 -10
- package/lib/core/components/share/legacy-share/share.component.d.ts +8 -14
- package/lib/core/components/share/share.model.d.ts +0 -9
- package/lib/core/model/widget.interface.d.ts +1 -2
- package/lib/core/store/data-source/data-source.actions.d.ts +9 -4
- package/lib/core/store/data-source/data-source.model.d.ts +9 -2
- package/lib/core/toolbox/toolbox-menu.service.d.ts +1 -3
- package/package.json +37 -31
- package/restitution/components/restitution/restitution.component.d.ts +2 -3
- package/restitution/components/restitution-catalog/restitution-catalog.component.d.ts +1 -2
- package/restitution/components/restitution-list-item/restitution-list-item.component.d.ts +1 -2
- package/search/components/save-query/save-query.component.d.ts +5 -2
- package/search/search-fulltext/store/search-fulltext.effects.d.ts +4 -1
- package/search/search-mono-class/store/search-mono-class.effects.d.ts +4 -1
- package/search/search-multi-class/store/search-multi-class.effects.d.ts +4 -1
- package/styles/base/_utils.scss +4 -0
- package/styles-theme/main-theme.scss +0 -1
- package/widgets/widget-analytic/component/widget-analytic.component.d.ts +1 -1
- package/widgets/widget-analytic/widget-analytic.module.d.ts +2 -1
- package/widgets/widget-map/component/widget-map.component.d.ts +4 -2
- package/widgets/widget-map/style/_m-layer-legend.scss +41 -56
- package/widgets/widget-table/expand-value/format-number.pipe.d.ts +1 -3
- package/styles-theme/components-theme/_m-layer-legend.theme.scss +0 -24
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
import { DecimalPipe } from '@angular/common';
|
|
2
1
|
import { PipeTransform } from '@angular/core';
|
|
3
2
|
import { PryI18nService, ValueType } from '@provoly/dashboard';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class FormatNumberPipe implements PipeTransform {
|
|
6
|
-
private decimalPipe;
|
|
7
5
|
private i18nService;
|
|
8
|
-
constructor(
|
|
6
|
+
constructor(i18nService: PryI18nService);
|
|
9
7
|
transform(toDisplay?: ValueType | ValueType[] | null, ...args: any[]): any;
|
|
10
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormatNumberPipe, never>;
|
|
11
9
|
static ɵpipe: i0.ɵɵPipeDeclaration<FormatNumberPipe, "formatNumber", false>;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
@use '../../styles/abstracts' as *;
|
|
2
|
-
@use '../abstracts-theme/variables.theme' as *;
|
|
3
|
-
|
|
4
|
-
/* Theme Molecules - m-map-layer-action, m-layer-legend, m-map-slide-legend */
|
|
5
|
-
|
|
6
|
-
.m-map-layer-action {
|
|
7
|
-
color: themed($theme-map, 'color', 'primary', 750);
|
|
8
|
-
|
|
9
|
-
&__container {
|
|
10
|
-
background-color: themed($theme-map, 'color', 'primary', 'contrast', 50);
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.m-layer-switcher {
|
|
15
|
-
&--radios {
|
|
16
|
-
display: flex;
|
|
17
|
-
flex-direction: column;
|
|
18
|
-
gap: toRem(5);
|
|
19
|
-
|
|
20
|
-
input {
|
|
21
|
-
accent-color: themed($theme-map, 'color', 'primary', 600);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|