unframer 4.1.9 → 4.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.
Files changed (85) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.d.ts.map +1 -1
  3. package/dist/cli.js +238 -15
  4. package/dist/cli.js.map +1 -1
  5. package/dist/exporter.d.ts.map +1 -1
  6. package/dist/exporter.js +29 -5
  7. package/dist/exporter.js.map +1 -1
  8. package/dist/framer-chunks/{SqliteDatabase-VAKIICSG-W43ZSXBO.js → SqliteDatabase-VAKIICSG-OPV4MG3Y.js} +5 -4
  9. package/dist/framer-chunks/{chunk-WYG6DFEF.js → chunk-7ZLQTYXQ.js} +4 -23
  10. package/dist/framer-chunks/chunk-IKQSD2QC.js +10 -0
  11. package/dist/framer-chunks/default-blog-sqlite-7ZHEY3GT-TVGUYU6H.js +7 -0
  12. package/dist/framer-chunks/fontshare-4THNDPMZ-FLLTWCDO.js +7 -0
  13. package/dist/framer-chunks/fontshare-B2QLD7YB-5V3XZJAH.js +7 -0
  14. package/dist/framer-chunks/fontshare-O22OBJ3D-FIG3CRN3.js +7 -0
  15. package/dist/framer-chunks/framer-font-45AI7UCZ-CKGC4MJC.js +7 -0
  16. package/dist/framer-chunks/google-3FCAKCAC-AM34UPJK.js +7 -0
  17. package/dist/framer-chunks/google-3SZHWBC6-2VTQEQ7J.js +7 -0
  18. package/dist/framer-chunks/google-GXDJLGJB-JNEJGCGD.js +7 -0
  19. package/dist/framer-chunks/sqlite-wasm-FGP37EAY-NO5QVZDI.js +7 -0
  20. package/dist/framer-chunks/sqlite3-SISQ6ENZ-5WRKGWTY.js +7 -0
  21. package/dist/framer.d.ts +128 -0
  22. package/dist/framer.js +395 -393
  23. package/dist/plugin-mcp-dist/lib/framer.d.ts.map +1 -1
  24. package/dist/plugin-mcp-dist/lib/framer.js +30 -14
  25. package/dist/plugin-mcp-dist/lib/framer.js.map +1 -1
  26. package/dist/plugin-mcp-dist/lib/framer.test.js +34 -64
  27. package/dist/plugin-mcp-dist/lib/framer.test.js.map +1 -1
  28. package/dist/plugin-mcp-dist/lib/mcp-handlers.d.ts.map +1 -1
  29. package/dist/plugin-mcp-dist/lib/mcp-handlers.js +59 -0
  30. package/dist/plugin-mcp-dist/lib/mcp-handlers.js.map +1 -1
  31. package/dist/plugin-mcp-dist/lib/react-export.d.ts.map +1 -1
  32. package/dist/plugin-mcp-dist/lib/react-export.js +79 -61
  33. package/dist/plugin-mcp-dist/lib/react-export.js.map +1 -1
  34. package/dist/plugin-mcp-dist/lib/schema.d.ts +8 -0
  35. package/dist/plugin-mcp-dist/lib/schema.d.ts.map +1 -1
  36. package/dist/plugin-mcp-dist/lib/schema.js +18 -1
  37. package/dist/plugin-mcp-dist/lib/schema.js.map +1 -1
  38. package/dist/plugin-mcp-dist/lib/store.d.ts +1 -1
  39. package/dist/plugin-mcp-dist/lib/store.d.ts.map +1 -1
  40. package/dist/plugin-mcp-dist/lib/utils.d.ts.map +1 -1
  41. package/dist/plugin-mcp-dist/lib/utils.js +11 -7
  42. package/dist/plugin-mcp-dist/lib/utils.js.map +1 -1
  43. package/dist/react.d.ts.map +1 -1
  44. package/dist/react.js +0 -2
  45. package/dist/react.js.map +1 -1
  46. package/dist/version.d.ts +1 -1
  47. package/dist/version.js +1 -1
  48. package/package.json +4 -5
  49. package/src/cli.ts +265 -14
  50. package/src/exporter.ts +39 -6
  51. package/src/framer.d.ts +128 -0
  52. package/src/framer.js +395 -393
  53. package/src/plugin-mcp-dist/lib/framer.d.ts.map +1 -1
  54. package/src/plugin-mcp-dist/lib/framer.js +30 -14
  55. package/src/plugin-mcp-dist/lib/framer.js.map +1 -1
  56. package/src/plugin-mcp-dist/lib/framer.test.js +34 -64
  57. package/src/plugin-mcp-dist/lib/framer.test.js.map +1 -1
  58. package/src/plugin-mcp-dist/lib/mcp-handlers.d.ts +2 -2
  59. package/src/plugin-mcp-dist/lib/mcp-handlers.d.ts.map +1 -1
  60. package/src/plugin-mcp-dist/lib/mcp-handlers.js +59 -0
  61. package/src/plugin-mcp-dist/lib/mcp-handlers.js.map +1 -1
  62. package/src/plugin-mcp-dist/lib/react-export.d.ts +1 -1
  63. package/src/plugin-mcp-dist/lib/react-export.d.ts.map +1 -1
  64. package/src/plugin-mcp-dist/lib/react-export.js +79 -61
  65. package/src/plugin-mcp-dist/lib/react-export.js.map +1 -1
  66. package/src/plugin-mcp-dist/lib/schema.d.ts +11 -3
  67. package/src/plugin-mcp-dist/lib/schema.d.ts.map +1 -1
  68. package/src/plugin-mcp-dist/lib/schema.js +18 -1
  69. package/src/plugin-mcp-dist/lib/schema.js.map +1 -1
  70. package/src/plugin-mcp-dist/lib/utils.d.ts.map +1 -1
  71. package/src/plugin-mcp-dist/lib/utils.js +11 -7
  72. package/src/plugin-mcp-dist/lib/utils.js.map +1 -1
  73. package/src/react.tsx +0 -3
  74. package/src/styles/framer.css +34 -64
  75. package/src/version.ts +1 -1
  76. package/dist/framer-chunks/default-blog-sqlite-7ZHEY3GT-DXFOTMBP.js +0 -9
  77. package/dist/framer-chunks/fontshare-4THNDPMZ-L3NZDIOE.js +0 -27099
  78. package/dist/framer-chunks/fontshare-B2QLD7YB-ZLNQ44LW.js +0 -119
  79. package/dist/framer-chunks/fontshare-O22OBJ3D-VY7WF3BB.js +0 -825
  80. package/dist/framer-chunks/framer-font-45AI7UCZ-Z3XHDH5K.js +0 -7
  81. package/dist/framer-chunks/google-3FCAKCAC-K2ZVMKHN.js +0 -623876
  82. package/dist/framer-chunks/google-3SZHWBC6-MIC5SCB4.js +0 -1627
  83. package/dist/framer-chunks/google-GXDJLGJB-356NWSZ7.js +0 -6885
  84. package/dist/framer-chunks/sqlite-wasm-FGP37EAY-MBPG3MPB.js +0 -11479
  85. package/dist/framer-chunks/sqlite3-SISQ6ENZ-RRHGROT5.js +0 -9
