@remotion/google-fonts 4.0.324 → 4.0.325
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/cjs/Bitcount.d.ts +70 -0
- package/dist/cjs/Bitcount.js +61 -0
- package/dist/cjs/BitcountGridSingle.d.ts +70 -0
- package/dist/cjs/BitcountGridSingle.js +61 -0
- package/dist/cjs/BitcountPropDouble.d.ts +70 -0
- package/dist/cjs/BitcountPropDouble.js +61 -0
- package/dist/cjs/BitcountPropSingle.d.ts +70 -0
- package/dist/cjs/BitcountPropSingle.js +61 -0
- package/dist/cjs/BitcountSingle.d.ts +70 -0
- package/dist/cjs/BitcountSingle.js +61 -0
- package/dist/cjs/CactusClassicalSerif.js +106 -106
- package/dist/cjs/IntelOneMono.d.ts +102 -0
- package/dist/cjs/IntelOneMono.js +89 -0
- package/dist/cjs/index.js +30 -0
- package/dist/esm/{Linefont.mjs → Bitcount.mjs} +51 -9
- package/dist/esm/BitcountGridSingle.mjs +169 -0
- package/dist/esm/BitcountPropDouble.mjs +169 -0
- package/dist/esm/BitcountPropSingle.mjs +169 -0
- package/dist/esm/BitcountSingle.mjs +169 -0
- package/dist/esm/CactusClassicalSerif.mjs +106 -106
- package/dist/esm/IntelOneMono.mjs +197 -0
- package/dist/esm/index.mjs +30 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +20 -2
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
// src/base.ts
|
|
2
|
+
import { continueRender, delayRender } from "remotion";
|
|
3
|
+
import { NoReactInternals } from "remotion/no-react";
|
|
4
|
+
var loadedFonts = {};
|
|
5
|
+
var withResolvers = function() {
|
|
6
|
+
let resolve;
|
|
7
|
+
let reject;
|
|
8
|
+
const promise = new Promise((res, rej) => {
|
|
9
|
+
resolve = res;
|
|
10
|
+
reject = rej;
|
|
11
|
+
});
|
|
12
|
+
return { promise, resolve, reject };
|
|
13
|
+
};
|
|
14
|
+
var loadFontFaceOrTimeoutAfter20Seconds = (fontFace) => {
|
|
15
|
+
const timeout = withResolvers();
|
|
16
|
+
const int = setTimeout(() => {
|
|
17
|
+
timeout.reject(new Error("Timed out loading Google Font"));
|
|
18
|
+
}, 18000);
|
|
19
|
+
return Promise.race([
|
|
20
|
+
fontFace.load().then(() => {
|
|
21
|
+
clearTimeout(int);
|
|
22
|
+
}),
|
|
23
|
+
timeout.promise
|
|
24
|
+
]);
|
|
25
|
+
};
|
|
26
|
+
var loadFonts = (meta, style, options) => {
|
|
27
|
+
const weightsAndSubsetsAreSpecified = Array.isArray(options?.weights) && Array.isArray(options?.subsets) && options.weights.length > 0 && options.subsets.length > 0;
|
|
28
|
+
if (NoReactInternals.ENABLE_V5_BREAKING_CHANGES && !weightsAndSubsetsAreSpecified) {
|
|
29
|
+
throw new Error("Loading Google Fonts without specifying weights and subsets is not supported in Remotion v5. Please specify the weights and subsets you need.");
|
|
30
|
+
}
|
|
31
|
+
const promises = [];
|
|
32
|
+
const styles = style ? [style] : Object.keys(meta.fonts);
|
|
33
|
+
let fontsLoaded = 0;
|
|
34
|
+
for (const style2 of styles) {
|
|
35
|
+
if (typeof FontFace === "undefined") {
|
|
36
|
+
continue;
|
|
37
|
+
}
|
|
38
|
+
if (!meta.fonts[style2]) {
|
|
39
|
+
throw new Error(`The font ${meta.fontFamily} does not have a style ${style2}`);
|
|
40
|
+
}
|
|
41
|
+
const weights = options?.weights ?? Object.keys(meta.fonts[style2]);
|
|
42
|
+
for (const weight of weights) {
|
|
43
|
+
if (!meta.fonts[style2][weight]) {
|
|
44
|
+
throw new Error(`The font ${meta.fontFamily} does not have a weight ${weight} in style ${style2}`);
|
|
45
|
+
}
|
|
46
|
+
const subsets = options?.subsets ?? Object.keys(meta.fonts[style2][weight]);
|
|
47
|
+
for (const subset of subsets) {
|
|
48
|
+
let font = meta.fonts[style2]?.[weight]?.[subset];
|
|
49
|
+
if (!font) {
|
|
50
|
+
throw new Error(`weight: ${weight} subset: ${subset} is not available for '${meta.fontFamily}'`);
|
|
51
|
+
}
|
|
52
|
+
let fontKey = `${meta.fontFamily}-${style2}-${weight}-${subset}`;
|
|
53
|
+
const previousPromise = loadedFonts[fontKey];
|
|
54
|
+
if (previousPromise) {
|
|
55
|
+
promises.push(previousPromise);
|
|
56
|
+
continue;
|
|
57
|
+
}
|
|
58
|
+
const baseLabel = `Fetching ${meta.fontFamily} font ${JSON.stringify({
|
|
59
|
+
style: style2,
|
|
60
|
+
weight,
|
|
61
|
+
subset
|
|
62
|
+
})}`;
|
|
63
|
+
const label = weightsAndSubsetsAreSpecified ? baseLabel : `${baseLabel}. This might be caused by loading too many font variations. Read more: https://www.remotion.dev/docs/troubleshooting/font-loading-errors#render-timeout-when-loading-google-fonts`;
|
|
64
|
+
const handle = delayRender(label, { timeoutInMilliseconds: 60000 });
|
|
65
|
+
fontsLoaded++;
|
|
66
|
+
const fontFace = new FontFace(meta.fontFamily, `url(${font}) format('woff2')`, {
|
|
67
|
+
weight,
|
|
68
|
+
style: style2,
|
|
69
|
+
unicodeRange: meta.unicodeRanges[subset]
|
|
70
|
+
});
|
|
71
|
+
let attempts = 2;
|
|
72
|
+
const tryToLoad = () => {
|
|
73
|
+
if (fontFace.status === "loaded") {
|
|
74
|
+
continueRender(handle);
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
const promise = loadFontFaceOrTimeoutAfter20Seconds(fontFace).then(() => {
|
|
78
|
+
(options?.document ?? document).fonts.add(fontFace);
|
|
79
|
+
continueRender(handle);
|
|
80
|
+
}).catch((err) => {
|
|
81
|
+
loadedFonts[fontKey] = undefined;
|
|
82
|
+
if (attempts === 0) {
|
|
83
|
+
throw err;
|
|
84
|
+
} else {
|
|
85
|
+
attempts--;
|
|
86
|
+
tryToLoad();
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
loadedFonts[fontKey] = promise;
|
|
90
|
+
promises.push(promise);
|
|
91
|
+
};
|
|
92
|
+
tryToLoad();
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
if (fontsLoaded > 20) {
|
|
96
|
+
console.warn(`Made ${fontsLoaded} network requests to load fonts for ${meta.fontFamily}. Consider loading fewer weights and subsets by passing options to loadFont(). Disable this warning by passing "ignoreTooManyRequestsWarning: true" to "options".`);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return {
|
|
100
|
+
fontFamily: meta.fontFamily,
|
|
101
|
+
fonts: meta.fonts,
|
|
102
|
+
unicodeRanges: meta.unicodeRanges,
|
|
103
|
+
waitUntilDone: () => Promise.all(promises).then(() => {
|
|
104
|
+
return;
|
|
105
|
+
})
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
// src/IntelOneMono.ts
|
|
110
|
+
var getInfo = () => ({
|
|
111
|
+
fontFamily: "Intel One Mono",
|
|
112
|
+
importName: "IntelOneMono",
|
|
113
|
+
version: "v2",
|
|
114
|
+
url: "https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700",
|
|
115
|
+
unicodeRanges: {
|
|
116
|
+
symbols2: "U+2000-2001, U+2004-2008, U+200A, U+23B8-23BD, U+2500-259F",
|
|
117
|
+
vietnamese: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB",
|
|
118
|
+
"latin-ext": "U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF",
|
|
119
|
+
latin: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"
|
|
120
|
+
},
|
|
121
|
+
fonts: {
|
|
122
|
+
italic: {
|
|
123
|
+
"300": {
|
|
124
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abSn3wXqO5y6WSQ.woff2",
|
|
125
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abSn3wVfGrmHYA.woff2",
|
|
126
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abSn3wVeGrmHYA.woff2",
|
|
127
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abSn3wVQGrk.woff2"
|
|
128
|
+
},
|
|
129
|
+
"400": {
|
|
130
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abT53wXqO5y6WSQ.woff2",
|
|
131
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abT53wVfGrmHYA.woff2",
|
|
132
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abT53wVeGrmHYA.woff2",
|
|
133
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abT53wVQGrk.woff2"
|
|
134
|
+
},
|
|
135
|
+
"500": {
|
|
136
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abTL3wXqO5y6WSQ.woff2",
|
|
137
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abTL3wVfGrmHYA.woff2",
|
|
138
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abTL3wVeGrmHYA.woff2",
|
|
139
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abTL3wVQGrk.woff2"
|
|
140
|
+
},
|
|
141
|
+
"600": {
|
|
142
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQn2AXqO5y6WSQ.woff2",
|
|
143
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQn2AVfGrmHYA.woff2",
|
|
144
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQn2AVeGrmHYA.woff2",
|
|
145
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQn2AVQGrk.woff2"
|
|
146
|
+
},
|
|
147
|
+
"700": {
|
|
148
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQe2AXqO5y6WSQ.woff2",
|
|
149
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQe2AVfGrmHYA.woff2",
|
|
150
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQe2AVeGrmHYA.woff2",
|
|
151
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sUzZuLY8Lb_G1RikFkwPjBvsk1H4RE8-pZ5gQ1abQe2AVQGrk.woff2"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
normal: {
|
|
155
|
+
"300": {
|
|
156
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMg__chIRR3P4S-.woff2",
|
|
157
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMg__chlDVSAr0.woff2",
|
|
158
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMg__chlTVSAr0.woff2",
|
|
159
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMg__chmzVS.woff2"
|
|
160
|
+
},
|
|
161
|
+
"400": {
|
|
162
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgofchIRR3P4S-.woff2",
|
|
163
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgofchlDVSAr0.woff2",
|
|
164
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgofchlTVSAr0.woff2",
|
|
165
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgofchmzVS.woff2"
|
|
166
|
+
},
|
|
167
|
+
"500": {
|
|
168
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgk_chIRR3P4S-.woff2",
|
|
169
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgk_chlDVSAr0.woff2",
|
|
170
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgk_chlTVSAr0.woff2",
|
|
171
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgk_chmzVS.woff2"
|
|
172
|
+
},
|
|
173
|
+
"600": {
|
|
174
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgf_AhIRR3P4S-.woff2",
|
|
175
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgf_AhlDVSAr0.woff2",
|
|
176
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgf_AhlTVSAr0.woff2",
|
|
177
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgf_AhmzVS.woff2"
|
|
178
|
+
},
|
|
179
|
+
"700": {
|
|
180
|
+
symbols2: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgRvAhIRR3P4S-.woff2",
|
|
181
|
+
vietnamese: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgRvAhlDVSAr0.woff2",
|
|
182
|
+
"latin-ext": "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgRvAhlTVSAr0.woff2",
|
|
183
|
+
latin: "https://fonts.gstatic.com/s/intelonemono/v2/P5sWzZuLY8Lb_G1RikFkwPjBvuM8LXucmoHDSAMgRvAhmzVS.woff2"
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
subsets: ["latin", "latin-ext", "symbols2", "vietnamese"]
|
|
188
|
+
});
|
|
189
|
+
var fontFamily = "Intel One Mono";
|
|
190
|
+
var loadFont = (style, options) => {
|
|
191
|
+
return loadFonts(getInfo(), style, options);
|
|
192
|
+
};
|
|
193
|
+
export {
|
|
194
|
+
loadFont,
|
|
195
|
+
getInfo,
|
|
196
|
+
fontFamily
|
|
197
|
+
};
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1034,11 +1034,36 @@ export const getAvailableFonts = () => [
|
|
|
1034
1034
|
importName: 'Biryani',
|
|
1035
1035
|
load: () => import('./Biryani.mjs'),
|
|
1036
1036
|
},
|
|
1037
|
+
{
|
|
1038
|
+
fontFamily: 'Bitcount',
|
|
1039
|
+
importName: 'Bitcount',
|
|
1040
|
+
load: () => import('./Bitcount.mjs'),
|
|
1041
|
+
},
|
|
1037
1042
|
{
|
|
1038
1043
|
fontFamily: 'Bitcount Grid Double',
|
|
1039
1044
|
importName: 'BitcountGridDouble',
|
|
1040
1045
|
load: () => import('./BitcountGridDouble.mjs'),
|
|
1041
1046
|
},
|
|
1047
|
+
{
|
|
1048
|
+
fontFamily: 'Bitcount Grid Single',
|
|
1049
|
+
importName: 'BitcountGridSingle',
|
|
1050
|
+
load: () => import('./BitcountGridSingle.mjs'),
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
fontFamily: 'Bitcount Prop Double',
|
|
1054
|
+
importName: 'BitcountPropDouble',
|
|
1055
|
+
load: () => import('./BitcountPropDouble.mjs'),
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
fontFamily: 'Bitcount Prop Single',
|
|
1059
|
+
importName: 'BitcountPropSingle',
|
|
1060
|
+
load: () => import('./BitcountPropSingle.mjs'),
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
fontFamily: 'Bitcount Single',
|
|
1064
|
+
importName: 'BitcountSingle',
|
|
1065
|
+
load: () => import('./BitcountSingle.mjs'),
|
|
1066
|
+
},
|
|
1042
1067
|
{
|
|
1043
1068
|
fontFamily: 'Bitter',
|
|
1044
1069
|
importName: 'Bitter',
|
|
@@ -3264,6 +3289,11 @@ export const getAvailableFonts = () => [
|
|
|
3264
3289
|
importName: 'InstrumentSerif',
|
|
3265
3290
|
load: () => import('./InstrumentSerif.mjs'),
|
|
3266
3291
|
},
|
|
3292
|
+
{
|
|
3293
|
+
fontFamily: 'Intel One Mono',
|
|
3294
|
+
importName: 'IntelOneMono',
|
|
3295
|
+
load: () => import('./IntelOneMono.mjs'),
|
|
3296
|
+
},
|
|
3267
3297
|
{
|
|
3268
3298
|
fontFamily: 'Inter',
|
|
3269
3299
|
importName: 'Inter',
|