@elementor/editor-editing-panel 3.33.0-224 → 3.33.0-225
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 +27 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -20
- package/src/controls-registry/controls-registry.tsx +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -1170,6 +1170,33 @@ declare const controlTypes: {
|
|
|
1170
1170
|
key: "date-time";
|
|
1171
1171
|
};
|
|
1172
1172
|
};
|
|
1173
|
+
readonly 'inline-editing': {
|
|
1174
|
+
readonly component: ControlComponent<() => react.JSX.Element>;
|
|
1175
|
+
readonly layout: "full";
|
|
1176
|
+
readonly propTypeUtil: {
|
|
1177
|
+
extract: (prop: unknown) => string | null;
|
|
1178
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1179
|
+
create: {
|
|
1180
|
+
(value: string | null): _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1181
|
+
(value: string | null, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1182
|
+
(value: (prev?: string | null | undefined) => string | null, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1183
|
+
};
|
|
1184
|
+
schema: zod.ZodObject<{
|
|
1185
|
+
$$type: zod.ZodLiteral<"string">;
|
|
1186
|
+
value: zod.ZodType<string | null, zod.ZodTypeDef, string | null>;
|
|
1187
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1188
|
+
}, "strict", zod.ZodTypeAny, {
|
|
1189
|
+
$$type: "string";
|
|
1190
|
+
value: string | null;
|
|
1191
|
+
disabled?: boolean | undefined;
|
|
1192
|
+
}, {
|
|
1193
|
+
$$type: "string";
|
|
1194
|
+
value: string | null;
|
|
1195
|
+
disabled?: boolean | undefined;
|
|
1196
|
+
}>;
|
|
1197
|
+
key: "string";
|
|
1198
|
+
};
|
|
1199
|
+
};
|
|
1173
1200
|
};
|
|
1174
1201
|
type ControlType = keyof typeof controlTypes;
|
|
1175
1202
|
declare class ControlsRegistry {
|
package/dist/index.d.ts
CHANGED
|
@@ -1170,6 +1170,33 @@ declare const controlTypes: {
|
|
|
1170
1170
|
key: "date-time";
|
|
1171
1171
|
};
|
|
1172
1172
|
};
|
|
1173
|
+
readonly 'inline-editing': {
|
|
1174
|
+
readonly component: ControlComponent<() => react.JSX.Element>;
|
|
1175
|
+
readonly layout: "full";
|
|
1176
|
+
readonly propTypeUtil: {
|
|
1177
|
+
extract: (prop: unknown) => string | null;
|
|
1178
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1179
|
+
create: {
|
|
1180
|
+
(value: string | null): _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1181
|
+
(value: string | null, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1182
|
+
(value: (prev?: string | null | undefined) => string | null, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"string", string | null>;
|
|
1183
|
+
};
|
|
1184
|
+
schema: zod.ZodObject<{
|
|
1185
|
+
$$type: zod.ZodLiteral<"string">;
|
|
1186
|
+
value: zod.ZodType<string | null, zod.ZodTypeDef, string | null>;
|
|
1187
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1188
|
+
}, "strict", zod.ZodTypeAny, {
|
|
1189
|
+
$$type: "string";
|
|
1190
|
+
value: string | null;
|
|
1191
|
+
disabled?: boolean | undefined;
|
|
1192
|
+
}, {
|
|
1193
|
+
$$type: "string";
|
|
1194
|
+
value: string | null;
|
|
1195
|
+
disabled?: boolean | undefined;
|
|
1196
|
+
}>;
|
|
1197
|
+
key: "string";
|
|
1198
|
+
};
|
|
1199
|
+
};
|
|
1173
1200
|
};
|
|
1174
1201
|
type ControlType = keyof typeof controlTypes;
|
|
1175
1202
|
declare class ControlsRegistry {
|
package/dist/index.js
CHANGED
|
@@ -4798,7 +4798,8 @@ var controlTypes = {
|
|
|
4798
4798
|
"key-value": { component: import_editor_controls50.KeyValueControl, layout: "full", propTypeUtil: import_editor_props13.keyValuePropTypeUtil },
|
|
4799
4799
|
"html-tag": { component: import_editor_controls50.HtmlTagControl, layout: "two-columns", propTypeUtil: import_editor_props13.stringPropTypeUtil },
|
|
4800
4800
|
toggle: { component: import_editor_controls50.ToggleControl, layout: "full", propTypeUtil: import_editor_props13.stringPropTypeUtil },
|
|
4801
|
-
"date-time": { component: import_editor_controls50.DateTimeControl, layout: "full", propTypeUtil: import_editor_props13.DateTimePropTypeUtil }
|
|
4801
|
+
"date-time": { component: import_editor_controls50.DateTimeControl, layout: "full", propTypeUtil: import_editor_props13.DateTimePropTypeUtil },
|
|
4802
|
+
"inline-editing": { component: import_editor_controls50.InlineEditingControl, layout: "full", propTypeUtil: import_editor_props13.stringPropTypeUtil }
|
|
4802
4803
|
};
|
|
4803
4804
|
var ControlsRegistry = class {
|
|
4804
4805
|
constructor(controlsRegistry2) {
|