@griddo/ax 11.10.51 → 11.11.0-rc.2

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": "11.10.51",
4
+ "version": "11.11.0-rc.2",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -217,5 +217,5 @@
217
217
  "publishConfig": {
218
218
  "access": "public"
219
219
  },
220
- "gitHead": "9d1f19c90a45a5f03e5a2aaa6af48c244cac5b8f"
220
+ "gitHead": "9ea7cd9f720b1d2c993cf559c2f1911c607147e8"
221
221
  }
@@ -21,7 +21,7 @@ const BackgroundAnimation = styled.div`
21
21
  const Content = styled.div`
22
22
  display: flex;
23
23
  flex-direction: column;
24
- width: 400px;
24
+ width: 500px;
25
25
  z-index: 1;
26
26
  `;
27
27
 
@@ -445,7 +445,7 @@ const GlobalEditor = (props: IProps) => {
445
445
 
446
446
  const toggleDraftPage = async () => {
447
447
  const { getPage } = props;
448
- resetDirty();
448
+ resetDirty(undefined, true);
449
449
  const pageID = isDraft ? editorContent.draftFromPage : editorContent.haveDraftPage;
450
450
  await getPage(pageID);
451
451
  };