@aurodesignsystem/design-tokens 4.4.0 → 4.5.0
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 +14 -0
- package/README.md +26 -23
- package/dist/tokens/CSSCustomProperties.css +1541 -64
- package/dist/tokens/CSSSizeCustomProperties.css +1 -1
- package/dist/tokens/JSData--color.js +16496 -2089
- package/dist/tokens/JSONVariablesFlat.json +470 -33
- package/dist/tokens/JSONVariablesNested.json +733 -48
- package/dist/tokens/JSObject--allTokens.js +13602 -2331
- package/dist/tokens/JSObject--deprecated.js +2266 -1897
- package/dist/tokens/JSVariables--color.js +736 -39
- package/dist/tokens/SCSSVariableMap.scss +1 -1
- package/dist/tokens/SCSSVariables.scss +1003 -46
- package/dist/tokens/SCSSVariablesMapFlat.scss +1006 -47
- package/dist/tokens/SassCustomProperties.scss +1541 -64
- package/dist/tokens/SassSizeCustomProperties.scss +1 -1
- package/dist/tokens/darkmode/CSSCustomProperties.css +4 -4
- package/dist/tokens/darkmode/JSDataColor.js +94 -30
- package/dist/tokens/darkmode/{JSObject--allDarkTokens.js → JSObject--deprecatedDark.js} +107 -43
- package/dist/tokens/darkmode/JSVariablesColor.js +4 -4
- package/dist/tokens/darkmode/SCSSVariables.scss +4 -4
- package/dist/tokens/darkmode/SCSSVariablesMapFlat.scss +4 -4
- package/dist/tokens/darkmode/SassCustomProperties.scss +4 -4
- package/dist/tokens/excursion/JSONVariablesFlat.json +67 -0
- package/dist/tokens/excursion/JSONVariablesNested.json +105 -0
- package/package.json +5 -5
- package/src/color/alert.json +18 -103
- package/src/color/background.json +213 -10
- package/src/color/base.json +1219 -70
- package/src/color/border.json +253 -133
- package/src/color/brand.json +1204 -185
- package/src/color/container.json +464 -0
- package/src/color/icon.json +449 -91
- package/src/color/text.json +200 -145
- package/src/color/tier.json +118 -52
- package/src/color/ui.json +29 -115
- package/src/color-darkmode/base.json +6 -2
- package/src/color-darkmode/border.json +6 -2
- package/src/color-darkmode/icon.json +6 -2
- package/src/color-darkmode/text.json +15 -5
- package/src/color-darkmode/tier.json +6 -2
- package/src/depth.json +0 -7
- package/src/size/scale.json +0 -80
- package/src/themes/excursion/color/background.json +73 -0
- package/src/themes/excursion/color/base.json +234 -0
- package/src/themes/excursion/color/brand.json +254 -0
- package/src/breakpoint.json +0 -28
- package/src/shadow.json +0 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
# [4.5.0](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v4.4.0...v4.5.0) (2024-05-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add excursion theme [#151](https://github.com/AlaskaAirlines/AuroDesignTokens/issues/151) ([1f33445](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/1f334454c520871a7130f9f4a086b777e2ad2010))
|
|
9
|
+
* add new and depcrecate old tier 2 color tokens ([e3b946c](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/e3b946cda3a96842d23e4cd141284435f0d28960))
|
|
10
|
+
* add new and deprecate old tier 1 color tokens ([4a40ba2](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/4a40ba25a911ae5fcc869d81921045e76f2dcb78))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Performance Improvements
|
|
14
|
+
|
|
15
|
+
* remove previously deprecated tokens ([1bc164b](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/1bc164bc7b111f8defd6155edbd199711ca53ae5))
|
|
16
|
+
|
|
3
17
|
# [4.4.0](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v4.3.1...v4.4.0) (2024-05-09)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -16,27 +16,30 @@ Pre-processed resources are available in the `./dist/tokens` directory of the [n
|
|
|
16
16
|
|
|
17
17
|
```
|
|
18
18
|
└── tokens
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
19
|
+
├── CSSCustomProperties.css
|
|
20
|
+
├── CSSSizeCustomProperties.css
|
|
21
|
+
├── JSData--color.js
|
|
22
|
+
├── JSONVariablesFlat.json
|
|
23
|
+
├── JSONVariablesNested.json
|
|
24
|
+
├── JSObject--allTokens.js
|
|
25
|
+
├── JSObject--deprecated.js
|
|
26
|
+
├── JSVariables--color.js
|
|
27
|
+
├── SCSSVariableMap.scss
|
|
28
|
+
├── SCSSVariables.scss
|
|
29
|
+
├── SCSSVariablesMapFlat.scss
|
|
30
|
+
├── SassCustomProperties.scss
|
|
31
|
+
├── SassSizeCustomProperties.scss
|
|
32
|
+
├── darkmode
|
|
33
|
+
| ├── CSSCustomProperties.css
|
|
34
|
+
| ├── JSDataColor.js
|
|
35
|
+
| ├── JSObject--deprecatedDark.js
|
|
36
|
+
| ├── JSVariablesColor.js
|
|
37
|
+
| ├── SCSSVariables.scss
|
|
38
|
+
| ├── SCSSVariablesMapFlat.scss
|
|
39
|
+
| └── SassCustomProperties.scss
|
|
40
|
+
└── excursion
|
|
41
|
+
├── JSONVariablesFlat.json
|
|
42
|
+
└── JSONVariablesNested.json
|
|
40
43
|
```
|
|
41
44
|
|
|
42
45
|
### Resource Descriptions
|
|
@@ -87,7 +90,7 @@ Moreover, if project specifications dictate the use of Sass variables, `SCSSVari
|
|
|
87
90
|
@import "~@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss";
|
|
88
91
|
```
|
|
89
92
|
|
|
90
|
-
**NOTE:** When developing new UI code in Sass, it's still advisable to leverage CSS custom properties over Sass variables. See **Install with CSS** below.
|
|
93
|
+
**NOTE:** When developing new UI code in Sass, it's still advisable to leverage CSS custom properties over Sass variables. See **Install with CSS** below.
|
|
91
94
|
|
|
92
95
|
### Install with CSS
|
|
93
96
|
|
|
@@ -115,4 +118,4 @@ Using the `https://cdn.jsdelivr.net/npm/` CDN, every file in the dist directory
|
|
|
115
118
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm//@aurodesignsystem/design-tokens@latest/dist/tokens/CSSCustomProperties.css">
|
|
116
119
|
```
|
|
117
120
|
|
|
118
|
-
**Note:** Exercise caution when using this CDN solution. The Auro team is NOT responsible for the maintenance of the CDN `https://cdn.jsdelivr.net/` [uptime](https://www.isitupdown.com/jsdelivr) and are unable to effectively troubleshoot response issues. It is recommended to use the installed version of Auro Design Tokens for critical UIs. Any additional CDN solution must be maintained by the team using this solution per this [Discussion](https://github.com/orgs/AlaskaAirlines/discussions/513).
|
|
121
|
+
**Note:** Exercise caution when using this CDN solution. The Auro team is NOT responsible for the maintenance of the CDN `https://cdn.jsdelivr.net/` [uptime](https://www.isitupdown.com/jsdelivr) and are unable to effectively troubleshoot response issues. It is recommended to use the installed version of Auro Design Tokens for critical UIs. Any additional CDN solution must be maintained by the team using this solution per this [Discussion](https://github.com/orgs/AlaskaAirlines/discussions/513).
|