@eleven-labs/design-system 0.28.0 → 0.29.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.
@@ -1,4 +1,5 @@
1
1
  export * from './tokenVariables';
2
+ export { tokenVariables as tokenVariablesDesktop } from './tokenVariablesDesktop';
2
3
  export * from './tokenNameList';
3
4
  export * from './cssProperties';
4
5
  export * from './cssPropertyNameList';
@@ -4,5 +4,5 @@ export declare const widthTokenNameList: readonly ("full" | "screen" | "content-
4
4
  export declare const heightTokenNameList: readonly ("full" | "screen")[];
5
5
  export declare const fontWeightTokenNameList: readonly ("regular" | "medium" | "semi-bold" | "bold")[];
6
6
  export declare const iconTokenNameList: readonly ("access-time" | "calendar" | "facebook" | "language" | "link" | "linkedin" | "rss" | "message" | "person" | "search" | "twitter" | "welcometothejungle" | "github" | "arrow" | "underline")[];
7
- export declare const headingSizeTokenNameList: readonly ("s" | "m" | "l" | "xl")[];
8
- export declare const textSizeTokenNameList: readonly ("xs" | "s" | "m")[];
7
+ export declare const headingSizeTokenNameList: readonly ("s" | "m" | "l" | "xl" | "base")[];
8
+ export declare const textSizeTokenNameList: readonly ("xs" | "s" | "m" | "base")[];
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 30 Jan 2024 09:44:33 GMT
3
+ * Generated on Tue, 30 Jan 2024 15:02:37 GMT
4
4
  */
5
5
  export declare const tokenVariables: {
6
6
  asset: {
@@ -154,9 +154,6 @@ export declare const tokenVariables: {
154
154
  'font-weight': {
155
155
  value: string;
156
156
  };
157
- 'text-transform': {
158
- value: string;
159
- };
160
157
  };
161
158
  m: {
162
159
  'font-size': {
@@ -218,88 +215,6 @@ export declare const tokenVariables: {
218
215
  };
219
216
  };
220
217
  };
221
- desktop: {
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
- };
245
- heading: {
246
- s: {
247
- 'font-size': {
248
- value: string;
249
- };
250
- };
251
- m: {
252
- 'font-size': {
253
- value: string;
254
- };
255
- };
256
- l: {
257
- 'font-size': {
258
- value: string;
259
- };
260
- };
261
- xl: {
262
- 'font-size': {
263
- value: string;
264
- };
265
- 'letter-spacing': {
266
- value: string;
267
- };
268
- };
269
- };
270
- text: {
271
- xs: {
272
- 'font-size': {
273
- value: string;
274
- };
275
- 'icon-size': {
276
- value: string;
277
- };
278
- };
279
- s: {
280
- 'font-size': {
281
- value: string;
282
- };
283
- 'icon-size': {
284
- value: string;
285
- };
286
- };
287
- m: {
288
- 'font-size': {
289
- value: string;
290
- };
291
- 'icon-size': {
292
- value: string;
293
- };
294
- };
295
- };
296
- };
297
- base: {
298
- 'letter-spacing': {
299
- value: string;
300
- };
301
- };
302
- };
303
218
  'line-height': {
304
219
  base: {
305
220
  value: string;
@@ -0,0 +1,86 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Tue, 30 Jan 2024 15:02:37 GMT
4
+ */
5
+ export declare const tokenVariables: {
6
+ typography: {
7
+ 'heading-markup': {
8
+ s: {
9
+ 'font-size': {
10
+ value: string;
11
+ };
12
+ };
13
+ m: {
14
+ 'font-size': {
15
+ value: string;
16
+ };
17
+ };
18
+ l: {
19
+ 'font-size': {
20
+ value: string;
21
+ };
22
+ };
23
+ xl: {
24
+ 'font-size': {
25
+ value: string;
26
+ };
27
+ };
28
+ };
29
+ heading: {
30
+ s: {
31
+ 'font-size': {
32
+ value: string;
33
+ };
34
+ };
35
+ m: {
36
+ 'font-size': {
37
+ value: string;
38
+ };
39
+ };
40
+ l: {
41
+ 'font-size': {
42
+ value: string;
43
+ };
44
+ };
45
+ xl: {
46
+ 'font-size': {
47
+ value: string;
48
+ };
49
+ 'letter-spacing': {
50
+ value: string;
51
+ };
52
+ };
53
+ };
54
+ text: {
55
+ xs: {
56
+ 'font-size': {
57
+ value: string;
58
+ };
59
+ 'icon-size': {
60
+ value: string;
61
+ };
62
+ };
63
+ s: {
64
+ 'font-size': {
65
+ value: string;
66
+ };
67
+ 'icon-size': {
68
+ value: string;
69
+ };
70
+ };
71
+ m: {
72
+ 'font-size': {
73
+ value: string;
74
+ };
75
+ 'icon-size': {
76
+ value: string;
77
+ };
78
+ };
79
+ };
80
+ base: {
81
+ 'letter-spacing': {
82
+ value: string;
83
+ };
84
+ };
85
+ };
86
+ };