@elementor/editor-editing-panel 4.1.0-744 → 4.1.0-746
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.d.mts
CHANGED
|
@@ -332,7 +332,7 @@ declare const controlTypes: {
|
|
|
332
332
|
};
|
|
333
333
|
};
|
|
334
334
|
readonly text: {
|
|
335
|
-
readonly component: ControlComponent<({ placeholder, error, inputValue, inputDisabled, helperText, sx, ariaLabel, }: {
|
|
335
|
+
readonly component: ControlComponent<({ placeholder: propPlaceholder, error, inputValue, inputDisabled, helperText, sx, ariaLabel, }: {
|
|
336
336
|
placeholder?: string;
|
|
337
337
|
error?: boolean;
|
|
338
338
|
inputValue?: string;
|
|
@@ -367,7 +367,7 @@ declare const controlTypes: {
|
|
|
367
367
|
};
|
|
368
368
|
};
|
|
369
369
|
readonly textarea: {
|
|
370
|
-
readonly component: ControlComponent<({ placeholder, ariaLabel }: {
|
|
370
|
+
readonly component: ControlComponent<({ placeholder: propPlaceholder, ariaLabel }: {
|
|
371
371
|
placeholder?: string;
|
|
372
372
|
ariaLabel?: string;
|
|
373
373
|
}) => react.JSX.Element>;
|
|
@@ -957,7 +957,7 @@ declare const controlTypes: {
|
|
|
957
957
|
};
|
|
958
958
|
};
|
|
959
959
|
readonly url: {
|
|
960
|
-
readonly component: ControlComponent<({ placeholder, ariaLabel }: {
|
|
960
|
+
readonly component: ControlComponent<({ placeholder: propPlaceholder, ariaLabel }: {
|
|
961
961
|
placeholder?: string;
|
|
962
962
|
ariaLabel?: string;
|
|
963
963
|
}) => react.JSX.Element>;
|
package/dist/index.d.ts
CHANGED
|
@@ -332,7 +332,7 @@ declare const controlTypes: {
|
|
|
332
332
|
};
|
|
333
333
|
};
|
|
334
334
|
readonly text: {
|
|
335
|
-
readonly component: ControlComponent<({ placeholder, error, inputValue, inputDisabled, helperText, sx, ariaLabel, }: {
|
|
335
|
+
readonly component: ControlComponent<({ placeholder: propPlaceholder, error, inputValue, inputDisabled, helperText, sx, ariaLabel, }: {
|
|
336
336
|
placeholder?: string;
|
|
337
337
|
error?: boolean;
|
|
338
338
|
inputValue?: string;
|
|
@@ -367,7 +367,7 @@ declare const controlTypes: {
|
|
|
367
367
|
};
|
|
368
368
|
};
|
|
369
369
|
readonly textarea: {
|
|
370
|
-
readonly component: ControlComponent<({ placeholder, ariaLabel }: {
|
|
370
|
+
readonly component: ControlComponent<({ placeholder: propPlaceholder, ariaLabel }: {
|
|
371
371
|
placeholder?: string;
|
|
372
372
|
ariaLabel?: string;
|
|
373
373
|
}) => react.JSX.Element>;
|
|
@@ -957,7 +957,7 @@ declare const controlTypes: {
|
|
|
957
957
|
};
|
|
958
958
|
};
|
|
959
959
|
readonly url: {
|
|
960
|
-
readonly component: ControlComponent<({ placeholder, ariaLabel }: {
|
|
960
|
+
readonly component: ControlComponent<({ placeholder: propPlaceholder, ariaLabel }: {
|
|
961
961
|
placeholder?: string;
|
|
962
962
|
ariaLabel?: string;
|
|
963
963
|
}) => react.JSX.Element>;
|
package/dist/index.js
CHANGED
|
@@ -3964,11 +3964,11 @@ var POSITION_DEPENDENT_PROP_NAMES = [
|
|
|
3964
3964
|
"z-index"
|
|
3965
3965
|
];
|
|
3966
3966
|
var CLEARED_POSITION_DEPENDENT_VALUES = {
|
|
3967
|
-
"inset-block-start":
|
|
3968
|
-
"inset-block-end":
|
|
3969
|
-
"inset-inline-start":
|
|
3970
|
-
"inset-inline-end":
|
|
3971
|
-
"z-index":
|
|
3967
|
+
"inset-block-start": null,
|
|
3968
|
+
"inset-block-end": null,
|
|
3969
|
+
"inset-inline-start": null,
|
|
3970
|
+
"inset-inline-end": null,
|
|
3971
|
+
"z-index": null
|
|
3972
3972
|
};
|
|
3973
3973
|
var PositionSection = () => {
|
|
3974
3974
|
const { value: positionValue } = useStylesField("position", {
|