@gooddata/sdk-ui-dashboard 11.37.0-alpha.1 → 11.37.0-alpha.3
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.js +1 -1
- package/esm/kdaDialog/components/items/TrendItem.js +3 -1
- package/esm/kdaDialog/hooks/useDriversList.js +9 -9
- package/esm/presentation/filterBar/attributeFilter/types.d.ts +4 -1
- package/esm/presentation/filterBar/filterBar/DefaultDashboardFilterGroup.js +54 -14
- package/esm/presentation/filterBar/filterBar/DefaultFilterBarItem.js +1 -1
- package/esm/presentation/filterBar/filterBar/filterGroupUtils.js +4 -1
- package/esm/presentation/filterBar/measureValueFilter/DefaultDashboardMeasureValueFilter.js +5 -4
- package/esm/presentation/filterBar/measureValueFilter/types.d.ts +14 -0
- package/esm/presentation/localization/bundles/en-AU.localization-bundle.js +1 -1
- package/esm/presentation/localization/bundles/en-GB.localization-bundle.js +1 -1
- package/esm/presentation/localization/bundles/en-US.localization-bundle.js +1 -1
- package/esm/sdk-ui-dashboard.d.ts +16 -0
- package/package.json +20 -20
- package/styles/css/kdaDialog.css +19 -5
- package/styles/css/kdaDialog.css.map +1 -1
- package/styles/css/main.css +19 -5
- package/styles/css/main.css.map +1 -1
- package/styles/scss/kdaDialog.scss +23 -5
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
|
|
285
285
|
&__metric {
|
|
286
286
|
display: flex;
|
|
287
|
-
max-width:
|
|
287
|
+
max-width: 320px;
|
|
288
288
|
|
|
289
289
|
svg.gd-ui-kit-icon {
|
|
290
290
|
fill: kit-variables.$gd-color-object-type-metric;
|
|
@@ -293,12 +293,12 @@
|
|
|
293
293
|
|
|
294
294
|
&__date {
|
|
295
295
|
display: flex;
|
|
296
|
-
max-width:
|
|
296
|
+
max-width: 320px;
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
&__attribute {
|
|
300
300
|
display: flex;
|
|
301
|
-
max-width:
|
|
301
|
+
max-width: 320px;
|
|
302
302
|
}
|
|
303
303
|
}
|
|
304
304
|
|
|
@@ -946,9 +946,9 @@
|
|
|
946
946
|
flex-direction: row;
|
|
947
947
|
gap: 5px;
|
|
948
948
|
padding: 5px 10px;
|
|
949
|
-
align-items:
|
|
949
|
+
align-items: center;
|
|
950
950
|
justify-content: space-between;
|
|
951
|
-
width: 100
|
|
951
|
+
width: calc(100% - 20px);
|
|
952
952
|
height: 32px;
|
|
953
953
|
cursor: pointer;
|
|
954
954
|
|
|
@@ -989,6 +989,24 @@
|
|
|
989
989
|
color: var(--gd-palette-primary-base);
|
|
990
990
|
}
|
|
991
991
|
}
|
|
992
|
+
|
|
993
|
+
&.gd-kda-trend-item-disabled {
|
|
994
|
+
cursor: default;
|
|
995
|
+
|
|
996
|
+
.gd-kda-trend-item-text,
|
|
997
|
+
.gd-kda-trend-item-drivers {
|
|
998
|
+
color: var(--gd-palette-complementary-5);
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
&:hover {
|
|
1002
|
+
background-color: transparent;
|
|
1003
|
+
|
|
1004
|
+
.gd-kda-trend-item-text,
|
|
1005
|
+
.gd-kda-trend-item-drivers {
|
|
1006
|
+
color: var(--gd-palette-complementary-5);
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
992
1010
|
}
|
|
993
1011
|
|
|
994
1012
|
//kda dialog is over drill modal
|