@magic-xpa/gui 4.801.0-dev481.239 → 4.801.0-dev481.243
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/bundles/magic-xpa-gui.umd.js +9 -9
- package/bundles/magic-xpa-gui.umd.js.map +1 -1
- package/bundles/magic-xpa-gui.umd.min.js +2 -2
- package/bundles/magic-xpa-gui.umd.min.js.map +1 -1
- package/esm2015/src/management/gui/MgControlBase.js +2 -3
- package/esm2015/src/management/tasks/TaskDefinitionIdTableSaxHandler.js +2 -2
- package/fesm2015/magic-xpa-gui.js +1 -2
- package/fesm2015/magic-xpa-gui.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@magic-xpa/mscorelib'), require('@magic-xpa/utils'), require('
|
|
3
|
-
typeof define === 'function' && define.amd ? define('@magic-xpa/gui', ['exports', '@magic-xpa/mscorelib', '@magic-xpa/utils', '
|
|
4
|
-
(global = global || self, factory((global['magic-xpa'] = global['magic-xpa'] || {}, global['magic-xpa'].gui = {}), global.mscorelib, global.utils, global.
|
|
5
|
-
}(this, (function (exports, mscorelib, utils,
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@magic-xpa/mscorelib'), require('@magic-xpa/utils'), require('rxjs')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define('@magic-xpa/gui', ['exports', '@magic-xpa/mscorelib', '@magic-xpa/utils', 'rxjs'], factory) :
|
|
4
|
+
(global = global || self, factory((global['magic-xpa'] = global['magic-xpa'] || {}, global['magic-xpa'].gui = {}), global.mscorelib, global.utils, global.rxjs));
|
|
5
|
+
}(this, (function (exports, mscorelib, utils, rxjs) { 'use strict';
|
|
6
6
|
|
|
7
7
|
/*! *****************************************************************************
|
|
8
8
|
Copyright (c) Microsoft Corporation.
|
|
@@ -9590,13 +9590,13 @@
|
|
|
9590
9590
|
var prgIsn = 0;
|
|
9591
9591
|
var taskIsn = 0;
|
|
9592
9592
|
var taskDefId = result['taskDefinitionId']['$'];
|
|
9593
|
-
if (!
|
|
9593
|
+
if (!mscorelib.isNullOrUndefined(taskDefId[utils.XMLConstants.MG_ATTR_CTL_IDX]))
|
|
9594
9594
|
ctlIndex = +taskDefId[utils.XMLConstants.MG_ATTR_CTL_IDX];
|
|
9595
|
-
if (!
|
|
9595
|
+
if (!mscorelib.isNullOrUndefined(taskDefId[utils.XMLConstants.MG_ATTR_PROGRAM_ISN]))
|
|
9596
9596
|
prgIsn = +taskDefId[utils.XMLConstants.MG_ATTR_PROGRAM_ISN];
|
|
9597
|
-
if (!
|
|
9597
|
+
if (!mscorelib.isNullOrUndefined(taskDefId[utils.XMLConstants.MG_ATTR_TASK_ISN]))
|
|
9598
9598
|
taskIsn = +taskDefId[utils.XMLConstants.MG_ATTR_TASK_ISN];
|
|
9599
|
-
if (!
|
|
9599
|
+
if (!mscorelib.isNullOrUndefined(taskDefId[utils.XMLConstants.MG_ATTR_ISPRG]))
|
|
9600
9600
|
isPrg = taskDefId[utils.XMLConstants.MG_ATTR_ISPRG] === '1';
|
|
9601
9601
|
var taskDefinitionId = new TaskDefinitionId(ctlIndex, prgIsn, taskIsn, isPrg);
|
|
9602
9602
|
this._newTaskDefinitionIdHandler(taskDefinitionId);
|
|
@@ -15610,7 +15610,7 @@
|
|
|
15610
15610
|
return __generator(this, function (_a) {
|
|
15611
15611
|
switch (_a.label) {
|
|
15612
15612
|
case 0:
|
|
15613
|
-
if (
|
|
15613
|
+
if (mscorelib.isNullOrUndefined(onlyRepeatableProps))
|
|
15614
15614
|
onlyRepeatableProps = false;
|
|
15615
15615
|
return [4 /*yield*/, this.RefreshDisplay_1(onlyRepeatableProps)];
|
|
15616
15616
|
case 1:
|