@provoly/dashboard 0.24.0 → 0.24.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/assets/svgs/dashboard-about.svg +4 -0
- package/esm2022/lib/core/i18n/en.translations.mjs +2 -1
- package/esm2022/lib/core/i18n/fr.translations.mjs +2 -1
- package/esm2022/lib/core/model/display-options.interface.mjs +7 -4
- package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
- package/esm2022/toolbox/components/dashboard-details/dashboard-details.component.mjs +45 -0
- package/esm2022/toolbox/components/toolbox.component.mjs +9 -9
- package/esm2022/toolbox/public-api.mjs +13 -12
- package/esm2022/toolbox/style/css.component.mjs +3 -3
- package/esm2022/toolbox/toolbox.model.mjs +10 -2
- package/esm2022/toolbox/toolbox.module.mjs +8 -4
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +3 -3
- package/fesm2022/provoly-dashboard-toolbox.mjs +54 -9
- 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.mjs +8 -3
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/i18n/en.translations.d.ts +1 -0
- package/lib/core/i18n/fr.translations.d.ts +1 -0
- package/lib/core/model/display-options.interface.d.ts +1 -0
- package/lib/core/model/manifest.interface.d.ts +1 -0
- package/package.json +7 -7
- package/styles-theme/abstracts-theme/variables/_variables-colors.scss +1 -0
- package/styles-theme/abstracts-theme/variables/_variables-decoration.scss +1 -1
- package/toolbox/components/dashboard-details/dashboard-details.component.d.ts +16 -0
- package/toolbox/public-api.d.ts +12 -11
- package/toolbox/style/_o-dashboard-details.component.scss +67 -0
- package/toolbox/toolbox.module.d.ts +10 -9
|
@@ -276,6 +276,7 @@ const enTranslations$1 = {
|
|
|
276
276
|
NAME_ALREADY_USED: 'A restitution called "{{name}}" already exists, please select another name.'
|
|
277
277
|
}
|
|
278
278
|
},
|
|
279
|
+
about: 'About',
|
|
279
280
|
edit: 'Modify layout',
|
|
280
281
|
editOff: 'Visualize layout',
|
|
281
282
|
launch: 'New tab',
|
|
@@ -672,6 +673,7 @@ const frTranslations$1 = {
|
|
|
672
673
|
},
|
|
673
674
|
saved: 'Présentation {{viewId}} sauvegardée'
|
|
674
675
|
},
|
|
676
|
+
about: 'À propos',
|
|
675
677
|
edit: 'Modifier la disposition',
|
|
676
678
|
editOff: 'Visualiser la disposition',
|
|
677
679
|
launch: 'Nouvelle page',
|
|
@@ -3913,7 +3915,8 @@ const BASE_DISPLAY_OPTIONS = {
|
|
|
3913
3915
|
automate_refresh: false,
|
|
3914
3916
|
edit_presentation_content: false,
|
|
3915
3917
|
share: false,
|
|
3916
|
-
delete: false
|
|
3918
|
+
delete: false,
|
|
3919
|
+
dashboard_details: false
|
|
3917
3920
|
},
|
|
3918
3921
|
edit_toggle: false,
|
|
3919
3922
|
widgetContextMenu: {
|
|
@@ -3938,7 +3941,8 @@ function getDisplayOptions(mode) {
|
|
|
3938
3941
|
refresh_datasets: true,
|
|
3939
3942
|
edit_presentation_content: true,
|
|
3940
3943
|
share: true,
|
|
3941
|
-
delete: true
|
|
3944
|
+
delete: true,
|
|
3945
|
+
dashboard_details: true
|
|
3942
3946
|
},
|
|
3943
3947
|
widgetContextMenu: false
|
|
3944
3948
|
};
|
|
@@ -3967,7 +3971,8 @@ function getDisplayOptions(mode) {
|
|
|
3967
3971
|
automate_refresh: true,
|
|
3968
3972
|
edit_presentation_content: false,
|
|
3969
3973
|
share: true,
|
|
3970
|
-
delete: false
|
|
3974
|
+
delete: false,
|
|
3975
|
+
dashboard_details: true
|
|
3971
3976
|
},
|
|
3972
3977
|
edit_toggle: true,
|
|
3973
3978
|
widgetContextMenu: true
|