@elementor/editor-editing-panel 3.35.0-335 → 3.35.0-337
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
CHANGED
|
@@ -992,7 +992,6 @@ function StateMenuItem({ state, label, closeMenu, ...props }) {
|
|
|
992
992
|
setActiveId(styleId);
|
|
993
993
|
}
|
|
994
994
|
trackStyles(provider ?? "", "classStateClicked", {
|
|
995
|
-
location: "from StateMenuItem",
|
|
996
995
|
classId: styleId,
|
|
997
996
|
type: label,
|
|
998
997
|
source: styleId ? "global" : "local"
|
|
@@ -1028,7 +1027,6 @@ function UnapplyClassMenuItem({ closeMenu, ...props }) {
|
|
|
1028
1027
|
unapplyClass({ classId, classLabel });
|
|
1029
1028
|
trackStyles(provider ?? "", "classRemoved", {
|
|
1030
1029
|
classId,
|
|
1031
|
-
location: "from UnapplyClassMenuItem",
|
|
1032
1030
|
classTitle: classLabel,
|
|
1033
1031
|
source: "style-tab"
|
|
1034
1032
|
});
|
|
@@ -1328,7 +1326,6 @@ function useCreateAction() {
|
|
|
1328
1326
|
const { createdId } = createAction({ classLabel });
|
|
1329
1327
|
trackStyles(provider.getKey() ?? "", "classCreated", {
|
|
1330
1328
|
source: "created",
|
|
1331
|
-
location: "from useCreateAction",
|
|
1332
1329
|
classTitle: classLabel,
|
|
1333
1330
|
classId: createdId
|
|
1334
1331
|
});
|
|
@@ -1375,7 +1372,6 @@ function useHandleSelect() {
|
|
|
1375
1372
|
case "selectOption":
|
|
1376
1373
|
apply({ classId: option.value, classLabel: option.label });
|
|
1377
1374
|
trackStyles(option.provider ?? "", "classApplied", {
|
|
1378
|
-
location: "from useHandleSelect",
|
|
1379
1375
|
classId: option.value,
|
|
1380
1376
|
source: "style-tab"
|
|
1381
1377
|
});
|
|
@@ -1383,7 +1379,6 @@ function useHandleSelect() {
|
|
|
1383
1379
|
case "removeOption":
|
|
1384
1380
|
unapply({ classId: option.value, classLabel: option.label });
|
|
1385
1381
|
trackStyles(option.provider ?? "", "classRemoved", {
|
|
1386
|
-
location: "from useHandleSelect",
|
|
1387
1382
|
classId: option.value,
|
|
1388
1383
|
source: "style-tab"
|
|
1389
1384
|
});
|