@daikin-oss/dds-tokens 0.3.0 → 0.3.2
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 +12 -0
- package/README.md +1 -1
- package/build/css/daikin/Dark/variables.css +1 -0
- package/build/css/daikin/Light/variables.css +1 -0
- package/build/js/daikin/Dark/variables.cjs +1 -0
- package/build/js/daikin/Dark/variables.d.cts +1 -0
- package/build/js/daikin/Dark/variables.d.ts +1 -0
- package/build/js/daikin/Dark/variables.js +1 -0
- package/build/js/daikin/Light/variables.cjs +1 -0
- package/build/js/daikin/Light/variables.d.cts +1 -0
- package/build/js/daikin/Light/variables.d.ts +1 -0
- package/build/js/daikin/Light/variables.js +1 -0
- package/build/json/aaf/Dark/tokens.json +274 -137
- package/build/json/aaf/Light/tokens.json +274 -137
- package/build/json/daikin/Dark/tokens.json +363 -179
- package/build/json/daikin/Light/tokens.json +363 -179
- package/build/scss/daikin/Dark/_mixins.scss +1 -0
- package/build/scss/daikin/Light/_mixins.scss +1 -0
- package/package.json +1 -1
- package/themes/$themes.json +8 -4
- package/themes/dkn/dark/system.json +4 -0
- package/themes/dkn/light/system.json +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2 token(s) added.
|
|
8
|
+
|
|
9
|
+
## 0.3.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#43](https://github.com/dsv-rp/dds-tokens/pull/43) [`f337cef`](https://github.com/dsv-rp/dds-tokens/commit/f337ceffd68b769f50bba793d3ce010a50b09ab9) Thanks [@yodas7](https://github.com/yodas7)! - Add Tokens Studio type to the tokens in the JSON outputs.
|
|
14
|
+
|
|
3
15
|
## 0.3.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -97,6 +97,6 @@ Import individual themes:
|
|
|
97
97
|
|
|
98
98
|
There are JSON files under `json/` that lists the types and values of the tokens.
|
|
99
99
|
These are basically for internal use and are used to integrate design tokens with Tailwind CSS.
|
|
100
|
-
The structure of the JSON files is `{ "<token name>": ["<token value>", "<token type>"] }`.
|
|
100
|
+
The structure of the JSON files is `{ "<token name>": ["<token value>", "<style-dictionary token type>", "<tokens-studio token type>" | null] }`.
|
|
101
101
|
|
|
102
102
|
In addition, the theme JSON files before building, which are located in `themes/`, are also published in the same path in the package.
|
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
--dds-color-common-surface-danger-hover: #3e0307;
|
|
115
115
|
--dds-color-common-surface-danger-press: #5d050a;
|
|
116
116
|
--dds-color-common-surface-default: #212121;
|
|
117
|
+
--dds-color-common-surface-inverse: #ffffff;
|
|
117
118
|
--dds-color-common-surface-hover: #282828;
|
|
118
119
|
--dds-color-common-surface-press: #313131;
|
|
119
120
|
--dds-color-common-surface-selected-default: #002b40;
|
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
--dds-color-common-surface-danger-hover: #fdd9db;
|
|
115
115
|
--dds-color-common-surface-danger-press: #fbb3b7;
|
|
116
116
|
--dds-color-common-surface-default: #ffffff;
|
|
117
|
+
--dds-color-common-surface-inverse: #616161;
|
|
117
118
|
--dds-color-common-surface-hover: #f2f2f2;
|
|
118
119
|
--dds-color-common-surface-press: #ebebeb;
|
|
119
120
|
--dds-color-common-surface-selected-default: #ddf3fc;
|
|
@@ -114,6 +114,7 @@ module.exports = {
|
|
|
114
114
|
colorCommonSurfaceDangerHover: "#3e0307",
|
|
115
115
|
colorCommonSurfaceDangerPress: "#5d050a",
|
|
116
116
|
colorCommonSurfaceDefault: "#212121",
|
|
117
|
+
colorCommonSurfaceInverse: "#ffffff",
|
|
117
118
|
colorCommonSurfaceHover: "#282828",
|
|
118
119
|
colorCommonSurfacePress: "#313131",
|
|
119
120
|
colorCommonSurfaceSelectedDefault: "#002b40",
|
|
@@ -113,6 +113,7 @@ export const colorCommonSurfaceNeutralPress: string;
|
|
|
113
113
|
export const colorCommonSurfaceDangerHover: string;
|
|
114
114
|
export const colorCommonSurfaceDangerPress: string;
|
|
115
115
|
export const colorCommonSurfaceDefault: string;
|
|
116
|
+
export const colorCommonSurfaceInverse: string;
|
|
116
117
|
export const colorCommonSurfaceHover: string;
|
|
117
118
|
export const colorCommonSurfacePress: string;
|
|
118
119
|
export const colorCommonSurfaceSelectedDefault: string;
|
|
@@ -113,6 +113,7 @@ export const colorCommonSurfaceNeutralPress: string;
|
|
|
113
113
|
export const colorCommonSurfaceDangerHover: string;
|
|
114
114
|
export const colorCommonSurfaceDangerPress: string;
|
|
115
115
|
export const colorCommonSurfaceDefault: string;
|
|
116
|
+
export const colorCommonSurfaceInverse: string;
|
|
116
117
|
export const colorCommonSurfaceHover: string;
|
|
117
118
|
export const colorCommonSurfacePress: string;
|
|
118
119
|
export const colorCommonSurfaceSelectedDefault: string;
|
|
@@ -113,6 +113,7 @@ export const colorCommonSurfaceNeutralPress = "#313131";
|
|
|
113
113
|
export const colorCommonSurfaceDangerHover = "#3e0307";
|
|
114
114
|
export const colorCommonSurfaceDangerPress = "#5d050a";
|
|
115
115
|
export const colorCommonSurfaceDefault = "#212121";
|
|
116
|
+
export const colorCommonSurfaceInverse = "#ffffff";
|
|
116
117
|
export const colorCommonSurfaceHover = "#282828";
|
|
117
118
|
export const colorCommonSurfacePress = "#313131";
|
|
118
119
|
export const colorCommonSurfaceSelectedDefault = "#002b40";
|
|
@@ -114,6 +114,7 @@ module.exports = {
|
|
|
114
114
|
colorCommonSurfaceDangerHover: "#fdd9db",
|
|
115
115
|
colorCommonSurfaceDangerPress: "#fbb3b7",
|
|
116
116
|
colorCommonSurfaceDefault: "#ffffff",
|
|
117
|
+
colorCommonSurfaceInverse: "#616161",
|
|
117
118
|
colorCommonSurfaceHover: "#f2f2f2",
|
|
118
119
|
colorCommonSurfacePress: "#ebebeb",
|
|
119
120
|
colorCommonSurfaceSelectedDefault: "#ddf3fc",
|
|
@@ -113,6 +113,7 @@ export const colorCommonSurfaceNeutralPress: string;
|
|
|
113
113
|
export const colorCommonSurfaceDangerHover: string;
|
|
114
114
|
export const colorCommonSurfaceDangerPress: string;
|
|
115
115
|
export const colorCommonSurfaceDefault: string;
|
|
116
|
+
export const colorCommonSurfaceInverse: string;
|
|
116
117
|
export const colorCommonSurfaceHover: string;
|
|
117
118
|
export const colorCommonSurfacePress: string;
|
|
118
119
|
export const colorCommonSurfaceSelectedDefault: string;
|
|
@@ -113,6 +113,7 @@ export const colorCommonSurfaceNeutralPress: string;
|
|
|
113
113
|
export const colorCommonSurfaceDangerHover: string;
|
|
114
114
|
export const colorCommonSurfaceDangerPress: string;
|
|
115
115
|
export const colorCommonSurfaceDefault: string;
|
|
116
|
+
export const colorCommonSurfaceInverse: string;
|
|
116
117
|
export const colorCommonSurfaceHover: string;
|
|
117
118
|
export const colorCommonSurfacePress: string;
|
|
118
119
|
export const colorCommonSurfaceSelectedDefault: string;
|
|
@@ -113,6 +113,7 @@ export const colorCommonSurfaceNeutralPress = "#ebebeb";
|
|
|
113
113
|
export const colorCommonSurfaceDangerHover = "#fdd9db";
|
|
114
114
|
export const colorCommonSurfaceDangerPress = "#fbb3b7";
|
|
115
115
|
export const colorCommonSurfaceDefault = "#ffffff";
|
|
116
|
+
export const colorCommonSurfaceInverse = "#616161";
|
|
116
117
|
export const colorCommonSurfaceHover = "#f2f2f2";
|
|
117
118
|
export const colorCommonSurfacePress = "#ebebeb";
|
|
118
119
|
export const colorCommonSurfaceSelectedDefault = "#ddf3fc";
|