@wistia/vhs-design-tokens 1.5.0 → 1.5.1-beta.31c33b31.b882b65

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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 08 Feb 2024 16:16:51 GMT
3
+ * Generated on Thu, 08 Feb 2024 21:07:13 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -79,7 +79,30 @@ module.exports = {
79
79
  grey900: '#37373c',
80
80
  grey1000: '#1f1f22',
81
81
  grey1100: '#0b0d0e',
82
- statuserror: '#ffecec',
82
+ error100: '#ffecec',
83
+ error200: '#ffcaca',
84
+ error300: '#ff9a9a',
85
+ error400: '#ff6962',
86
+ error500: '#fa4040',
87
+ error600: '#d63727',
88
+ error700: '#aa0d15',
89
+ error800: '#860011',
90
+ success100: '#e6f9f3',
91
+ success200: '#bfefe0',
92
+ success300: '#81e0c1',
93
+ success400: '#41d0a3',
94
+ success500: '#00c185',
95
+ success600: '#00966e',
96
+ success700: '#047063',
97
+ success800: '#025050',
98
+ warning100: '#fff8e6',
99
+ warning200: '#ffefc8',
100
+ warning300: '#ffdf96',
101
+ warning400: '#ffce5a',
102
+ warning500: '#fabe1f',
103
+ warning600: '#dc9601',
104
+ warning700: '#be7200',
105
+ warning800: '#b45101',
83
106
  },
