@griddo/ax 1.65.7 → 1.65.10

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/ax",
3
3
  "description": "Griddo Author Experience",
4
- "version": "1.65.7",
4
+ "version": "1.65.10",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -220,5 +220,5 @@
220
220
  "publishConfig": {
221
221
  "access": "public"
222
222
  },
223
- "gitHead": "0a597a28c5b2755b0b15eb3cea063731e42b587e"
223
+ "gitHead": "8c11b86c6abedaa75ae9dfe45050b9eb36c7f00f"
224
224
  }
@@ -3,7 +3,7 @@ import { FrameContextConsumer } from "react-frame-component";
3
3
  import { StyleSheetManager } from "styled-components";
4
4
 
5
5
  import * as components from "components";
6
- import { providers, translations, cloudinaryDefaults, griddoDamDefaults, builderSSR, ssrHelpers } from "components";
6
+ import { providers, builderSSR, ssrHelpers } from "components";
7
7
  import { Preview } from "@griddo/core";
8
8
  import { findByEditorID } from "@ax/forms";
9
9
  import { copyTextToClipboard } from "@ax/helpers";
@@ -105,10 +105,7 @@ const Browser = (props: IBrowserProps): JSX.Element => {
105
105
  theme={theme}
106
106
  socials={socials}
107
107
  siteLangs={siteLangs}
108
- translations={translations}
109
108
  selectEditorID={selectEditorID}
110
- cloudinaryDefaults={cloudinaryDefaults}
111
- griddoDamDefaults={griddoDamDefaults}
112
109
  renderer="editor"
113
110
  apiUrl={API_URL}
114
111
  publicApiUrl={PUBLIC_API_URL}
@@ -2,7 +2,7 @@ import React, { useEffect, useState } from "react";
2
2
  import { useParams } from "react-router-dom";
3
3
 
4
4
  import * as components from "components";
5
- import { providers, translations, cloudinaryDefaults, griddoDamDefaults } from "components";
5
+ import { providers } from "components";
6
6
  import { Preview } from "@griddo/core";
7
7
  import { pages } from "@ax/api";
8
8
  import { getDefaultTheme, isReqOk } from "@ax/helpers";
@@ -58,10 +58,7 @@ const PublicPreview = () => {
58
58
  theme={theme}
59
59
  socials={socials}
60
60
  siteLangs={langs}
61
- translations={translations}
62
61
  selectEditorID={0}
63
- cloudinaryDefaults={cloudinaryDefaults}
64
- griddoDamDefaults={griddoDamDefaults}
65
62
  renderer="editor"
66
63
  apiUrl={API_URL}
67
64
  publicApiUrl={PUBLIC_API_URL}