@provoly/dashboard 1.1.6 → 1.1.8
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/lib/core/components/share/access-rights-share/access-rights-share.component.mjs +17 -6
- package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +3 -2
- package/esm2022/lib/core/components/share/share.utils.mjs +10 -7
- package/esm2022/lib/core/i18n/en.translations.mjs +3 -2
- package/esm2022/lib/core/i18n/fr.translations.mjs +3 -2
- package/esm2022/lib/core/model/filter.interface.mjs +1 -1
- package/esm2022/lib/core/store/aggregation/frontend-aggregation/aggregation-utils.class.mjs +52 -47
- package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +1 -3
- package/esm2022/presentation/components/presentation.component.mjs +12 -12
- package/esm2022/toolbox/components/automate-refresh/automate-refresh.component.mjs +14 -11
- package/esm2022/toolbox/components/clear-view/clear-view.component.mjs +15 -11
- package/esm2022/toolbox/components/dashboard-details/dashboard-details.component.mjs +15 -13
- package/esm2022/toolbox/components/delete/delete.component.mjs +17 -18
- package/esm2022/toolbox/components/drag-widgets/drag-widgets.component.mjs +16 -11
- package/esm2022/toolbox/components/edit-mode-action/edit-mode-action.component.mjs +14 -12
- package/esm2022/toolbox/components/edit-mode-toggle/edit-mode-toggle.component.mjs +12 -7
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +19 -14
- package/esm2022/toolbox/components/launch-tab/launch-tab.component.mjs +15 -11
- package/esm2022/toolbox/components/named-query/named-query.component.mjs +3 -3
- package/esm2022/toolbox/components/refresh-datasets/refresh-datasets.component.mjs +14 -10
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +14 -10
- package/esm2022/toolbox/components/select-grid-layout/select-grid-layout.component.mjs +14 -9
- package/esm2022/toolbox/components/share/share.component.mjs +30 -34
- package/esm2022/toolbox/components/switch-to-edit-content/switch-to-edit-content.component.mjs +14 -12
- package/esm2022/toolbox/components/toolbox-action/toolbox-action.component.mjs +20 -6
- package/esm2022/toolbox/components/toolbox.component.mjs +1 -1
- package/esm2022/toolbox/toolbox.model.mjs +4 -4
- package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +2 -2
- package/fesm2022/provoly-dashboard-presentation.mjs +11 -11
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +197 -139
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +145 -126
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/components/share/access-rights-share/access-rights-share.component.d.ts +7 -1
- package/lib/core/components/share/share.utils.d.ts +3 -0
- package/lib/core/i18n/en.translations.d.ts +1 -0
- package/lib/core/i18n/fr.translations.d.ts +1 -0
- package/lib/core/model/filter.interface.d.ts +1 -1
- package/lib/core/store/aggregation/frontend-aggregation/aggregation-utils.class.d.ts +1 -1
- package/lib/dashboard/store/dashboard.selectors.d.ts +0 -5
- package/package.json +7 -7
- package/presentation/components/presentation.component.d.ts +4 -5
- package/styles/components/_o-access-rights-share.scss +9 -1
- package/toolbox/components/automate-refresh/automate-refresh.component.d.ts +2 -2
- package/toolbox/components/clear-view/clear-view.component.d.ts +3 -2
- package/toolbox/components/dashboard-details/dashboard-details.component.d.ts +3 -5
- package/toolbox/components/delete/delete.component.d.ts +4 -13
- package/toolbox/components/drag-widgets/drag-widgets.component.d.ts +3 -3
- package/toolbox/components/edit-mode-action/edit-mode-action.component.d.ts +3 -8
- package/toolbox/components/edit-mode-toggle/edit-mode-toggle.component.d.ts +3 -2
- package/toolbox/components/filter-settings/filter-settings.component.d.ts +3 -3
- package/toolbox/components/launch-tab/launch-tab.component.d.ts +3 -2
- package/toolbox/components/refresh-datasets/refresh-datasets.component.d.ts +3 -3
- package/toolbox/components/save-view/save-view.component.d.ts +3 -5
- package/toolbox/components/select-grid-layout/select-grid-layout.component.d.ts +3 -3
- package/toolbox/components/share/share.component.d.ts +4 -8
- package/toolbox/components/switch-to-edit-content/switch-to-edit-content.component.d.ts +3 -8
- package/toolbox/components/toolbox-action/toolbox-action.component.d.ts +6 -3
|
@@ -283,7 +283,7 @@ class CqlUtils {
|
|
|
283
283
|
const attributeName = attribute?.technicalName;
|
|
284
284
|
return this.getConditionsForValue(attributeName, cond, field, datasourceId);
|
|
285
285
|
})
|
|
286
|
-
.filter((conds) => conds.length > 0)
|
|
286
|
+
.filter((conds) => !!conds && conds.length > 0)
|
|
287
287
|
.join(' AND ');
|
|
288
288
|
}
|
|
289
289
|
static getConditionsForValue(attributeName, cond, field, datasourceId) {
|