@wistia/vhs-design-tokens 1.4.0-beta.21e6bd69.c268332 → 1.4.0-beta.6bb08535.2c6b564
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
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { Unit } from '@karibash/pixel-units';
|
|
2
2
|
|
|
3
3
|
declare module '@wistia/vhs-design-tokens' {
|
|
4
|
-
export type CSSHexString = `#${string}`;
|
|
5
|
-
|
|
6
4
|
export interface Breakpoints {
|
|
7
5
|
readonly xs: Unit<'em'>;
|
|
8
6
|
readonly sm: Unit<'em'>;
|
|
@@ -40,7 +38,6 @@ declare module '@wistia/vhs-design-tokens' {
|
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
export interface Shadows {
|
|
43
|
-
readonly elevation0: string;
|
|
44
41
|
readonly elevation1: string;
|
|
45
42
|
readonly elevation2: string;
|
|
46
43
|
}
|
|
@@ -56,6 +53,8 @@ declare module '@wistia/vhs-design-tokens' {
|
|
|
56
53
|
readonly exit: EasingValue;
|
|
57
54
|
}
|
|
58
55
|
|
|
56
|
+
export type CSSHexString = `#${string}`;
|
|
57
|
+
|
|
59
58
|
export interface Colors {
|
|
60
59
|
readonly brandBlue100: CSSHexString;
|
|
61
60
|
readonly brandBlue200: CSSHexString;
|
|
@@ -134,7 +133,7 @@ declare module '@wistia/vhs-design-tokens' {
|
|
|
134
133
|
}
|
|
135
134
|
|
|
136
135
|
export type FontWeightNumbers = 1 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 1000;
|
|
137
|
-
export type FontWeightStrings =
|
|
136
|
+
export type FontWeightStrings = 'normal' | 'bold' | 'lighter' | 'bolder' | 'inherit' | 'initial' | 'revert' | 'revert-layer' | 'unset';
|
|
138
137
|
export type FontWeight = FontWeightNumbers | FontWeightStrings;
|
|
139
138
|
|
|
140
139
|
export interface Fonts {
|
|
@@ -168,5 +167,5 @@ declare module '@wistia/vhs-design-tokens' {
|
|
|
168
167
|
readonly easing: Easings;
|
|
169
168
|
readonly font: Fonts;
|
|
170
169
|
readonly color: Colors;
|
|
171
|
-
}
|
|
170
|
+
}
|
|
172
171
|
}
|