@symbo.ls/uikit 2.11.281 → 2.11.283
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.cjs.js +5 -4
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -6685,6 +6685,7 @@ var beforeClassAssign = (element, s) => {
|
|
|
6685
6685
|
props4.update({
|
|
6686
6686
|
themeModifier: globalTheme
|
|
6687
6687
|
}, {
|
|
6688
|
+
preventUpdateListener: true,
|
|
6688
6689
|
preventRecursive: true,
|
|
6689
6690
|
isForced: true,
|
|
6690
6691
|
preventDefineUpdate: true
|
|
@@ -6851,17 +6852,17 @@ var Collection = {
|
|
|
6851
6852
|
if ((0, import_utils4.isNot)(param)("array", "object"))
|
|
6852
6853
|
return;
|
|
6853
6854
|
const { __ref: ref } = el;
|
|
6854
|
-
if (ref.
|
|
6855
|
-
const d = (0, import_utils4.deepDiff)(param, ref.
|
|
6855
|
+
if (ref.__collectionCache) {
|
|
6856
|
+
const d = (0, import_utils4.deepDiff)(param, ref.__collectionCache);
|
|
6856
6857
|
if (Object.keys(d).length) {
|
|
6857
|
-
ref.
|
|
6858
|
+
ref.__collectionCache = (0, import_utils4.deepClone)(param);
|
|
6858
6859
|
delete ref.__noCollectionDifference;
|
|
6859
6860
|
} else {
|
|
6860
6861
|
ref.__noCollectionDifference = true;
|
|
6861
6862
|
return;
|
|
6862
6863
|
}
|
|
6863
6864
|
} else {
|
|
6864
|
-
ref.
|
|
6865
|
+
ref.__collectionCache = (0, import_utils4.deepClone)(param);
|
|
6865
6866
|
}
|
|
6866
6867
|
const obj = {
|
|
6867
6868
|
tag: "fragment",
|