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 CHANGED
@@ -88,7 +88,7 @@ export function getFontsStyles(_fontsDefs) {
88
88
  const familyName = getFontFamilyName(x);
89
89
  str += dedent `
90
90
  @font-face {
91
- font-family: '${familyName}';
91
+ font-family: "${familyName}";
92
92
  src: url('${x.url}');\n
93
93
  `;
94
94
  if (x.style) {
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const version = "4.1.3";
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.3';
1
+ export const version = '4.1.4';
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unframer",
3
- "version": "4.1.3",
3
+ "version": "4.1.4",
4
4
  "type": "module",
5
5
  "description": "Import Framer components directly in your React app, type safe and customizable",
6
6
  "sideEffects": false,
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: '${familyName}';
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.3'
1
+ export const version = '4.1.4'