@elementor/editor-controls 3.35.0-422 → 3.35.0-423

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
@@ -1751,6 +1751,7 @@ var RepeaterPopover = ({ children, width, ...props }) => {
1751
1751
  import_ui26.Popover,
1752
1752
  {
1753
1753
  disablePortal: true,
1754
+ disableEnforceFocus: true,
1754
1755
  anchorOrigin: { vertical: "bottom", horizontal: "left" },
1755
1756
  slotProps: {
1756
1757
  paper: {
@@ -5249,8 +5250,10 @@ var TransformIcon = ({ value }) => {
5249
5250
  var React90 = __toESM(require("react"));
5250
5251
  var import_ui76 = require("@elementor/ui");
5251
5252
  var import_i18n42 = require("@wordpress/i18n");
5253
+ var orderedAxis = ["x", "y", "z"];
5252
5254
  var formatLabel = (value, functionType) => {
5253
- return Object.values(value).map((axis) => {
5255
+ return orderedAxis.map((axisKey) => {
5256
+ const axis = value[axisKey];
5254
5257
  if (functionType === "scale") {
5255
5258
  return axis?.value || defaultValues[functionType];
5256
5259
  }