@gooddata/sdk-ui-vis-commons 10.28.0-alpha.7 → 10.28.0-alpha.70
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/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/esm/legend/FluidLegend.d.ts.map +1 -1
- package/esm/legend/FluidLegend.js +3 -2
- package/esm/legend/FluidLegend.js.map +1 -1
- package/esm/legend/Legend.d.ts +4 -4
- package/esm/legend/Legend.d.ts.map +1 -1
- package/esm/legend/Legend.js +1 -1
- package/esm/legend/Legend.js.map +1 -1
- package/esm/legend/LegendAxisIndicator.d.ts +2 -2
- package/esm/legend/LegendAxisIndicator.d.ts.map +1 -1
- package/esm/legend/LegendAxisIndicator.js +1 -1
- package/esm/legend/LegendAxisIndicator.js.map +1 -1
- package/esm/legend/LegendItem.d.ts +3 -2
- package/esm/legend/LegendItem.d.ts.map +1 -1
- package/esm/legend/LegendItem.js +8 -1
- package/esm/legend/LegendItem.js.map +1 -1
- package/esm/legend/LegendList.d.ts +4 -6
- package/esm/legend/LegendList.d.ts.map +1 -1
- package/esm/legend/LegendList.js +16 -19
- package/esm/legend/LegendList.js.map +1 -1
- package/esm/legend/LegendSeries.d.ts +13 -0
- package/esm/legend/LegendSeries.d.ts.map +1 -0
- package/esm/legend/LegendSeries.js +63 -0
- package/esm/legend/LegendSeries.js.map +1 -0
- package/esm/legend/Paging.d.ts.map +1 -1
- package/esm/legend/Paging.js +2 -1
- package/esm/legend/Paging.js.map +1 -1
- package/esm/legend/PopUpLegend/LegendDialog.d.ts +1 -0
- package/esm/legend/PopUpLegend/LegendDialog.d.ts.map +1 -1
- package/esm/legend/PopUpLegend/LegendDialog.js +21 -13
- package/esm/legend/PopUpLegend/LegendDialog.js.map +1 -1
- package/esm/legend/PopUpLegend/PopUpLegend.d.ts +3 -3
- package/esm/legend/PopUpLegend/PopUpLegend.d.ts.map +1 -1
- package/esm/legend/PopUpLegend/PopUpLegend.js +10 -5
- package/esm/legend/PopUpLegend/PopUpLegend.js.map +1 -1
- package/esm/legend/PopUpLegend/RowLegend.d.ts +7 -3
- package/esm/legend/PopUpLegend/RowLegend.d.ts.map +1 -1
- package/esm/legend/PopUpLegend/RowLegend.js +26 -22
- package/esm/legend/PopUpLegend/RowLegend.js.map +1 -1
- package/esm/legend/StaticLegend.d.ts +5 -15
- package/esm/legend/StaticLegend.d.ts.map +1 -1
- package/esm/legend/StaticLegend.js +51 -73
- package/esm/legend/StaticLegend.js.map +1 -1
- package/esm/legend/context.d.ts +16 -0
- package/esm/legend/context.d.ts.map +1 -0
- package/esm/legend/context.js +14 -0
- package/esm/legend/context.js.map +1 -0
- package/esm/legend/helpers.js +1 -1
- package/esm/legend/types.d.ts +15 -0
- package/esm/legend/types.d.ts.map +1 -1
- package/esm/legend/types.js +1 -1
- package/esm/sdk-ui-vis-commons.d.ts +25 -19
- package/package.json +8 -8
- package/styles/scss/legend.scss +9 -8
package/styles/scss/legend.scss
CHANGED
|
@@ -449,20 +449,14 @@ $legend-content-background: var(--gd-chart-backgroundColor, var(--gd-palette-com
|
|
|
449
449
|
justify-content: flex-end;
|
|
450
450
|
}
|
|
451
451
|
|
|
452
|
-
.legend-popup-button {
|
|
453
|
-
display: flex;
|
|
454
|
-
justify-content: center;
|
|
455
|
-
align-items: center;
|
|
456
|
-
min-width: 30px;
|
|
457
|
-
height: 30px;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
452
|
.legend-popup-icon {
|
|
461
453
|
display: flex;
|
|
462
454
|
justify-content: center;
|
|
463
455
|
align-items: center;
|
|
464
456
|
min-width: 22px;
|
|
465
457
|
height: 22px;
|
|
458
|
+
margin: 4px;
|
|
459
|
+
border: none;
|
|
466
460
|
border-radius: 50%;
|
|
467
461
|
background-color: kit-variables.$is-focused-background;
|
|
468
462
|
cursor: pointer;
|
|
@@ -837,3 +831,10 @@ $legend-content-background: var(--gd-chart-backgroundColor, var(--gd-palette-com
|
|
|
837
831
|
}
|
|
838
832
|
}
|
|
839
833
|
}
|
|
834
|
+
|
|
835
|
+
.legend-series-wrapper:focus-visible {
|
|
836
|
+
outline: none;
|
|
837
|
+
.series-item--isFocused {
|
|
838
|
+
@include mixins.focus-ring;
|
|
839
|
+
}
|
|
840
|
+
}
|