@wistia/vhs-design-tokens 1.1.0 → 1.2.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/dist/css/design-tokens.css +17 -13
- package/dist/js/colorMetadata.js +1 -1
- package/dist/js/designTokens.js +17 -13
- package/dist/scss/_design-tokens.scss +17 -13
- package/package.json +1 -1
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 07 Oct 2022 14:54:27 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
--breakpoint-
|
|
7
|
+
--breakpoint-xs: 22.5em;
|
|
8
|
+
--breakpoint-sm: 40em;
|
|
9
|
+
--breakpoint-md: 60em;
|
|
10
|
+
--breakpoint-lg: 90em;
|
|
11
|
+
--breakpoint-xl: 120em;
|
|
8
12
|
--color-brand-blue-100: #e2effd;
|
|
9
13
|
--color-brand-blue-200: #bed8fb;
|
|
10
14
|
--color-brand-blue-300: #87abff;
|
|
@@ -98,15 +102,15 @@
|
|
|
98
102
|
--font-size-small: 14px;
|
|
99
103
|
--shadow-elevation1: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
100
104
|
--shadow-elevation2: 0 0 64px 0 rgba(0, 0, 0, 0.08);
|
|
101
|
-
--spacing-
|
|
102
|
-
--spacing-
|
|
103
|
-
--spacing-
|
|
104
|
-
--spacing-
|
|
105
|
-
--spacing-
|
|
106
|
-
--spacing-
|
|
107
|
-
--spacing-
|
|
108
|
-
--spacing-
|
|
109
|
-
--spacing-
|
|
110
|
-
--spacing-
|
|
111
|
-
--spacing-
|
|
105
|
+
--spacing-space01: 4px;
|
|
106
|
+
--spacing-space02: 8px;
|
|
107
|
+
--spacing-space03: 12px;
|
|
108
|
+
--spacing-space04: 16px;
|
|
109
|
+
--spacing-space05: 24px;
|
|
110
|
+
--spacing-space06: 32px;
|
|
111
|
+
--spacing-space07: 48px;
|
|
112
|
+
--spacing-space08: 64px;
|
|
113
|
+
--spacing-space09: 80px;
|
|
114
|
+
--spacing-space10: 96px;
|
|
115
|
+
--spacing-space11: 120px;
|
|
112
116
|
}
|
package/dist/js/colorMetadata.js
CHANGED
package/dist/js/designTokens.js
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 07 Oct 2022 14:54:27 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
7
7
|
breakpoint: {
|
|
8
|
-
|
|
8
|
+
xs: '22.5em',
|
|
9
|
+
sm: '40em',
|
|
10
|
+
md: '60em',
|
|
11
|
+
lg: '90em',
|
|
12
|
+
xl: '120em',
|
|
9
13
|
},
|
|
10
14
|
color: {
|
|
11
15
|
brandBlue100: '#e2effd',
|
|
@@ -127,16 +131,16 @@ module.exports = {
|
|
|
127
131
|
elevation2: '0 0 64px 0 rgba(0, 0, 0, 0.08)',
|
|
128
132
|
},
|
|
129
133
|
spacing: {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
134
|
+
space01: '4px',
|
|
135
|
+
space02: '8px',
|
|
136
|
+
space03: '12px',
|
|
137
|
+
space04: '16px',
|
|
138
|
+
space05: '24px',
|
|
139
|
+
space06: '32px',
|
|
140
|
+
space07: '48px',
|
|
141
|
+
space08: '64px',
|
|
142
|
+
space09: '80px',
|
|
143
|
+
space10: '96px',
|
|
144
|
+
space11: '120px',
|
|
141
145
|
},
|
|
142
146
|
};
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Fri, 07 Oct 2022 14:54:27 GMT
|
|
4
4
|
|
|
5
|
-
$breakpoint-
|
|
5
|
+
$breakpoint-xs: 22.5em;
|
|
6
|
+
$breakpoint-sm: 40em;
|
|
7
|
+
$breakpoint-md: 60em;
|
|
8
|
+
$breakpoint-lg: 90em;
|
|
9
|
+
$breakpoint-xl: 120em;
|
|
6
10
|
$color-brand-blue-100: #e2effd;
|
|
7
11
|
$color-brand-blue-200: #bed8fb;
|
|
8
12
|
$color-brand-blue-300: #87abff;
|
|
@@ -96,14 +100,14 @@ $font-size-default: 16px;
|
|
|
96
100
|
$font-size-small: 14px;
|
|
97
101
|
$shadow-elevation1: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
98
102
|
$shadow-elevation2: 0 0 64px 0 rgba(0, 0, 0, 0.08);
|
|
99
|
-
$spacing-
|
|
100
|
-
$spacing-
|
|
101
|
-
$spacing-
|
|
102
|
-
$spacing-
|
|
103
|
-
$spacing-
|
|
104
|
-
$spacing-
|
|
105
|
-
$spacing-
|
|
106
|
-
$spacing-
|
|
107
|
-
$spacing-
|
|
108
|
-
$spacing-
|
|
109
|
-
$spacing-
|
|
103
|
+
$spacing-space01: 4px;
|
|
104
|
+
$spacing-space02: 8px;
|
|
105
|
+
$spacing-space03: 12px;
|
|
106
|
+
$spacing-space04: 16px;
|
|
107
|
+
$spacing-space05: 24px;
|
|
108
|
+
$spacing-space06: 32px;
|
|
109
|
+
$spacing-space07: 48px;
|
|
110
|
+
$spacing-space08: 64px;
|
|
111
|
+
$spacing-space09: 80px;
|
|
112
|
+
$spacing-space10: 96px;
|
|
113
|
+
$spacing-space11: 120px;
|