@ctrliq/quantic-fonts 1.67.5 → 1.68.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,9 @@
1
1
  import { type FontRegisterer } from './register';
2
+ export declare const commitMono: FontRegisterer;
3
+ export declare const commitMono400: FontRegisterer;
4
+ export declare const commitMono400Italic: FontRegisterer;
5
+ export declare const commitMono700: FontRegisterer;
6
+ export declare const commitMono700Italic: FontRegisterer;
2
7
  export declare const inter: FontRegisterer;
3
8
  export declare const inter100: FontRegisterer;
4
9
  export declare const inter100Italic: FontRegisterer;
@@ -38,7 +43,7 @@ export declare const satoshi400: FontRegisterer;
38
43
  export declare const satoshi400Italic: FontRegisterer;
39
44
  export declare const satoshi500: FontRegisterer;
40
45
  export declare const satoshi500Italic: FontRegisterer;
41
- export declare const satoshi600: FontRegisterer;
42
- export declare const satoshi600Italic: FontRegisterer;
46
+ export declare const satoshi700: FontRegisterer;
47
+ export declare const satoshi700Italic: FontRegisterer;
43
48
  export declare const satoshi900: FontRegisterer;
44
49
  export declare const satoshi900Italic: FontRegisterer;
@@ -1,4 +1,8 @@
1
1
  import { buildRegisterers } from './register.js';
2
+ import file_commitMono_0 from './fonts/commitmono/assets/CommitMono-Regular.woff2.js';
3
+ import file_commitMono_1 from './fonts/commitmono/assets/CommitMono-Italic.woff2.js';
4
+ import file_commitMono_2 from './fonts/commitmono/assets/CommitMono-Bold.woff2.js';
5
+ import file_commitMono_3 from './fonts/commitmono/assets/CommitMono-BoldItalic.woff2.js';
2
6
  import file_inter_0 from './fonts/inter/assets/Inter-Thin.woff2.js';
3
7
  import file_inter_1 from './fonts/inter/assets/Inter-ThinItalic.woff2.js';
4
8
  import file_inter_2 from './fonts/inter/assets/Inter-ExtraLight.woff2.js';
@@ -40,6 +44,23 @@ import file_satoshi_7 from './fonts/satoshi/assets/Satoshi-BoldItalic.woff2.js';
40
44
  import file_satoshi_8 from './fonts/satoshi/assets/Satoshi-Black.woff2.js';
41
45
  import file_satoshi_9 from './fonts/satoshi/assets/Satoshi-BlackItalic.woff2.js';
42
46
 
