@elementor/editor-controls 3.35.2 → 3.35.4
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
|
@@ -5646,7 +5646,7 @@ var getIsSiteRtl = () => {
|
|
|
5646
5646
|
var shouldExtendTransitionProperties = () => {
|
|
5647
5647
|
const hasProInstalled = !!window.elementorPro;
|
|
5648
5648
|
if (!hasProInstalled) {
|
|
5649
|
-
return
|
|
5649
|
+
return false;
|
|
5650
5650
|
}
|
|
5651
5651
|
const proVersion = window.elementorPro?.config?.version;
|
|
5652
5652
|
if (!proVersion) {
|
|
@@ -5953,34 +5953,14 @@ var TransitionSelector = ({
|
|
|
5953
5953
|
showPromotion && disabledCategories.has(item.value) && /* @__PURE__ */ React96.createElement(import_editor_ui11.PromotionChip, null)
|
|
5954
5954
|
),
|
|
5955
5955
|
footer: showPromotion ? /* @__PURE__ */ React96.createElement(
|
|
5956
|
-
|
|
5956
|
+
import_editor_ui11.PromotionAlert,
|
|
5957
5957
|
{
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
sx: { m: 1.5, mt: 0 }
|
|
5965
|
-
},
|
|
5966
|
-
(0, import_i18n48.__)("Upgrade to customize transition properties and control effects.", "elementor"),
|
|
5967
|
-
/* @__PURE__ */ React96.createElement(
|
|
5968
|
-
import_ui82.Box,
|
|
5969
|
-
{
|
|
5970
|
-
component: "a",
|
|
5971
|
-
href: PRO_UPGRADE_URL,
|
|
5972
|
-
target: "_blank",
|
|
5973
|
-
rel: "noopener noreferrer",
|
|
5974
|
-
sx: {
|
|
5975
|
-
display: "flex",
|
|
5976
|
-
alignItems: "center",
|
|
5977
|
-
gap: 0.5,
|
|
5978
|
-
color: "promotion.main"
|
|
5979
|
-
}
|
|
5980
|
-
},
|
|
5981
|
-
/* @__PURE__ */ React96.createElement(import_icons31.CrownFilledIcon, { fontSize: "tiny" }),
|
|
5982
|
-
(0, import_i18n48.__)("Upgrade now", "elementor")
|
|
5983
|
-
)
|
|
5958
|
+
message: (0, import_i18n48.__)(
|
|
5959
|
+
"Upgrade to customize transition properties and control effects.",
|
|
5960
|
+
"elementor"
|
|
5961
|
+
),
|
|
5962
|
+
upgradeUrl: PRO_UPGRADE_URL
|
|
5963
|
+
}
|
|
5984
5964
|
) : null
|
|
5985
5965
|
}
|
|
5986
5966
|
)
|