@blackbaud/skyux-design-tokens 0.0.53 → 0.0.54
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 -0
- package/README.md +4 -0
- package/assets/scss/blackbaud.css +583 -564
- package/assets/scss/modern.css +510 -493
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
- Added `neutral-medium-dark` token in modern. [#64](https://github.com/blackbaud/skyux-design-tokens/pull/64)
|
|
4
4
|
|
|
5
|
+
## [0.0.54](https://github.com/blackbaud/skyux-design-tokens/compare/0.0.53...0.0.54) (2025-05-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add typescript, support breakpoints, add unit testing ([#159](https://github.com/blackbaud/skyux-design-tokens/issues/159)) ([0e672f8](https://github.com/blackbaud/skyux-design-tokens/commit/0e672f85b2a491fecd919a7853344489a4876a96))
|
|
11
|
+
* add units to unitless 0 values ([#164](https://github.com/blackbaud/skyux-design-tokens/issues/164)) ([701b8fd](https://github.com/blackbaud/skyux-design-tokens/commit/701b8fd0d61d162dcc2866c474f21715e870fcca))
|
|
12
|
+
* progress indicator tokens ([#165](https://github.com/blackbaud/skyux-design-tokens/issues/165)) ([83cb155](https://github.com/blackbaud/skyux-design-tokens/commit/83cb1555a7aee93df02da61b63c25b27c128a3fa))
|
|
13
|
+
* switch colors ([#163](https://github.com/blackbaud/skyux-design-tokens/issues/163)) ([19962c5](https://github.com/blackbaud/skyux-design-tokens/commit/19962c5351467556fdada3c104542d97e62ac5c4))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* alphabetize reference css variables ([#162](https://github.com/blackbaud/skyux-design-tokens/issues/162)) ([016ef0d](https://github.com/blackbaud/skyux-design-tokens/commit/016ef0da29f7ad7e075b5eb334f47686e0329eb7))
|
|
19
|
+
* alphabetize token output ([#161](https://github.com/blackbaud/skyux-design-tokens/issues/161)) ([c3b706c](https://github.com/blackbaud/skyux-design-tokens/commit/c3b706c3cfaf06807f306c9c2f3deacdde9bd349))
|
|
20
|
+
|
|
5
21
|
## [0.0.53](https://github.com/blackbaud/skyux-design-tokens/compare/0.0.52...0.0.53) (2025-04-23)
|
|
6
22
|
|
|
7
23
|
|
package/README.md
CHANGED
|
@@ -15,3 +15,7 @@ This repository contains design tokens for building styles for SKY UX. The token
|
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
To create these result files locally, clone this repository, run `npm install` and then `npm run build`.
|
|
18
|
+
|
|
19
|
+
## Updating snapshot tests
|
|
20
|
+
|
|
21
|
+
If you see a test failure that indicates the test is "obsolete," it means that the outputted tokens have changed and the snapshot test failed. To update the snapshot, run `vitest run --update` and review the changes to the snapshot file to ensure they are all expected. If you do not have `vitest` installed, run `npm i -g vitest`.
|