84
107
  duration: {
85
108
  productive: {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Thu, 08 Feb 2024 16:16:51 GMT
3
+ // Generated on Thu, 08 Feb 2024 21:07:13 GMT
4
4
 
5
5
  $breakpoint-xs: 0em;
6
6
  $breakpoint-sm: 37.5em;
@@ -74,23 +74,30 @@ $color-grey-800: #4a4a51;
74
74
  $color-grey-900: #37373c;
75
75
  $color-grey-1000: #1f1f22;
76
76
  $color-grey-1100: #0b0d0e;
77
- $color-status-error: #ffecec;
78
- $color-status-warning-100: #fff8e6;
79
- $color-status-warning-200: #ffefc8;
80
- $color-status-warning-300: #ffdf96;
81
- $color-status-warning-400: #ffce5a;
82
- $color-status-warning-500: #fabe1f;
83
- $color-status-warning-600: #dc9601;
84
- $color-status-warning-700: #be7200;
85
- $color-status-warning-800: #b45101;
86
- $color-status-success-100: #e6f9f3;
87
- $color-status-success-200: #bfefe0;
88
- $color-status-success-300: #81e0c1;
89
- $color-status-success-400: #41d0a3;
90
- $color-status-success-500: #00c185;
91
- $color-status-success-600: #00966e;
92
- $color-status-success-700: #047063;
93
- $color-status-success-800: #025050;
77
+ $color-error-100: #ffecec;
78
+ $color-error-200: #ffcaca;
79
+ $color-error-300: #ff9a9a;
80
+ $color-error-400: #ff6962;
81
+ $color-error-500: #fa4040;
82
+ $color-error-600: #d63727;
83
+ $color-error-700: #aa0d15;
84
+ $color-error-800: #860011;
85
+ $color-success-100: #e6f9f3;
86
+ $color-success-200: #bfefe0;
87
+ $color-success-300: #81e0c1;
88
+ $color-success-400: #41d0a3;
89
+ $color-success-500: #00c185;
90
+ $color-success-600: #00966e;
91
+ $color-success-700: #047063;
92
+ $color-success-800: #025050;
93
+ $color-warning-100: #fff8e6;
94
+ $color-warning-200: #ffefc8;
95
+ $color-warning-300: #ffdf96;
96
+ $color-warning-400: #ffce5a;
97
+ $color-warning-500: #fabe1f;
98
+ $color-warning-600: #dc9601;
99
+ $color-warning-700: #be7200;
100
+ $color-warning-800: #b45101;
94
101
  $duration-productive-fast: 70ms;
95
102
  $duration-productive-moderate: 110ms;
96
103
  $duration-productive-slow: 150ms;
package/index.d.ts CHANGED
@@ -132,34 +132,32 @@ declare module '@wistia/vhs-design-tokens' {
132
132
  readonly grey1000: CSSHexString;
133
133
  readonly grey1100: CSSHexString;
134
134
 
135
- readonly status: {
136
- error100: CSSHexString;
137
- error200: CSSHexString;
138
- error300: CSSHexString;
139
- error400: CSSHexString;
140
- error500: CSSHexString;
141
- error600: CSSHexString;
142
- error700: CSSHexString;
143
- error800: CSSHexString;
144
-
145
- warning100: CSSHexString;
146
- warning200: CSSHexString;
147
- warning300: CSSHexString;
148
- warning400: CSSHexString;
149
- warning500: CSSHexString;
150
- warning600: CSSHexString;
151
- warning700: CSSHexString;
152
- warning800: CSSHexString;
153
-
154
- success100: CSSHexString;
155
- success200: CSSHexString;
156
- success300: CSSHexString;
157
- success400: CSSHexString;
158
- success500: CSSHexString;
159
- success600: CSSHexString;
160
- success700: CSSHexString;
161
- success800: CSSHexString;
162
- };
135
+ readonly error100: CSSHexString;
136
+ readonly error200: CSSHexString;
137
+ readonly error300: CSSHexString;
138
+ readonly error400: CSSHexString;
139
+ readonly error500: CSSHexString;
140
+ readonly error600: CSSHexString;
141
+ readonly error700: CSSHexString;
142
+ readonly error800: CSSHexString;
143
+
144
+ readonly warning100: CSSHexString;
145
+ readonly warning200: CSSHexString;
146
+ readonly warning300: CSSHexString;
147
+ readonly warning400: CSSHexString;
148
+ readonly warning500: CSSHexString;
149
+ readonly warning600: CSSHexString;
150
+ readonly warning700: CSSHexString;
151
+ readonly warning800: CSSHexString;
152
+
153
+ readonly success100: CSSHexString;
154
+ readonly success200: CSSHexString;
155
+ readonly success300: CSSHexString;
156
+ readonly success400: CSSHexString;
157
+ readonly success500: CSSHexString;
158
+ readonly success600: CSSHexString;
159
+ readonly success700: CSSHexString;
160
+ readonly success800: CSSHexString;
163
161
  }
164
162
 
165
163
  export type FontWeightNumbers = 1 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 1000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/vhs-design-tokens",
3
- "version": "1.5.0",
3
+ "version": "1.5.1-beta.31c33b31.b882b65",
4
4
  "description": "VHS design tokens",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -26,15 +26,15 @@
26
26
  "@karibash/pixel-units": "^2.3.0"
27
27
  },
28
28
  "devDependencies": {
29
- "@commitlint/cli": "^18.4.3",
30
- "@commitlint/config-conventional": "^18.4.3",
31
- "@wistia/eslint-config": "^0.23.2",
32
- "eslint": "^8.51.0",
33
- "husky": "^8.0.3",
29
+ "@commitlint/cli": "^18.6.0",
30
+ "@commitlint/config-conventional": "^18.6.0",
31
+ "@wistia/eslint-config": "^0.30.0",
32
+ "eslint": "^8.56.0",
33
+ "husky": "^9.0.10",
34
34
  "js-yaml": "^4.1.0",
35
35
  "onchange": "^7.1.0",
36
36
  "prettier": "^2.8.8",
37
- "style-dictionary": "^3.8.0"
37
+ "style-dictionary": "^3.9.2"
38
38
  },
39
39
  "author": "Wistia Engineering",
40
40
  "license": "UNLICENSED",
@@ -46,5 +46,5 @@
46
46
  "url": "https://github.com/wistia/vhs-design-tokens/issues"
47
47
  },
48
48
  "homepage": "https://github.com/wistia/vhs-design-tokens#readme",
49
- "packageManager": "yarn@4.0.1"
49
+ "packageManager": "yarn@4.0.2"
50
50
  }