@elementor/editor-variables 3.33.0-131 → 3.33.0-132
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/dist/index.js +3 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -13
- package/src/components/variables-manager/variables-manager-panel.tsx +0 -1
- package/src/components/variables-manager/variables-manager-table.tsx +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-variables",
|
|
3
|
-
"version": "3.33.0-
|
|
3
|
+
"version": "3.33.0-132",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Elementor Team",
|
|
6
6
|
"homepage": "https://elementor.com/",
|
|
@@ -39,19 +39,19 @@
|
|
|
39
39
|
"dev": "tsup --config=../../tsup.dev.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elementor/editor": "3.33.0-
|
|
43
|
-
"@elementor/editor-canvas": "3.33.0-
|
|
44
|
-
"@elementor/editor-controls": "3.33.0-
|
|
45
|
-
"@elementor/editor-current-user": "3.33.0-
|
|
46
|
-
"@elementor/editor-editing-panel": "3.33.0-
|
|
47
|
-
"@elementor/editor-panels": "3.33.0-
|
|
48
|
-
"@elementor/editor-props": "3.33.0-
|
|
49
|
-
"@elementor/editor-ui": "3.33.0-
|
|
50
|
-
"@elementor/editor-v1-adapters": "3.33.0-
|
|
51
|
-
"@elementor/http-client": "3.33.0-
|
|
42
|
+
"@elementor/editor": "3.33.0-132",
|
|
43
|
+
"@elementor/editor-canvas": "3.33.0-132",
|
|
44
|
+
"@elementor/editor-controls": "3.33.0-132",
|
|
45
|
+
"@elementor/editor-current-user": "3.33.0-132",
|
|
46
|
+
"@elementor/editor-editing-panel": "3.33.0-132",
|
|
47
|
+
"@elementor/editor-panels": "3.33.0-132",
|
|
48
|
+
"@elementor/editor-props": "3.33.0-132",
|
|
49
|
+
"@elementor/editor-ui": "3.33.0-132",
|
|
50
|
+
"@elementor/editor-v1-adapters": "3.33.0-132",
|
|
51
|
+
"@elementor/http-client": "3.33.0-132",
|
|
52
52
|
"@elementor/icons": "1.46.0",
|
|
53
|
-
"@elementor/mixpanel": "3.33.0-
|
|
54
|
-
"@elementor/schema": "3.33.0-
|
|
53
|
+
"@elementor/mixpanel": "3.33.0-132",
|
|
54
|
+
"@elementor/schema": "3.33.0-132",
|
|
55
55
|
"@elementor/ui": "1.36.12",
|
|
56
56
|
"@wordpress/i18n": "^5.13.0"
|
|
57
57
|
},
|
|
@@ -125,9 +125,7 @@ export const VariablesManagerTable = ( {
|
|
|
125
125
|
isDragged,
|
|
126
126
|
dropPosition,
|
|
127
127
|
setTriggerRef,
|
|
128
|
-
isDragOverlay,
|
|
129
128
|
isSorting,
|
|
130
|
-
index,
|
|
131
129
|
}: UnstableSortableItemRenderProps ) => {
|
|
132
130
|
const showIndicationBefore = showDropIndication && dropPosition === 'before';
|
|
133
131
|
const showIndicationAfter = showDropIndication && dropPosition === 'after';
|
|
@@ -160,7 +158,6 @@ export const VariablesManagerTable = ( {
|
|
|
160
158
|
},
|
|
161
159
|
} }
|
|
162
160
|
style={ { ...itemStyle, ...triggerStyle } }
|
|
163
|
-
disableDivider={ isDragOverlay || index === rows.length - 1 }
|
|
164
161
|
>
|
|
165
162
|
<VariableTableCell noPadding width={ 10 } maxWidth={ 10 }>
|
|
166
163
|
<IconButton
|