@sylphx/lens-solid 2.3.0 → 2.3.1
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.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -864,7 +864,7 @@ function hasAnySubscription(entities, entityName, select, visited = new Set) {
|
|
|
864
864
|
const fieldMode = entityMetadata[fieldName];
|
|
865
865
|
if (!fieldMode)
|
|
866
866
|
continue;
|
|
867
|
-
if (fieldMode === "subscribe") {
|
|
867
|
+
if (fieldMode === "subscribe" || fieldMode === "live") {
|
|
868
868
|
return true;
|
|
869
869
|
}
|
|
870
870
|
const fieldSelect = select?.[fieldName];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/lens-solid",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "SolidJS bindings for Lens API framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"author": "SylphxAI",
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@sylphx/lens-client": "^2.5.
|
|
35
|
-
"@sylphx/lens-core": "^2.
|
|
34
|
+
"@sylphx/lens-client": "^2.5.1",
|
|
35
|
+
"@sylphx/lens-core": "^2.11.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"solid-js": ">=1.8.0"
|