@griddo/ax 10.3.11 → 10.3.13

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": "10.3.11",
4
+ "version": "10.3.13",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -230,5 +230,5 @@
230
230
  "publishConfig": {
231
231
  "access": "public"
232
232
  },
233
- "gitHead": "919cce1a8832b6839f0360db701dfbb1e69148ce"
233
+ "gitHead": "b81973d594889bec73fd319f26528ba0555ea9bb"
234
234
  }
@@ -226,8 +226,6 @@ describe("GalleryDragAndDrop component actions", () => {
226
226
  ...defaultDispatchProps,
227
227
  };
228
228
 
229
- const clearDataMock = jest.fn();
230
-
231
229
  const galleryDragAndDropComponent = (
232
230
  <ThemeProvider theme={parseTheme(globalTheme)}>
233
231
  <GalleryDragAndDrop {...defaultProps} />
@@ -243,11 +241,9 @@ describe("GalleryDragAndDrop component actions", () => {
243
241
  fireEvent.drop(dragDropComponent[0], {
244
242
  dataTransfer: {
245
243
  files: [new File([""], "darthvader.png", { type: "png" })],
246
- clearData: clearDataMock,
247
244
  },
248
245
  });
249
246
 
250
- expect(clearDataMock).toBeCalled();
251
247
  await waitFor(() => expect(refreshImagesMock).toHaveBeenCalled(), { timeout: 3100 });
252
248
  });
253
249
  });
@@ -93,6 +93,7 @@ const wysiwygConfig = {
93
93
  paragraphStyles,
94
94
  tableStyles,
95
95
  tableCellStyles,
96
+ imageUploadRemoteUrls: false,
96
97
  };
97
98
 
98
99
  export { buttonsFull, buttons, wysiwygConfig };
@@ -80,7 +80,8 @@ const DetailPanel = (props: IProps) => {
80
80
  <>
81
81
  <S.Wrapper>
82
82
  <S.Header>
83
- <Tabs tabs={tabs} active={selectedTab} setSelectedTab={handleSelectedTab} noMargins />
83
+ DETAILS
84
+ {/*<Tabs tabs={tabs} active={selectedTab} setSelectedTab={handleSelectedTab} noMargins />*/}
84
85
  </S.Header>
85
86
  {selectedTab === "in use" ? (
86
87
  <UsageContent file={file} />
@@ -14,7 +14,7 @@ const Wrapper = styled.div`
14
14
 
15
15
  const Header = styled.div`
16
16
  ${(p) => p.theme.textStyle.headingXS};
17
- padding-top: ${(p) => p.theme.spacing.xs};
17
+ padding: ${(p) => p.theme.spacing.s};
18
18
  text-align: center;
19
19
  border-bottom: ${(p) => `1px solid ${p.theme.color.uiLine}`};
20
20
  `;