@elementor/editor-editing-panel 3.35.0-336 → 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.mjs
CHANGED
|
@@ -954,7 +954,6 @@ function StateMenuItem({ state, label, closeMenu, ...props }) {
|
|
|
954
954
|
setActiveId(styleId);
|
|
955
955
|
}
|
|
956
956
|
trackStyles(provider ?? "", "classStateClicked", {
|
|
957
|
-
location: "from StateMenuItem",
|
|
958
957
|
classId: styleId,
|
|
959
958
|
type: label,
|
|
960
959
|
source: styleId ? "global" : "local"
|
|
@@ -990,7 +989,6 @@ function UnapplyClassMenuItem({ closeMenu, ...props }) {
|
|
|
990
989
|
unapplyClass({ classId, classLabel });
|
|
991
990
|
trackStyles(provider ?? "", "classRemoved", {
|
|
992
991
|
classId,
|
|
993
|
-
location: "from UnapplyClassMenuItem",
|
|
994
992
|
classTitle: classLabel,
|
|
995
993
|
source: "style-tab"
|
|
996
994
|
});
|
|
@@ -1290,7 +1288,6 @@ function useCreateAction() {
|
|
|
1290
1288
|
const { createdId } = createAction({ classLabel });
|
|
1291
1289
|
trackStyles(provider.getKey() ?? "", "classCreated", {
|
|
1292
1290
|
source: "created",
|
|
1293
|
-
location: "from useCreateAction",
|
|
1294
1291
|
classTitle: classLabel,
|
|
1295
1292
|
classId: createdId
|
|
1296
1293
|
});
|
|
@@ -1337,7 +1334,6 @@ function useHandleSelect() {
|
|
|
1337
1334
|
case "selectOption":
|
|
1338
1335
|
apply({ classId: option.value, classLabel: option.label });
|
|
1339
1336
|
trackStyles(option.provider ?? "", "classApplied", {
|
|
1340
|
-
location: "from useHandleSelect",
|
|
1341
1337
|
classId: option.value,
|
|
1342
1338
|
source: "style-tab"
|
|
1343
1339
|
});
|
|
@@ -1345,7 +1341,6 @@ function useHandleSelect() {
|
|
|
1345
1341
|
case "removeOption":
|
|
1346
1342
|
unapply({ classId: option.value, classLabel: option.label });
|
|
1347
1343
|
trackStyles(option.provider ?? "", "classRemoved", {
|
|
1348
|
-
location: "from useHandleSelect",
|
|
1349
1344
|
classId: option.value,
|
|
1350
1345
|
source: "style-tab"
|
|
1351
1346
|
});
|