@gooddata/sdk-ui-vis-commons 10.28.0-alpha.7 → 10.28.0-alpha.71

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.
Files changed (57) hide show
  1. package/esm/index.d.ts +1 -1
  2. package/esm/index.d.ts.map +1 -1
  3. package/esm/index.js +1 -1
  4. package/esm/index.js.map +1 -1
  5. package/esm/legend/FluidLegend.d.ts.map +1 -1
  6. package/esm/legend/FluidLegend.js +3 -2
  7. package/esm/legend/FluidLegend.js.map +1 -1
  8. package/esm/legend/Legend.d.ts +4 -4
  9. package/esm/legend/Legend.d.ts.map +1 -1
  10. package/esm/legend/Legend.js +1 -1
  11. package/esm/legend/Legend.js.map +1 -1
  12. package/esm/legend/LegendAxisIndicator.d.ts +2 -2
  13. package/esm/legend/LegendAxisIndicator.d.ts.map +1 -1
  14. package/esm/legend/LegendAxisIndicator.js +1 -1
  15. package/esm/legend/LegendAxisIndicator.js.map +1 -1
  16. package/esm/legend/LegendItem.d.ts +3 -2
  17. package/esm/legend/LegendItem.d.ts.map +1 -1
  18. package/esm/legend/LegendItem.js +8 -1
  19. package/esm/legend/LegendItem.js.map +1 -1
  20. package/esm/legend/LegendList.d.ts +4 -6
  21. package/esm/legend/LegendList.d.ts.map +1 -1
  22. package/esm/legend/LegendList.js +16 -19
  23. package/esm/legend/LegendList.js.map +1 -1
  24. package/esm/legend/LegendSeries.d.ts +13 -0
  25. package/esm/legend/LegendSeries.d.ts.map +1 -0
  26. package/esm/legend/LegendSeries.js +63 -0
  27. package/esm/legend/LegendSeries.js.map +1 -0
  28. package/esm/legend/Paging.d.ts.map +1 -1
  29. package/esm/legend/Paging.js +2 -1
  30. package/esm/legend/Paging.js.map +1 -1
  31. package/esm/legend/PopUpLegend/LegendDialog.d.ts +1 -0
  32. package/esm/legend/PopUpLegend/LegendDialog.d.ts.map +1 -1
  33. package/esm/legend/PopUpLegend/LegendDialog.js +21 -13
  34. package/esm/legend/PopUpLegend/LegendDialog.js.map +1 -1
  35. package/esm/legend/PopUpLegend/PopUpLegend.d.ts +3 -3
  36. package/esm/legend/PopUpLegend/PopUpLegend.d.ts.map +1 -1
  37. package/esm/legend/PopUpLegend/PopUpLegend.js +10 -5
  38. package/esm/legend/PopUpLegend/PopUpLegend.js.map +1 -1
  39. package/esm/legend/PopUpLegend/RowLegend.d.ts +7 -3
  40. package/esm/legend/PopUpLegend/RowLegend.d.ts.map +1 -1
  41. package/esm/legend/PopUpLegend/RowLegend.js +26 -22
  42. package/esm/legend/PopUpLegend/RowLegend.js.map +1 -1
  43. package/esm/legend/StaticLegend.d.ts +5 -15
  44. package/esm/legend/StaticLegend.d.ts.map +1 -1
  45. package/esm/legend/StaticLegend.js +51 -73
  46. package/esm/legend/StaticLegend.js.map +1 -1
  47. package/esm/legend/context.d.ts +16 -0
  48. package/esm/legend/context.d.ts.map +1 -0
  49. package/esm/legend/context.js +14 -0
  50. package/esm/legend/context.js.map +1 -0
  51. package/esm/legend/helpers.js +1 -1
  52. package/esm/legend/types.d.ts +15 -0
  53. package/esm/legend/types.d.ts.map +1 -1
  54. package/esm/legend/types.js +1 -1
  55. package/esm/sdk-ui-vis-commons.d.ts +25 -19
  56. package/package.json +8 -8
  57. package/styles/scss/legend.scss +9 -8
@@ -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
+ }