@gooddata/sdk-ui-dashboard 11.50.0-alpha.1 → 11.50.0-alpha.2
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/NOTICE +216 -203
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts +4 -4
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts.map +1 -1
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.js +51 -207
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.d.ts +38 -0
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.js +61 -0
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFormState.d.ts +55 -0
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFormState.d.ts.map +1 -0
- package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFormState.js +203 -0
- package/esm/presentation/filterBar/filterBar/DefaultFilterBarContainer.d.ts.map +1 -1
- package/esm/presentation/filterBar/filterBar/DefaultFilterBarContainer.js +11 -5
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +21 -21
- package/styles/css/main.css +1 -1
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
// (C) 2026 GoodData Corporation
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import { setExportParametersByTab } from "../../../../../_staging/automation/index.js";
|
|
4
|
+
import { useAutomationsContext } from "../../../contexts/AutomationsContext.js";
|
|
5
|
+
import { useScheduledEmailDialogContext } from "../../../contexts/ScheduledEmailDialogContext.js";
|
|
6
|
+
import { convertCurrentUserToAutomationRecipient, convertCurrentUserToWorkspaceUser, convertExternalRecipientToAutomationRecipient, } from "../../../shared/utils/automationUtils.js";
|
|
7
|
+
import { toModifiedISOStringToTimezone, toNormalizedFirstRunAndCron } from "../../utils/date.js";
|
|
8
|
+
import { getUserTimezone } from "../../utils/timezone.js";
|
|
9
|
+
import { newDashboardExportDefinitionMetadataObjectDefinition, newWidgetExportDefinitionMetadataObjectDefinition, } from "../utils/exportDefinitions.js";
|
|
10
|
+
/**
|
|
11
|
+
* Owns the scheduled-email dialog's `editedAutomation` draft (initialized either from
|
|
12
|
+
* `scheduledExportToEdit` or via `newAutomationMetadataObjectDefinition`), its `originalAutomation`
|
|
13
|
+
* baseline, the derived defaults (`defaultRecipient`, `defaultUser`), and the form's field/message
|
|
14
|
+
* change handlers and their validity UI state.
|
|
15
|
+
*
|
|
16
|
+
* `timezone` (already part 1) and `currentUser` are read from {@link useAutomationsContext};
|
|
17
|
+
* `dashboardId`/`dashboardTitle` from {@link useScheduledEmailDialogContext}. The effective-filters
|
|
18
|
+
* derivations, `parametersByTabForNewAutomation`, `defaultPdfPageSize`, and `targetTabId` stay owned
|
|
19
|
+
* by the parent (`useEditScheduledEmail`) — shared with other consumers — and are passed in as params.
|
|
20
|
+
*
|
|
21
|
+
* Part 2 of 2 (mirrors the alerting `useAlertFormState` part 2): completes the hook by folding in the
|
|
22
|
+
* draft init that part 1 left in the parent.
|
|
23
|
+
*
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
export function useScheduledEmailFormState({ scheduledExportToEdit, widget, insight, notificationChannels, users, externalRecipientOverride, effectiveWidgetFilters, effectiveWidgetFiltersWithInsight, effectiveVisibleWidgetFilters, effectiveDashboardFilters, effectiveDashboardFiltersByTab, effectiveVisibleDashboardFilters, effectiveVisibleDashboardFiltersByTab, parametersByTabForNewAutomation, defaultPdfPageSize, targetTabId, }) {
|
|
27
|
+
const { timezone, currentUser } = useAutomationsContext();
|
|
28
|
+
const { dashboardId, dashboardTitle } = useScheduledEmailDialogContext();
|
|
29
|
+
const isWidget = !!widget && !!insight;
|
|
30
|
+
const defaultUser = convertCurrentUserToWorkspaceUser(users ?? [], currentUser);
|
|
31
|
+
const defaultRecipient = externalRecipientOverride
|
|
32
|
+
? convertExternalRecipientToAutomationRecipient(externalRecipientOverride)
|
|
33
|
+
: convertCurrentUserToAutomationRecipient(users ?? [], currentUser);
|
|
34
|
+
const firstChannel = notificationChannels[0]?.id;
|
|
35
|
+
const [editedAutomation, setEditedAutomation] = useState(scheduledExportToEdit ??
|
|
36
|
+
newAutomationMetadataObjectDefinition(isWidget
|
|
37
|
+
? {
|
|
38
|
+
timezone,
|
|
39
|
+
dashboardId: dashboardId,
|
|
40
|
+
notificationChannel: firstChannel,
|
|
41
|
+
insight,
|
|
42
|
+
widget,
|
|
43
|
+
recipient: defaultRecipient,
|
|
44
|
+
widgetFilters: effectiveWidgetFilters,
|
|
45
|
+
widgetFiltersWithInsight: effectiveWidgetFiltersWithInsight,
|
|
46
|
+
dashboardFilters: effectiveDashboardFilters,
|
|
47
|
+
visibleFiltersMetadata: effectiveVisibleWidgetFilters,
|
|
48
|
+
defaultPdfPageSize,
|
|
49
|
+
evaluationMode: "PER_RECIPIENT",
|
|
50
|
+
targetTabId,
|
|
51
|
+
parametersByTab: parametersByTabForNewAutomation,
|
|
52
|
+
}
|
|
53
|
+
: {
|
|
54
|
+
timezone,
|
|
55
|
+
dashboardId: dashboardId,
|
|
56
|
+
notificationChannel: firstChannel,
|
|
57
|
+
title: dashboardTitle,
|
|
58
|
+
recipient: defaultRecipient,
|
|
59
|
+
dashboardFilters: effectiveDashboardFilters,
|
|
60
|
+
filtersByTab: effectiveDashboardFiltersByTab,
|
|
61
|
+
visibleFiltersMetadata: effectiveVisibleDashboardFilters,
|
|
62
|
+
visibleFiltersByTab: effectiveVisibleDashboardFiltersByTab,
|
|
63
|
+
defaultPdfPageSize,
|
|
64
|
+
evaluationMode: "PER_RECIPIENT",
|
|
65
|
+
parametersByTab: parametersByTabForNewAutomation,
|
|
66
|
+
}));
|
|
67
|
+
const [originalAutomation] = useState(editedAutomation);
|
|
68
|
+
const [isCronValid, setIsCronValid] = useState(true);
|
|
69
|
+
const [isTitleValid, setIsTitleValid] = useState(true);
|
|
70
|
+
const [isSubjectValid, setIsSubjectValid] = useState(true);
|
|
71
|
+
const [isOnMessageValid, setIsOnMessageValid] = useState(true);
|
|
72
|
+
const onTitleChange = (value, isValid) => {
|
|
73
|
+
setIsTitleValid(isValid);
|
|
74
|
+
setEditedAutomation((s) => ({ ...s, title: value }));
|
|
75
|
+
};
|
|
76
|
+
const onRecurrenceChange = (cronExpression, startDate, isValid) => {
|
|
77
|
+
setIsCronValid(isValid);
|
|
78
|
+
setEditedAutomation((s) => ({
|
|
79
|
+
...s,
|
|
80
|
+
schedule: {
|
|
81
|
+
...s.schedule,
|
|
82
|
+
cron: cronExpression,
|
|
83
|
+
firstRun: toModifiedISOStringToTimezone(startDate ?? new Date(), timezone).iso,
|
|
84
|
+
},
|
|
85
|
+
}));
|
|
86
|
+
};
|
|
87
|
+
const onEvaluationModeChange = (isShared) => {
|
|
88
|
+
setEditedAutomation((s) => ({
|
|
89
|
+
...s,
|
|
90
|
+
evaluationMode: isShared ? "SHARED" : "PER_RECIPIENT",
|
|
91
|
+
}));
|
|
92
|
+
};
|
|
93
|
+
const onDestinationChange = (notificationChannelId) => {
|
|
94
|
+
setEditedAutomation((s) => ({
|
|
95
|
+
...s,
|
|
96
|
+
notificationChannel: notificationChannelId,
|
|
97
|
+
}));
|
|
98
|
+
};
|
|
99
|
+
const onRecipientsChange = (updatedRecipients) => {
|
|
100
|
+
setEditedAutomation((s) => ({
|
|
101
|
+
...s,
|
|
102
|
+
recipients: updatedRecipients,
|
|
103
|
+
}));
|
|
104
|
+
};
|
|
105
|
+
const onSubjectChange = (value, isValid) => {
|
|
106
|
+
setIsSubjectValid(isValid);
|
|
107
|
+
setEditedAutomation((s) => ({
|
|
108
|
+
...s,
|
|
109
|
+
details: {
|
|
110
|
+
...s.details,
|
|
111
|
+
subject: value,
|
|
112
|
+
},
|
|
113
|
+
}));
|
|
114
|
+
};
|
|
115
|
+
const onMessageChange = (value, isValid) => {
|
|
116
|
+
setIsOnMessageValid(isValid);
|
|
117
|
+
setEditedAutomation((s) => ({
|
|
118
|
+
...s,
|
|
119
|
+
details: {
|
|
120
|
+
...s.details,
|
|
121
|
+
message: value,
|
|
122
|
+
},
|
|
123
|
+
}));
|
|
124
|
+
};
|
|
125
|
+
return {
|
|
126
|
+
editedAutomation,
|
|
127
|
+
setEditedAutomation,
|
|
128
|
+
originalAutomation,
|
|
129
|
+
defaultRecipient,
|
|
130
|
+
defaultUser,
|
|
131
|
+
onTitleChange,
|
|
132
|
+
onRecurrenceChange,
|
|
133
|
+
onEvaluationModeChange,
|
|
134
|
+
onDestinationChange,
|
|
135
|
+
onRecipientsChange,
|
|
136
|
+
onSubjectChange,
|
|
137
|
+
onMessageChange,
|
|
138
|
+
isCronValid,
|
|
139
|
+
isTitleValid,
|
|
140
|
+
isSubjectValid,
|
|
141
|
+
isOnMessageValid,
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
function newAutomationMetadataObjectDefinition({ timezone, dashboardId, notificationChannel, title, insight, widget, recipient, dashboardFilters, filtersByTab, widgetFilters, widgetFiltersWithInsight, visibleFiltersMetadata, visibleFiltersByTab, defaultPdfPageSize, evaluationMode, targetTabId, parametersByTab, }) {
|
|
145
|
+
const { firstRun, cron } = toNormalizedFirstRunAndCron(timezone);
|
|
146
|
+
const exportDefinition = widget && insight
|
|
147
|
+
? newWidgetExportDefinitionMetadataObjectDefinition({
|
|
148
|
+
insight,
|
|
149
|
+
widget,
|
|
150
|
+
dashboardId,
|
|
151
|
+
format: "PNG",
|
|
152
|
+
widgetFilters,
|
|
153
|
+
widgetFiltersWithInsight,
|
|
154
|
+
dashboardFilters,
|
|
155
|
+
defaultPdfPageSize,
|
|
156
|
+
})
|
|
157
|
+
: newDashboardExportDefinitionMetadataObjectDefinition({
|
|
158
|
+
dashboardId,
|
|
159
|
+
dashboardTitle: title ?? "",
|
|
160
|
+
dashboardFilters,
|
|
161
|
+
filtersByTab,
|
|
162
|
+
format: "PDF",
|
|
163
|
+
});
|
|
164
|
+
let metadataObj = visibleFiltersMetadata || visibleFiltersByTab
|
|
165
|
+
? {
|
|
166
|
+
metadata: {
|
|
167
|
+
...(visibleFiltersMetadata ? { visibleFilters: visibleFiltersMetadata } : {}),
|
|
168
|
+
...(visibleFiltersByTab ? { visibleFiltersByTab } : {}),
|
|
169
|
+
},
|
|
170
|
+
}
|
|
171
|
+
: {};
|
|
172
|
+
if (targetTabId) {
|
|
173
|
+
metadataObj = {
|
|
174
|
+
...metadataObj,
|
|
175
|
+
metadata: {
|
|
176
|
+
...metadataObj.metadata,
|
|
177
|
+
targetTabIdentifier: targetTabId,
|
|
178
|
+
},
|
|
179
|
+
};
|
|
180
|
+
}
|
|
181
|
+
const automation = {
|
|
182
|
+
type: "automation",
|
|
183
|
+
title: undefined,
|
|
184
|
+
description: undefined,
|
|
185
|
+
tags: [],
|
|
186
|
+
schedule: {
|
|
187
|
+
timezone: timezone ?? getUserTimezone().identifier,
|
|
188
|
+
firstRun,
|
|
189
|
+
cron,
|
|
190
|
+
},
|
|
191
|
+
details: {
|
|
192
|
+
message: "",
|
|
193
|
+
subject: "",
|
|
194
|
+
},
|
|
195
|
+
exportDefinitions: [{ ...exportDefinition }],
|
|
196
|
+
recipients: [recipient],
|
|
197
|
+
evaluationMode,
|
|
198
|
+
notificationChannel,
|
|
199
|
+
dashboard: dashboardId ? { id: dashboardId } : undefined,
|
|
200
|
+
...metadataObj,
|
|
201
|
+
};
|
|
202
|
+
return parametersByTab ? setExportParametersByTab(automation, parametersByTab) : automation;
|
|
203
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DefaultFilterBarContainer.d.ts","sourceRoot":"","sources":["../../../../src/presentation/filterBar/filterBar/DefaultFilterBarContainer.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEH,KAAK,SAAS,EAOjB,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"DefaultFilterBarContainer.d.ts","sourceRoot":"","sources":["../../../../src/presentation/filterBar/filterBar/DefaultFilterBarContainer.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEH,KAAK,SAAS,EAOjB,MAAM,OAAO,CAAC;AAgcf;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,CAAC,EAAE,SAAS,CAAA;CAAE,2CAQ/E"}
|
|
@@ -29,7 +29,8 @@ import { useExecutionTimestampMessage } from "./useExecutionTimestampMessage.js"
|
|
|
29
29
|
const Measure = defaultImport(DefaultMeasure);
|
|
30
30
|
function DefaultFilterBarContainerCore({ children }) {
|
|
31
31
|
const { rows, height, isFilterBarExpanded, scrollable, setFilterBarExpanded, setCalculatedRows } = useFilterBarState();
|
|
32
|
-
const
|
|
32
|
+
const hasMultipleRows = rows.length > 1;
|
|
33
|
+
const dropRef = useFilterExpansionByDragAndDrop(hasMultipleRows, isFilterBarExpanded, setFilterBarExpanded);
|
|
33
34
|
const isWorkingFilterContextChanged = useDashboardSelector(selectIsWorkingFilterContextChanged);
|
|
34
35
|
const isApplyAllAtOnceEnabledAndSet = useDashboardSelector(selectIsApplyFiltersAllAtOnceEnabledAndSet);
|
|
35
36
|
const filtersWithInvalidSelection = useDashboardSelector(selectNamesOfFiltersWithInvalidSelection);
|
|
@@ -53,9 +54,11 @@ function DefaultFilterBarContainerCore({ children }) {
|
|
|
53
54
|
return;
|
|
54
55
|
}
|
|
55
56
|
setCollapseAnnouncement("");
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
if (hasMultipleRows && !isFilterBarExpanded) {
|
|
58
|
+
setFilterBarExpanded(true);
|
|
59
|
+
setExpandedAutomatically(true);
|
|
60
|
+
}
|
|
61
|
+
}, [hasMultipleRows, isFilterBarExpanded, setFilterBarExpanded]);
|
|
59
62
|
const onContainerBlur = useCallback(() => {
|
|
60
63
|
if (isFocusVisible() && expandedAutomatically) {
|
|
61
64
|
setFilterBarExpanded(false);
|
|
@@ -84,7 +87,10 @@ function DefaultFilterBarContainerCore({ children }) {
|
|
|
84
87
|
ariaLabel: bubbleText,
|
|
85
88
|
}, label: intl.formatMessage({ id: "apply" }), variant: "primary", onClick: applyAllDashboardFilters, isDisabled: hasInvalidFilterSelections }) })) : null, _jsx(FilterViews, {})
|
|
86
89
|
] })
|
|
87
|
-
] }), _jsx(ShowAllFiltersButton, { isFilterBarExpanded: isFilterBarExpanded, isVisible: rows.length > 1, onToggle: (isExpanded) =>
|
|
90
|
+
] }), _jsx(ShowAllFiltersButton, { isFilterBarExpanded: isFilterBarExpanded, isVisible: rows.length > 1, onToggle: (isExpanded) => {
|
|
91
|
+
setFilterBarExpanded(isExpanded);
|
|
92
|
+
setExpandedAutomatically(false);
|
|
93
|
+
} }), isInEditMode ? _jsx(FlexibleBulletsBar, {}) : null] }), isWorkingFilterContextChanged && isApplyAllAtOnceEnabledAndSet ? (_jsx("div", { "aria-hidden": "true", className: "filters-message", style: { marginTop: rows.length > 1 ? "35px" : "10px" }, children: _jsx(Message, { type: "progress", children: _jsx(FormattedMessage, { id: "filterBar.unappliedFiltersNotification", values: {
|
|
88
94
|
link: (chunks) => (_jsx("strong", { children: _jsxs(BubbleHoverTrigger, { showDelay: 100, hideDelay: 0, children: [
|
|
89
95
|
_jsx(UiButton, { variant: "link", onClick: applyAllDashboardFilters, label: chunks, isDisabled: hasInvalidFilterSelections }), hasInvalidFilterSelections ? (_jsx(Bubble, { children: bubbleText })) : null] }) })),
|
|
90
96
|
} }) }) })) : null, showExecutionTimestampMessage ? (_jsx("div", { className: "filters-message", style: { marginTop: rows.length > 1 ? "35px" : "10px" }, children: _jsxs(Message, { type: "progress", children: [_jsx(FormattedMessage, { id: "filterBar.executionTimestampNotificationMessage", values: {
|
package/esm/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-dashboard",
|
|
3
|
-
"version": "11.50.0-alpha.
|
|
3
|
+
"version": "11.50.0-alpha.2",
|
|
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-
|
|
64
|
-
"@gooddata/sdk-backend-
|
|
65
|
-
"@gooddata/sdk-model": "11.50.0-alpha.
|
|
66
|
-
"@gooddata/sdk-ui
|
|
67
|
-
"@gooddata/sdk-ui": "11.50.0-alpha.
|
|
68
|
-
"@gooddata/sdk-ui-ext": "11.50.0-alpha.
|
|
69
|
-
"@gooddata/sdk-ui-
|
|
70
|
-
"@gooddata/sdk-ui-
|
|
71
|
-
"@gooddata/sdk-ui-
|
|
72
|
-
"@gooddata/sdk-ui-
|
|
73
|
-
"@gooddata/sdk-ui-semantic-search": "11.50.0-alpha.
|
|
74
|
-
"@gooddata/sdk-ui-theme-provider": "11.50.0-alpha.
|
|
75
|
-
"@gooddata/
|
|
76
|
-
"@gooddata/
|
|
63
|
+
"@gooddata/sdk-backend-base": "11.50.0-alpha.2",
|
|
64
|
+
"@gooddata/sdk-backend-spi": "11.50.0-alpha.2",
|
|
65
|
+
"@gooddata/sdk-model": "11.50.0-alpha.2",
|
|
66
|
+
"@gooddata/sdk-ui": "11.50.0-alpha.2",
|
|
67
|
+
"@gooddata/sdk-ui-charts": "11.50.0-alpha.2",
|
|
68
|
+
"@gooddata/sdk-ui-ext": "11.50.0-alpha.2",
|
|
69
|
+
"@gooddata/sdk-ui-geo": "11.50.0-alpha.2",
|
|
70
|
+
"@gooddata/sdk-ui-filters": "11.50.0-alpha.2",
|
|
71
|
+
"@gooddata/sdk-ui-kit": "11.50.0-alpha.2",
|
|
72
|
+
"@gooddata/sdk-ui-pivot": "11.50.0-alpha.2",
|
|
73
|
+
"@gooddata/sdk-ui-semantic-search": "11.50.0-alpha.2",
|
|
74
|
+
"@gooddata/sdk-ui-theme-provider": "11.50.0-alpha.2",
|
|
75
|
+
"@gooddata/util": "11.50.0-alpha.2",
|
|
76
|
+
"@gooddata/sdk-ui-vis-commons": "11.50.0-alpha.2"
|
|
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/
|
|
123
|
-
"@gooddata/
|
|
124
|
-
"@gooddata/
|
|
125
|
-
"@gooddata/
|
|
126
|
-
"@gooddata/
|
|
127
|
-
"@gooddata/
|
|
122
|
+
"@gooddata/i18n-toolkit": "11.50.0-alpha.2",
|
|
123
|
+
"@gooddata/eslint-config": "11.50.0-alpha.2",
|
|
124
|
+
"@gooddata/oxlint-config": "11.50.0-alpha.2",
|
|
125
|
+
"@gooddata/reference-workspace": "11.50.0-alpha.2",
|
|
126
|
+
"@gooddata/sdk-backend-mockingbird": "11.50.0-alpha.2",
|
|
127
|
+
"@gooddata/stylelint-config": "11.50.0-alpha.2"
|
|
128
128
|
},
|
|
129
129
|
"peerDependencies": {
|
|
130
130
|
"react": "^18.0.0 || ^19.0.0",
|
package/styles/css/main.css
CHANGED
|
@@ -12865,7 +12865,7 @@ a.gd-button-link:hover .gd-button-text, a.gd-button-link-dimmed:hover .gd-button
|
|
|
12865
12865
|
}
|
|
12866
12866
|
|
|
12867
12867
|
.gd-date-filter-form-buttons .gd-date-filter-form-buttons-container .gd-date-filter-form-button {
|
|
12868
|
-
padding: 0
|
|
12868
|
+
padding: 0 30px 0 10px;
|
|
12869
12869
|
border: 0;
|
|
12870
12870
|
height: 23px;
|
|
12871
12871
|
}
|