@elementor/editor-editing-panel 3.33.0-210 → 3.33.0-211
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 +2 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -20
- package/src/components/interactions-tab.tsx +3 -11
package/dist/index.js
CHANGED
|
@@ -4811,8 +4811,6 @@ var import_icons24 = require("@elementor/icons");
|
|
|
4811
4811
|
var import_ui42 = require("@elementor/ui");
|
|
4812
4812
|
var import_i18n60 = require("@wordpress/i18n");
|
|
4813
4813
|
var InteractionsTab = () => {
|
|
4814
|
-
const handleCreateInteraction = () => {
|
|
4815
|
-
};
|
|
4816
4814
|
return /* @__PURE__ */ React85.createElement(
|
|
4817
4815
|
import_ui42.Stack,
|
|
4818
4816
|
{
|
|
@@ -4823,23 +4821,13 @@ var InteractionsTab = () => {
|
|
|
4823
4821
|
sx: { p: 2.5, pt: 8, pb: 5.5 },
|
|
4824
4822
|
gap: 1.5
|
|
4825
4823
|
},
|
|
4826
|
-
/* @__PURE__ */ React85.createElement(import_icons24.
|
|
4824
|
+
/* @__PURE__ */ React85.createElement(import_icons24.SwipeIcon, { fontSize: "large" }),
|
|
4827
4825
|
/* @__PURE__ */ React85.createElement(import_ui42.Typography, { align: "center", variant: "subtitle2" }, (0, import_i18n60.__)("Animate elements with Interactions", "elementor")),
|
|
4828
4826
|
/* @__PURE__ */ React85.createElement(import_ui42.Typography, { align: "center", variant: "caption", maxWidth: "170px" }, (0, import_i18n60.__)(
|
|
4829
4827
|
"Add entrance animations and effects triggered by user interactions such as click, hover, or scroll.",
|
|
4830
4828
|
"elementor"
|
|
4831
4829
|
)),
|
|
4832
|
-
/* @__PURE__ */ React85.createElement(
|
|
4833
|
-
import_ui42.Button,
|
|
4834
|
-
{
|
|
4835
|
-
variant: "outlined",
|
|
4836
|
-
color: "secondary",
|
|
4837
|
-
size: "small",
|
|
4838
|
-
onClick: handleCreateInteraction,
|
|
4839
|
-
sx: { mt: 1 }
|
|
4840
|
-
},
|
|
4841
|
-
(0, import_i18n60.__)("Create an interaction", "elementor")
|
|
4842
|
-
)
|
|
4830
|
+
/* @__PURE__ */ React85.createElement(import_ui42.Button, { variant: "outlined", color: "secondary", size: "small", sx: { mt: 1 } }, (0, import_i18n60.__)("Create an interaction", "elementor"))
|
|
4843
4831
|
);
|
|
4844
4832
|
};
|
|
4845
4833
|
|