ngx-xtroedge-cms 1.4.0 → 1.4.1
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.global.js +1 -1
- package/dist/index.js +258 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +258 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -133,6 +133,7 @@ declare class XtroedgeCMS {
|
|
|
133
133
|
private scanTimeout;
|
|
134
134
|
private activeImageEl;
|
|
135
135
|
private imageCtxMenu;
|
|
136
|
+
private floatingEditDialog;
|
|
136
137
|
private richToolbarEl;
|
|
137
138
|
private activeEditableEl;
|
|
138
139
|
private toolbarHideTimeout;
|
|
@@ -166,6 +167,7 @@ declare class XtroedgeCMS {
|
|
|
166
167
|
private imgOverlay;
|
|
167
168
|
private editScrollHandler;
|
|
168
169
|
private editScrollRAF;
|
|
170
|
+
private editClickCaptureHandler;
|
|
169
171
|
private posX;
|
|
170
172
|
private posY;
|
|
171
173
|
private isDragging;
|
|
@@ -220,6 +222,7 @@ declare class XtroedgeCMS {
|
|
|
220
222
|
private detachElement;
|
|
221
223
|
/** Stop propagation so parent carousels (Swiper, Owl, etc.) don't hijack the event */
|
|
222
224
|
private static stopProp;
|
|
225
|
+
private focusEditableEnd;
|
|
223
226
|
private enableElementEdit;
|
|
224
227
|
private disableElementEdit;
|
|
225
228
|
private applyEditMode;
|
|
@@ -254,6 +257,8 @@ declare class XtroedgeCMS {
|
|
|
254
257
|
private disableImageEdit;
|
|
255
258
|
private showImageContextMenu;
|
|
256
259
|
private dismissImageCtxMenu;
|
|
260
|
+
private showFloatingEditDialog;
|
|
261
|
+
private dismissFloatingEditDialog;
|
|
257
262
|
private onImageFileSelected;
|
|
258
263
|
private uploadImageToApi;
|
|
259
264
|
private applyPageImages;
|
package/dist/index.d.ts
CHANGED
|
@@ -133,6 +133,7 @@ declare class XtroedgeCMS {
|
|
|
133
133
|
private scanTimeout;
|
|
134
134
|
private activeImageEl;
|
|
135
135
|
private imageCtxMenu;
|
|
136
|
+
private floatingEditDialog;
|
|
136
137
|
private richToolbarEl;
|
|
137
138
|
private activeEditableEl;
|
|
138
139
|
private toolbarHideTimeout;
|
|
@@ -166,6 +167,7 @@ declare class XtroedgeCMS {
|
|
|
166
167
|
private imgOverlay;
|
|
167
168
|
private editScrollHandler;
|
|
168
169
|
private editScrollRAF;
|
|
170
|
+
private editClickCaptureHandler;
|
|
169
171
|
private posX;
|
|
170
172
|
private posY;
|
|
171
173
|
private isDragging;
|
|
@@ -220,6 +222,7 @@ declare class XtroedgeCMS {
|
|
|
220
222
|
private detachElement;
|
|
221
223
|
/** Stop propagation so parent carousels (Swiper, Owl, etc.) don't hijack the event */
|
|
222
224
|
private static stopProp;
|
|
225
|
+
private focusEditableEnd;
|
|
223
226
|
private enableElementEdit;
|
|
224
227
|
private disableElementEdit;
|
|
225
228
|
private applyEditMode;
|
|
@@ -254,6 +257,8 @@ declare class XtroedgeCMS {
|
|
|
254
257
|
private disableImageEdit;
|
|
255
258
|
private showImageContextMenu;
|
|
256
259
|
private dismissImageCtxMenu;
|
|
260
|
+
private showFloatingEditDialog;
|
|
261
|
+
private dismissFloatingEditDialog;
|
|
257
262
|
private onImageFileSelected;
|
|
258
263
|
private uploadImageToApi;
|
|
259
264
|
private applyPageImages;
|