47
+ const commitMonoConfig = { name: 'CommitMono', variants: [{
48
+ weight: 400,
49
+ style: "normal",
50
+ file: file_commitMono_0
51
+ }, {
52
+ weight: 400,
53
+ style: "italic",
54
+ file: file_commitMono_1
55
+ }, {
56
+ weight: 700,
57
+ style: "normal",
58
+ file: file_commitMono_2
59
+ }, {
60
+ weight: 700,
61
+ style: "italic",
62
+ file: file_commitMono_3
63
+ }] };
43
64
  const interConfig = { name: 'Inter', variants: [{
44
65
  weight: 100,
45
66
  style: "normal",
@@ -187,11 +208,11 @@ const satoshiConfig = { name: 'Satoshi', variants: [{
187
208
  style: "italic",
188
209
  file: file_satoshi_5
189
210
  }, {
190
- weight: 600,
211
+ weight: 700,
191
212
  style: "normal",
192
213
  file: file_satoshi_6
193
214
  }, {
194
- weight: 600,
215
+ weight: 700,
195
216
  style: "italic",
196
217
  file: file_satoshi_7
197
218
  }, {
@@ -203,9 +224,15 @@ const satoshiConfig = { name: 'Satoshi', variants: [{
203
224
  style: "italic",
204
225
  file: file_satoshi_9
205
226
  }] };
227
+ const commitMonoRegs = buildRegisterers(commitMonoConfig);
206
228
  const interRegs = buildRegisterers(interConfig);
207
229
  const robotoRegs = buildRegisterers(robotoConfig);
208
230
  const satoshiRegs = buildRegisterers(satoshiConfig);
231
+ const commitMono = commitMonoRegs.commitMono;
232
+ const commitMono400 = commitMonoRegs.commitMono400;
233
+ const commitMono400Italic = commitMonoRegs.commitMono400Italic;
234
+ const commitMono700 = commitMonoRegs.commitMono700;
235
+ const commitMono700Italic = commitMonoRegs.commitMono700Italic;
209
236
  const inter = interRegs.inter;
210
237
  const inter100 = interRegs.inter100;
211
238
  const inter100Italic = interRegs.inter100Italic;
@@ -245,10 +272,10 @@ const satoshi400 = satoshiRegs.satoshi400;
245
272
  const satoshi400Italic = satoshiRegs.satoshi400Italic;
246
273
  const satoshi500 = satoshiRegs.satoshi500;
247
274
  const satoshi500Italic = satoshiRegs.satoshi500Italic;
248
- const satoshi600 = satoshiRegs.satoshi600;
249
- const satoshi600Italic = satoshiRegs.satoshi600Italic;
275
+ const satoshi700 = satoshiRegs.satoshi700;
276
+ const satoshi700Italic = satoshiRegs.satoshi700Italic;
250
277
  const satoshi900 = satoshiRegs.satoshi900;
251
278
  const satoshi900Italic = satoshiRegs.satoshi900Italic;
252
279
 
253
- export { inter, inter100, inter100Italic, inter200, inter200Italic, inter300, inter300Italic, inter400, inter400Italic, inter500, inter500Italic, inter600, inter600Italic, inter700, inter700Italic, inter800, inter800Italic, inter900, inter900Italic, roboto, roboto100, roboto100Italic, roboto300, roboto300Italic, roboto400, roboto400Italic, roboto500, roboto500Italic, roboto700, roboto700Italic, roboto900, roboto900Italic, satoshi, satoshi300, satoshi300Italic, satoshi400, satoshi400Italic, satoshi500, satoshi500Italic, satoshi600, satoshi600Italic, satoshi900, satoshi900Italic };
280
+ export { commitMono, commitMono400, commitMono400Italic, commitMono700, commitMono700Italic, inter, inter100, inter100Italic, inter200, inter200Italic, inter300, inter300Italic, inter400, inter400Italic, inter500, inter500Italic, inter600, inter600Italic, inter700, inter700Italic, inter800, inter800Italic, inter900, inter900Italic, roboto, roboto100, roboto100Italic, roboto300, roboto300Italic, roboto400, roboto400Italic, roboto500, roboto500Italic, roboto700, roboto700Italic, roboto900, roboto900Italic, satoshi, satoshi300, satoshi300Italic, satoshi400, satoshi400Italic, satoshi500, satoshi500Italic, satoshi700, satoshi700Italic, satoshi900, satoshi900Italic };
254
281
  //# sourceMappingURL=__generated__.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"__generated__.js","sources":["../src/__generated__.ts"],"sourcesContent":["import { buildRegisterers, type FontRegisterer, type FontRegisterers } from './register';\nimport file_inter_0 from './fonts/inter/assets/Inter-Thin.woff2';\nimport file_inter_1 from './fonts/inter/assets/Inter-ThinItalic.woff2';\nimport file_inter_2 from './fonts/inter/assets/Inter-ExtraLight.woff2';\nimport file_inter_3 from './fonts/inter/assets/Inter-ExtraLightItalic.woff2';\nimport file_inter_4 from './fonts/inter/assets/Inter-Light.woff2';\nimport file_inter_5 from './fonts/inter/assets/Inter-LightItalic.woff2';\nimport file_inter_6 from './fonts/inter/assets/Inter-Regular.woff2';\nimport file_inter_7 from './fonts/inter/assets/Inter-Italic.woff2';\nimport file_inter_8 from './fonts/inter/assets/Inter-Medium.woff2';\nimport file_inter_9 from './fonts/inter/assets/Inter-MediumItalic.woff2';\nimport file_inter_10 from './fonts/inter/assets/Inter-SemiBold.woff2';\nimport file_inter_11 from './fonts/inter/assets/Inter-SemiBoldItalic.woff2';\nimport file_inter_12 from './fonts/inter/assets/Inter-Bold.woff2';\nimport file_inter_13 from './fonts/inter/assets/Inter-BoldItalic.woff2';\nimport file_inter_14 from './fonts/inter/assets/Inter-ExtraBold.woff2';\nimport file_inter_15 from './fonts/inter/assets/Inter-ExtraBoldItalic.woff2';\nimport file_inter_16 from './fonts/inter/assets/Inter-Black.woff2';\nimport file_inter_17 from './fonts/inter/assets/Inter-BlackItalic.woff2';\n\nconst interConfig = { name: 'Inter', variants: [{\n weight: 100,\n style: \"normal\" as const,\n file: file_inter_0\n }, {\n weight: 100,\n style: \"italic\" as const,\n file: file_inter_1\n }, {\n weight: 200,\n style: \"normal\" as const,\n file: file_inter_2\n }, {\n weight: 200,\n style: \"italic\" as const,\n file: file_inter_3\n }, {\n weight: 300,\n style: \"normal\" as const,\n file: file_inter_4\n }, {\n weight: 300,\n style: \"italic\" as const,\n file: file_inter_5\n }, {\n weight: 400,\n style: \"normal\" as const,\n file: file_inter_6\n }, {\n weight: 400,\n style: \"italic\" as const,\n file: file_inter_7\n }, {\n weight: 500,\n style: \"normal\" as const,\n file: file_inter_8\n }, {\n weight: 500,\n style: \"italic\" as const,\n file: file_inter_9\n }, {\n weight: 600,\n style: \"normal\" as const,\n file: file_inter_10\n }, {\n weight: 600,\n style: \"italic\" as const,\n file: file_inter_11\n }, {\n weight: 700,\n style: \"normal\" as const,\n file: file_inter_12\n }, {\n weight: 700,\n style: \"italic\" as const,\n file: file_inter_13\n }, {\n weight: 800,\n style: \"normal\" as const,\n file: file_inter_14\n }, {\n weight: 800,\n style: \"italic\" as const,\n file: file_inter_15\n }, {\n weight: 900,\n style: \"normal\" as const,\n file: file_inter_16\n }, {\n weight: 900,\n style: \"italic\" as const,\n file: file_inter_17\n }] };\nimport file_roboto_0 from './fonts/roboto/assets/Roboto-Thin.woff2';\nimport file_roboto_1 from './fonts/roboto/assets/Roboto-ThinItalic.woff2';\nimport file_roboto_2 from './fonts/roboto/assets/Roboto-Light.woff2';\nimport file_roboto_3 from './fonts/roboto/assets/Roboto-LightItalic.woff2';\nimport file_roboto_4 from './fonts/roboto/assets/Roboto-Regular.woff2';\nimport file_roboto_5 from './fonts/roboto/assets/Roboto-RegularItalic.woff2';\nimport file_roboto_6 from './fonts/roboto/assets/Roboto-Medium.woff2';\nimport file_roboto_7 from './fonts/roboto/assets/Roboto-MediumItalic.woff2';\nimport file_roboto_8 from './fonts/roboto/assets/Roboto-Bold.woff2';\nimport file_roboto_9 from './fonts/roboto/assets/Roboto-BoldItalic.woff2';\nimport file_roboto_10 from './fonts/roboto/assets/Roboto-Black.woff2';\nimport file_roboto_11 from './fonts/roboto/assets/Roboto-BlackItalic.woff2';\n\nconst robotoConfig = { name: 'Roboto', variants: [{\n weight: 100,\n style: \"normal\" as const,\n file: file_roboto_0\n }, {\n weight: 100,\n style: \"italic\" as const,\n file: file_roboto_1\n }, {\n weight: 300,\n style: \"normal\" as const,\n file: file_roboto_2\n }, {\n weight: 300,\n style: \"italic\" as const,\n file: file_roboto_3\n }, {\n weight: 400,\n style: \"normal\" as const,\n file: file_roboto_4\n }, {\n weight: 400,\n style: \"italic\" as const,\n file: file_roboto_5\n }, {\n weight: 500,\n style: \"normal\" as const,\n file: file_roboto_6\n }, {\n weight: 500,\n style: \"italic\" as const,\n file: file_roboto_7\n }, {\n weight: 700,\n style: \"normal\" as const,\n file: file_roboto_8\n }, {\n weight: 700,\n style: \"italic\" as const,\n file: file_roboto_9\n }, {\n weight: 900,\n style: \"normal\" as const,\n file: file_roboto_10\n }, {\n weight: 900,\n style: \"italic\" as const,\n file: file_roboto_11\n }] };\nimport file_satoshi_0 from './fonts/satoshi/assets/Satoshi-Light.woff2';\nimport file_satoshi_1 from './fonts/satoshi/assets/Satoshi-LightItalic.woff2';\nimport file_satoshi_2 from './fonts/satoshi/assets/Satoshi-Regular.woff2';\nimport file_satoshi_3 from './fonts/satoshi/assets/Satoshi-Italic.woff2';\nimport file_satoshi_4 from './fonts/satoshi/assets/Satoshi-Medium.woff2';\nimport file_satoshi_5 from './fonts/satoshi/assets/Satoshi-MediumItalic.woff2';\nimport file_satoshi_6 from './fonts/satoshi/assets/Satoshi-Bold.woff2';\nimport file_satoshi_7 from './fonts/satoshi/assets/Satoshi-BoldItalic.woff2';\nimport file_satoshi_8 from './fonts/satoshi/assets/Satoshi-Black.woff2';\nimport file_satoshi_9 from './fonts/satoshi/assets/Satoshi-BlackItalic.woff2';\n\nconst satoshiConfig = { name: 'Satoshi', variants: [{\n weight: 300,\n style: \"normal\" as const,\n file: file_satoshi_0\n }, {\n weight: 300,\n style: \"italic\" as const,\n file: file_satoshi_1\n }, {\n weight: 400,\n style: \"normal\" as const,\n file: file_satoshi_2\n }, {\n weight: 400,\n style: \"italic\" as const,\n file: file_satoshi_3\n }, {\n weight: 500,\n style: \"normal\" as const,\n file: file_satoshi_4\n }, {\n weight: 500,\n style: \"italic\" as const,\n file: file_satoshi_5\n }, {\n weight: 600,\n style: \"normal\" as const,\n file: file_satoshi_6\n }, {\n weight: 600,\n style: \"italic\" as const,\n file: file_satoshi_7\n }, {\n weight: 900,\n style: \"normal\" as const,\n file: file_satoshi_8\n }, {\n weight: 900,\n style: \"italic\" as const,\n file: file_satoshi_9\n }] };\n\nconst interRegs: FontRegisterers = buildRegisterers(interConfig);\nconst robotoRegs: FontRegisterers = buildRegisterers(robotoConfig);\nconst satoshiRegs: FontRegisterers = buildRegisterers(satoshiConfig);\n\nexport const inter = interRegs.inter;\nexport const inter100 = interRegs.inter100;\nexport const inter100Italic = interRegs.inter100Italic;\nexport const inter200 = interRegs.inter200;\nexport const inter200Italic = interRegs.inter200Italic;\nexport const inter300 = interRegs.inter300;\nexport const inter300Italic = interRegs.inter300Italic;\nexport const inter400 = interRegs.inter400;\nexport const inter400Italic = interRegs.inter400Italic;\nexport const inter500 = interRegs.inter500;\nexport const inter500Italic = interRegs.inter500Italic;\nexport const inter600 = interRegs.inter600;\nexport const inter600Italic = interRegs.inter600Italic;\nexport const inter700 = interRegs.inter700;\nexport const inter700Italic = interRegs.inter700Italic;\nexport const inter800 = interRegs.inter800;\nexport const inter800Italic = interRegs.inter800Italic;\nexport const inter900 = interRegs.inter900;\nexport const inter900Italic = interRegs.inter900Italic;\nexport const roboto = robotoRegs.roboto;\nexport const roboto100 = robotoRegs.roboto100;\nexport const roboto100Italic = robotoRegs.roboto100Italic;\nexport const roboto300 = robotoRegs.roboto300;\nexport const roboto300Italic = robotoRegs.roboto300Italic;\nexport const roboto400 = robotoRegs.roboto400;\nexport const roboto400Italic = robotoRegs.roboto400Italic;\nexport const roboto500 = robotoRegs.roboto500;\nexport const roboto500Italic = robotoRegs.roboto500Italic;\nexport const roboto700 = robotoRegs.roboto700;\nexport const roboto700Italic = robotoRegs.roboto700Italic;\nexport const roboto900 = robotoRegs.roboto900;\nexport const roboto900Italic = robotoRegs.roboto900Italic;\nexport const satoshi = satoshiRegs.satoshi;\nexport const satoshi300 = satoshiRegs.satoshi300;\nexport const satoshi300Italic = satoshiRegs.satoshi300Italic;\nexport const satoshi400 = satoshiRegs.satoshi400;\nexport const satoshi400Italic = satoshiRegs.satoshi400Italic;\nexport const satoshi500 = satoshiRegs.satoshi500;\nexport const satoshi500Italic = satoshiRegs.satoshi500Italic;\nexport const satoshi600 = satoshiRegs.satoshi600;\nexport const satoshi600Italic = satoshiRegs.satoshi600Italic;\nexport const satoshi900 = satoshiRegs.satoshi900;\nexport const satoshi900Italic = satoshiRegs.satoshi900Italic;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"__generated__.js","sources":["../src/__generated__.ts"],"sourcesContent":["import { buildRegisterers, type FontRegisterer, type FontRegisterers } from './register';\nimport file_commitMono_0 from './fonts/commitmono/assets/CommitMono-Regular.woff2';\nimport file_commitMono_1 from './fonts/commitmono/assets/CommitMono-Italic.woff2';\nimport file_commitMono_2 from './fonts/commitmono/assets/CommitMono-Bold.woff2';\nimport file_commitMono_3 from './fonts/commitmono/assets/CommitMono-BoldItalic.woff2';\n\nconst commitMonoConfig = { name: 'CommitMono', variants: [{\n weight: 400,\n style: \"normal\" as const,\n file: file_commitMono_0\n }, {\n weight: 400,\n style: \"italic\" as const,\n file: file_commitMono_1\n }, {\n weight: 700,\n style: \"normal\" as const,\n file: file_commitMono_2\n }, {\n weight: 700,\n style: \"italic\" as const,\n file: file_commitMono_3\n }] };\nimport file_inter_0 from './fonts/inter/assets/Inter-Thin.woff2';\nimport file_inter_1 from './fonts/inter/assets/Inter-ThinItalic.woff2';\nimport file_inter_2 from './fonts/inter/assets/Inter-ExtraLight.woff2';\nimport file_inter_3 from './fonts/inter/assets/Inter-ExtraLightItalic.woff2';\nimport file_inter_4 from './fonts/inter/assets/Inter-Light.woff2';\nimport file_inter_5 from './fonts/inter/assets/Inter-LightItalic.woff2';\nimport file_inter_6 from './fonts/inter/assets/Inter-Regular.woff2';\nimport file_inter_7 from './fonts/inter/assets/Inter-Italic.woff2';\nimport file_inter_8 from './fonts/inter/assets/Inter-Medium.woff2';\nimport file_inter_9 from './fonts/inter/assets/Inter-MediumItalic.woff2';\nimport file_inter_10 from './fonts/inter/assets/Inter-SemiBold.woff2';\nimport file_inter_11 from './fonts/inter/assets/Inter-SemiBoldItalic.woff2';\nimport file_inter_12 from './fonts/inter/assets/Inter-Bold.woff2';\nimport file_inter_13 from './fonts/inter/assets/Inter-BoldItalic.woff2';\nimport file_inter_14 from './fonts/inter/assets/Inter-ExtraBold.woff2';\nimport file_inter_15 from './fonts/inter/assets/Inter-ExtraBoldItalic.woff2';\nimport file_inter_16 from './fonts/inter/assets/Inter-Black.woff2';\nimport file_inter_17 from './fonts/inter/assets/Inter-BlackItalic.woff2';\n\nconst interConfig = { name: 'Inter', variants: [{\n weight: 100,\n style: \"normal\" as const,\n file: file_inter_0\n }, {\n weight: 100,\n style: \"italic\" as const,\n file: file_inter_1\n }, {\n weight: 200,\n style: \"normal\" as const,\n file: file_inter_2\n }, {\n weight: 200,\n style: \"italic\" as const,\n file: file_inter_3\n }, {\n weight: 300,\n style: \"normal\" as const,\n file: file_inter_4\n }, {\n weight: 300,\n style: \"italic\" as const,\n file: file_inter_5\n }, {\n weight: 400,\n style: \"normal\" as const,\n file: file_inter_6\n }, {\n weight: 400,\n style: \"italic\" as const,\n file: file_inter_7\n }, {\n weight: 500,\n style: \"normal\" as const,\n file: file_inter_8\n }, {\n weight: 500,\n style: \"italic\" as const,\n file: file_inter_9\n }, {\n weight: 600,\n style: \"normal\" as const,\n file: file_inter_10\n }, {\n weight: 600,\n style: \"italic\" as const,\n file: file_inter_11\n }, {\n weight: 700,\n style: \"normal\" as const,\n file: file_inter_12\n }, {\n weight: 700,\n style: \"italic\" as const,\n file: file_inter_13\n }, {\n weight: 800,\n style: \"normal\" as const,\n file: file_inter_14\n }, {\n weight: 800,\n style: \"italic\" as const,\n file: file_inter_15\n }, {\n weight: 900,\n style: \"normal\" as const,\n file: file_inter_16\n }, {\n weight: 900,\n style: \"italic\" as const,\n file: file_inter_17\n }] };\nimport file_roboto_0 from './fonts/roboto/assets/Roboto-Thin.woff2';\nimport file_roboto_1 from './fonts/roboto/assets/Roboto-ThinItalic.woff2';\nimport file_roboto_2 from './fonts/roboto/assets/Roboto-Light.woff2';\nimport file_roboto_3 from './fonts/roboto/assets/Roboto-LightItalic.woff2';\nimport file_roboto_4 from './fonts/roboto/assets/Roboto-Regular.woff2';\nimport file_roboto_5 from './fonts/roboto/assets/Roboto-RegularItalic.woff2';\nimport file_roboto_6 from './fonts/roboto/assets/Roboto-Medium.woff2';\nimport file_roboto_7 from './fonts/roboto/assets/Roboto-MediumItalic.woff2';\nimport file_roboto_8 from './fonts/roboto/assets/Roboto-Bold.woff2';\nimport file_roboto_9 from './fonts/roboto/assets/Roboto-BoldItalic.woff2';\nimport file_roboto_10 from './fonts/roboto/assets/Roboto-Black.woff2';\nimport file_roboto_11 from './fonts/roboto/assets/Roboto-BlackItalic.woff2';\n\nconst robotoConfig = { name: 'Roboto', variants: [{\n weight: 100,\n style: \"normal\" as const,\n file: file_roboto_0\n }, {\n weight: 100,\n style: \"italic\" as const,\n file: file_roboto_1\n }, {\n weight: 300,\n style: \"normal\" as const,\n file: file_roboto_2\n }, {\n weight: 300,\n style: \"italic\" as const,\n file: file_roboto_3\n }, {\n weight: 400,\n style: \"normal\" as const,\n file: file_roboto_4\n }, {\n weight: 400,\n style: \"italic\" as const,\n file: file_roboto_5\n }, {\n weight: 500,\n style: \"normal\" as const,\n file: file_roboto_6\n }, {\n weight: 500,\n style: \"italic\" as const,\n file: file_roboto_7\n }, {\n weight: 700,\n style: \"normal\" as const,\n file: file_roboto_8\n }, {\n weight: 700,\n style: \"italic\" as const,\n file: file_roboto_9\n }, {\n weight: 900,\n style: \"normal\" as const,\n file: file_roboto_10\n }, {\n weight: 900,\n style: \"italic\" as const,\n file: file_roboto_11\n }] };\nimport file_satoshi_0 from './fonts/satoshi/assets/Satoshi-Light.woff2';\nimport file_satoshi_1 from './fonts/satoshi/assets/Satoshi-LightItalic.woff2';\nimport file_satoshi_2 from './fonts/satoshi/assets/Satoshi-Regular.woff2';\nimport file_satoshi_3 from './fonts/satoshi/assets/Satoshi-Italic.woff2';\nimport file_satoshi_4 from './fonts/satoshi/assets/Satoshi-Medium.woff2';\nimport file_satoshi_5 from './fonts/satoshi/assets/Satoshi-MediumItalic.woff2';\nimport file_satoshi_6 from './fonts/satoshi/assets/Satoshi-Bold.woff2';\nimport file_satoshi_7 from './fonts/satoshi/assets/Satoshi-BoldItalic.woff2';\nimport file_satoshi_8 from './fonts/satoshi/assets/Satoshi-Black.woff2';\nimport file_satoshi_9 from './fonts/satoshi/assets/Satoshi-BlackItalic.woff2';\n\nconst satoshiConfig = { name: 'Satoshi', variants: [{\n weight: 300,\n style: \"normal\" as const,\n file: file_satoshi_0\n }, {\n weight: 300,\n style: \"italic\" as const,\n file: file_satoshi_1\n }, {\n weight: 400,\n style: \"normal\" as const,\n file: file_satoshi_2\n }, {\n weight: 400,\n style: \"italic\" as const,\n file: file_satoshi_3\n }, {\n weight: 500,\n style: \"normal\" as const,\n file: file_satoshi_4\n }, {\n weight: 500,\n style: \"italic\" as const,\n file: file_satoshi_5\n }, {\n weight: 700,\n style: \"normal\" as const,\n file: file_satoshi_6\n }, {\n weight: 700,\n style: \"italic\" as const,\n file: file_satoshi_7\n }, {\n weight: 900,\n style: \"normal\" as const,\n file: file_satoshi_8\n }, {\n weight: 900,\n style: \"italic\" as const,\n file: file_satoshi_9\n }] };\n\nconst commitMonoRegs: FontRegisterers = buildRegisterers(commitMonoConfig);\nconst interRegs: FontRegisterers = buildRegisterers(interConfig);\nconst robotoRegs: FontRegisterers = buildRegisterers(robotoConfig);\nconst satoshiRegs: FontRegisterers = buildRegisterers(satoshiConfig);\n\nexport const commitMono = commitMonoRegs.commitMono;\nexport const commitMono400 = commitMonoRegs.commitMono400;\nexport const commitMono400Italic = commitMonoRegs.commitMono400Italic;\nexport const commitMono700 = commitMonoRegs.commitMono700;\nexport const commitMono700Italic = commitMonoRegs.commitMono700Italic;\nexport const inter = interRegs.inter;\nexport const inter100 = interRegs.inter100;\nexport const inter100Italic = interRegs.inter100Italic;\nexport const inter200 = interRegs.inter200;\nexport const inter200Italic = interRegs.inter200Italic;\nexport const inter300 = interRegs.inter300;\nexport const inter300Italic = interRegs.inter300Italic;\nexport const inter400 = interRegs.inter400;\nexport const inter400Italic = interRegs.inter400Italic;\nexport const inter500 = interRegs.inter500;\nexport const inter500Italic = interRegs.inter500Italic;\nexport const inter600 = interRegs.inter600;\nexport const inter600Italic = interRegs.inter600Italic;\nexport const inter700 = interRegs.inter700;\nexport const inter700Italic = interRegs.inter700Italic;\nexport const inter800 = interRegs.inter800;\nexport const inter800Italic = interRegs.inter800Italic;\nexport const inter900 = interRegs.inter900;\nexport const inter900Italic = interRegs.inter900Italic;\nexport const roboto = robotoRegs.roboto;\nexport const roboto100 = robotoRegs.roboto100;\nexport const roboto100Italic = robotoRegs.roboto100Italic;\nexport const roboto300 = robotoRegs.roboto300;\nexport const roboto300Italic = robotoRegs.roboto300Italic;\nexport const roboto400 = robotoRegs.roboto400;\nexport const roboto400Italic = robotoRegs.roboto400Italic;\nexport const roboto500 = robotoRegs.roboto500;\nexport const roboto500Italic = robotoRegs.roboto500Italic;\nexport const roboto700 = robotoRegs.roboto700;\nexport const roboto700Italic = robotoRegs.roboto700Italic;\nexport const roboto900 = robotoRegs.roboto900;\nexport const roboto900Italic = robotoRegs.roboto900Italic;\nexport const satoshi = satoshiRegs.satoshi;\nexport const satoshi300 = satoshiRegs.satoshi300;\nexport const satoshi300Italic = satoshiRegs.satoshi300Italic;\nexport const satoshi400 = satoshiRegs.satoshi400;\nexport const satoshi400Italic = satoshiRegs.satoshi400Italic;\nexport const satoshi500 = satoshiRegs.satoshi500;\nexport const satoshi500Italic = satoshiRegs.satoshi500Italic;\nexport const satoshi700 = satoshiRegs.satoshi700;\nexport const satoshi700Italic = satoshiRegs.satoshi700Italic;\nexport const satoshi900 = satoshiRegs.satoshi900;\nexport const satoshi900Italic = satoshiRegs.satoshi900Italic;\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,MAAM,gBAAgB,GAAG,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,CAAC;AAClD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;AACP,SAAA,CAAC,EAAE;AAoBV,MAAM,WAAW,GAAG,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC;AACxC,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;AACP,SAAA,CAAC,EAAE;AAcV,MAAM,YAAY,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC;AAC1C,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;AACP,SAAA,CAAC,EAAE;AAYV,MAAM,aAAa,GAAG,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC;AAC5C,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;SACP,EAAE;AACD,YAAA,MAAM,EAAE,GAAG;AACX,YAAA,KAAK,EAAE,QAAiB;AACxB,YAAA,IAAI,EAAE;AACP,SAAA,CAAC,EAAE;AAEV,MAAM,cAAc,GAAoB,gBAAgB,CAAC,gBAAgB,CAAC;AAC1E,MAAM,SAAS,GAAoB,gBAAgB,CAAC,WAAW,CAAC;AAChE,MAAM,UAAU,GAAoB,gBAAgB,CAAC,YAAY,CAAC;AAClE,MAAM,WAAW,GAAoB,gBAAgB,CAAC,aAAa,CAAC;AAE7D,MAAM,UAAU,GAAG,cAAc,CAAC;AAClC,MAAM,aAAa,GAAG,cAAc,CAAC;AACrC,MAAM,mBAAmB,GAAG,cAAc,CAAC;AAC3C,MAAM,aAAa,GAAG,cAAc,CAAC;AACrC,MAAM,mBAAmB,GAAG,cAAc,CAAC;AAC3C,MAAM,KAAK,GAAG,SAAS,CAAC;AACxB,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,QAAQ,GAAG,SAAS,CAAC;AAC3B,MAAM,cAAc,GAAG,SAAS,CAAC;AACjC,MAAM,MAAM,GAAG,UAAU,CAAC;AAC1B,MAAM,SAAS,GAAG,UAAU,CAAC;AAC7B,MAAM,eAAe,GAAG,UAAU,CAAC;AACnC,MAAM,SAAS,GAAG,UAAU,CAAC;AAC7B,MAAM,eAAe,GAAG,UAAU,CAAC;AACnC,MAAM,SAAS,GAAG,UAAU,CAAC;AAC7B,MAAM,eAAe,GAAG,UAAU,CAAC;AACnC,MAAM,SAAS,GAAG,UAAU,CAAC;AAC7B,MAAM,eAAe,GAAG,UAAU,CAAC;AACnC,MAAM,SAAS,GAAG,UAAU,CAAC;AAC7B,MAAM,eAAe,GAAG,UAAU,CAAC;AACnC,MAAM,SAAS,GAAG,UAAU,CAAC;AAC7B,MAAM,eAAe,GAAG,UAAU,CAAC;AACnC,MAAM,OAAO,GAAG,WAAW,CAAC;AAC5B,MAAM,UAAU,GAAG,WAAW,CAAC;AAC/B,MAAM,gBAAgB,GAAG,WAAW,CAAC;AACrC,MAAM,UAAU,GAAG,WAAW,CAAC;AAC/B,MAAM,gBAAgB,GAAG,WAAW,CAAC;AACrC,MAAM,UAAU,GAAG,WAAW,CAAC;AAC/B,MAAM,gBAAgB,GAAG,WAAW,CAAC;AACrC,MAAM,UAAU,GAAG,WAAW,CAAC;AAC/B,MAAM,gBAAgB,GAAG,WAAW,CAAC;AACrC,MAAM,UAAU,GAAG,WAAW,CAAC;AAC/B,MAAM,gBAAgB,GAAG,WAAW,CAAC;;;;"}
@@ -0,0 +1,4 @@
1
+ var file_commitMono_2 = "/assets/CommitMono-Bold.woff2";
2
+
3
+ export { file_commitMono_2 as default };
4
+ //# sourceMappingURL=CommitMono-Bold.woff2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommitMono-Bold.woff2.js","sources":["../../../../src/fonts/commitmono/assets/CommitMono-Bold.woff2"],"sourcesContent":["export default \"/assets/CommitMono-Bold.woff2\""],"names":[],"mappings":"AAAA,wBAAe;;;;"}
@@ -0,0 +1,4 @@
1
+ var file_commitMono_3 = "/assets/CommitMono-BoldItalic.woff2";
2
+
3
+ export { file_commitMono_3 as default };
4
+ //# sourceMappingURL=CommitMono-BoldItalic.woff2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommitMono-BoldItalic.woff2.js","sources":["../../../../src/fonts/commitmono/assets/CommitMono-BoldItalic.woff2"],"sourcesContent":["export default \"/assets/CommitMono-BoldItalic.woff2\""],"names":[],"mappings":"AAAA,wBAAe;;;;"}
@@ -0,0 +1,4 @@
1
+ var file_commitMono_1 = "/assets/CommitMono-Italic.woff2";
2
+
3
+ export { file_commitMono_1 as default };
4
+ //# sourceMappingURL=CommitMono-Italic.woff2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommitMono-Italic.woff2.js","sources":["../../../../src/fonts/commitmono/assets/CommitMono-Italic.woff2"],"sourcesContent":["export default \"/assets/CommitMono-Italic.woff2\""],"names":[],"mappings":"AAAA,wBAAe;;;;"}
@@ -0,0 +1,4 @@
1
+ var file_commitMono_0 = "/assets/CommitMono-Regular.woff2";
2
+
3
+ export { file_commitMono_0 as default };
4
+ //# sourceMappingURL=CommitMono-Regular.woff2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommitMono-Regular.woff2.js","sources":["../../../../src/fonts/commitmono/assets/CommitMono-Regular.woff2"],"sourcesContent":["export default \"/assets/CommitMono-Regular.woff2\""],"names":[],"mappings":"AAAA,wBAAe;;;;"}
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export * from './__generated__';
2
+ export type * from './types';
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export { inter, inter100, inter100Italic, inter200, inter200Italic, inter300, inter300Italic, inter400, inter400Italic, inter500, inter500Italic, inter600, inter600Italic, inter700, inter700Italic, inter800, inter800Italic, inter900, inter900Italic, roboto, roboto100, roboto100Italic, roboto300, roboto300Italic, roboto400, roboto400Italic, roboto500, roboto500Italic, roboto700, roboto700Italic, roboto900, roboto900Italic, satoshi, satoshi300, satoshi300Italic, satoshi400, satoshi400Italic, satoshi500, satoshi500Italic, satoshi600, satoshi600Italic, satoshi900, satoshi900Italic } from './__generated__.js';
1
+ export { commitMono, commitMono400, commitMono400Italic, commitMono700, commitMono700Italic, inter, inter100, inter100Italic, inter200, inter200Italic, inter300, inter300Italic, inter400, inter400Italic, inter500, inter500Italic, inter600, inter600Italic, inter700, inter700Italic, inter800, inter800Italic, inter900, inter900Italic, roboto, roboto100, roboto100Italic, roboto300, roboto300Italic, roboto400, roboto400Italic, roboto500, roboto500Italic, roboto700, roboto700Italic, roboto900, roboto900Italic, satoshi, satoshi300, satoshi300Italic, satoshi400, satoshi400Italic, satoshi500, satoshi500Italic, satoshi700, satoshi700Italic, satoshi900, satoshi900Italic } from './__generated__.js';
2
2
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctrliq/quantic-fonts",
3
- "version": "1.67.5",
3
+ "version": "1.68.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"