@elementor/editor-controls 4.3.0-968 → 4.3.0-970

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
@@ -5167,7 +5167,7 @@ var GapControl = ({ label }) => {
5167
5167
  const disabled = sizeDisabled || directionDisabled;
5168
5168
  const propProviderProps = {
5169
5169
  propType,
5170
- value: directionValue ?? (!isLinked ? { row: masterPlaceholder, column: masterPlaceholder } : null),
5170
+ value: directionValue ?? (!isLinked ? { row: directionPlaceholder?.row, column: directionPlaceholder?.column } : null),
5171
5171
  setValue: (directions) => {
5172
5172
  const entries = Object.entries(directions);
5173
5173
  const filtered = entries.filter(([, value]) => Boolean(value));