ngx-xtroedge-cms 1.4.4 → 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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.global.js +1 -1
- package/dist/index.js +23 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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;
|
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;
|