@wavemaker/angular-app 11.15.4-rc.647493 → 11.15.5-rc.647638
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/dependencies/pipe-provider.cjs.js +8 -0
- package/dependencies/transpilation-web.cjs.js +7 -0
- package/dependency-report.html +1 -1
- package/npm-shrinkwrap.json +769 -698
- package/package-lock.json +769 -698
- package/package.json +5 -5
|
@@ -149568,10 +149568,14 @@ const triggerItemAction$1 = (scope, item) => {
|
|
|
149568
149568
|
const getDatasourceFromExpr$1 = (expr, scope) => {
|
|
149569
149569
|
const isBoundToVariable = startsWith$1(expr, 'Variables.');
|
|
149570
149570
|
const isBoundToWidget = startsWith$1(expr, 'Widgets.');
|
|
149571
|
+
const isBoundToActivePageVar = startsWith$1(expr, 'App.activePage.Variables.');
|
|
149571
149572
|
const parts = expr.split('.');
|
|
149572
149573
|
if (isBoundToVariable) {
|
|
149573
149574
|
return get$2(scope.viewParent.Variables, parts[1]);
|
|
149574
149575
|
}
|
|
149576
|
+
if (isBoundToActivePageVar) {
|
|
149577
|
+
return get$2(scope.viewParent?.App?.activePage?.Variables, parts[3]);
|
|
149578
|
+
}
|
|
149575
149579
|
if (isBoundToWidget) {
|
|
149576
149580
|
const widgetScope = get$2(scope.viewParent.Widgets, parts[1]);
|
|
149577
149581
|
const widgetDatasetBoundExpr = widgetScope.$attrs.get('datasetboundexpr');
|
|
@@ -205551,10 +205555,14 @@ const triggerItemAction = (scope, item) => {
|
|
|
205551
205555
|
const getDatasourceFromExpr = (expr, scope) => {
|
|
205552
205556
|
const isBoundToVariable = startsWith(expr, 'Variables.');
|
|
205553
205557
|
const isBoundToWidget = startsWith(expr, 'Widgets.');
|
|
205558
|
+
const isBoundToActivePageVar = startsWith(expr, 'App.activePage.Variables.');
|
|
205554
205559
|
const parts = expr.split('.');
|
|
205555
205560
|
if (isBoundToVariable) {
|
|
205556
205561
|
return get(scope.viewParent.Variables, parts[1]);
|
|
205557
205562
|
}
|
|
205563
|
+
if (isBoundToActivePageVar) {
|
|
205564
|
+
return get(scope.viewParent?.App?.activePage?.Variables, parts[3]);
|
|
205565
|
+
}
|
|
205558
205566
|
if (isBoundToWidget) {
|
|
205559
205567
|
const widgetScope = get(scope.viewParent.Widgets, parts[1]);
|
|
205560
205568
|
const widgetDatasetBoundExpr = widgetScope.$attrs.get('datasetboundexpr');
|
|
@@ -35719,6 +35719,9 @@ const getDataSource = (dataSetExpr) => {
|
|
|
35719
35719
|
if (parts[0] === 'Variables' || parts[0] === 'Widgets') {
|
|
35720
35720
|
return `${parts[0]}.${parts[1]}`;
|
|
35721
35721
|
}
|
|
35722
|
+
if (parts[0] === 'App' && parts[1] === 'activePage' && parts[2] === 'Variables' && parts[3]) {
|
|
35723
|
+
return `App.activePage.Variables.${parts[3]}`;
|
|
35724
|
+
}
|
|
35722
35725
|
};
|
|
35723
35726
|
const widgetChildAttrs = (() => {
|
|
35724
35727
|
const childAttrs = new Map();
|
|
@@ -101978,10 +101981,14 @@ const triggerItemAction = (scope, item) => {
|
|
|
101978
101981
|
const getDatasourceFromExpr = (expr, scope) => {
|
|
101979
101982
|
const isBoundToVariable = startsWith(expr, 'Variables.');
|
|
101980
101983
|
const isBoundToWidget = startsWith(expr, 'Widgets.');
|
|
101984
|
+
const isBoundToActivePageVar = startsWith(expr, 'App.activePage.Variables.');
|
|
101981
101985
|
const parts = expr.split('.');
|
|
101982
101986
|
if (isBoundToVariable) {
|
|
101983
101987
|
return get$1(scope.viewParent.Variables, parts[1]);
|
|
101984
101988
|
}
|
|
101989
|
+
if (isBoundToActivePageVar) {
|
|
101990
|
+
return get$1(scope.viewParent?.App?.activePage?.Variables, parts[3]);
|
|
101991
|
+
}
|
|
101985
101992
|
if (isBoundToWidget) {
|
|
101986
101993
|
const widgetScope = get$1(scope.viewParent.Widgets, parts[1]);
|
|
101987
101994
|
const widgetDatasetBoundExpr = widgetScope.$attrs.get('datasetboundexpr');
|
package/dependency-report.html
CHANGED