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 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;