@volue/design-colors 3.0.0-next.7 → 3.0.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 +31 -0
- package/README.md +2 -2
- package/dist/flat.common.js +231 -207
- package/dist/flat.d.ts +212 -196
- package/dist/flat.module.js +169 -153
- package/dist/generic.common.js +581 -465
- package/dist/generic.d.ts +379 -323
- package/dist/generic.module.js +581 -465
- package/dist/index.common.js +125 -115
- package/dist/index.cssmodules.css +106 -98
- package/dist/index.custom-properties.css +107 -99
- package/dist/index.d.ts +125 -115
- package/dist/index.json +106 -98
- package/dist/index.map.scss +107 -99
- package/dist/index.module.js +125 -115
- package/dist/index.scss +107 -99
- package/dist/internal/fillsWithTextColors.json +3 -161
- package/package.json +1 -1
- package/src/core.json +8 -8
- package/src/datavis.json +12 -12
- package/src/functional.json +118 -85
- package/src/internal/fills.json +3 -27
- package/src/rgb-channels.json +122 -122
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,37 @@ All notable changes to this project will be documented in this file. See [Conven
|
|
|
4
4
|
|
|
5
5
|
<!-- MONODEPLOY:BELOW -->
|
|
6
6
|
|
|
7
|
+
## [3.0.0](https://github.com/Volue/wave/compare/@volue/design-colors@2.0.3...@volue/design-colors@3.0.0) "@volue/design-colors" (2023-10-13)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* **tokens:** new color palette
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **colors:** add data vis colors to rgb channels ([1d88e31](https://github.com/Volue/wave/commit/1d88e316d2f50de408059fd2eabb96e0c3c071a7))
|
|
17
|
+
* **colors:** add interactive states for bold variant ([a378e0a](https://github.com/Volue/wave/commit/a378e0aad61b81f2edb6f935b30800be00b53ffc))
|
|
18
|
+
* **colors:** expose rgb channel background tokens ([a6ec2f0](https://github.com/Volue/wave/commit/a6ec2f06715bb85d655c81858e4916045f2e5b8c))
|
|
19
|
+
* include `foregroundAccentSubtle` token ([af0f071](https://github.com/Volue/wave/commit/af0f071522b3df14d6cbb220342c37477274c238))
|
|
20
|
+
* **react:** include rgb channel background tokens ([f2e97a6](https://github.com/Volue/wave/commit/f2e97a62c7bcf2ad94cb1af6e95417dd7bc6c3a8))
|
|
21
|
+
* **tokens:** new color palette ([16f0b44](https://github.com/Volue/wave/commit/16f0b44f9e658853c7dd05e089c3d659dc48d8b1))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* change `foregroundAccentModerate` value ([84d2779](https://github.com/Volue/wave/commit/84d2779127f1052fe4e2c9d24c1f759f7bc27014))
|
|
27
|
+
* correct additional entry points resolution for webpack 4 ([510aa97](https://github.com/Volue/wave/commit/510aa97ec8b115e35252a96d6d2d553629190313))
|
|
28
|
+
* rm `backgroundInverse` token in favour of rgb channel tokens ([f3b4168](https://github.com/Volue/wave/commit/f3b4168538c2f786f05c49579344587270897d88))
|
|
29
|
+
* rm functional color tokens 2nd layer, add default active interactive states ([08e5220](https://github.com/Volue/wave/commit/08e522075f0ee729f0790fed5f5423dc5d82fd3f)), closes [#410](https://github.com/Volue/wave/issues/410)
|
|
30
|
+
* **styles:** include missing canvas fill helpers ([b784202](https://github.com/Volue/wave/commit/b784202fb715556ed1513e6d37bd100ab9f04098))
|
|
31
|
+
* **styles:** replace `body` with `canvas` in foreground token for consistency ([2a27545](https://github.com/Volue/wave/commit/2a275455aa353b0baf180741f4d1dfba1e97e2a2))
|
|
32
|
+
* **styles:** revert to `foregroundBody` ([35a9584](https://github.com/Volue/wave/commit/35a958465bae12256609e5d32df6b5526d6f2fca))
|
|
33
|
+
* update color primitive values ([df5775d](https://github.com/Volue/wave/commit/df5775d612be2b7a9309a0b2e0dbee1193580299))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
7
38
|
## [2.0.3](https://github.com/Volue/wave/compare/@volue/design-colors@2.0.2...@volue/design-colors@2.0.3) "@volue/design-colors" (2023-06-15)
|
|
8
39
|
|
|
9
40
|
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Tokens are exported as nested object structure.
|
|
|
20
20
|
```js
|
|
21
21
|
const tokens = require('@volue/design-colors');
|
|
22
22
|
console.log(tokens.core.blue100); // rgb(0, 133, 159)
|
|
23
|
-
console.log(tokens.background.
|
|
23
|
+
console.log(tokens.background.neutral.default);
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
#### Flat tokens
|
|
@@ -30,7 +30,7 @@ Use `flat` entrypoint to consume flattened tokens:
|
|
|
30
30
|
```js
|
|
31
31
|
const tokens = require('@volue/design-colors/flat');
|
|
32
32
|
console.log(tokens.colorBlue100);
|
|
33
|
-
console.log(tokens.
|
|
33
|
+
console.log(tokens.backgroundNeutralSubtle);
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### JSON
|