@wistia/vhs-design-tokens 1.4.3-beta.f4f0aecf.36ad147 → 1.4.3-beta.f57f4414.36b1308
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/dist/js/colorMetadata.js
CHANGED
package/dist/js/designTokens.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -131,10 +131,48 @@ declare module '@wistia/vhs-design-tokens' {
|
|
|
131
131
|
readonly grey900: CSSHexString;
|
|
132
132
|
readonly grey1000: CSSHexString;
|
|
133
133
|
readonly grey1100: CSSHexString;
|
|
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
|
+
};
|
|
134
163
|
}
|
|
135
164
|
|
|
136
165
|
export type FontWeightNumbers = 1 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 1000;
|
|
137
|
-
export type FontWeightStrings =
|
|
166
|
+
export type FontWeightStrings =
|
|
167
|
+
| 'normal'
|
|
168
|
+
| 'bold'
|
|
169
|
+
| 'lighter'
|
|
170
|
+
| 'bolder'
|
|
171
|
+
| 'inherit'
|
|
172
|
+
| 'initial'
|
|
173
|
+
| 'revert'
|
|
174
|
+
| 'revert-layer'
|
|
175
|
+
| 'unset';
|
|
138
176
|
export type FontWeight = FontWeightNumbers | FontWeightStrings;
|
|
139
177
|
|
|
140
178
|
export interface Fonts {
|