@elementor/editor-controls 3.35.0-422 → 3.35.0-424
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
|
@@ -1670,6 +1670,7 @@ var RepeaterPopover = ({ children, width, ...props }) => {
|
|
|
1670
1670
|
Popover2,
|
|
1671
1671
|
{
|
|
1672
1672
|
disablePortal: true,
|
|
1673
|
+
disableEnforceFocus: true,
|
|
1673
1674
|
anchorOrigin: { vertical: "bottom", horizontal: "left" },
|
|
1674
1675
|
slotProps: {
|
|
1675
1676
|
paper: {
|
|
@@ -5240,8 +5241,10 @@ var TransformIcon = ({ value }) => {
|
|
|
5240
5241
|
import * as React90 from "react";
|
|
5241
5242
|
import { Box as Box16 } from "@elementor/ui";
|
|
5242
5243
|
import { __ as __42 } from "@wordpress/i18n";
|
|
5244
|
+
var orderedAxis = ["x", "y", "z"];
|
|
5243
5245
|
var formatLabel = (value, functionType) => {
|
|
5244
|
-
return
|
|
5246
|
+
return orderedAxis.map((axisKey) => {
|
|
5247
|
+
const axis = value[axisKey];
|
|
5245
5248
|
if (functionType === "scale") {
|
|
5246
5249
|
return axis?.value || defaultValues[functionType];
|
|
5247
5250
|
}
|