@westpac/ui 0.40.2 → 0.40.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @westpac/ui
2
2
 
3
+ ## 0.40.3
4
+
5
+ ### Patch Changes
6
+
7
+ - b31459e: Update button.styles.ts to implement #1014
8
+
3
9
  ## 0.40.2
4
10
 
5
11
  ### Patch Changes
@@ -30,7 +30,7 @@ export const styles = tv({
30
30
  base: 'border border-hero bg-hero text-white hover:bg-hero-70 active:bg-hero-50'
31
31
  },
32
32
  faint: {
33
- base: 'border border-border bg-light text-muted hover:bg-white active:bg-white'
33
+ base: 'border border-borderDark bg-light text-muted hover:bg-white active:bg-white'
34
34
  },
35
35
  link: {
36
36
  base: 'text-link underline'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@westpac/ui",
3
- "version": "0.40.2",
3
+ "version": "0.40.3",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -32,7 +32,7 @@ export const styles = tv(
32
32
  base: 'relative border border-primary bg-primary text-white hover:bg-primary-70 active:bg-primary-50 active-theme-rams:border-b-pop active-theme-rams:before:absolute active-theme-rams:before:bottom-0 active-theme-rams:before:block active-theme-rams:before:w-full active-theme-rams:before:bg-pop',
33
33
  },
34
34
  hero: { base: 'border border-hero bg-hero text-white hover:bg-hero-70 active:bg-hero-50' },
35
- faint: { base: 'border border-border bg-light text-muted hover:bg-white active:bg-white' },
35
+ faint: { base: 'border border-borderDark bg-light text-muted hover:bg-white active:bg-white' },
36
36
  link: { base: 'text-link underline' },
37
37
  unstyled: { base: '' },
38
38
  },