braid-design-system 33.10.0-deprecate-apac-20250701000007 → 33.10.0-deprecate-apac-20250703035127
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 +16 -13
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,9 @@
|
|
|
1
1
|
# braid-design-system
|
|
2
2
|
|
|
3
|
-
## 33.10.0-deprecate-apac-
|
|
3
|
+
## 33.10.0-deprecate-apac-20250703035127
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
- **apac:** Deprecate theme in favour of `seekJobs` theme (95e01b7cb20715e217b50aff0e9e431a23829775)
|
|
8
|
-
|
|
9
|
-
**MIGRATION GUIDE:**
|
|
10
|
-
|
|
11
|
-
```diff
|
|
12
|
-
- import { apac } from 'braid-design-system/themes/apac';
|
|
13
|
-
+ import { seekJobs } from 'braid-design-system/themes/seekJobs';
|
|
14
|
-
|
|
15
|
-
- <BraidProvider theme={apacTheme} ...>
|
|
16
|
-
+ <BraidProvider theme={seekJobsTheme} ...>
|
|
17
|
-
```
|
|
18
|
-
|
|
19
7
|
- **Box, atoms**: Add `sticky` to `position`. ([#1806](https://github.com/seek-oss/braid-design-system/pull/1806))
|
|
20
8
|
|
|
21
9
|
**EXAMPLE USAGE:**
|
|
@@ -29,6 +17,21 @@
|
|
|
29
17
|
Migrate `seekBusiness` theme to new visual language.
|
|
30
18
|
Adopts the `seekJobs` theme for the latest design standards, rather than the legacy `apac` theme, while retaining the `seekBusiness` brand accent colour.
|
|
31
19
|
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- **apac:** Deprecate theme in favour of `seekJobs` theme ([#1820](https://github.com/seek-oss/braid-design-system/pull/1820))
|
|
23
|
+
|
|
24
|
+
**MIGRATION GUIDE:**
|
|
25
|
+
|
|
26
|
+
```diff
|
|
27
|
+
# App.tsx
|
|
28
|
+
- import apac from 'braid-design-system/themes/apac';
|
|
29
|
+
+ import seekJobs from 'braid-design-system/themes/seekJobs';
|
|
30
|
+
|
|
31
|
+
- <BraidProvider theme={apac} ...>
|
|
32
|
+
+ <BraidProvider theme={seekJobs} ...>
|
|
33
|
+
```
|
|
34
|
+
|
|
32
35
|
## 33.9.1
|
|
33
36
|
|
|
34
37
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -5017,6 +5017,12 @@ declare const _default$2: {
|
|
|
5017
5017
|
backgroundLightness: Record<"body" | "bodyDark" | "brand" | "brandAccent" | "brandAccentActive" | "brandAccentHover" | "brandAccentSoft" | "brandAccentSoftActive" | "brandAccentSoftHover" | "caution" | "cautionLight" | "critical" | "criticalActive" | "criticalHover" | "criticalLight" | "criticalSoft" | "criticalSoftActive" | "criticalSoftHover" | "formAccent" | "formAccentActive" | "formAccentHover" | "formAccentSoft" | "formAccentSoftActive" | "formAccentSoftHover" | "info" | "infoLight" | "neutral" | "neutralActive" | "neutralHover" | "neutralLight" | "neutralSoft" | "neutralSoftActive" | "neutralSoftHover" | "positive" | "positiveLight" | "promote" | "promoteLight" | "surface" | "surfaceDark", "light" | "dark">;
|
|
5018
5018
|
};
|
|
5019
5019
|
|
|
5020
|
+
/**
|
|
5021
|
+
* @deprecated the `apac` theme is deprecated and will be removed in a future release.
|
|
5022
|
+
*
|
|
5023
|
+
* Use the `seekJobs` theme instead.
|
|
5024
|
+
*/
|
|
5025
|
+
|
|
5020
5026
|
declare namespace themes {
|
|
5021
5027
|
export {
|
|
5022
5028
|
_default$6 as apac,
|
package/dist/index.d.ts
CHANGED
|
@@ -5017,6 +5017,12 @@ declare const _default$2: {
|
|
|
5017
5017
|
backgroundLightness: Record<"body" | "bodyDark" | "brand" | "brandAccent" | "brandAccentActive" | "brandAccentHover" | "brandAccentSoft" | "brandAccentSoftActive" | "brandAccentSoftHover" | "caution" | "cautionLight" | "critical" | "criticalActive" | "criticalHover" | "criticalLight" | "criticalSoft" | "criticalSoftActive" | "criticalSoftHover" | "formAccent" | "formAccentActive" | "formAccentHover" | "formAccentSoft" | "formAccentSoftActive" | "formAccentSoftHover" | "info" | "infoLight" | "neutral" | "neutralActive" | "neutralHover" | "neutralLight" | "neutralSoft" | "neutralSoftActive" | "neutralSoftHover" | "positive" | "positiveLight" | "promote" | "promoteLight" | "surface" | "surfaceDark", "light" | "dark">;
|
|
5018
5018
|
};
|
|
5019
5019
|
|
|
5020
|
+
/**
|
|
5021
|
+
* @deprecated the `apac` theme is deprecated and will be removed in a future release.
|
|
5022
|
+
*
|
|
5023
|
+
* Use the `seekJobs` theme instead.
|
|
5024
|
+
*/
|
|
5025
|
+
|
|
5020
5026
|
declare namespace themes {
|
|
5021
5027
|
export {
|
|
5022
5028
|
_default$6 as apac,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "braid-design-system",
|
|
3
|
-
"version": "33.10.0-deprecate-apac-
|
|
3
|
+
"version": "33.10.0-deprecate-apac-20250703035127",
|
|
4
4
|
"description": "Themeable design system for the SEEK Group",
|
|
5
5
|
"homepage": "https://seek-oss.github.io/braid-design-system/",
|
|
6
6
|
"bugs": {
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"react-dom": "^18.3.1",
|
|
221
221
|
"react-router-dom": "^6.3.0",
|
|
222
222
|
"sanitize-html": "^2.12.1",
|
|
223
|
-
"sku": "14.
|
|
223
|
+
"sku": "14.7.0",
|
|
224
224
|
"storybook": "7.6.20",
|
|
225
225
|
"svgo": "^2.8.0",
|
|
226
226
|
"title-case": "^3.0.3",
|