@rs-x/vue 2.0.0-next.44 → 2.0.0-next.46
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 +4 -4
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { RsXExpressionParserInjectionTokens, RsXExpressionParserModule } from "@
|
|
|
7
7
|
var factoryInstance;
|
|
8
8
|
function getExpressionFactory() {
|
|
9
9
|
if (!factoryInstance) {
|
|
10
|
-
if (!InjectionContainer.isBound(RsXExpressionParserInjectionTokens.
|
|
10
|
+
if (!InjectionContainer.isBound(RsXExpressionParserInjectionTokens.IExpressionParser)) {
|
|
11
11
|
InjectionContainer.load(RsXExpressionParserModule);
|
|
12
12
|
}
|
|
13
13
|
factoryInstance = InjectionContainer.get(RsXExpressionParserInjectionTokens.IExpressionFactory);
|
|
@@ -22,7 +22,7 @@ import { RsXExpressionParserInjectionTokens as RsXExpressionParserInjectionToken
|
|
|
22
22
|
var expressionManager;
|
|
23
23
|
function getExpressionManager() {
|
|
24
24
|
if (!expressionManager) {
|
|
25
|
-
if (!InjectionContainer2.isBound(RsXExpressionParserInjectionTokens2.
|
|
25
|
+
if (!InjectionContainer2.isBound(RsXExpressionParserInjectionTokens2.IExpressionParser)) {
|
|
26
26
|
InjectionContainer2.load(RsXExpressionParserModule2);
|
|
27
27
|
}
|
|
28
28
|
expressionManager = InjectionContainer2.get(RsXExpressionParserInjectionTokens2.IExpressionManager);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rs-x/vue",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.46",
|
|
4
4
|
"description": "Vue extension for the RS-X framework with composables to bind RS-X expressions to Vue components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"vue": ">=3.3.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@rs-x/
|
|
42
|
-
"@rs-x/
|
|
43
|
-
"@rs-x/state-manager": "2.0.0-next.
|
|
41
|
+
"@rs-x/expression-parser": "2.0.0-next.46",
|
|
42
|
+
"@rs-x/core": "2.0.0-next.46",
|
|
43
|
+
"@rs-x/state-manager": "2.0.0-next.46"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@vitejs/plugin-vue": "^6.0.5",
|