@eleven-labs/design-system 0.27.0 → 0.28.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/constants/tokenVariables.d.ts +79 -6
- package/dist/index.es.js +312 -239
- package/dist/index.umd.cjs +12 -12
- package/dist/scss/abstracts/mixins/_component.scss +7 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +43 -4
- package/dist/scss/abstracts/variables/_variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Tue, 30 Jan 2024
|
|
3
|
+
* Generated on Tue, 30 Jan 2024 09:44:33 GMT
|
|
4
4
|
*/
|
|
5
5
|
export declare const tokenVariables: {
|
|
6
6
|
asset: {
|
|
@@ -84,6 +84,57 @@ export declare const tokenVariables: {
|
|
|
84
84
|
};
|
|
85
85
|
};
|
|
86
86
|
typography: {
|
|
87
|
+
'heading-markup': {
|
|
88
|
+
base: {
|
|
89
|
+
'line-height': {
|
|
90
|
+
value: string;
|
|
91
|
+
};
|
|
92
|
+
'font-weight': {
|
|
93
|
+
value: string;
|
|
94
|
+
};
|
|
95
|
+
'margin-top': {
|
|
96
|
+
value: string;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
s: {
|
|
100
|
+
'font-size': {
|
|
101
|
+
value: string;
|
|
102
|
+
};
|
|
103
|
+
'margin-bottom': {
|
|
104
|
+
value: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
m: {
|
|
108
|
+
'font-size': {
|
|
109
|
+
value: string;
|
|
110
|
+
};
|
|
111
|
+
'margin-bottom': {
|
|
112
|
+
value: string;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
l: {
|
|
116
|
+
'font-size': {
|
|
117
|
+
value: string;
|
|
118
|
+
};
|
|
119
|
+
'font-weight': {
|
|
120
|
+
value: string;
|
|
121
|
+
};
|
|
122
|
+
'margin-bottom': {
|
|
123
|
+
value: string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
xl: {
|
|
127
|
+
'font-size': {
|
|
128
|
+
value: string;
|
|
129
|
+
};
|
|
130
|
+
'font-weight': {
|
|
131
|
+
value: string;
|
|
132
|
+
};
|
|
133
|
+
'margin-bottom': {
|
|
134
|
+
value: string;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
};
|
|
87
138
|
heading: {
|
|
88
139
|
base: {
|
|
89
140
|
'font-family': {
|
|
@@ -168,12 +219,29 @@ export declare const tokenVariables: {
|
|
|
168
219
|
};
|
|
169
220
|
};
|
|
170
221
|
desktop: {
|
|
171
|
-
base: {
|
|
172
|
-
'letter-spacing': {
|
|
173
|
-
value: string;
|
|
174
|
-
};
|
|
175
|
-
};
|
|
176
222
|
typography: {
|
|
223
|
+
'heading-markup': {
|
|
224
|
+
s: {
|
|
225
|
+
'font-size': {
|
|
226
|
+
value: string;
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
m: {
|
|
230
|
+
'font-size': {
|
|
231
|
+
value: string;
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
l: {
|
|
235
|
+
'font-size': {
|
|
236
|
+
value: string;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
xl: {
|
|
240
|
+
'font-size': {
|
|
241
|
+
value: string;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
};
|
|
177
245
|
heading: {
|
|
178
246
|
s: {
|
|
179
247
|
'font-size': {
|
|
@@ -226,6 +294,11 @@ export declare const tokenVariables: {
|
|
|
226
294
|
};
|
|
227
295
|
};
|
|
228
296
|
};
|
|
297
|
+
base: {
|
|
298
|
+
'letter-spacing': {
|
|
299
|
+
value: string;
|
|
300
|
+
};
|
|
301
|
+
};
|
|
229
302
|
};
|
|
230
303
|
'line-height': {
|
|
231
304
|
base: {
|