@symbo.ls/atoms 2.11.304 → 2.11.305

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/Collection.js CHANGED
@@ -17,17 +17,19 @@ export const Collection = {
17
17
 
18
18
  const { __ref: ref } = el
19
19
 
20
+ if (isObjectLike(param)) param = deepClone(param)
21
+
20
22
  if (ref.__collectionCache) {
21
23
  const equals = JSON.stringify(param) === JSON.stringify(ref.__collectionCache)
22
24
  if (equals) {
23
25
  ref.__noCollectionDifference = true
24
26
  return
25
27
  } else {
26
- ref.__collectionCache = deepClone(param)
28
+ ref.__collectionCache = param
27
29
  delete ref.__noCollectionDifference
28
30
  }
29
31
  } else {
30
- ref.__collectionCache = deepClone(param)
32
+ ref.__collectionCache = param
31
33
  }
32
34
 
33
35
  const obj = {
package/Picture.js CHANGED
@@ -26,6 +26,7 @@ export const Picture = {
26
26
 
27
27
  Img: ({ props }) => ({
28
28
  width: 'inherit',
29
+ ignoreChildExtend: true,
29
30
  height: 'inherit',
30
31
  src: props.src
31
32
  })
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.11.304",
3
+ "version": "2.11.305",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "7844f8284253f6a9b992109e1af842910c20e806",
6
+ "gitHead": "14569e713ad6d47a3be207df9f23dc0338a2d562",
7
7
  "dependencies": {
8
8
  "@domql/state": "latest",
9
9
  "@domql/utils": "latest",