@gem-sdk/core 1.44.0-staging.69 → 1.44.0-staging.73

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.
@@ -27,9 +27,9 @@ const composeTypographyV2Css = (typography, isImportant)=>{
27
27
  const { bold, italic, underline, transform } = typographyAttrs ?? {};
28
28
  const composeImportant = isImportant ? '!important' : '';
29
29
  return `
30
- ${fontFamily ? composeFontFamilyTypographyV2({
30
+ ${fontFamily ? `font-family: ${composeFontFamilyTypographyV2({
31
31
  fontFamily
32
- }) : ''};
32
+ })} ${composeImportant}` : ''};
33
33
  ${fontSize?.desktop ? `font-size: ${fontSize?.desktop} ${composeImportant}` : ''};
34
34
  ${bold ? `font-weight: bold ${composeImportant}` : fontWeight ? `font-weight: ${fontWeight} ${composeImportant}` : ''};
35
35
  ${letterSpacing ? `letter-spacing: ${letterSpacing} ${composeImportant}` : ''};
@@ -25,9 +25,9 @@ const composeTypographyV2Css = (typography, isImportant)=>{
25
25
  const { bold, italic, underline, transform } = typographyAttrs ?? {};
26
26
  const composeImportant = isImportant ? '!important' : '';
27
27
  return `
28
- ${fontFamily ? composeFontFamilyTypographyV2({
28
+ ${fontFamily ? `font-family: ${composeFontFamilyTypographyV2({
29
29
  fontFamily
30
- }) : ''};
30
+ })} ${composeImportant}` : ''};
31
31
  ${fontSize?.desktop ? `font-size: ${fontSize?.desktop} ${composeImportant}` : ''};
32
32
  ${bold ? `font-weight: bold ${composeImportant}` : fontWeight ? `font-weight: ${fontWeight} ${composeImportant}` : ''};
33
33
  ${letterSpacing ? `letter-spacing: ${letterSpacing} ${composeImportant}` : ''};
@@ -5184,6 +5184,8 @@ type PublishedThemePage$1 = {
5184
5184
  type: PublishedThemePageType$1;
5185
5185
  updatedAt?: Maybe$1<Scalars$2['Time']>;
5186
5186
  publishedAt?: Maybe$1<Scalars$2['Time']>;
5187
+ isPlatformDefault?: boolean;
5188
+ platformOriginalTemplateContent?: string;
5187
5189
  };
5188
5190
  type PublishedThemePageCustomSection$1 = {
5189
5191
  id: Scalars$2['ID'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.44.0-staging.69",
3
+ "version": "1.44.0-staging.73",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",