@elementor/editor-editing-panel 4.2.0-864 → 4.2.0-865

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.2.0-864",
3
+ "version": "4.2.0-865",
4
4
  "private": false,
5
5
  "author": "Elementor Team",
6
6
  "homepage": "https://elementor.com/",
@@ -39,31 +39,31 @@
39
39
  "dev": "tsup --config=../../tsup.dev.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@elementor/editor": "4.2.0-864",
43
- "@elementor/editor-canvas": "4.2.0-864",
44
- "@elementor/editor-controls": "4.2.0-864",
45
- "@elementor/editor-documents": "4.2.0-864",
46
- "@elementor/editor-elements": "4.2.0-864",
47
- "@elementor/editor-interactions": "4.2.0-864",
48
- "@elementor/editor-notifications": "4.2.0-864",
49
- "@elementor/editor-panels": "4.2.0-864",
50
- "@elementor/editor-props": "4.2.0-864",
51
- "@elementor/editor-responsive": "4.2.0-864",
52
- "@elementor/editor-styles": "4.2.0-864",
53
- "@elementor/editor-styles-repository": "4.2.0-864",
54
- "@elementor/editor-ui": "4.2.0-864",
55
- "@elementor/editor-v1-adapters": "4.2.0-864",
56
- "@elementor/http-client": "4.2.0-864",
42
+ "@elementor/editor": "4.2.0-865",
43
+ "@elementor/editor-canvas": "4.2.0-865",
44
+ "@elementor/editor-controls": "4.2.0-865",
45
+ "@elementor/editor-documents": "4.2.0-865",
46
+ "@elementor/editor-elements": "4.2.0-865",
47
+ "@elementor/editor-interactions": "4.2.0-865",
48
+ "@elementor/editor-notifications": "4.2.0-865",
49
+ "@elementor/editor-panels": "4.2.0-865",
50
+ "@elementor/editor-props": "4.2.0-865",
51
+ "@elementor/editor-responsive": "4.2.0-865",
52
+ "@elementor/editor-styles": "4.2.0-865",
53
+ "@elementor/editor-styles-repository": "4.2.0-865",
54
+ "@elementor/editor-ui": "4.2.0-865",
55
+ "@elementor/editor-v1-adapters": "4.2.0-865",
56
+ "@elementor/http-client": "4.2.0-865",
57
57
  "@elementor/icons": "~1.75.1",
58
- "@elementor/editor-variables": "4.2.0-864",
59
- "@elementor/locations": "4.2.0-864",
60
- "@elementor/menus": "4.2.0-864",
61
- "@elementor/query": "4.2.0-864",
62
- "@elementor/schema": "4.2.0-864",
63
- "@elementor/session": "4.2.0-864",
58
+ "@elementor/editor-variables": "4.2.0-865",
59
+ "@elementor/locations": "4.2.0-865",
60
+ "@elementor/menus": "4.2.0-865",
61
+ "@elementor/query": "4.2.0-865",
62
+ "@elementor/schema": "4.2.0-865",
63
+ "@elementor/session": "4.2.0-865",
64
64
  "@elementor/ui": "1.37.5",
65
- "@elementor/utils": "4.2.0-864",
66
- "@elementor/wp-media": "4.2.0-864",
65
+ "@elementor/utils": "4.2.0-865",
66
+ "@elementor/wp-media": "4.2.0-865",
67
67
  "@wordpress/i18n": "^5.13.0"
68
68
  },
69
69
  "peerDependencies": {
@@ -32,10 +32,10 @@ const GridSpanField = ( { cssProp, label }: GridSpanFieldProps ) => (
32
32
  export const GridSpanFields = () => (
33
33
  <Grid container gap={ 2 } flexWrap="nowrap">
34
34
  <Grid item xs={ 6 }>
35
- <GridSpanField cssProp="grid-column" label={ __( 'Column Span', 'elementor' ) } />
35
+ <GridSpanField cssProp="grid-column" label={ __( 'Grid column', 'elementor' ) } />
36
36
  </Grid>
37
37
  <Grid item xs={ 6 }>
38
- <GridSpanField cssProp="grid-row" label={ __( 'Row Span', 'elementor' ) } />
38
+ <GridSpanField cssProp="grid-row" label={ __( 'Grid row', 'elementor' ) } />
39
39
  </Grid>
40
40
  </Grid>
41
41
  );
@@ -112,7 +112,7 @@ const FlexChildFields = ( { parentStyleDirection }: { parentStyleDirection: stri
112
112
  const GridChildFields = ( { parentStyleDirection }: { parentStyleDirection: string } ) => (
113
113
  <>
114
114
  <PanelDivider />
115
- <ControlFormLabel>{ __( 'Grid Child', 'elementor' ) }</ControlFormLabel>
115
+ <ControlFormLabel>{ __( 'Grid child', 'elementor' ) }</ControlFormLabel>
116
116
  <GridSpanFields />
117
117
  <AlignSelfGridChild parentStyleDirection={ parentStyleDirection } />
118
118
  <FlexOrderField />