@sylphx/lens-solid 2.2.9 → 2.2.11
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 +3 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -407,6 +407,9 @@ function createTypeBuilder() {
|
|
|
407
407
|
many: (targetRef) => createContextualField(new LazyManyType(targetRef))
|
|
408
408
|
};
|
|
409
409
|
}
|
|
410
|
+
var MODEL_SYMBOL = Symbol("lens:model");
|
|
411
|
+
var NULLABLE_SYMBOL = Symbol("lens:nullable");
|
|
412
|
+
var LIST_SYMBOL = Symbol("lens:list");
|
|
410
413
|
var ENTITY_SYMBOL = Symbol("lens:entity");
|
|
411
414
|
function defineEntity(nameOrFields, maybeFieldsOrBuilder) {
|
|
412
415
|
if (typeof nameOrFields === "object" && maybeFieldsOrBuilder === undefined) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/lens-solid",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.11",
|
|
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.4.
|
|
35
|
-
"@sylphx/lens-core": "^2.
|
|
34
|
+
"@sylphx/lens-client": "^2.4.9",
|
|
35
|
+
"@sylphx/lens-core": "^2.8.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"solid-js": ">=1.8.0"
|