unframer 4.1.3 → 4.1.4
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/css.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/src/css.tsx +1 -1
- package/src/version.ts +1 -1
package/dist/css.js
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "4.1.
|
|
1
|
+
export declare const version = "4.1.4";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '4.1.
|
|
1
|
+
export const version = '4.1.4';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
package/src/css.tsx
CHANGED
|
@@ -115,7 +115,7 @@ export function getFontsStyles(_fontsDefs: ComponentFontBundle[]) {
|
|
|
115
115
|
const familyName = getFontFamilyName(x)!
|
|
116
116
|
str += dedent`
|
|
117
117
|
@font-face {
|
|
118
|
-
font-family:
|
|
118
|
+
font-family: "${familyName}";
|
|
119
119
|
src: url('${x.url}');\n
|
|
120
120
|
`
|
|
121
121
|
if (x.style) {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '4.1.
|
|
1
|
+
export const version = '4.1.4'
|