@@ -1,825 +0,0 @@
1
- import "./chunk-WYG6DFEF.js";
2
-
3
- // /:https://app.framerstatic.com/fontshare-O22OBJ3D.mjs
4
- var fontshare_default = {
5
- "FS;Alpino": [
6
- {
7
- tag: "wght",
8
- minValue: 100,
9
- maxValue: 900,
10
- defaultValue: 900,
11
- name: "Weight"
12
- }
13
- ],
14
- "FS;Amulya": [
15
- {
16
- tag: "wght",
17
- minValue: 300,
18
- maxValue: 700,
19
- defaultValue: 300,
20
- name: "Weight"
21
- }
22
- ],
23
- "FS;Archivo": [
24
- {
25
- tag: "wght",
26
- minValue: 100,
27
- maxValue: 900,
28
- defaultValue: 600,
29
- name: "Weight"
30
- }
31
- ],
32
- "FS;Asap": [
33
- {
34
- tag: "wght",
35
- minValue: 400,
36
- maxValue: 700,
37
- defaultValue: 400,
38
- name: "Weight"
39
- }
40
- ],
41
- "FS;Author": [
42
- {
43
- tag: "wght",
44
- minValue: 200,
45
- maxValue: 700,
46
- defaultValue: 700,
47
- name: "Weight"
48
- }
49
- ],
50
- "FS;Azeret Mono": [
51
- {
52
- tag: "wght",
53
- minValue: 100,
54
- maxValue: 900,
55
- defaultValue: 100,
56
- name: "Weight"
57
- }
58
- ],
59
- "FS;Be Vietnam Pro": [
60
- {
61
- tag: "wght",
62
- minValue: 100,
63
- maxValue: 900,
64
- defaultValue: 100,
65
- name: "Weight"
66
- }
67
- ],
68
- "FS;Bespoke Sans": [
69
- {
70
- tag: "wght",
71
- minValue: 300,
72
- maxValue: 800,
73
- defaultValue: 800,
74
- name: "Weight"
75
- }
76
- ],
77
- "FS;Bespoke Serif": [
78
- {
79
- tag: "wght",
80
- minValue: 300,
81
- maxValue: 800,
82
- defaultValue: 300,
83
- name: "Weight"
84
- }
85
- ],
86
- "FS;Bespoke Slab": [
87
- {
88
- tag: "wght",
89
- minValue: 300,
90
- maxValue: 800,
91
- defaultValue: 800,
92
- name: "Weight"
93
- }
94
- ],
95
- "FS;Bespoke Stencil": [
96
- {
97
- tag: "wght",
98
- minValue: 300,
99
- maxValue: 800,
100
- defaultValue: 800,
101
- name: "Weight"
102
- }
103
- ],
104
- "FS;Bevellier": [
105
- {
106
- tag: "wght",
107
- minValue: 100,
108
- maxValue: 900,
109
- defaultValue: 100,
110
- name: "Weight"
111
- }
112
- ],
113
- "FS;Bonny": [
114
- {
115
- tag: "wght",
116
- minValue: 100,
117
- maxValue: 700,
118
- defaultValue: 700,
119
- name: "Weight"
120
- }
121
- ],
122
- "FS;Boska": [
123
- {
124
- tag: "wght",
125
- minValue: 200,
126
- maxValue: 900,
127
- defaultValue: 200,
128
- name: "Weight"
129
- }
130
- ],
131
- "FS;Britney": [
132
- {
133
- tag: "wght",
134
- minValue: 300,
135
- maxValue: 900,
136
- defaultValue: 900,
137
- name: "Weight"
138
- }
139
- ],
140
- "FS;Cabinet Grotesk": [
141
- {
142
- tag: "wght",
143
- minValue: 100,
144
- maxValue: 900,
145
- defaultValue: 900,
146
- name: "Weight"
147
- }
148
- ],
149
- "FS;Chillax": [
150
- {
151
- tag: "wght",
152
- minValue: 200,
153
- maxValue: 700,
154
- defaultValue: 700,
155
- name: "Weight"
156
- }
157
- ],
158
- "FS;Chubbo": [
159
- {
160
- tag: "wght",
161
- minValue: 200,
162
- maxValue: 700,
163
- defaultValue: 400,
164
- name: "Weight"
165
- }
166
- ],
167
- "FS;Clash Display": [
168
- {
169
- tag: "wght",
170
- minValue: 200,
171
- maxValue: 700,
172
- defaultValue: 700,
173
- name: "Weight"
174
- }
175
- ],
176
- "FS;Clash Grotesk": [
177
- {
178
- tag: "wght",
179
- minValue: 200,
180
- maxValue: 700,
181
- defaultValue: 700,
182
- name: "Weight"
183
- }
184
- ],
185
- "FS;Crimson Pro": [
186
- {
187
- tag: "wght",
188
- minValue: 200,
189
- maxValue: 900,
190
- defaultValue: 400,
191
- name: "Weight"
192
- }
193
- ],
194
- "FS;Dancing Script": [
195
- {
196
- tag: "wght",
197
- minValue: 400,
198
- maxValue: 700,
199
- defaultValue: 400,
200
- name: "Weight"
201
- }
202
- ],
203
- "FS;Epilogue": [
204
- {
205
- tag: "wght",
206
- minValue: 100,
207
- maxValue: 900,
208
- defaultValue: 400,
209
- name: "Weight"
210
- }
211
- ],
212
- "FS;Erode": [
213
- {
214
- tag: "wght",
215
- minValue: 300,
216
- maxValue: 700,
217
- defaultValue: 300,
218
- name: "Weight"
219
- }
220
- ],
221
- "FS;Excon": [
222
- {
223
- tag: "wght",
224
- minValue: 100,
225
- maxValue: 900,
226
- defaultValue: 900,
227
- name: "Weight"
228
- }
229
- ],
230
- "FS;Expose": [
231
- {
232
- tag: "wght",
233
- minValue: 400,
234
- maxValue: 900,
235
- defaultValue: 400,
236
- name: "Weight"
237
- }
238
- ],
239
- "FS;Familjen Grotesk": [
240
- {
241
- tag: "wght",
242
- minValue: 400,
243
- maxValue: 700,
244
- defaultValue: 400,
245
- name: "Weight"
246
- }
247
- ],
248
- "FS;Fira Sans": [
249
- {
250
- tag: "wght",
251
- minValue: 100,
252
- maxValue: 900,
253
- defaultValue: 400,
254
- name: "Weight"
255
- }
256
- ],
257
- "FS;Gambetta": [
258
- {
259
- tag: "wght",
260
- minValue: 300,
261
- maxValue: 700,
262
- defaultValue: 300,
263
- name: "Weight"
264
- }
265
- ],
266
- "FS;General Sans": [
267
- {
268
- tag: "wght",
269
- minValue: 200,
270
- maxValue: 700,
271
- defaultValue: 700,
272
- name: "Weight"
273
- }
274
- ],
275
- "FS;Halant": [
276
- {
277
- tag: "wght",
278
- minValue: 300,
279
- maxValue: 700,
280
- defaultValue: 300,
281
- name: "Weight"
282
- }
283
- ],
284
- "FS;Hind": [
285
- {
286
- tag: "wght",
287
- minValue: 300,
288
- maxValue: 700,
289
- defaultValue: 300,
290
- name: "Weight"
291
- }
292
- ],
293
- "FS;Hoover": [
294
- {
295
- tag: "wght",
296
- minValue: 200,
297
- maxValue: 700,
298
- defaultValue: 700,
299
- name: "Weight"
300
- }
301
- ],
302
- "FS;JetBrains Mono": [
303
- {
304
- tag: "wght",
305
- minValue: 100,
306
- maxValue: 800,
307
- defaultValue: 400,
308
- name: "Weight"
309
- }
310
- ],
311
- "FS;Kalam": [
312
- {
313
- tag: "wght",
314
- minValue: 300,
315
- maxValue: 700,
316
- defaultValue: 300,
317
- name: "Weight"
318
- }
319
- ],
320
- "FS;Karla": [
321
- {
322
- tag: "wght",
323
- minValue: 200,
324
- maxValue: 800,
325
- defaultValue: 400,
326
- name: "Weight"
327
- }
328
- ],
329
- "FS;Karma": [
330
- {
331
- tag: "wght",
332
- minValue: 300,
333
- maxValue: 700,
334
- defaultValue: 300,
335
- name: "Weight"
336
- }
337
- ],
338
- "FS;Khand": [
339
- {
340
- tag: "wght",
341
- minValue: 300,
342
- maxValue: 700,
343
- defaultValue: 300,
344
- name: "Weight"
345
- }
346
- ],
347
- "FS;Laila": [
348
- {
349
- tag: "wght",
350
- minValue: 300,
351
- maxValue: 700,
352
- defaultValue: 300,
353
- name: "Weight"
354
- }
355
- ],
356
- "FS;Literata": [
357
- {
358
- tag: "wght",
359
- minValue: 200,
360
- maxValue: 900,
361
- defaultValue: 900,
362
- name: "Weight"
363
- },
364
- {
365
- tag: "opsz",
366
- minValue: 7,
367
- maxValue: 72,
368
- defaultValue: 7,
369
- name: "Optical Size"
370
- }
371
- ],
372
- "FS;Lora": [
373
- {
374
- tag: "wght",
375
- minValue: 400,
376
- maxValue: 700,
377
- defaultValue: 400,
378
- name: "Weight"
379
- }
380
- ],
381
- "FS;Manrope": [
382
- {
383
- tag: "wght",
384
- minValue: 200,
385
- maxValue: 800,
386
- defaultValue: 200,
387
- name: "Weight"
388
- }
389
- ],
390
- "FS;Melodrama": [
391
- {
392
- tag: "wght",
393
- minValue: 300,
394
- maxValue: 700,
395
- defaultValue: 300,
396
- name: "Weight"
397
- }
398
- ],
399
- "FS;Merriweather Sans": [
400
- {
401
- tag: "wght",
402
- minValue: 300,
403
- maxValue: 800,
404
- defaultValue: 300,
405
- name: "Weight"
406
- }
407
- ],
408
- "FS;Montserrat": [
409
- {
410
- tag: "wght",
411
- minValue: 100,
412
- maxValue: 900,
413
- defaultValue: 100,
414
- name: "Weight"
415
- }
416
- ],
417
- "FS;Neco": [
418
- {
419
- tag: "wght",
420
- minValue: 400,
421
- maxValue: 900,
422
- defaultValue: 900,
423
- name: "Weight"
424
- }
425
- ],
426
- "FS;New Title": [
427
- {
428
- tag: "wght",
429
- minValue: 200,
430
- maxValue: 700,
431
- defaultValue: 200,
432
- name: "Weight"
433
- }
434
- ],
435
- "FS;Nippo": [
436
- {
437
- tag: "wght",
438
- minValue: 200,
439
- maxValue: 700,
440
- defaultValue: 700,
441
- name: "Weight"
442
- }
443
- ],
444
- "FS;Nunito": [
445
- {
446
- tag: "wght",
447
- minValue: 200,
448
- maxValue: 1e3,
449
- defaultValue: 700,
450
- name: "Weight"
451
- }
452
- ],
453
- "FS;Oswald": [
454
- {
455
- tag: "wght",
456
- minValue: 200,
457
- maxValue: 700,
458
- defaultValue: 400,
459
- name: "Weight"
460
- }
461
- ],
462
- "FS;Outfit": [
463
- {
464
- tag: "wght",
465
- minValue: 100,
466
- maxValue: 900,
467
- defaultValue: 100,
468
- name: "Weight"
469
- }
470
- ],
471
- "FS;Pally": [
472
- {
473
- tag: "wght",
474
- minValue: 400,
475
- maxValue: 700,
476
- defaultValue: 700,
477
- name: "Weight"
478
- }
479
- ],
480
- "FS;Panchang": [
481
- {
482
- tag: "wght",
483
- minValue: 200,
484
- maxValue: 800,
485
- defaultValue: 800,
486
- name: "Weight"
487
- }
488
- ],
489
- "FS;Paquito": [
490
- {
491
- tag: "wght",
492
- minValue: 300,
493
- maxValue: 700,
494
- defaultValue: 300,
495
- name: "Weight"
496
- }
497
- ],
498
- "FS;Pilcrow Rounded": [
499
- {
500
- tag: "wght",
501
- minValue: 400,
502
- maxValue: 900,
503
- defaultValue: 400,
504
- name: "Weight"
505
- }
506
- ],
507
- "FS;Plein": [
508
- {
509
- tag: "wght",
510
- minValue: 300,
511
- maxValue: 900,
512
- defaultValue: 900,
513
- name: "Weight"
514
- }
515
- ],
516
- "FS;Plus Jakarta Sans": [
517
- {
518
- tag: "wght",
519
- minValue: 200,
520
- maxValue: 800,
521
- defaultValue: 400,
522
- name: "Weight"
523
- }
524
- ],
525
- "FS;Poppins": [
526
- {
527
- tag: "wght",
528
- minValue: 100,
529
- maxValue: 900,
530
- defaultValue: 100,
531
- name: "Weight"
532
- }
533
- ],
534
- "FS;Pramukh Rounded": [
535
- {
536
- tag: "wght",
537
- minValue: 200,
538
- maxValue: 900,
539
- defaultValue: 900,
540
- name: "Weight"
541
- }
542
- ],
543
- "FS;Public Sans": [
544
- {
545
- tag: "wght",
546
- minValue: 100,
547
- maxValue: 900,
548
- defaultValue: 100,
549
- name: "Weight"
550
- }
551
- ],
552
- "FS;Quicksand": [
553
- {
554
- tag: "wght",
555
- minValue: 300,
556
- maxValue: 700,
557
- defaultValue: 300,
558
- name: "Weight"
559
- }
560
- ],
561
- "FS;Quilon": [
562
- {
563
- tag: "wght",
564
- minValue: 400,
565
- maxValue: 700,
566
- defaultValue: 400,
567
- name: "Weight"
568
- }
569
- ],
570
- "FS;Rajdhani": [
571
- {
572
- tag: "wght",
573
- minValue: 300,
574
- maxValue: 700,
575
- defaultValue: 300,
576
- name: "Weight"
577
- }
578
- ],
579
- "FS;Raleway": [
580
- {
581
- tag: "wght",
582
- minValue: 100,
583
- maxValue: 900,
584
- defaultValue: 100,
585
- name: "Weight"
586
- }
587
- ],
588
- "FS;Ranade": [
589
- {
590
- tag: "wght",
591
- minValue: 100,
592
- maxValue: 700,
593
- defaultValue: 700,
594
- name: "Weight"
595
- }
596
- ],
597
- "FS;Recia": [
598
- {
599
- tag: "wght",
600
- minValue: 300,
601
- maxValue: 700,
602
- defaultValue: 300,
603
- name: "Weight"
604
- }
605
- ],
606
- "FS;Red Hat Display": [
607
- {
608
- tag: "wght",
609
- minValue: 300,
610
- maxValue: 900,
611
- defaultValue: 400,
612
- name: "Weight"
613
- }
614
- ],
615
- "FS;Roundo": [
616
- {
617
- tag: "wght",
618
- minValue: 200,
619
- maxValue: 700,
620
- defaultValue: 200,
621
- name: "Weight"
622
- }
623
- ],
624
- "FS;Rowan": [
625
- {
626
- tag: "wght",
627
- minValue: 300,
628
- maxValue: 700,
629
- defaultValue: 700,
630
- name: "Weight"
631
- }
632
- ],
633
- "FS;Satoshi": [
634
- {
635
- tag: "wght",
636
- minValue: 300,
637
- maxValue: 900,
638
- defaultValue: 900,
639
- name: "Weight"
640
- }
641
- ],
642
- "FS;Sentient": [
643
- {
644
- tag: "wght",
645
- minValue: 200,
646
- maxValue: 700,
647
- defaultValue: 700,
648
- name: "Weight"
649
- }
650
- ],
651
- "FS;Sharpie": [
652
- {
653
- tag: "wght",
654
- minValue: 300,
655
- maxValue: 900,
656
- defaultValue: 900,
657
- name: "Weight"
658
- }
659
- ],
660
- "FS;Sora": [
661
- {
662
- tag: "wght",
663
- minValue: 100,
664
- maxValue: 800,
665
- defaultValue: 400,
666
- name: "Weight"
667
- }
668
- ],
669
- "FS;Space Grotesk": [
670
- {
671
- tag: "wght",
672
- minValue: 300,
673
- maxValue: 700,
674
- defaultValue: 300,
675
- name: "Weight"
676
- }
677
- ],
678
- "FS;Spline Sans": [
679
- {
680
- tag: "wght",
681
- minValue: 300,
682
- maxValue: 700,
683
- defaultValue: 400,
684
- name: "Weight"
685
- }
686
- ],
687
- "FS;Stick No Bills": [
688
- {
689
- tag: "wght",
690
- minValue: 200,
691
- maxValue: 800,
692
- defaultValue: 200,
693
- name: "Weight"
694
- }
695
- ],
696
- "FS;Styro": [
697
- {
698
- tag: "wght",
699
- minValue: 200,
700
- maxValue: 900,
701
- defaultValue: 900,
702
- name: "Weight"
703
- }
704
- ],
705
- "FS;Supreme": [
706
- {
707
- tag: "wght",
708
- minValue: 100,
709
- maxValue: 800,
710
- defaultValue: 800,
711
- name: "Weight"
712
- }
713
- ],
714
- "FS;Switzer": [
715
- {
716
- tag: "wght",
717
- minValue: 100,
718
- maxValue: 900,
719
- defaultValue: 400,
720
- name: "Weight"
721
- }
722
- ],
723
- "FS;Syne": [
724
- {
725
- tag: "wght",
726
- minValue: 400,
727
- maxValue: 800,
728
- defaultValue: 400,
729
- name: "Weight"
730
- }
731
- ],
732
- "FS;Synonym": [
733
- {
734
- tag: "wght",
735
- minValue: 200,
736
- maxValue: 700,
737
- defaultValue: 700,
738
- name: "Weight"
739
- }
740
- ],
741
- "FS;Tabular": [
742
- {
743
- tag: "wght",
744
- minValue: 300,
745
- maxValue: 700,
746
- defaultValue: 700,
747
- name: "Weight"
748
- }
749
- ],
750
- "FS;Technor": [
751
- {
752
- tag: "wght",
753
- minValue: 200,
754
- maxValue: 900,
755
- defaultValue: 900,
756
- name: "Weight"
757
- }
758
- ],
759
- "FS;Teko": [
760
- {
761
- tag: "wght",
762
- minValue: 300,
763
- maxValue: 700,
764
- defaultValue: 300,
765
- name: "Weight"
766
- }
767
- ],
768
- "FS;Telma": [
769
- {
770
- tag: "wght",
771
- minValue: 300,
772
- maxValue: 900,
773
- defaultValue: 900,
774
- name: "Weight"
775
- }
776
- ],
777
- "FS;Tillana": [
778
- {
779
- tag: "wght",
780
- minValue: 400,
781
- maxValue: 800,
782
- defaultValue: 400,
783
- name: "Weight"
784
- }
785
- ],
786
- "FS;Trench Slab": [
787
- {
788
- tag: "wght",
789
- minValue: 300,
790
- maxValue: 700,
791
- defaultValue: 700,
792
- name: "Weight"
793
- }
794
- ],
795
- "FS;Urbanist": [
796
- {
797
- tag: "wght",
798
- minValue: 100,
799
- maxValue: 900,
800
- defaultValue: 100,
801
- name: "Weight"
802
- }
803
- ],
804
- "FS;Work Sans": [
805
- {
806
- tag: "wght",
807
- minValue: 100,
808
- maxValue: 900,
809
- defaultValue: 400,
810
- name: "Weight"
811
- }
812
- ],
813
- "FS;Zodiak": [
814
- {
815
- tag: "wght",
816
- minValue: 100,
817
- maxValue: 900,
818
- defaultValue: 900,
819
- name: "Weight"
820
- }
821
- ]
822
- };
823
- export {
824
- fontshare_default as default
825
- };