@aurora-ds/components 1.7.7 → 1.7.9

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/dist/cjs/index.js CHANGED
@@ -5661,7 +5661,7 @@ const DRAWER_STYLES = theme.createStyles((theme) => ({
5661
5661
  display: 'flex',
5662
5662
  flexDirection: 'column',
5663
5663
  width: isExpanded ? EXPANDED_DRAWER_WIDTH : COLLAPSED_DRAWER_WIDTH,
5664
- transition: `width ${theme.transition.slow}`,
5664
+ transition: `width ${theme.transition.fast}`,
5665
5665
  overflow: 'hidden',
5666
5666
  backgroundColor: theme.colors.surfacePaper,
5667
5667
  borderRight: `1px solid ${theme.colors.borderMain}`,
@@ -5846,16 +5846,16 @@ const DRAWER_ITEM_STYLES = theme.createStyles((theme) => ({
5846
5846
  outline: 'none',
5847
5847
  textDecoration: 'none',
5848
5848
  boxSizing: 'border-box',
5849
- transition: `width ${theme.transition.slow}, background-color ${theme.transition.fast}, color ${theme.transition.fast}`,
5849
+ transition: `width ${theme.transition.fast}, background-color ${theme.transition.fast}, color ${theme.transition.fast}`,
5850
5850
  whiteSpace: 'nowrap',
5851
5851
  overflow: 'hidden',
5852
5852
  height: DEFAULT_DRAWER_ITEM_SIZE,
5853
5853
  ...(selected
5854
5854
  ? {
5855
- backgroundColor: theme.colors.primarySubtle,
5856
- color: theme.colors.primaryMain,
5857
- ':hover': { backgroundColor: theme.colors.primarySubtleHover, color: theme.colors.primaryHover },
5858
- ':active': { backgroundColor: theme.colors.primarySubtleActive, color: theme.colors.primaryActive },
5855
+ backgroundColor: theme.colors.primaryMain,
5856
+ color: theme.colors.primaryOn,
5857
+ ':hover': { backgroundColor: theme.colors.primaryHover, color: theme.colors.primaryOn },
5858
+ ':active': { backgroundColor: theme.colors.primaryActive, color: theme.colors.primaryOn },
5859
5859
  }
5860
5860
  : {
5861
5861
  backgroundColor: 'transparent',