@elementor/editor-editing-panel 4.1.0-744 → 4.1.0-745

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementor/editor-editing-panel",
3
- "version": "4.1.0-744",
3
+ "version": "4.1.0-745",
4
4
  "private": false,
5
5
  "author": "Elementor Team",
6
6
  "homepage": "https://elementor.com/",
@@ -39,28 +39,28 @@
39
39
  "dev": "tsup --config=../../tsup.dev.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@elementor/editor": "4.1.0-744",
43
- "@elementor/editor-canvas": "4.1.0-744",
44
- "@elementor/editor-controls": "4.1.0-744",
45
- "@elementor/editor-documents": "4.1.0-744",
46
- "@elementor/editor-elements": "4.1.0-744",
47
- "@elementor/editor-interactions": "4.1.0-744",
48
- "@elementor/editor-panels": "4.1.0-744",
49
- "@elementor/editor-props": "4.1.0-744",
50
- "@elementor/editor-responsive": "4.1.0-744",
51
- "@elementor/editor-styles": "4.1.0-744",
52
- "@elementor/editor-styles-repository": "4.1.0-744",
53
- "@elementor/editor-ui": "4.1.0-744",
54
- "@elementor/editor-v1-adapters": "4.1.0-744",
42
+ "@elementor/editor": "4.1.0-745",
43
+ "@elementor/editor-canvas": "4.1.0-745",
44
+ "@elementor/editor-controls": "4.1.0-745",
45
+ "@elementor/editor-documents": "4.1.0-745",
46
+ "@elementor/editor-elements": "4.1.0-745",
47
+ "@elementor/editor-interactions": "4.1.0-745",
48
+ "@elementor/editor-panels": "4.1.0-745",
49
+ "@elementor/editor-props": "4.1.0-745",
50
+ "@elementor/editor-responsive": "4.1.0-745",
51
+ "@elementor/editor-styles": "4.1.0-745",
52
+ "@elementor/editor-styles-repository": "4.1.0-745",
53
+ "@elementor/editor-ui": "4.1.0-745",
54
+ "@elementor/editor-v1-adapters": "4.1.0-745",
55
55
  "@elementor/icons": "^1.68.0",
56
- "@elementor/editor-variables": "4.1.0-744",
57
- "@elementor/locations": "4.1.0-744",
58
- "@elementor/menus": "4.1.0-744",
59
- "@elementor/schema": "4.1.0-744",
60
- "@elementor/session": "4.1.0-744",
56
+ "@elementor/editor-variables": "4.1.0-745",
57
+ "@elementor/locations": "4.1.0-745",
58
+ "@elementor/menus": "4.1.0-745",
59
+ "@elementor/schema": "4.1.0-745",
60
+ "@elementor/session": "4.1.0-745",
61
61
  "@elementor/ui": "1.36.17",
62
- "@elementor/utils": "4.1.0-744",
63
- "@elementor/wp-media": "4.1.0-744",
62
+ "@elementor/utils": "4.1.0-745",
63
+ "@elementor/wp-media": "4.1.0-745",
64
64
  "@wordpress/i18n": "^5.13.0"
65
65
  },
66
66
  "peerDependencies": {
@@ -46,12 +46,12 @@ const POSITION_DEPENDENT_PROP_NAMES = [
46
46
  'z-index',
47
47
  ] as const;
48
48
 
49
- const CLEARED_POSITION_DEPENDENT_VALUES: Record< ( typeof POSITION_DEPENDENT_PROP_NAMES )[ number ], undefined > = {
50
- 'inset-block-start': undefined,
51
- 'inset-block-end': undefined,
52
- 'inset-inline-start': undefined,
53
- 'inset-inline-end': undefined,
54
- 'z-index': undefined,
49
+ const CLEARED_POSITION_DEPENDENT_VALUES: Record< ( typeof POSITION_DEPENDENT_PROP_NAMES )[ number ], null > = {
50
+ 'inset-block-start': null,
51
+ 'inset-block-end': null,
52
+ 'inset-inline-start': null,
53
+ 'inset-inline-end': null,
54
+ 'z-index': null,
55
55
  };
56
56
 
57
57
  export const PositionSection = () => {