braid-design-system 32.11.0 → 32.12.1

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,39 @@
1
1
  # braid-design-system
2
2
 
3
+ ## 32.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - When animating an SVG circle, it seems that the width changes slightly, which on Loader was causing the right-most one to push off the boundaries of the SVG View Box. ([#1370](https://github.com/seek-oss/braid-design-system/pull/1370))
8
+
9
+ This has been fixed so clipping should no longer occur.
10
+
11
+ ## 32.12.0
12
+
13
+ ### Minor Changes
14
+
15
+ - **Button, ButtonLink:** Default to neutral ghost in non-legacy themes ([#1363](https://github.com/seek-oss/braid-design-system/pull/1363))
16
+
17
+ By default, a button now has a `neutral` tone and uses the `ghost` variant, allowing the visual prominence to be increased or decreased as required, enabling colour to be applied as accents and with purpose, rather than by default.
18
+
19
+ ```jsx
20
+ <Button />
21
+ // => tone="neutral" & variant="ghost"
22
+ ```
23
+
24
+ To compliment this, when a `tone` is purposefully applied, the default variant becomes `solid` to maximise its impact — allowing the visual prominence to be reduced as needed.
25
+
26
+ ```jsx
27
+ <Button tone="brandAccent" />
28
+ // => tone="brandAccent" & variant="solid"
29
+ ```
30
+
31
+ ### No change for `apac` and `seekBusiness` consumers
32
+
33
+ Given the fundamental change in approach to colour and usage of such a core component, this change has been isolated to newer themes and **does not impact `apac` and `seekBusiness` consumers**.
34
+
35
+ These themes will continue to have a tone of `formAccent` and a `solid` variant by default, allowing consumers to adopt this new approach as part of the design uplift when migrating to an updated theme, e.g. `seekJobs`.
36
+
3
37
  ## 32.11.0
4
38
 
5
39
  ### Minor Changes