@rs-x/expression-parser 0.4.10 → 0.4.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 +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -8452,7 +8452,7 @@ ExpressionManager = _ts_decorate3([
|
|
|
8452
8452
|
], ExpressionManager);
|
|
8453
8453
|
|
|
8454
8454
|
// lib/expression-observer/deep-clone-except-with-expression-support.ts
|
|
8455
|
-
import { Inject as Inject4, Injectable as Injectable4, RsXCoreInjectionTokens } from "@rs-x/core";
|
|
8455
|
+
import { Inject as Inject4, Injectable as Injectable4, PENDING as PENDING4, RsXCoreInjectionTokens } from "@rs-x/core";
|
|
8456
8456
|
|
|
8457
8457
|
// lib/expressions/abstract-expression.ts
|
|
8458
8458
|
import { PENDING } from "@rs-x/core";
|
|
@@ -9752,7 +9752,7 @@ var DeepCloneExceptWithExpressionSupport = class {
|
|
|
9752
9752
|
}
|
|
9753
9753
|
except(source) {
|
|
9754
9754
|
if (source instanceof AbstractExpression) {
|
|
9755
|
-
return source.value;
|
|
9755
|
+
return source.value === void 0 ? PENDING4 : source.value;
|
|
9756
9756
|
}
|
|
9757
9757
|
return this._defaultDeepCloneValueGetter.except(source);
|
|
9758
9758
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rs-x/expression-parser",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"description": "Reactive JavaScript expression parser with observable AST integration for RS-X",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"astring": "^1.9.0",
|
|
41
|
-
"@rs-x/core": "0.4.
|
|
42
|
-
"@rs-x/state-manager": "0.4.
|
|
41
|
+
"@rs-x/core": "0.4.11",
|
|
42
|
+
"@rs-x/state-manager": "0.4.11"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"tsup": "^8.5.1",
|