@aurora-ds/components 0.22.2 → 0.22.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/dist/esm/index.js CHANGED
@@ -1971,6 +1971,7 @@ const BOX_STYLES = createStyles((theme) => ({
1971
1971
  cursor,
1972
1972
  boxShadow: shadow ? theme.shadows[shadow] : undefined,
1973
1973
  boxSizing: 'border-box',
1974
+ transition: `background-color ${theme.transition.normal}, border-color ${theme.transition.normal}`,
1974
1975
  }),
1975
1976
  }));
1976
1977
 
@@ -2050,7 +2051,8 @@ const CARD_STYLES = createStyles((theme) => ({
2050
2051
  alignItems: align,
2051
2052
  justifyContent: justify,
2052
2053
  boxSizing: 'border-box',
2053
- flexShrink: 0
2054
+ flexShrink: 0,
2055
+ transition: `background-color ${theme.transition.normal}, border-color ${theme.transition.normal}`,
2054
2056
  }),
2055
2057
  }));
2056
2058