ngx-xtroedge-cms 1.4.1 → 1.4.3
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 +38 -57
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +38 -57
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -192,6 +192,11 @@ declare class XtroedgeCMS {
|
|
|
192
192
|
constructor(config?: XtroedgeCmsConfig);
|
|
193
193
|
init(): Promise<void>;
|
|
194
194
|
destroy(): void;
|
|
195
|
+
/**
|
|
196
|
+
* Manually trigger a rescan of the DOM to detect new editable elements.
|
|
197
|
+
* Useful when elements are dynamically shown/hidden or added to the page.
|
|
198
|
+
*/
|
|
199
|
+
rescan(): void;
|
|
195
200
|
private static readonly LICENSE_CACHE_KEY;
|
|
196
201
|
private static readonly LICENSE_CACHE_TTL;
|
|
197
202
|
private validateLicense;
|
package/dist/index.d.ts
CHANGED
|
@@ -192,6 +192,11 @@ declare class XtroedgeCMS {
|
|
|
192
192
|
constructor(config?: XtroedgeCmsConfig);
|
|
193
193
|
init(): Promise<void>;
|
|
194
194
|
destroy(): void;
|
|
195
|
+
/**
|
|
196
|
+
* Manually trigger a rescan of the DOM to detect new editable elements.
|
|
197
|
+
* Useful when elements are dynamically shown/hidden or added to the page.
|
|
198
|
+
*/
|
|
199
|
+
rescan(): void;
|
|
195
200
|
private static readonly LICENSE_CACHE_KEY;
|
|
196
201
|
private static readonly LICENSE_CACHE_TTL;
|
|
197
202
|
private validateLicense;
|