@elementor/editor-interactions 4.0.0-665 → 4.0.0-667
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
- package/src/utils/prop-value-utils.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-interactions",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-667",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Elementor Team",
|
|
6
6
|
"homepage": "https://elementor.com/",
|
|
@@ -39,18 +39,18 @@
|
|
|
39
39
|
"dev": "tsup --config=../../tsup.dev.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elementor/editor-controls": "4.0.0-
|
|
43
|
-
"@elementor/editor-elements": "4.0.0-
|
|
44
|
-
"@elementor/editor-mcp": "4.0.0-
|
|
45
|
-
"@elementor/editor-props": "4.0.0-
|
|
46
|
-
"@elementor/editor-responsive": "4.0.0-
|
|
47
|
-
"@elementor/editor-ui": "4.0.0-
|
|
48
|
-
"@elementor/editor-v1-adapters": "4.0.0-
|
|
42
|
+
"@elementor/editor-controls": "4.0.0-667",
|
|
43
|
+
"@elementor/editor-elements": "4.0.0-667",
|
|
44
|
+
"@elementor/editor-mcp": "4.0.0-667",
|
|
45
|
+
"@elementor/editor-props": "4.0.0-667",
|
|
46
|
+
"@elementor/editor-responsive": "4.0.0-667",
|
|
47
|
+
"@elementor/editor-ui": "4.0.0-667",
|
|
48
|
+
"@elementor/editor-v1-adapters": "4.0.0-667",
|
|
49
49
|
"@elementor/icons": "^1.68.0",
|
|
50
|
-
"@elementor/schema": "4.0.0-
|
|
51
|
-
"@elementor/session": "4.0.0-
|
|
50
|
+
"@elementor/schema": "4.0.0-667",
|
|
51
|
+
"@elementor/session": "4.0.0-667",
|
|
52
52
|
"@elementor/ui": "1.36.17",
|
|
53
|
-
"@elementor/utils": "4.0.0-
|
|
53
|
+
"@elementor/utils": "4.0.0-667",
|
|
54
54
|
"@wordpress/i18n": "^5.13.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
@@ -259,7 +259,7 @@ export const buildDisplayLabel = ( item: InteractionItemValue ): string => {
|
|
|
259
259
|
|
|
260
260
|
const triggerLabel = TRIGGER_LABELS[ trigger ] || capitalize( trigger );
|
|
261
261
|
const effectLabel = capitalize( effect );
|
|
262
|
-
const typeLabel = capitalize( type );
|
|
262
|
+
const typeLabel = 'custom' === effect ? '' : capitalize( type );
|
|
263
263
|
|
|
264
264
|
return `${ triggerLabel }: ${ effectLabel } ${ typeLabel }`;
|
|
265
265
|
};
|