ngx-xtroedge-cms 1.4.3 → 1.4.5

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
@@ -81,6 +81,8 @@ interface LicenseStatus {
81
81
  declare class XtroedgeCMS {
82
82
  private static readonly _SK;
83
83
  private static readonly _VAULT_KEY;
84
+ /** Shared MutationObserver options — watch childList, attributes (class), and text changes */
85
+ private static readonly OBS_INIT;
84
86
  private static _enc;
85
87
  private static _dec;
86
88
  private static _readVault;
@@ -192,11 +194,6 @@ declare class XtroedgeCMS {
192
194
  constructor(config?: XtroedgeCmsConfig);
193
195
  init(): Promise<void>;
194
196
  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;
200
197
  private static readonly LICENSE_CACHE_KEY;
201
198
  private static readonly LICENSE_CACHE_TTL;
202
199
  private validateLicense;
package/dist/index.d.ts CHANGED
@@ -81,6 +81,8 @@ interface LicenseStatus {
81
81
  declare class XtroedgeCMS {
82
82
  private static readonly _SK;
83
83
  private static readonly _VAULT_KEY;
84
+ /** Shared MutationObserver options — watch childList, attributes (class), and text changes */
85
+ private static readonly OBS_INIT;
84
86
  private static _enc;
85
87
  private static _dec;
86
88
  private static _readVault;
@@ -192,11 +194,6 @@ declare class XtroedgeCMS {
192
194
  constructor(config?: XtroedgeCmsConfig);
193
195
  init(): Promise<void>;
194
196
  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;
200
197
  private static readonly LICENSE_CACHE_KEY;
201
198
  private static readonly LICENSE_CACHE_TTL;
202
199
  private validateLicense;