@x-plat/design-system 0.5.35 → 0.5.37

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.
@@ -2020,7 +2020,19 @@
2020
2020
  white-space: nowrap;
2021
2021
  overflow: visible;
2022
2022
  }
2023
+ .lib-xplat-chart .chart-bar-animate {
2024
+ animation: chart-bar-grow 800ms ease-out both;
2025
+ }
2026
+ .lib-xplat-chart .chart-pie-label-animate {
2027
+ opacity: 0;
2028
+ animation: chart-fade-in 150ms ease-out both;
2029
+ }
2030
+ .lib-xplat-chart .chart-area[style*=animationDelay] {
2031
+ animation: chart-fade-in 800ms ease-out both;
2032
+ }
2023
2033
  .lib-xplat-chart .chart-tooltip {
2034
+ position: absolute;
2035
+ z-index: 10;
2024
2036
  padding: var(--spacing-space-3);
2025
2037
  background-color: var(--semantic-surface-neutral-strong);
2026
2038
  color: var(--semantic-text-inverse);
@@ -2031,25 +2043,8 @@
2031
2043
  max-width: 240px;
2032
2044
  pointer-events: none;
2033
2045
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
2034
- }
2035
- .lib-xplat-chart .chart-tooltip.chart-tooltip-show {
2036
- opacity: 1;
2037
2046
  animation: chart-tooltip-in 120ms ease-out;
2038
2047
  }
2039
- .lib-xplat-chart .chart-tooltip.chart-tooltip-hide {
2040
- opacity: 0;
2041
- animation: chart-tooltip-out 80ms ease-in;
2042
- }
2043
- .lib-xplat-chart .chart-bar-animate {
2044
- animation: chart-bar-grow 800ms ease-out both;
2045
- }
2046
- .lib-xplat-chart .chart-pie-label-animate {
2047
- opacity: 0;
2048
- animation: chart-fade-in 150ms ease-out both;
2049
- }
2050
- .lib-xplat-chart .chart-area[style*=animationDelay] {
2051
- animation: chart-fade-in 800ms ease-out both;
2052
- }
2053
2048
  .lib-xplat-chart .chart-legend {
2054
2049
  display: flex;
2055
2050
  flex-wrap: wrap;
@@ -2106,14 +2101,6 @@
2106
2101
  opacity: 1;
2107
2102
  }
2108
2103
  }
2109
- @keyframes chart-tooltip-out {
2110
- from {
2111
- opacity: 1;
2112
- }
2113
- to {
2114
- opacity: 0;
2115
- }
2116
- }
2117
2104
  @media (prefers-reduced-motion: reduce) {
2118
2105
  .lib-xplat-chart .chart-bar-animate,
2119
2106
  .lib-xplat-chart .chart-pie-label-animate,