@gooddata/sdk-ui-dashboard 11.51.0-alpha.5 → 11.51.0
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/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/model/commandHandlers/filterContext/filterViewHandler.d.ts.map +1 -1
- package/esm/model/commandHandlers/filterContext/filterViewHandler.js +17 -4
- package/esm/model/store/filterViews/filterViewsReducers.d.ts +13 -1
- package/esm/model/store/filterViews/filterViewsReducers.d.ts.map +1 -1
- package/esm/model/store/filterViews/filterViewsReducers.js +46 -0
- package/esm/model/store/filterViews/filterViewsState.d.ts +22 -0
- package/esm/model/store/filterViews/filterViewsState.d.ts.map +1 -1
- package/esm/model/store/filterViews/index.d.ts +3 -0
- package/esm/model/store/filterViews/index.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.js +2 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.d.ts +1 -3
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.js +2 -2
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.d.ts +1 -2
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.js +2 -2
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.d.ts +1 -2
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.js +2 -2
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.d.ts +1 -2
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.js +2 -2
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts +11 -6
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.js +12 -3
- package/esm/presentation/automations/scheduledEmail/utils/pdfPageSize.d.ts +1 -2
- package/esm/presentation/automations/scheduledEmail/utils/pdfPageSize.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/utils/pdfPageSize.js +12 -3
- package/esm/presentation/filterBar/filterBar/DefaultFilterBarContainer.js +1 -6
- package/esm/presentation/filterBar/filterBar/filterViews/FilterViews.d.ts.map +1 -1
- package/esm/presentation/filterBar/filterBar/filterViews/FilterViews.js +19 -16
- package/package.json +21 -21
- package/styles/css/filterBar.css +15 -44
- package/styles/css/filterBar.css.map +1 -1
- package/styles/css/main.css +15 -44
- package/styles/css/main.css.map +1 -1
- package/styles/scss/filterBar.scss +17 -62
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FilterViews.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/filterBar/filterBar/filterViews/FilterViews.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FilterViews.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/filterBar/filterBar/filterViews/FilterViews.tsx"],"names":[],"mappings":"AAkHA,wBAAgB,WAAW,mDA6G1B"}
|
|
@@ -2,9 +2,9 @@ import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-run
|
|
|
2
2
|
// (C) 2024-2026 GoodData Corporation
|
|
3
3
|
import { useCallback, useMemo } from "react";
|
|
4
4
|
import cx from "classnames";
|
|
5
|
-
import {
|
|
5
|
+
import { useIntl } from "react-intl";
|
|
6
6
|
import { v4 as uuid } from "uuid";
|
|
7
|
-
import {
|
|
7
|
+
import { UiButton, UiReturnFocusOnUnmount, useIdPrefixed, useMediaQuery, } from "@gooddata/sdk-ui-kit";
|
|
8
8
|
import { useDashboardDispatch, useDashboardSelector, } from "../../../../model/react/DashboardStoreProvider.js";
|
|
9
9
|
import { useDashboardUserInteraction } from "../../../../model/react/useDashboardUserInteraction.js";
|
|
10
10
|
import { selectIsApplyFiltersAllAtOnceEnabledAndSet, selectIsReadOnly, } from "../../../../model/store/config/configSelectors.js";
|
|
@@ -13,14 +13,16 @@ import { selectDisableFilterViews, selectIsNewDashboard, } from "../../../../mod
|
|
|
13
13
|
import { selectCanCreateFilterView } from "../../../../model/store/permissions/permissionsSelectors.js";
|
|
14
14
|
import { selectIsInEditMode } from "../../../../model/store/renderMode/renderModeSelectors.js";
|
|
15
15
|
import { uiActions } from "../../../../model/store/ui/index.js";
|
|
16
|
-
import {
|
|
16
|
+
import { selectFilterViewsDialogMode, selectIsFilterViewsDialogOpen, } from "../../../../model/store/ui/uiSelectors.js";
|
|
17
17
|
import { ConfigurationBubble } from "../../../widget/common/configuration/ConfigurationBubble.js";
|
|
18
18
|
import { AddFilterView } from "./AddFilterView.js";
|
|
19
19
|
import { FilterViewsList } from "./FilterViewsList.js";
|
|
20
20
|
import { useFilterViewsToastMessages } from "./useFilterViewsToastMessages.js";
|
|
21
|
-
const BUBBLE_ALIGN_POINTS = [{ align: "br tr", offset: { x: -
|
|
22
|
-
function
|
|
23
|
-
return filterViews.length === 0
|
|
21
|
+
const BUBBLE_ALIGN_POINTS = [{ align: "br tr", offset: { x: -10, y: -10 } }];
|
|
22
|
+
function getButtonLabel(intl, filterViews) {
|
|
23
|
+
return filterViews.length === 0
|
|
24
|
+
? intl.formatMessage({ id: "filters.filterViews.dropdown.buttonEmpty" })
|
|
25
|
+
: intl.formatMessage({ id: "filters.filterViews.dropdown.button" }, { count: filterViews.length });
|
|
24
26
|
}
|
|
25
27
|
const useCallbacks = (isDialogOpen, countOfSavedViews) => {
|
|
26
28
|
const dispatch = useDashboardDispatch();
|
|
@@ -70,7 +72,7 @@ export function FilterViews() {
|
|
|
70
72
|
const isMobile = useMediaQuery("mobileDevice");
|
|
71
73
|
const isApplyAllAtOnceEnabledAndSet = useDashboardSelector(selectIsApplyFiltersAllAtOnceEnabledAndSet);
|
|
72
74
|
const { toggleDialog, openAddDialog, openListDialog, closeDialog, onSaveDialog } = useCallbacks(isDialogOpen, filterViews.length);
|
|
73
|
-
const
|
|
75
|
+
const intl = useIntl();
|
|
74
76
|
const listDialogTitleId = useIdPrefixed("FilterViewsListTitle");
|
|
75
77
|
const addDialogTitleId = useIdPrefixed("AddFilterViewTitle");
|
|
76
78
|
useFilterViewsToastMessages();
|
|
@@ -84,24 +86,25 @@ export function FilterViews() {
|
|
|
84
86
|
// generate unique anchor class name to open dropdown next to the correct button if app uses multiple
|
|
85
87
|
// dashboard components
|
|
86
88
|
const dropdownAnchorClassName = useMemo(() => `gd-filter-views__dropdown-anchor-${uuid()}`, []);
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"gd-filter-views-button--open": isDialogOpen,
|
|
89
|
+
// UiButton has no className prop, so the dropdown anchor and layout tweaks live on a wrapper
|
|
90
|
+
const buttonWrapperClassNames = cx("gd-filter-views-button", dropdownAnchorClassName, {
|
|
90
91
|
"deprecated-margin-top": !isApplyAllAtOnceEnabledAndSet,
|
|
91
92
|
});
|
|
92
93
|
const triggerId = useIdPrefixed("FilterViewsTrigger");
|
|
93
|
-
const triggerLabelId = useIdPrefixed("FilterViewsTriggerLabel");
|
|
94
94
|
const dropdownId = useIdPrefixed("FilterViewsDropdown");
|
|
95
95
|
const isReadOnly = useDashboardSelector(selectIsReadOnly);
|
|
96
96
|
if (isReadOnly) {
|
|
97
97
|
return null;
|
|
98
98
|
}
|
|
99
99
|
return (_jsxs("div", { className: "gd-filter-views", children: [showDropdownButton ? (_jsxs(_Fragment, { children: [
|
|
100
|
-
_jsx(
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
100
|
+
_jsx("div", { className: buttonWrapperClassNames, children: _jsx(UiButton, { id: triggerId, variant: "tertiary",
|
|
101
|
+
// tertiary has no padding, so size only drives font-size and height;
|
|
102
|
+
// "medium" keeps the 14px label the button had in both densities
|
|
103
|
+
size: "medium", label: getButtonLabel(intl, filterViews), iconAfter: isDialogOpen ? "navigateUp" : "navigateDown", onClick: toggleDialog, dataTestId: "filter-views-button", accessibilityConfig: {
|
|
104
|
+
ariaHaspopup: "dialog",
|
|
105
|
+
ariaExpanded: isDialogOpen,
|
|
106
|
+
ariaControls: isDialogOpen ? dropdownId : undefined,
|
|
107
|
+
}, disableIconAnimation: true }) }), isDashboardEditMode ? _jsx("div", { className: "gd-filters-views__panel__divider" }) : null] })) : (_jsx("div", { className: dropdownAnchorClassName })), isDialogOpen ? (_jsx(UiReturnFocusOnUnmount, { returnFocusTo: triggerId, children: _jsx(ConfigurationBubble, { id: dropdownId, classNames: "gd-filters-views__panel", onClose: closeDialog, closeOnEscape: true, alignTo: `.${dropdownAnchorClassName}`, alignPoints: BUBBLE_ALIGN_POINTS, accessibilityConfig: {
|
|
105
108
|
role: "dialog",
|
|
106
109
|
ariaLabelledBy: dialogMode === "add" ? addDialogTitleId : listDialogTitleId,
|
|
107
110
|
}, children: dialogMode === "add" ? (_jsx(AddFilterView, { onClose: openListDialog, onSave: onSaveDialog, titleId: addDialogTitleId })) : (_jsx(FilterViewsList, { filterViews: filterViews, onAddNew: openAddDialog, onClose: closeDialog, titleId: listDialogTitleId })) }) })) : null] }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-dashboard",
|
|
3
|
-
"version": "11.51.0
|
|
3
|
+
"version": "11.51.0",
|
|
4
4
|
"description": "GoodData SDK - Dashboard Component",
|
|
5
5
|
"license": "LicenseRef-LICENSE",
|
|
6
6
|
"author": "GoodData Corporation",
|
|
@@ -60,20 +60,20 @@
|
|
|
60
60
|
"ts-invariant": "0.10.3",
|
|
61
61
|
"tslib": "2.8.1",
|
|
62
62
|
"uuid": "11.1.1",
|
|
63
|
-
"@gooddata/sdk-backend-base": "11.51.0
|
|
64
|
-
"@gooddata/sdk-
|
|
65
|
-
"@gooddata/sdk-
|
|
66
|
-
"@gooddata/sdk-
|
|
67
|
-
"@gooddata/sdk-ui-charts": "11.51.0
|
|
68
|
-
"@gooddata/sdk-ui-ext": "11.51.0
|
|
69
|
-
"@gooddata/sdk-ui-filters": "11.51.0
|
|
70
|
-
"@gooddata/sdk-ui-kit": "11.51.0
|
|
71
|
-
"@gooddata/sdk-ui-
|
|
72
|
-
"@gooddata/sdk-ui-theme-provider": "11.51.0
|
|
73
|
-
"@gooddata/sdk-ui-vis-commons": "11.51.0
|
|
74
|
-
"@gooddata/sdk-ui-
|
|
75
|
-
"@gooddata/util": "11.51.0
|
|
76
|
-
"@gooddata/sdk-ui-
|
|
63
|
+
"@gooddata/sdk-backend-base": "11.51.0",
|
|
64
|
+
"@gooddata/sdk-ui": "11.51.0",
|
|
65
|
+
"@gooddata/sdk-model": "11.51.0",
|
|
66
|
+
"@gooddata/sdk-backend-spi": "11.51.0",
|
|
67
|
+
"@gooddata/sdk-ui-charts": "11.51.0",
|
|
68
|
+
"@gooddata/sdk-ui-ext": "11.51.0",
|
|
69
|
+
"@gooddata/sdk-ui-filters": "11.51.0",
|
|
70
|
+
"@gooddata/sdk-ui-kit": "11.51.0",
|
|
71
|
+
"@gooddata/sdk-ui-pivot": "11.51.0",
|
|
72
|
+
"@gooddata/sdk-ui-theme-provider": "11.51.0",
|
|
73
|
+
"@gooddata/sdk-ui-vis-commons": "11.51.0",
|
|
74
|
+
"@gooddata/sdk-ui-semantic-search": "11.51.0",
|
|
75
|
+
"@gooddata/util": "11.51.0",
|
|
76
|
+
"@gooddata/sdk-ui-geo": "11.51.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -119,12 +119,12 @@
|
|
|
119
119
|
"typescript": "5.9.3",
|
|
120
120
|
"vitest": "4.1.8",
|
|
121
121
|
"vitest-dom": "0.1.1",
|
|
122
|
-
"@gooddata/oxlint-config": "11.51.0
|
|
123
|
-
"@gooddata/
|
|
124
|
-
"@gooddata/
|
|
125
|
-
"@gooddata/
|
|
126
|
-
"@gooddata/
|
|
127
|
-
"@gooddata/
|
|
122
|
+
"@gooddata/oxlint-config": "11.51.0",
|
|
123
|
+
"@gooddata/i18n-toolkit": "11.51.0",
|
|
124
|
+
"@gooddata/reference-workspace": "11.51.0",
|
|
125
|
+
"@gooddata/sdk-backend-mockingbird": "11.51.0",
|
|
126
|
+
"@gooddata/stylelint-config": "11.51.0",
|
|
127
|
+
"@gooddata/eslint-config": "11.51.0"
|
|
128
128
|
},
|
|
129
129
|
"peerDependencies": {
|
|
130
130
|
"react": "^18.0.0 || ^19.0.0",
|
package/styles/css/filterBar.css
CHANGED
|
@@ -120,11 +120,7 @@
|
|
|
120
120
|
|
|
121
121
|
.dash-filters-all {
|
|
122
122
|
position: relative;
|
|
123
|
-
display: flex;
|
|
124
|
-
align-items: stretch;
|
|
125
|
-
flex-wrap: wrap;
|
|
126
123
|
width: calc(100% - 150px);
|
|
127
|
-
min-height: 55px;
|
|
128
124
|
margin-right: 15px;
|
|
129
125
|
}
|
|
130
126
|
.apply-all-at-once .dash-filters-all {
|
|
@@ -306,6 +302,13 @@
|
|
|
306
302
|
background-color: var(--gd-palette-primary-base, #14b2e2);
|
|
307
303
|
}
|
|
308
304
|
|
|
305
|
+
.dash-filters-toolbar {
|
|
306
|
+
display: flex;
|
|
307
|
+
align-items: stretch;
|
|
308
|
+
flex-wrap: wrap;
|
|
309
|
+
min-height: 55px;
|
|
310
|
+
}
|
|
311
|
+
|
|
309
312
|
.filter-bar-dropzone-container {
|
|
310
313
|
position: relative;
|
|
311
314
|
flex-grow: 1;
|
|
@@ -462,63 +465,31 @@
|
|
|
462
465
|
align-items: start;
|
|
463
466
|
justify-content: center;
|
|
464
467
|
height: 100%;
|
|
468
|
+
padding-right: 10px;
|
|
469
|
+
gap: 10px;
|
|
465
470
|
}
|
|
466
471
|
|
|
467
472
|
.gd-filter-views {
|
|
468
473
|
display: flex;
|
|
469
474
|
align-items: center;
|
|
475
|
+
gap: 10px;
|
|
470
476
|
}
|
|
471
477
|
|
|
472
|
-
.gd-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
color: var(--gd-palette-complementary-6);
|
|
476
|
-
background: var(--gd-dashboards-content-backgroundColor, var(--gd-palette-complementary-0, #fff));
|
|
477
|
-
font-size: 14px;
|
|
478
|
+
.gd-filter-views-button {
|
|
479
|
+
display: flex;
|
|
480
|
+
align-items: center;
|
|
478
481
|
}
|
|
479
|
-
.gd-
|
|
482
|
+
.gd-filter-views-button.deprecated-margin-top {
|
|
480
483
|
margin-top: 7px;
|
|
481
484
|
}
|
|
482
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active::before, .gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active::after {
|
|
483
|
-
top: 1px;
|
|
484
|
-
}
|
|
485
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active .gd-button-text {
|
|
486
|
-
top: 1px;
|
|
487
|
-
}
|
|
488
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active .gd-button-icon {
|
|
489
|
-
margin-top: 1px;
|
|
490
|
-
color: var(--gd-palette-primary-base);
|
|
491
|
-
}
|
|
492
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):hover {
|
|
493
|
-
color: var(--gd-palette-complementary-8);
|
|
494
|
-
}
|
|
495
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):hover .gd-button-icon {
|
|
496
|
-
color: var(--gd-palette-primary-base);
|
|
497
|
-
}
|
|
498
|
-
.gd-button-primary.gd-filter-views-button .gd-button-icon {
|
|
499
|
-
color: var(--gd-palette-complementary-5);
|
|
500
|
-
/* stylelint-disable-next-line declaration-no-important */
|
|
501
|
-
margin: 0 -8px 0 6px !important;
|
|
502
|
-
}
|
|
503
|
-
.gd-button-primary.gd-filter-views-button .gd-filter-views-button__label {
|
|
504
|
-
text-decoration: underline;
|
|
505
|
-
}
|
|
506
485
|
|
|
507
486
|
.gd-dash-content--density-compact .filter-bar-configuration {
|
|
508
487
|
align-items: center;
|
|
509
|
-
padding-right: 10px;
|
|
510
488
|
}
|
|
511
|
-
.gd-dash-content--density-compact .gd-
|
|
489
|
+
.gd-dash-content--density-compact .gd-filter-views-button.deprecated-margin-top {
|
|
512
490
|
margin-top: 0;
|
|
513
491
|
}
|
|
514
492
|
|
|
515
|
-
.gd-button-primary.gd-filter-views-button--open {
|
|
516
|
-
color: var(--gd-palette-complementary-8, #464e56);
|
|
517
|
-
}
|
|
518
|
-
.gd-button-primary.gd-filter-views-button--open .gd-button-icon::before {
|
|
519
|
-
color: #14b2e2;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
493
|
.gd-filters-views__panel__divider {
|
|
523
494
|
border-right: 1px solid #dde4eb;
|
|
524
495
|
width: 1px;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../node_modules/@gooddata/sdk-ui-kit/styles/scss/mixins.scss","../../node_modules/@gooddata/sdk-ui-kit/styles/scss/Bubble/_variables.scss","../../node_modules/@gooddata/sdk-ui-kit/styles/scss/Button/_variables.scss","../scss/filterBar.scss","../scss/_variables.scss","../scss/_zIndexes.scss","../../node_modules/@gooddata/sdk-ui-kit/styles/scss/variables.scss"],"names":[],"mappings":"AA0HA;AA4DA;ACjLA;AAAA;AAAA;ACDA;AAAA;AAAA;ACMA;EACI;EAOA,kBCiDoC;;AD/CpC;EACI;EACA;EACA;EACA;;AAIA;EACI;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA,SEIgB;EFHhB;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;;AAIR;EACI,SE/CY;EFgDZ;;AAEA;EAEI,SEnDa;;AFsDjB;EACI;EACA;EACA,oBCsBoB;EDrBpB;EACA;;AAGJ;EAjBJ;IAkBQ;IACA;IACA;IACA;;;;AAOA;EAFJ;AAAA;IAGQ;IACA;IACA;;;AAIR;EACI,OCtCQ;;;AD0ChB;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;EACA;EACA;EACA,eC/BS;EDgCT;EACA,kBCvCsC;EDwCtC;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EAKA;EACA;EACA;;AAGJ;EACI;;;AAKZ;EAII;EACA;EACA
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../node_modules/@gooddata/sdk-ui-kit/styles/scss/mixins.scss","../../node_modules/@gooddata/sdk-ui-kit/styles/scss/Bubble/_variables.scss","../../node_modules/@gooddata/sdk-ui-kit/styles/scss/Button/_variables.scss","../scss/filterBar.scss","../scss/_variables.scss","../scss/_zIndexes.scss","../../node_modules/@gooddata/sdk-ui-kit/styles/scss/variables.scss"],"names":[],"mappings":"AA0HA;AA4DA;ACjLA;AAAA;AAAA;ACDA;AAAA;AAAA;ACMA;EACI;EAOA,kBCiDoC;;AD/CpC;EACI;EACA;EACA;EACA;;AAIA;EACI;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA,SEIgB;EFHhB;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;;AAIR;EACI,SE/CY;EFgDZ;;AAEA;EAEI,SEnDa;;AFsDjB;EACI;EACA;EACA,oBCsBoB;EDrBpB;EACA;;AAGJ;EAjBJ;IAkBQ;IACA;IACA;IACA;;;;AAOA;EAFJ;AAAA;IAGQ;IACA;IACA;;;AAIR;EACI,OCtCQ;;;AD0ChB;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;EACA;EACA;EACA,eC/BS;EDgCT;EACA,kBCvCsC;EDwCtC;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EAKA;EACA;EACA;;AAGJ;EACI;;;AAKZ;EAII;EACA;EACA,cCjHc;;ADmHd;EACI;;AAGJ;AAAA;EAEI;;AAGJ;EACI;;AAGJ;AAAA;AAAA;EAGI;;AAGI;AAAA;AAAA;AAAA;AAAA;AAAA;EAEI;;AAGJ;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;EACA;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAGI;;AAIJ;AAAA;AAAA;EACI;;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAGI;EACA;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;;AAMhB;EACI;EACA;EACA,QC/IS;EDgJT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,ODvNyB;ECwNzB,kBC/JsC;EDgKtC;EACA;;AAGI;AAAA;EAEI,OGlMc;;AHsMtB;EACI;EACA;;AAGJ;EACI;EACA,OG/Ne;;;AHmOvB;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAGJ;EACI;EACA;;AAEA;EACI,OGnQQ;;AHuQhB;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;;AAKZ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EAKA,OGrRmB;EHsRnB;EACA,YACI;;AAGJ;EACI;EAIA,OG7RQ;;AHgSZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI,cCxTsB;EDyTtB,OG9SQ;EH+SR,kBGjSoB;;AHqSpB;EACI,OGjUK;EHkUL,kBG1Sc;;;AH+S1B;EACI;EACA;EACA;EACA,YC1RgB;;;AD6RpB;EACI;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAIA;EACI,aA7W4B;;AA+W5B;EACI;;AAGJ;EACI;;AAIA;EACI;EACA,OG9VA;;;AHqWZ;EACI;;AAEA;EACI;EACA;;;AAMR;EAEI;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACI;EAEJ;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,OG3ZI;;AH8ZR;EACI;EACA;EACA;EACA;EACA;EACA,OG3aW;;AH8af;EACI;EACA;EACA,OG1aI;;AH6aR;EACI;EACA;;AAGJ;EACI,OG1bW;EH2bX;;;AAKZ;EACI;EACA;EACA;;AAGI;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;;;AAMA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,OG9eO;;;AHoff;EAEI;;;AAIR;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI,MGtfe;;AH0ff;EACI,MGzec;;;AH8e1B;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;;;AAKJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;AAGA;EACI;;;AAKJ;EACI;;AAGJ;EACI;;;AAIR;EACI;EACA;EACA;EACA;;;AASQ;EACI;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAKJ;EACI;;AAKJ;EACI;EACA;;AAGJ;EACI,OGzlBO;;AH6lBf;EACI;EACA;EACA;;AAIA;EACI;;AAEA;EACI;;AAGJ;AAAA;EH3ZZ;EACA;EACA;;;AGmaA;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAGJ;EACI;;AAIA;EACI;;AAIR;EACI;;;AAKJ;EACI;;AAEA;EACI;EACA;EACA;EACA;;;AAOZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA,OGvqBQ;EHwqBR;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA,OG9rBY;;AHisBhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI,YGnnBwB;;AHynBxB;EACI;EACA;;AAIR;EACI;EACA;;AAEA;EACI,OGztBI;;AH6tBJ;EACI,OGnvBI;;AHwvBhB;EACI;EACA;EACA;;AAEA;EACI,kBGxjBgB;EHyjBhB,OG/vBQ;;AHowBhB;AAAA;AAAA;AAAA;EAII,kBGlkBoB;;;AHwkB5B;EACI;EACA,OGhwBgB;EHiwBhB;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;;AAIR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI","file":"filterBar.css"}
|
package/styles/css/main.css
CHANGED
|
@@ -25745,11 +25745,7 @@ figure {
|
|
|
25745
25745
|
|
|
25746
25746
|
.dash-filters-all {
|
|
25747
25747
|
position: relative;
|
|
25748
|
-
display: flex;
|
|
25749
|
-
align-items: stretch;
|
|
25750
|
-
flex-wrap: wrap;
|
|
25751
25748
|
width: calc(100% - 150px);
|
|
25752
|
-
min-height: 55px;
|
|
25753
25749
|
margin-right: 15px;
|
|
25754
25750
|
}
|
|
25755
25751
|
.apply-all-at-once .dash-filters-all {
|
|
@@ -25931,6 +25927,13 @@ figure {
|
|
|
25931
25927
|
background-color: var(--gd-palette-primary-base, #14b2e2);
|
|
25932
25928
|
}
|
|
25933
25929
|
|
|
25930
|
+
.dash-filters-toolbar {
|
|
25931
|
+
display: flex;
|
|
25932
|
+
align-items: stretch;
|
|
25933
|
+
flex-wrap: wrap;
|
|
25934
|
+
min-height: 55px;
|
|
25935
|
+
}
|
|
25936
|
+
|
|
25934
25937
|
.filter-bar-dropzone-container {
|
|
25935
25938
|
position: relative;
|
|
25936
25939
|
flex-grow: 1;
|
|
@@ -26087,63 +26090,31 @@ figure {
|
|
|
26087
26090
|
align-items: start;
|
|
26088
26091
|
justify-content: center;
|
|
26089
26092
|
height: 100%;
|
|
26093
|
+
padding-right: 10px;
|
|
26094
|
+
gap: 10px;
|
|
26090
26095
|
}
|
|
26091
26096
|
|
|
26092
26097
|
.gd-filter-views {
|
|
26093
26098
|
display: flex;
|
|
26094
26099
|
align-items: center;
|
|
26100
|
+
gap: 10px;
|
|
26095
26101
|
}
|
|
26096
26102
|
|
|
26097
|
-
.gd-
|
|
26098
|
-
|
|
26099
|
-
|
|
26100
|
-
color: var(--gd-palette-complementary-6);
|
|
26101
|
-
background: var(--gd-dashboards-content-backgroundColor, var(--gd-palette-complementary-0, #fff));
|
|
26102
|
-
font-size: 14px;
|
|
26103
|
+
.gd-filter-views-button {
|
|
26104
|
+
display: flex;
|
|
26105
|
+
align-items: center;
|
|
26103
26106
|
}
|
|
26104
|
-
.gd-
|
|
26107
|
+
.gd-filter-views-button.deprecated-margin-top {
|
|
26105
26108
|
margin-top: 7px;
|
|
26106
26109
|
}
|
|
26107
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active::before, .gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active::after {
|
|
26108
|
-
top: 1px;
|
|
26109
|
-
}
|
|
26110
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active .gd-button-text {
|
|
26111
|
-
top: 1px;
|
|
26112
|
-
}
|
|
26113
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):active .gd-button-icon {
|
|
26114
|
-
margin-top: 1px;
|
|
26115
|
-
color: var(--gd-palette-primary-base);
|
|
26116
|
-
}
|
|
26117
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):hover {
|
|
26118
|
-
color: var(--gd-palette-complementary-8);
|
|
26119
|
-
}
|
|
26120
|
-
.gd-button-primary.gd-filter-views-button:not(.disabled):not(.gd-button-link):hover .gd-button-icon {
|
|
26121
|
-
color: var(--gd-palette-primary-base);
|
|
26122
|
-
}
|
|
26123
|
-
.gd-button-primary.gd-filter-views-button .gd-button-icon {
|
|
26124
|
-
color: var(--gd-palette-complementary-5);
|
|
26125
|
-
/* stylelint-disable-next-line declaration-no-important */
|
|
26126
|
-
margin: 0 -8px 0 6px !important;
|
|
26127
|
-
}
|
|
26128
|
-
.gd-button-primary.gd-filter-views-button .gd-filter-views-button__label {
|
|
26129
|
-
text-decoration: underline;
|
|
26130
|
-
}
|
|
26131
26110
|
|
|
26132
26111
|
.gd-dash-content--density-compact .filter-bar-configuration {
|
|
26133
26112
|
align-items: center;
|
|
26134
|
-
padding-right: 10px;
|
|
26135
26113
|
}
|
|
26136
|
-
.gd-dash-content--density-compact .gd-
|
|
26114
|
+
.gd-dash-content--density-compact .gd-filter-views-button.deprecated-margin-top {
|
|
26137
26115
|
margin-top: 0;
|
|
26138
26116
|
}
|
|
26139
26117
|
|
|
26140
|
-
.gd-button-primary.gd-filter-views-button--open {
|
|
26141
|
-
color: var(--gd-palette-complementary-8, #464e56);
|
|
26142
|
-
}
|
|
26143
|
-
.gd-button-primary.gd-filter-views-button--open .gd-button-icon::before {
|
|
26144
|
-
color: #14b2e2;
|
|
26145
|
-
}
|
|
26146
|
-
|
|
26147
26118
|
.gd-filters-views__panel__divider {
|
|
26148
26119
|
border-right: 1px solid #dde4eb;
|
|
26149
26120
|
width: 1px;
|