@gooddata/sdk-ui-dashboard 11.9.0-alpha.4 → 11.9.0-alpha.5
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 +6 -6
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/model/commandHandlers/index.d.ts.map +1 -1
- package/esm/model/commandHandlers/index.js +5 -1
- package/esm/model/commandHandlers/index.js.map +1 -1
- package/esm/model/commandHandlers/scheduledEmail/createScheduledEmailHandler.d.ts.map +1 -1
- package/esm/model/commandHandlers/scheduledEmail/createScheduledEmailHandler.js +23 -4
- package/esm/model/commandHandlers/scheduledEmail/createScheduledEmailHandler.js.map +1 -1
- package/esm/model/commandHandlers/scheduledEmail/saveScheduledEmailHandler.d.ts.map +1 -1
- package/esm/model/commandHandlers/scheduledEmail/saveScheduledEmailHandler.js +24 -6
- package/esm/model/commandHandlers/scheduledEmail/saveScheduledEmailHandler.js.map +1 -1
- package/esm/model/commandHandlers/tabs/createDashboardTabHandler.d.ts +8 -0
- package/esm/model/commandHandlers/tabs/createDashboardTabHandler.d.ts.map +1 -0
- package/esm/model/commandHandlers/tabs/createDashboardTabHandler.js +47 -0
- package/esm/model/commandHandlers/tabs/createDashboardTabHandler.js.map +1 -0
- package/esm/model/commandHandlers/tabs/deleteDashboardTabHandler.d.ts +9 -0
- package/esm/model/commandHandlers/tabs/deleteDashboardTabHandler.d.ts.map +1 -0
- package/esm/model/commandHandlers/tabs/deleteDashboardTabHandler.js +54 -0
- package/esm/model/commandHandlers/tabs/deleteDashboardTabHandler.js.map +1 -0
- package/esm/model/commands/base.d.ts +1 -1
- package/esm/model/commands/base.d.ts.map +1 -1
- package/esm/model/commands/index.d.ts +5 -5
- package/esm/model/commands/index.d.ts.map +1 -1
- package/esm/model/commands/index.js +2 -2
- package/esm/model/commands/index.js.map +1 -1
- package/esm/model/commands/richText.d.ts +32 -0
- package/esm/model/commands/richText.d.ts.map +1 -1
- package/esm/model/commands/richText.js +58 -0
- package/esm/model/commands/richText.js.map +1 -1
- package/esm/model/commands/tabs.d.ts +75 -0
- package/esm/model/commands/tabs.d.ts.map +1 -1
- package/esm/model/commands/tabs.js +38 -0
- package/esm/model/commands/tabs.js.map +1 -1
- package/esm/model/events/base.d.ts +1 -1
- package/esm/model/events/base.d.ts.map +1 -1
- package/esm/model/events/base.js.map +1 -1
- package/esm/model/events/index.d.ts +4 -4
- package/esm/model/events/index.d.ts.map +1 -1
- package/esm/model/events/index.js +1 -1
- package/esm/model/events/index.js.map +1 -1
- package/esm/model/events/tabs.d.ts +90 -0
- package/esm/model/events/tabs.d.ts.map +1 -1
- package/esm/model/events/tabs.js +61 -0
- package/esm/model/events/tabs.js.map +1 -1
- package/esm/model/store/tabs/index.d.ts +4 -0
- package/esm/model/store/tabs/index.d.ts.map +1 -1
- package/esm/model/store/tabs/tabsReducers.d.ts +4 -0
- package/esm/model/store/tabs/tabsReducers.d.ts.map +1 -1
- package/esm/model/store/tabs/tabsReducers.js +9 -0
- package/esm/model/store/tabs/tabsReducers.js.map +1 -1
- package/esm/presentation/dashboard/DashboardHeader/DashboardTabs.d.ts.map +1 -1
- package/esm/presentation/dashboard/DashboardHeader/DashboardTabs.js +25 -11
- package/esm/presentation/dashboard/DashboardHeader/DashboardTabs.js.map +1 -1
- package/esm/presentation/filterBar/filterBar/filterViews/FilterViewsList.js +6 -6
- package/esm/presentation/filterBar/filterBar/filterViews/FilterViewsList.js.map +1 -1
- package/esm/presentation/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.js +1 -1
- package/esm/presentation/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.js.map +1 -1
- package/esm/presentation/widget/common/configuration/useDateFilterConfigurationHandling.d.ts.map +1 -1
- package/esm/presentation/widget/common/configuration/useDateFilterConfigurationHandling.js +45 -3
- package/esm/presentation/widget/common/configuration/useDateFilterConfigurationHandling.js.map +1 -1
- package/esm/sdk-ui-dashboard.d.ts +221 -4
- package/package.json +19 -19
- package/styles/css/dashboard.css +33 -18
- package/styles/css/dashboard.css.map +1 -1
- package/styles/css/grouped-navigation.css +1 -3
- package/styles/css/grouped-navigation.css.map +1 -1
- package/styles/css/main.css +35 -24
- package/styles/css/main.css.map +1 -1
- package/styles/css/visualization.css +1 -3
- package/styles/css/visualization.css.map +1 -1
- package/styles/scss/dashboard.scss +37 -1
package/styles/css/main.css
CHANGED
|
@@ -21064,9 +21064,36 @@ figure {
|
|
|
21064
21064
|
flex-basis: 100%;
|
|
21065
21065
|
}
|
|
21066
21066
|
|
|
21067
|
-
.gd-dash-tabs
|
|
21067
|
+
.gd-dash-tabs {
|
|
21068
21068
|
padding-left: 6px;
|
|
21069
21069
|
padding-right: 6px;
|
|
21070
|
+
overflow: hidden;
|
|
21071
|
+
display: flex;
|
|
21072
|
+
}
|
|
21073
|
+
.gd-dash-tabs__list {
|
|
21074
|
+
flex-grow: 1;
|
|
21075
|
+
flex-shrink: 1;
|
|
21076
|
+
min-width: 0;
|
|
21077
|
+
}
|
|
21078
|
+
.gd-dash-tabs__add-wrapper {
|
|
21079
|
+
flex-grow: 0;
|
|
21080
|
+
flex-shrink: 0;
|
|
21081
|
+
min-width: 0;
|
|
21082
|
+
border-bottom: 1px solid var(--gd-palette-complementary-3);
|
|
21083
|
+
display: flex;
|
|
21084
|
+
align-items: center;
|
|
21085
|
+
padding-left: var(--gd-spacing-10px);
|
|
21086
|
+
padding-right: var(--gd-spacing-5px);
|
|
21087
|
+
}
|
|
21088
|
+
.gd-dash-tabs__add {
|
|
21089
|
+
padding-left: var(--gd-spacing-10px);
|
|
21090
|
+
border-left: 1px solid var(--gd-palette-complementary-3);
|
|
21091
|
+
}
|
|
21092
|
+
.gd-dash-tabs--with-create .gd-dash-tabs__list {
|
|
21093
|
+
flex-grow: 0;
|
|
21094
|
+
}
|
|
21095
|
+
.gd-dash-tabs--with-create .gd-dash-tabs__add-wrapper {
|
|
21096
|
+
flex-grow: 1;
|
|
21070
21097
|
}
|
|
21071
21098
|
|
|
21072
21099
|
.gd-dash-bottom-position-pixel {
|
|
@@ -21272,22 +21299,13 @@ figure {
|
|
|
21272
21299
|
.type-kpi .dash-item-action-placeholder,
|
|
21273
21300
|
.viz-type-headline .dash-item-action-alert,
|
|
21274
21301
|
.viz-type-headline .dash-item-action-placeholder {
|
|
21275
|
-
top: calc(
|
|
21276
|
-
|
|
21277
|
-
);
|
|
21278
|
-
right: calc(
|
|
21279
|
-
-10px - var(--gd-dashboards-content-kpiWidget-borderWidth, var(--gd-dashboards-content-widget-borderWidth, 2px))
|
|
21280
|
-
);
|
|
21302
|
+
top: calc(-10px - var(--gd-dashboards-content-kpiWidget-borderWidth, var(--gd-dashboards-content-widget-borderWidth, 2px)));
|
|
21303
|
+
right: calc(-10px - var(--gd-dashboards-content-kpiWidget-borderWidth, var(--gd-dashboards-content-widget-borderWidth, 2px)));
|
|
21281
21304
|
}
|
|
21282
21305
|
.type-kpi .dash-item-action-description,
|
|
21283
21306
|
.viz-type-headline .dash-item-action-description {
|
|
21284
|
-
top: calc(
|
|
21285
|
-
|
|
21286
|
-
);
|
|
21287
|
-
right: calc(
|
|
21288
|
-
-10px - var(--gd-dashboards-content-kpiWidget-borderWidth, var(--gd-dashboards-content-widget-borderWidth, 2px)) +
|
|
21289
|
-
36px
|
|
21290
|
-
);
|
|
21307
|
+
top: calc(-10px - var(--gd-dashboards-content-kpiWidget-borderWidth, var(--gd-dashboards-content-widget-borderWidth, 2px)));
|
|
21308
|
+
right: calc(-10px - var(--gd-dashboards-content-kpiWidget-borderWidth, var(--gd-dashboards-content-widget-borderWidth, 2px)) + 36px);
|
|
21291
21309
|
}
|
|
21292
21310
|
.type-kpi .dash-item-content,
|
|
21293
21311
|
.viz-type-headline .dash-item-content {
|
|
@@ -21490,10 +21508,7 @@ figure {
|
|
|
21490
21508
|
}
|
|
21491
21509
|
|
|
21492
21510
|
.dash-item-action-placeholder-headline {
|
|
21493
|
-
right: calc(
|
|
21494
|
-
-10px - var(--gd-dashboards-content-widget-borderWidth, 2px) +
|
|
21495
|
-
36px + 5px
|
|
21496
|
-
);
|
|
21511
|
+
right: calc(-10px - var(--gd-dashboards-content-widget-borderWidth, 2px) + 36px + 5px);
|
|
21497
21512
|
}
|
|
21498
21513
|
|
|
21499
21514
|
.dash-item-action-description .dash-item-action-description-trigger:not(.is-mobile) {
|
|
@@ -23356,9 +23371,7 @@ figure {
|
|
|
23356
23371
|
height: 100%;
|
|
23357
23372
|
}
|
|
23358
23373
|
.grouped-mobile-navigation-dropdown.grouped-mobile-navigation-dropdown--has-subgroups {
|
|
23359
|
-
height: calc(
|
|
23360
|
-
100% - 45px - -1px
|
|
23361
|
-
);
|
|
23374
|
+
height: calc(100% - 45px + 1px);
|
|
23362
23375
|
}
|
|
23363
23376
|
.grouped-mobile-navigation-dropdown .gd-list-item {
|
|
23364
23377
|
display: flex;
|
|
@@ -24876,9 +24889,7 @@ figure {
|
|
|
24876
24889
|
animation-duration: 0.3s;
|
|
24877
24890
|
}
|
|
24878
24891
|
.visualization .gd-bubble-trigger-zoom-out {
|
|
24879
|
-
left: calc(
|
|
24880
|
-
-10px - var(--gd-dashboards-content-widget-borderWidth, 2px) - 8px
|
|
24881
|
-
);
|
|
24892
|
+
left: calc(-10px - var(--gd-dashboards-content-widget-borderWidth, 2px) - 8px);
|
|
24882
24893
|
right: unset;
|
|
24883
24894
|
}
|
|
24884
24895
|
|