@elementor/editor-canvas 0.21.0 → 0.21.1

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @elementor/editor-canvas@0.21.0 build
2
+ > @elementor/editor-canvas@0.21.1 build
3
3
  > tsup --config=../../tsup.build.ts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -12,11 +12,11 @@
12
12
  CJS Build start
13
13
  CJS dist/index.js 45.57 KB
14
14
  CJS dist/index.js.map 90.48 KB
15
- CJS ⚡️ Build success in 310ms
15
+ CJS ⚡️ Build success in 270ms
16
16
  ESM dist/index.mjs 42.38 KB
17
17
  ESM dist/index.mjs.map 90.37 KB
18
- ESM ⚡️ Build success in 312ms
18
+ ESM ⚡️ Build success in 270ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 22144ms
20
+ DTS ⚡️ Build success in 20879ms
21
21
  DTS dist/index.d.mts 2.23 KB
22
22
  DTS dist/index.d.ts 2.23 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @elementor/editor-canvas
2
2
 
3
+ ## 0.21.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b6131c3]
8
+ - @elementor/editor-styles-repository@0.8.7
9
+
3
10
  ## 0.21.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-canvas",
3
3
  "description": "Elementor Editor Canvas",
4
- "version": "0.21.0",
4
+ "version": "0.21.1",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -42,7 +42,7 @@
42
42
  "@elementor/editor-props": "0.12.0",
43
43
  "@elementor/editor-responsive": "0.13.4",
44
44
  "@elementor/editor-styles": "0.6.6",
45
- "@elementor/editor-styles-repository": "0.8.6",
45
+ "@elementor/editor-styles-repository": "0.8.7",
46
46
  "@elementor/editor-v1-adapters": "0.11.0",
47
47
  "@elementor/twing": "0.0.2",
48
48
  "@elementor/ui": "1.34.2",
@@ -75,6 +75,8 @@ describe( '<ElementsOverlays />', () => {
75
75
  const overlay = screen.getByRole( 'presentation' );
76
76
 
77
77
  expect( overlay ).toHaveAttribute( 'data-element-overlay', 'atomic2' );
78
+
79
+ // eslint-disable-next-line testing-library/no-test-id-queries
78
80
  expect( screen.getByTestId( CANVAS_WRAPPER_ID ) ).toContainElement( overlay );
79
81
  } );
80
82
 
@@ -37,6 +37,7 @@ describe( '<StyleRenderer />', () => {
37
37
  render( <StyleRenderer /> );
38
38
 
39
39
  // Assert.
40
+ // eslint-disable-next-line testing-library/no-test-id-queries
40
41
  expect( screen.queryByTestId( 'portal' ) ).not.toBeInTheDocument();
41
42
  } );
42
43
 
@@ -62,6 +63,7 @@ describe( '<StyleRenderer />', () => {
62
63
  render( <StyleRenderer /> );
63
64
 
64
65
  // Assert.
66
+ // eslint-disable-next-line testing-library/no-test-id-queries
65
67
  expect( screen.getByTestId( 'portal' ) ).toMatchSnapshot();
66
68
  } );
67
69
  } );