@elementor/editor-editing-panel 4.1.0-818 → 4.1.0-819
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +180 -164
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -21
- package/src/components/style-sections/position-section/position-section.tsx +1 -1
- package/src/components/style-sections/position-section/z-index-field.tsx +29 -3
package/dist/index.d.mts
CHANGED
|
@@ -1014,13 +1014,14 @@ declare const controlTypes: {
|
|
|
1014
1014
|
};
|
|
1015
1015
|
};
|
|
1016
1016
|
readonly number: {
|
|
1017
|
-
readonly component: ControlComponent<({ placeholder: labelPlaceholder, max, min, step, shouldForceInt, startIcon, }: {
|
|
1017
|
+
readonly component: ControlComponent<({ placeholder: labelPlaceholder, max, min, step, shouldForceInt, startIcon, disabled: inputDisabled, }: {
|
|
1018
1018
|
placeholder?: string;
|
|
1019
1019
|
max?: number;
|
|
1020
1020
|
min?: number;
|
|
1021
1021
|
step?: number;
|
|
1022
1022
|
shouldForceInt?: boolean;
|
|
1023
1023
|
startIcon?: react.ReactNode;
|
|
1024
|
+
disabled?: boolean;
|
|
1024
1025
|
}) => react.JSX.Element>;
|
|
1025
1026
|
readonly layout: "two-columns";
|
|
1026
1027
|
readonly propTypeUtil: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1014,13 +1014,14 @@ declare const controlTypes: {
|
|
|
1014
1014
|
};
|
|
1015
1015
|
};
|
|
1016
1016
|
readonly number: {
|
|
1017
|
-
readonly component: ControlComponent<({ placeholder: labelPlaceholder, max, min, step, shouldForceInt, startIcon, }: {
|
|
1017
|
+
readonly component: ControlComponent<({ placeholder: labelPlaceholder, max, min, step, shouldForceInt, startIcon, disabled: inputDisabled, }: {
|
|
1018
1018
|
placeholder?: string;
|
|
1019
1019
|
max?: number;
|
|
1020
1020
|
min?: number;
|
|
1021
1021
|
step?: number;
|
|
1022
1022
|
shouldForceInt?: boolean;
|
|
1023
1023
|
startIcon?: react.ReactNode;
|
|
1024
|
+
disabled?: boolean;
|
|
1024
1025
|
}) => react.JSX.Element>;
|
|
1025
1026
|
readonly layout: "two-columns";
|
|
1026
1027
|
readonly propTypeUtil: {
|