@kontur.candy/generator 6.17.0-test-fs-9386.0 → 6.17.0
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 +867 -511
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2669,10 +2669,10 @@ webpackContext.id = "./Generator/src/generators/markupGenerator/ElementProcessor
|
|
|
2669
2669
|
|
|
2670
2670
|
/***/ }),
|
|
2671
2671
|
|
|
2672
|
-
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
2673
|
-
|
|
2674
|
-
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
2675
|
-
|
|
2672
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox sync recursive .md$":
|
|
2673
|
+
/*!******************************************************************************************************************!*\
|
|
2674
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ sync .md$ ***!
|
|
2675
|
+
\******************************************************************************************************************/
|
|
2676
2676
|
/***/ ((module) => {
|
|
2677
2677
|
|
|
2678
2678
|
function webpackEmptyContext(req) {
|
|
@@ -2682,15 +2682,15 @@ function webpackEmptyContext(req) {
|
|
|
2682
2682
|
}
|
|
2683
2683
|
webpackEmptyContext.keys = () => ([]);
|
|
2684
2684
|
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
2685
|
-
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
2685
|
+
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox sync recursive .md$";
|
|
2686
2686
|
module.exports = webpackEmptyContext;
|
|
2687
2687
|
|
|
2688
2688
|
/***/ }),
|
|
2689
2689
|
|
|
2690
|
-
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
2691
|
-
|
|
2692
|
-
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
2693
|
-
|
|
2690
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date sync recursive .md$":
|
|
2691
|
+
/*!*************************************************************************************************!*\
|
|
2692
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/ sync .md$ ***!
|
|
2693
|
+
\*************************************************************************************************/
|
|
2694
2694
|
/***/ ((module) => {
|
|
2695
2695
|
|
|
2696
2696
|
function webpackEmptyContext(req) {
|
|
@@ -2700,7 +2700,7 @@ function webpackEmptyContext(req) {
|
|
|
2700
2700
|
}
|
|
2701
2701
|
webpackEmptyContext.keys = () => ([]);
|
|
2702
2702
|
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
2703
|
-
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
2703
|
+
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date sync recursive .md$";
|
|
2704
2704
|
module.exports = webpackEmptyContext;
|
|
2705
2705
|
|
|
2706
2706
|
/***/ }),
|
|
@@ -46819,6 +46819,9 @@ class KCLangRuntimeUtils {
|
|
|
46819
46819
|
}
|
|
46820
46820
|
return (_wrapDecimalOperand2 = (0,_Engine_src_Helpers_AutocalcCommonFunctions__WEBPACK_IMPORTED_MODULE_2__.wrapDecimalOperand)(denominatorVal)) !== null && _wrapDecimalOperand2 !== void 0 ? _wrapDecimalOperand2 : new big_js__WEBPACK_IMPORTED_MODULE_0__["default"](0);
|
|
46821
46821
|
}
|
|
46822
|
+
uuid() {
|
|
46823
|
+
return self.crypto.randomUUID();
|
|
46824
|
+
}
|
|
46822
46825
|
}
|
|
46823
46826
|
KCLangRuntimeUtils.kcLangUtilsName = "kcLangUtils";
|
|
46824
46827
|
|
|
@@ -48320,9 +48323,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
48320
48323
|
/* harmony export */ buildDirtyPathForMultiplicityAndCheckboxPath: () => (/* binding */ buildDirtyPathForMultiplicityAndCheckboxPath)
|
|
48321
48324
|
/* harmony export */ });
|
|
48322
48325
|
/* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
|
|
48326
|
+
/* harmony import */ var _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../Common/IterableUtils */ "./Common/IterableUtils.ts");
|
|
48327
|
+
/* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
|
|
48328
|
+
|
|
48329
|
+
|
|
48323
48330
|
|
|
48324
48331
|
function buildDirtyPathForMultiplicityAndCheckboxPath(multiplicityPath, checkboxPath) {
|
|
48325
|
-
|
|
48332
|
+
const multiplicityPathWithoutLastStar = multiplicityPath.trimLastStarIfLastToken();
|
|
48333
|
+
const parentPath = multiplicityPathWithoutLastStar.trimLastStarIfLastToken().getParentPath();
|
|
48334
|
+
const lastTokenFromMultiplicityPath = _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_1__.IterUtils.last(multiplicityPathWithoutLastStar.getPathParts());
|
|
48335
|
+
const lastTokenAsSimpleToken = _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.PathTokens.isSimpleToken(lastTokenFromMultiplicityPath) ? lastTokenFromMultiplicityPath : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.reject)(`Invalid token type: only simple token expected!`);
|
|
48336
|
+
return parentPath.joinWith(`${lastTokenAsSimpleToken}_dirtyCheckboxes`).joinWith((0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.convertToRelativeModelPath)(checkboxPath));
|
|
48326
48337
|
}
|
|
48327
48338
|
|
|
48328
48339
|
/***/ }),
|
|
@@ -50462,6 +50473,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
50462
50473
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
50463
50474
|
/* harmony export */ HelperFunctionsStringHelpers: () => (/* binding */ HelperFunctionsStringHelpers),
|
|
50464
50475
|
/* harmony export */ pluralize: () => (/* binding */ pluralize),
|
|
50476
|
+
/* harmony export */ splitHighlightedParts: () => (/* binding */ splitHighlightedParts),
|
|
50465
50477
|
/* harmony export */ splitLastOccurrence: () => (/* binding */ splitLastOccurrence)
|
|
50466
50478
|
/* harmony export */ });
|
|
50467
50479
|
/* harmony import */ var _Common_IntRangeUtils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../Common/IntRangeUtils */ "./Common/IntRangeUtils.ts");
|
|
@@ -50476,10 +50488,23 @@ const splitLastOccurrence = (source, substring) => {
|
|
|
50476
50488
|
}
|
|
50477
50489
|
return [before, after];
|
|
50478
50490
|
};
|
|
50479
|
-
const
|
|
50491
|
+
const splitHighlightedParts = (text, search) => {
|
|
50492
|
+
if (!search.trim()) {
|
|
50493
|
+
return [{
|
|
50494
|
+
text: text,
|
|
50495
|
+
highlighted: false
|
|
50496
|
+
}];
|
|
50497
|
+
}
|
|
50498
|
+
const regex = new RegExp(`(${search.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")})`, "gi");
|
|
50499
|
+
return text.split(regex).filter(Boolean).map(part => ({
|
|
50500
|
+
text: part,
|
|
50501
|
+
highlighted: part.toLowerCase() === search.toLowerCase()
|
|
50502
|
+
}));
|
|
50503
|
+
};
|
|
50504
|
+
const pluralize = (count, words, localizer, hideNumber) => {
|
|
50480
50505
|
const cases = [2, 0, 1, 1, 1, 2];
|
|
50481
50506
|
const x = count % 100 > 4 && count % 100 < 20 ? 2 : cases[(0,_Common_IntRangeUtils__WEBPACK_IMPORTED_MODULE_0__.clampUInt)(count % 10, 0, 5)];
|
|
50482
|
-
return count.toString()
|
|
50507
|
+
return `${hideNumber ? `` : `${count.toString()} `}${localizer ? localizer.translate(words[x]) : words[x]}`;
|
|
50483
50508
|
};
|
|
50484
50509
|
const HelperFunctionsStringHelpers = {
|
|
50485
50510
|
pluralize: pluralize
|
|
@@ -58978,6 +59003,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
58978
59003
|
/* harmony export */ substringKCLangFunction: () => (/* binding */ substringKCLangFunction),
|
|
58979
59004
|
/* harmony export */ sumKCLangFunction: () => (/* binding */ sumKCLangFunction),
|
|
58980
59005
|
/* harmony export */ sumOfDayWeightsKCLangFunction: () => (/* binding */ sumOfDayWeightsKCLangFunction),
|
|
59006
|
+
/* harmony export */ uuidKCLangFunction: () => (/* binding */ uuidKCLangFunction),
|
|
58981
59007
|
/* harmony export */ xabsKCLangFunction: () => (/* binding */ xabsKCLangFunction)
|
|
58982
59008
|
/* harmony export */ });
|
|
58983
59009
|
/* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
|
|
@@ -59783,6 +59809,15 @@ const getDateTimeTicksKCLangFunction = params => {
|
|
|
59783
59809
|
expression: expr
|
|
59784
59810
|
};
|
|
59785
59811
|
};
|
|
59812
|
+
const uuidKCLangFunction = params => {
|
|
59813
|
+
const errors = Array.from(validateParams(params, 0, 0));
|
|
59814
|
+
if (errors.length > 0) {
|
|
59815
|
+
return new FunctionValidationErrorCollection(errors);
|
|
59816
|
+
}
|
|
59817
|
+
return {
|
|
59818
|
+
type: "uuid"
|
|
59819
|
+
};
|
|
59820
|
+
};
|
|
59786
59821
|
|
|
59787
59822
|
/***/ }),
|
|
59788
59823
|
|
|
@@ -59863,7 +59898,8 @@ const getKCLangGlobalFunctionBuilders = () => ({
|
|
|
59863
59898
|
isEqualToAutoCalculated: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_7__.isEqualToAutoCalculatedFunction],
|
|
59864
59899
|
numerator: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_7__.numeratorKCLangFunction],
|
|
59865
59900
|
denominator: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_7__.denominatorKCLangFunction],
|
|
59866
|
-
getDateTimeTicks: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_7__.getDateTimeTicksKCLangFunction]
|
|
59901
|
+
getDateTimeTicks: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_7__.getDateTimeTicksKCLangFunction],
|
|
59902
|
+
uuid: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_7__.uuidKCLangFunction]
|
|
59867
59903
|
});
|
|
59868
59904
|
class KCLangAntlrParser {
|
|
59869
59905
|
static parse(code) {
|
|
@@ -60592,6 +60628,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
60592
60628
|
/* harmony export */ substringKCLangFunction: () => (/* binding */ substringKCLangFunction),
|
|
60593
60629
|
/* harmony export */ sumKCLangFunction: () => (/* binding */ sumKCLangFunction),
|
|
60594
60630
|
/* harmony export */ sumOfDayWeightsKCLangFunction: () => (/* binding */ sumOfDayWeightsKCLangFunction),
|
|
60631
|
+
/* harmony export */ uuidKCLangFunction: () => (/* binding */ uuidKCLangFunction),
|
|
60595
60632
|
/* harmony export */ xabsKCLangFunction: () => (/* binding */ xabsKCLangFunction)
|
|
60596
60633
|
/* harmony export */ });
|
|
60597
60634
|
/* harmony import */ var _CodeDom_KCLangType__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../CodeDom/KCLangType */ "./Generator/src/common/KCLang/CodeDom/KCLangType.ts");
|
|
@@ -60652,6 +60689,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
60652
60689
|
/* harmony import */ var _CodeDom_Functions_NumeratorFunctionCall__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../../CodeDom/Functions/NumeratorFunctionCall */ "./Generator/src/common/KCLang/CodeDom/Functions/NumeratorFunctionCall.ts");
|
|
60653
60690
|
/* harmony import */ var _CodeDom_Functions_DenominatorFunctionCall__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../../CodeDom/Functions/DenominatorFunctionCall */ "./Generator/src/common/KCLang/CodeDom/Functions/DenominatorFunctionCall.ts");
|
|
60654
60691
|
/* harmony import */ var _CodeDom_CastExpression__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../../CodeDom/CastExpression */ "./Generator/src/common/KCLang/CodeDom/CastExpression.ts");
|
|
60692
|
+
/* harmony import */ var _CodeDom_Functions_UUIDFunctionCall__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../../CodeDom/Functions/UUIDFunctionCall */ "./Generator/src/common/KCLang/CodeDom/Functions/UUIDFunctionCall.ts");
|
|
60693
|
+
|
|
60655
60694
|
|
|
60656
60695
|
|
|
60657
60696
|
|
|
@@ -61341,6 +61380,13 @@ const denominatorKCLangFunction = params => {
|
|
|
61341
61380
|
}
|
|
61342
61381
|
return new _CodeDom_Functions_DenominatorFunctionCall__WEBPACK_IMPORTED_MODULE_56__.DenominatorFunctionCall(argumentExpr);
|
|
61343
61382
|
};
|
|
61383
|
+
const uuidKCLangFunction = params => {
|
|
61384
|
+
const errors = Array.from((0,_CodeDom_KCLangUtils__WEBPACK_IMPORTED_MODULE_23__.validateParams)(params, 0, 0));
|
|
61385
|
+
if (errors.length > 0) {
|
|
61386
|
+
return errors;
|
|
61387
|
+
}
|
|
61388
|
+
return new _CodeDom_Functions_UUIDFunctionCall__WEBPACK_IMPORTED_MODULE_58__.UUIDFunctionCall();
|
|
61389
|
+
};
|
|
61344
61390
|
|
|
61345
61391
|
/***/ }),
|
|
61346
61392
|
|
|
@@ -64073,6 +64119,29 @@ class SumOfDayWeightsFunctionCall extends _FunctionCall__WEBPACK_IMPORTED_MODULE
|
|
|
64073
64119
|
|
|
64074
64120
|
/***/ }),
|
|
64075
64121
|
|
|
64122
|
+
/***/ "./Generator/src/common/KCLang/CodeDom/Functions/UUIDFunctionCall.ts":
|
|
64123
|
+
/*!***************************************************************************!*\
|
|
64124
|
+
!*** ./Generator/src/common/KCLang/CodeDom/Functions/UUIDFunctionCall.ts ***!
|
|
64125
|
+
\***************************************************************************/
|
|
64126
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
64127
|
+
|
|
64128
|
+
"use strict";
|
|
64129
|
+
__webpack_require__.r(__webpack_exports__);
|
|
64130
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
64131
|
+
/* harmony export */ UUIDFunctionCall: () => (/* binding */ UUIDFunctionCall)
|
|
64132
|
+
/* harmony export */ });
|
|
64133
|
+
/* harmony import */ var _FunctionCall__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../FunctionCall */ "./Generator/src/common/KCLang/CodeDom/FunctionCall.ts");
|
|
64134
|
+
/* harmony import */ var _KCLangType__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../KCLangType */ "./Generator/src/common/KCLang/CodeDom/KCLangType.ts");
|
|
64135
|
+
|
|
64136
|
+
|
|
64137
|
+
class UUIDFunctionCall extends _FunctionCall__WEBPACK_IMPORTED_MODULE_0__.FunctionCall {
|
|
64138
|
+
constructor() {
|
|
64139
|
+
super("uuid", [], _KCLangType__WEBPACK_IMPORTED_MODULE_1__.StringType.default);
|
|
64140
|
+
}
|
|
64141
|
+
}
|
|
64142
|
+
|
|
64143
|
+
/***/ }),
|
|
64144
|
+
|
|
64076
64145
|
/***/ "./Generator/src/common/KCLang/CodeDom/Functions/UserDefinedFunctionCall.ts":
|
|
64077
64146
|
/*!**********************************************************************************!*\
|
|
64078
64147
|
!*** ./Generator/src/common/KCLang/CodeDom/Functions/UserDefinedFunctionCall.ts ***!
|
|
@@ -65594,6 +65663,9 @@ function traverseKCLangExpression(node, visitor) {
|
|
|
65594
65663
|
case "getDateTimeTicks":
|
|
65595
65664
|
visitor.visitGetDateTimeTicksNode(node);
|
|
65596
65665
|
break;
|
|
65666
|
+
case "uuid":
|
|
65667
|
+
visitor.visitUUIDKCLangNode(node);
|
|
65668
|
+
break;
|
|
65597
65669
|
default:
|
|
65598
65670
|
(0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_0__.ensureNever)(node);
|
|
65599
65671
|
break;
|
|
@@ -65783,6 +65855,9 @@ class DefaultKCLangExpressionVisitor {
|
|
|
65783
65855
|
visitDenominatorKCLangNode(_node) {
|
|
65784
65856
|
// default empty implementation
|
|
65785
65857
|
}
|
|
65858
|
+
visitUUIDKCLangNode(_node) {
|
|
65859
|
+
// default empty implementation
|
|
65860
|
+
}
|
|
65786
65861
|
}
|
|
65787
65862
|
|
|
65788
65863
|
/***/ }),
|
|
@@ -66097,6 +66172,8 @@ const getGenerateJsExpressionFunc = options => {
|
|
|
66097
66172
|
}
|
|
66098
66173
|
case "dateNow":
|
|
66099
66174
|
return `${utilsName}.dateNow()`;
|
|
66175
|
+
case "uuid":
|
|
66176
|
+
return `${utilsName}.uuid()`;
|
|
66100
66177
|
case "property":
|
|
66101
66178
|
return `${pathFnName}("@mergedPropertiesForBackendCompatibility/${expression.name}")`;
|
|
66102
66179
|
case "dateTime":
|
|
@@ -66320,6 +66397,8 @@ function generateKCXmlExpression(expression, prefixPath = "") {
|
|
|
66320
66397
|
}
|
|
66321
66398
|
case "getDateTimeTicks":
|
|
66322
66399
|
return [`<m:getDateTimeTicks>`, (0,_Common_IndentString__WEBPACK_IMPORTED_MODULE_2__.indent)(generateKCXmlExpression(expression.expression, prefixPath), 1), `</m:getDateTimeTicks>`].join("\n");
|
|
66400
|
+
case "uuid":
|
|
66401
|
+
return `<m:uuid />`;
|
|
66323
66402
|
default:
|
|
66324
66403
|
return (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)(`Expression '${expression}' is not supported`);
|
|
66325
66404
|
}
|
|
@@ -66656,7 +66735,7 @@ class KCLangAndJSFetchFunctions {
|
|
|
66656
66735
|
const getByJsFunc = () => this.getJsFunctionIfExists(fetchFnName, propName);
|
|
66657
66736
|
const getByKClangFunc = () => this.getKClangFunctionIfExists(fetchFnName, propName);
|
|
66658
66737
|
const getterFuncList = this.jsVersionPrioritized ? [getByJsFunc, getByKClangFunc] : [getByKClangFunc, getByJsFunc];
|
|
66659
|
-
const result = (_Iterator$from$map$fi = Iterator.from(getterFuncList).map(func => func()).find(_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.isNotNullOrUndefined)) !== null && _Iterator$from$map$fi !== void 0 ? _Iterator$from$map$fi : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.reject)(`Fetch function "${fetchFnName}" not defined`);
|
|
66738
|
+
const result = (_Iterator$from$map$fi = Iterator.from(getterFuncList).map(func => func()).find(_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.isNotNullOrUndefined)) !== null && _Iterator$from$map$fi !== void 0 ? _Iterator$from$map$fi : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.reject)(`Fetch function "${fetchFnName}" for field "${propName !== null && propName !== void 0 ? propName : "value"}" not defined`);
|
|
66660
66739
|
return result;
|
|
66661
66740
|
}
|
|
66662
66741
|
getJsFunctionIfExists(fetchFnName, propName) {
|
|
@@ -66667,7 +66746,9 @@ class KCLangAndJSFetchFunctions {
|
|
|
66667
66746
|
}
|
|
66668
66747
|
}
|
|
66669
66748
|
getKClangFunctionIfExists(fetchFnName, propName) {
|
|
66670
|
-
|
|
66749
|
+
var _getJsExpression;
|
|
66750
|
+
const getJsExpression = fieldName => this.kclangSource.getJsExpressionByFunction(fetchFnName, (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.emptyAbsoluteModelPath)(), new _Common_ModelPath_AbsoluteModelFieldPath__WEBPACK_IMPORTED_MODULE_1__.AbsoluteModelFieldPath((0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.emptyAbsoluteModelPath)(), "value"), fieldName);
|
|
66751
|
+
const funcFromKCLangResult = propName == "value" || propName == undefined ? getJsExpression(propName !== null && propName !== void 0 ? propName : "value") : (_getJsExpression = getJsExpression(propName)) !== null && _getJsExpression !== void 0 ? _getJsExpression : getJsExpression("value");
|
|
66671
66752
|
if (funcFromKCLangResult != undefined) {
|
|
66672
66753
|
const requisitesList = new Set(funcFromKCLangResult.dependencies.map(dep => dep instanceof _generators_KCXmlGenerator_KCXmlGeneratorBase__WEBPACK_IMPORTED_MODULE_2__.ExternalInfoDependency ? dep.dependencyKey : undefined).filter(_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.isNotNullOrUndefined).filter(depKey => !depKey.startsWith("@settings/") && !depKey.startsWith("@featureFlags/")));
|
|
66673
66754
|
const finalExpression = `(((expression, ap, each, current) => ${funcFromKCLangResult.jsExpressionText})(this.expressionRuntime, this.ap, this.each, this.current))`;
|
|
@@ -71970,6 +72051,10 @@ function traverseFormulaExpression(expression, visitor) {
|
|
|
71970
72051
|
visitor.beforeIsEqualToAutoCalculatedExpression(expression);
|
|
71971
72052
|
visitor.afterIsEqualToAutoCalculatedExpression(expression);
|
|
71972
72053
|
}
|
|
72054
|
+
if (expression instanceof _KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_0__.FormulaUUIDExpression) {
|
|
72055
|
+
visitor.beforeUUIDExpression(expression);
|
|
72056
|
+
visitor.afterUUIDExpression(expression);
|
|
72057
|
+
}
|
|
71973
72058
|
}
|
|
71974
72059
|
|
|
71975
72060
|
/***/ }),
|
|
@@ -72280,6 +72365,12 @@ class FormulaProcessor {
|
|
|
72280
72365
|
}
|
|
72281
72366
|
this.returnExpression(result);
|
|
72282
72367
|
}
|
|
72368
|
+
beforeUUIDExpression() {
|
|
72369
|
+
// noop
|
|
72370
|
+
}
|
|
72371
|
+
afterUUIDExpression() {
|
|
72372
|
+
// noop
|
|
72373
|
+
}
|
|
72283
72374
|
getNameByPath(path) {
|
|
72284
72375
|
return path.replace(/\.|@/g, "").replace(/\//g, "_");
|
|
72285
72376
|
}
|
|
@@ -72602,6 +72693,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72602
72693
|
/* harmony export */ FormulaSubstringExpression: () => (/* binding */ FormulaSubstringExpression),
|
|
72603
72694
|
/* harmony export */ FormulaSumExpression: () => (/* binding */ FormulaSumExpression),
|
|
72604
72695
|
/* harmony export */ FormulaSumOfDayWeightsExpression: () => (/* binding */ FormulaSumOfDayWeightsExpression),
|
|
72696
|
+
/* harmony export */ FormulaUUIDExpression: () => (/* binding */ FormulaUUIDExpression),
|
|
72605
72697
|
/* harmony export */ FormulaWhenExpression: () => (/* binding */ FormulaWhenExpression),
|
|
72606
72698
|
/* harmony export */ FormulaXAbsExpression: () => (/* binding */ FormulaXAbsExpression),
|
|
72607
72699
|
/* harmony export */ Formulas: () => (/* binding */ Formulas),
|
|
@@ -72620,7 +72712,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72620
72712
|
|
|
72621
72713
|
|
|
72622
72714
|
|
|
72623
|
-
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _class3, _dec4, _dec5, _class4, _class5, _descriptor2, _dec6, _dec7, _class6, _class7, _descriptor3, _dec8, _dec9, _class8, _class9, _descriptor4, _dec10, _dec11, _class10, _class11, _descriptor5, _dec12, _dec13, _class12, _class13, _descriptor6, _dec14, _dec15, _dec16, _class14, _class15, _descriptor7, _descriptor8, _dec17, _dec18, _dec19, _class16, _class17, _descriptor9, _descriptor10, _dec20, _dec21, _class18, _class19, _descriptor11, _dec22, _dec23, _class20, _class21, _descriptor12, _dec24, _dec25, _class22, _class23, _descriptor13, _dec26, _dec27, _class24, _class25, _descriptor14, _dec28, _dec29, _class26, _class27, _descriptor15, _dec30, _dec31, _class28, _class29, _descriptor16, _dec32, _dec33, _class30, _class31, _descriptor17, _dec34, _dec35, _class32, _class33, _descriptor18, _dec36, _dec37, _class34, _class35, _descriptor19, _dec38, _dec39, _dec40, _dec41, _class36, _class37, _descriptor20, _descriptor21, _descriptor22, _dec42, _dec43, _class38, _class39, _descriptor23, _dec44, _dec45, _class40, _class41, _descriptor24, _dec46, _dec47, _dec48, _class42, _class43, _descriptor25, _descriptor26, _dec49, _dec50, _class44, _class45, _descriptor27, _dec51, _dec52, _class46, _class47, _descriptor28, _dec53, _dec54, _class48, _class49, _descriptor29, _dec55, _dec56, _class50, _class51, _descriptor30, _dec57, _dec58, _dec59, _class52, _class53, _descriptor31, _descriptor32, _dec60, _dec61, _dec62, _dec63, _class54, _class55, _descriptor33, _descriptor34, _descriptor35, _dec64, _dec65, _dec66, _class56, _class57, _descriptor36, _descriptor37, _dec67, _class58, _dec68, _dec69, _class59, _class60, _descriptor38, _dec70, _dec71, _class61, _class62, _descriptor39, _dec72, _dec73, _class63, _class64, _descriptor40, _dec74, _dec75, _class65, _class66, _descriptor41, _dec76, _dec77, _class67, _class68, _descriptor42, _dec78, _dec79, _class69, _class70, _descriptor43, _dec80, _dec81, _class71, _class72, _descriptor44, _dec82, _dec83, _class73, _class74, _descriptor45, _dec84, _dec85, _dec86, _class75, _class76, _descriptor46, _descriptor47, _dec87, _dec88, _dec89, _class77, _class78, _descriptor48, _descriptor49, _dec90, _dec91, _dec92, _class79, _class80, _descriptor50, _descriptor51, _dec93, _dec94, _dec95, _class81, _class82, _descriptor52, _descriptor53, _dec96, _dec97, _class83, _class84, _descriptor54, _dec98, _dec99, _class85, _class86, _descriptor55, _dec100, _dec101, _class87, _class88, _descriptor56, _dec102, _dec103, _class89, _class90, _descriptor57, _dec104, _dec105, _class91, _class92, _descriptor58, _dec106, _dec107, _class93, _class94, _descriptor59, _dec108, _dec109, _class95, _class96, _descriptor60, _dec110, _dec111, _class97, _class98, _descriptor61, _dec112, _dec113, _class99, _class100, _descriptor62, _dec114, _dec115, _dec116, _class101, _class102, _descriptor63, _descriptor64, _dec117, _dec118, _dec119, _class103, _class104, _descriptor65, _descriptor66, _dec120, _dec121, _class105, _class106, _descriptor67, _dec122, _dec123, _class107, _class108, _descriptor68, _dec124, _dec125, _class109, _class110, _descriptor69, _dec126, _dec127, _dec128, _dec129, _dec130, _class111, _class112, _descriptor70, _descriptor71, _descriptor72, _descriptor73, _dec131, _dec132, _class113, _class114, _descriptor74, _dec133, _dec134, _class115, _class116, _descriptor75, _dec135, _dec136, _class117, _class118, _descriptor76, _dec137, _dec138, _class119, _class120, _descriptor77, _dec139, _dec140, _dec141, _class121, _class122, _descriptor78, _descriptor79, _dec142, _dec143, _class123, _class124, _descriptor80, _dec144, _dec145, _dec146, _class125, _class126, _descriptor81, _descriptor82, _dec147, _dec148, _class127, _class128, _descriptor83, _dec149, _dec150, _class129, _class130, _descriptor84, _dec151, _dec152, _class131, _class132, _descriptor85, _dec153, _class133, _dec154, _dec155, _dec156, _dec157, _class134, _class135, _descriptor86, _descriptor87, _descriptor88, _dec158, _dec159, _class136, _class137, _descriptor89, _dec160, _dec161, _class138, _class139, _descriptor90, _dec162, _dec163, _dec164, _dec165, _dec166, _dec167, _class140, _class141, _descriptor91, _descriptor92, _descriptor93, _descriptor94, _descriptor95, _dec168, _dec169, _class142, _class143, _descriptor96, _dec170, _dec171, _dec172, _class144, _class145, _descriptor97, _descriptor98, _dec173, _dec174, _dec175, _class146, _class147, _descriptor99, _descriptor100, _dec176, _dec177, _dec178, _class148, _class149, _descriptor101, _descriptor102, _dec179, _dec180, _dec181, _dec182, _class150, _class151, _descriptor103, _descriptor104, _descriptor105, _dec183, _dec184, _dec185, _class152, _class153, _descriptor106, _descriptor107, _dec186, _dec187, _class154, _class155, _descriptor108, _dec188, _dec189, _class156, _class157, _descriptor109, _dec190, _dec191, _class158, _class159, _descriptor110;
|
|
72715
|
+
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _class3, _dec4, _dec5, _class4, _class5, _descriptor2, _dec6, _dec7, _class6, _class7, _descriptor3, _dec8, _dec9, _class8, _class9, _descriptor4, _dec10, _dec11, _class10, _class11, _descriptor5, _dec12, _dec13, _class12, _class13, _descriptor6, _dec14, _dec15, _dec16, _class14, _class15, _descriptor7, _descriptor8, _dec17, _dec18, _dec19, _class16, _class17, _descriptor9, _descriptor10, _dec20, _dec21, _class18, _class19, _descriptor11, _dec22, _dec23, _class20, _class21, _descriptor12, _dec24, _dec25, _class22, _class23, _descriptor13, _dec26, _dec27, _class24, _class25, _descriptor14, _dec28, _dec29, _class26, _class27, _descriptor15, _dec30, _dec31, _class28, _class29, _descriptor16, _dec32, _dec33, _class30, _class31, _descriptor17, _dec34, _dec35, _class32, _class33, _descriptor18, _dec36, _dec37, _class34, _class35, _descriptor19, _dec38, _dec39, _dec40, _dec41, _class36, _class37, _descriptor20, _descriptor21, _descriptor22, _dec42, _dec43, _class38, _class39, _descriptor23, _dec44, _dec45, _class40, _class41, _descriptor24, _dec46, _dec47, _dec48, _class42, _class43, _descriptor25, _descriptor26, _dec49, _dec50, _class44, _class45, _descriptor27, _dec51, _dec52, _class46, _class47, _descriptor28, _dec53, _dec54, _class48, _class49, _descriptor29, _dec55, _dec56, _class50, _class51, _descriptor30, _dec57, _dec58, _dec59, _class52, _class53, _descriptor31, _descriptor32, _dec60, _dec61, _dec62, _dec63, _class54, _class55, _descriptor33, _descriptor34, _descriptor35, _dec64, _dec65, _dec66, _class56, _class57, _descriptor36, _descriptor37, _dec67, _class58, _dec68, _dec69, _class59, _class60, _descriptor38, _dec70, _dec71, _class61, _class62, _descriptor39, _dec72, _dec73, _class63, _class64, _descriptor40, _dec74, _dec75, _class65, _class66, _descriptor41, _dec76, _dec77, _class67, _class68, _descriptor42, _dec78, _dec79, _class69, _class70, _descriptor43, _dec80, _dec81, _class71, _class72, _descriptor44, _dec82, _dec83, _class73, _class74, _descriptor45, _dec84, _dec85, _dec86, _class75, _class76, _descriptor46, _descriptor47, _dec87, _dec88, _dec89, _class77, _class78, _descriptor48, _descriptor49, _dec90, _dec91, _dec92, _class79, _class80, _descriptor50, _descriptor51, _dec93, _dec94, _dec95, _class81, _class82, _descriptor52, _descriptor53, _dec96, _dec97, _class83, _class84, _descriptor54, _dec98, _dec99, _class85, _class86, _descriptor55, _dec100, _dec101, _class87, _class88, _descriptor56, _dec102, _dec103, _class89, _class90, _descriptor57, _dec104, _dec105, _class91, _class92, _descriptor58, _dec106, _dec107, _class93, _class94, _descriptor59, _dec108, _dec109, _class95, _class96, _descriptor60, _dec110, _dec111, _class97, _class98, _descriptor61, _dec112, _dec113, _class99, _class100, _descriptor62, _dec114, _dec115, _dec116, _class101, _class102, _descriptor63, _descriptor64, _dec117, _dec118, _dec119, _class103, _class104, _descriptor65, _descriptor66, _dec120, _dec121, _class105, _class106, _descriptor67, _dec122, _dec123, _class107, _class108, _descriptor68, _dec124, _dec125, _class109, _class110, _descriptor69, _dec126, _dec127, _dec128, _dec129, _dec130, _class111, _class112, _descriptor70, _descriptor71, _descriptor72, _descriptor73, _dec131, _dec132, _class113, _class114, _descriptor74, _dec133, _dec134, _class115, _class116, _descriptor75, _dec135, _dec136, _class117, _class118, _descriptor76, _dec137, _dec138, _class119, _class120, _descriptor77, _dec139, _dec140, _dec141, _class121, _class122, _descriptor78, _descriptor79, _dec142, _dec143, _class123, _class124, _descriptor80, _dec144, _dec145, _dec146, _class125, _class126, _descriptor81, _descriptor82, _dec147, _dec148, _class127, _class128, _descriptor83, _dec149, _dec150, _class129, _class130, _descriptor84, _dec151, _dec152, _class131, _class132, _descriptor85, _dec153, _class133, _dec154, _dec155, _dec156, _dec157, _class134, _class135, _descriptor86, _descriptor87, _descriptor88, _dec158, _dec159, _class136, _class137, _descriptor89, _dec160, _dec161, _class138, _class139, _descriptor90, _dec162, _dec163, _dec164, _dec165, _dec166, _dec167, _class140, _class141, _descriptor91, _descriptor92, _descriptor93, _descriptor94, _descriptor95, _dec168, _dec169, _class142, _class143, _descriptor96, _dec170, _dec171, _dec172, _class144, _class145, _descriptor97, _descriptor98, _dec173, _dec174, _dec175, _class146, _class147, _descriptor99, _descriptor100, _dec176, _dec177, _dec178, _class148, _class149, _descriptor101, _descriptor102, _dec179, _dec180, _dec181, _dec182, _class150, _class151, _descriptor103, _descriptor104, _descriptor105, _dec183, _dec184, _dec185, _class152, _class153, _descriptor106, _descriptor107, _dec186, _dec187, _class154, _class155, _descriptor108, _dec188, _dec189, _class156, _class157, _descriptor109, _dec190, _dec191, _class158, _class159, _descriptor110, _dec192, _class160;
|
|
72624
72716
|
|
|
72625
72717
|
|
|
72626
72718
|
|
|
@@ -73787,7 +73879,8 @@ let FormulaGetDateTimeTicksExpression = (_dec190 = (0,_markupGenerator_Serialize
|
|
|
73787
73879
|
writable: true,
|
|
73788
73880
|
initializer: null
|
|
73789
73881
|
}), _class159)) || _class158);
|
|
73790
|
-
|
|
73882
|
+
let FormulaUUIDExpression = (_dec192 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("uuid", `Сгенерировать UUID`), _dec192(_class160 = class FormulaUUIDExpression extends FormulaExpression {}) || _class160);
|
|
73883
|
+
const formulaExpressions = [FormulaSumExpression, FormulaArgumentExpression, FormulaConstExpression, FormulaMultySumExpression, FormulaRoundExpression, FormulaFloorExpression, FormulaAbsExpression, FormulaDivisionExpression, FormulaMinusExpression, FormulaMultiplyExpression, FormulaChooseExpression, FormulaEqExpression, FormulaGtExpression, FormulaLtExpression, FormulaGeExpression, FormulaLeExpression, FormulaAndExpression, FormulaOrExpression, FormulaNotExpression, FormulaRegexMatchExpression, FormulaSubstringExpression, FormulaXAbsExpression, FormulaExistsExpression, FormulaLengthExpression, FormulaWhenExpression, FormulaCountExpression, FormulaInstanceCountExpression, FormulaIsEqualToAutoCalculatedExpression, FormulaDateNowExpression, FormulaGetDaysInMonthExpression, FormulaGetDayExpression, FormulaGetMonthExpression, FormulaGetYearExpression, FormulaIsDateExpression, FormulaDifferenceInMonthsExpression, FormulaDifferenceInDaysExpression, FormulaAddDaysExpression, FormulaAddMonthsExpression, FormulaAddYearsExpression, FormulaDateToStringExpression, FormulaDateTimeExpression, FormulaSumOfDayWeightsExpression, FormulaIsSnilsExpression, FormulaIsRegNumSfrExpression, FormulaIsInnExpression, FormulaIsOgrnExpression, FormulaIsValidAccountNumberExpression, FormulaIsValidMirCardNumberExpression, FormulaCastExpression, FormulaConcatExpression, FormulaGroupSumExpression, FormulaGroupCountExpression, FormulaNewLineExpression, FormulaOneOfExpression, FormulaGetPicklistValuesExpression, FormulaArrayExpression, FormulaFirstOrDefaultExpression, FormulaHashSetExpression, FormulaFilterColumnExpression, FormulaFilterKeyExpression, FormulaNoDepsNode, FormulaHasAutoFlagExpression, FormulaMakeDictExpression, FormulaGetSumByKeysExpression, FormulaJoinExpression, FormulaPropertyByNameExpression, FormulaNumeratorExpression, FormulaDenominatorExpression, FormulaGetDateTimeTicksExpression, FormulaUUIDExpression];
|
|
73791
73884
|
|
|
73792
73885
|
/***/ }),
|
|
73793
73886
|
|
|
@@ -76485,6 +76578,9 @@ class KCLangExpressionToJsExpressionConverter extends _common_KCLang_CodeDom_KCL
|
|
|
76485
76578
|
visitDenominatorFunctionCall(expression, context) {
|
|
76486
76579
|
return this.gcf(x => x.denominator, this.visit(expression.argument, context));
|
|
76487
76580
|
}
|
|
76581
|
+
visitUUIDFunctionCall(_expression, _context) {
|
|
76582
|
+
return this.gcf(x => x.uuid());
|
|
76583
|
+
}
|
|
76488
76584
|
visitMakeDictFunctionCall(_expression, _context) {
|
|
76489
76585
|
throw new _Common_Errors__WEBPACK_IMPORTED_MODULE_4__.NotSupportedError("MakeDictFunctionCall is not supported");
|
|
76490
76586
|
}
|
|
@@ -77045,6 +77141,9 @@ class KCXmlGeneratorBase {
|
|
|
77045
77141
|
const compiledExpression = this.compileExpression(prefix, targetFullPath, expression.expression, deps);
|
|
77046
77142
|
return compiledExpression;
|
|
77047
77143
|
}
|
|
77144
|
+
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaUUIDExpression) {
|
|
77145
|
+
return gcf(x => x.uuid);
|
|
77146
|
+
}
|
|
77048
77147
|
// -- не работает в рантайм калькуляторе
|
|
77049
77148
|
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaFirstOrDefaultExpression) {
|
|
77050
77149
|
return "null";
|
|
@@ -78446,6 +78545,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78446
78545
|
/* harmony export */ SumOfDayWeightsExpression: () => (/* binding */ SumOfDayWeightsExpression),
|
|
78447
78546
|
/* harmony export */ TrimExpression: () => (/* binding */ TrimExpression),
|
|
78448
78547
|
/* harmony export */ TypeReferenceExpression: () => (/* binding */ TypeReferenceExpression),
|
|
78548
|
+
/* harmony export */ UUIDExpression: () => (/* binding */ UUIDExpression),
|
|
78449
78549
|
/* harmony export */ UnaryExpression: () => (/* binding */ UnaryExpression),
|
|
78450
78550
|
/* harmony export */ ValueReferenceExpression: () => (/* binding */ ValueReferenceExpression)
|
|
78451
78551
|
/* harmony export */ });
|
|
@@ -79861,6 +79961,17 @@ class DenominatorExpression extends FlangSingleArgumentDecimalExpression {
|
|
|
79861
79961
|
return `denominator(${this.expression.convertToString()})`;
|
|
79862
79962
|
}
|
|
79863
79963
|
}
|
|
79964
|
+
class UUIDExpression extends FLangExpression {
|
|
79965
|
+
getChildNodes() {
|
|
79966
|
+
return [];
|
|
79967
|
+
}
|
|
79968
|
+
convertToString() {
|
|
79969
|
+
return `uuid()`;
|
|
79970
|
+
}
|
|
79971
|
+
getType() {
|
|
79972
|
+
return BuildInTypeExpression.string;
|
|
79973
|
+
}
|
|
79974
|
+
}
|
|
79864
79975
|
|
|
79865
79976
|
/***/ }),
|
|
79866
79977
|
|
|
@@ -81443,6 +81554,9 @@ class KCLangExpressionToFlangExpressionConverter extends _common_KCLang_CodeDom_
|
|
|
81443
81554
|
visitDenominatorFunctionCall(expression, context) {
|
|
81444
81555
|
return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_11__.DenominatorExpression((0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_12__.castOperandToStringIfNeed)(this.visit(expression.argument, context)));
|
|
81445
81556
|
}
|
|
81557
|
+
visitUUIDFunctionCall(_expression, _context) {
|
|
81558
|
+
return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_11__.UUIDExpression();
|
|
81559
|
+
}
|
|
81446
81560
|
convertKCLangTypeToFLangType(type) {
|
|
81447
81561
|
if (type instanceof _common_KCLang_CodeDom_KCLangType__WEBPACK_IMPORTED_MODULE_1__.DecimalType) {
|
|
81448
81562
|
return _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_11__.BuildInTypeExpression.decimal;
|
|
@@ -83263,115 +83377,119 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
83263
83377
|
/* harmony import */ var _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Cross/CrossConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Cross/CrossConverter.ts");
|
|
83264
83378
|
/* harmony import */ var _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Date/DateConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateConverter.ts");
|
|
83265
83379
|
/* harmony import */ var _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ElementProcessors/FormParts/DefaultContent/DefaultContentConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/DefaultContent/DefaultContentConverter.ts");
|
|
83266
|
-
/* harmony import */ var
|
|
83267
|
-
/* harmony import */ var
|
|
83268
|
-
/* harmony import */ var
|
|
83269
|
-
/* harmony import */ var
|
|
83270
|
-
/* harmony import */ var
|
|
83271
|
-
/* harmony import */ var
|
|
83272
|
-
/* harmony import */ var
|
|
83273
|
-
/* harmony import */ var
|
|
83274
|
-
/* harmony import */ var
|
|
83275
|
-
/* harmony import */ var
|
|
83276
|
-
/* harmony import */ var
|
|
83277
|
-
/* harmony import */ var
|
|
83278
|
-
/* harmony import */ var
|
|
83279
|
-
/* harmony import */ var
|
|
83280
|
-
/* harmony import */ var
|
|
83281
|
-
/* harmony import */ var
|
|
83282
|
-
/* harmony import */ var
|
|
83283
|
-
/* harmony import */ var
|
|
83284
|
-
/* harmony import */ var
|
|
83285
|
-
/* harmony import */ var
|
|
83286
|
-
/* harmony import */ var
|
|
83287
|
-
/* harmony import */ var
|
|
83288
|
-
/* harmony import */ var
|
|
83289
|
-
/* harmony import */ var
|
|
83290
|
-
/* harmony import */ var
|
|
83291
|
-
/* harmony import */ var
|
|
83292
|
-
/* harmony import */ var
|
|
83293
|
-
/* harmony import */ var
|
|
83294
|
-
/* harmony import */ var
|
|
83295
|
-
/* harmony import */ var
|
|
83296
|
-
/* harmony import */ var
|
|
83297
|
-
/* harmony import */ var
|
|
83298
|
-
/* harmony import */ var
|
|
83299
|
-
/* harmony import */ var
|
|
83300
|
-
/* harmony import */ var
|
|
83301
|
-
/* harmony import */ var
|
|
83302
|
-
/* harmony import */ var
|
|
83303
|
-
/* harmony import */ var
|
|
83304
|
-
/* harmony import */ var
|
|
83305
|
-
/* harmony import */ var
|
|
83306
|
-
/* harmony import */ var
|
|
83307
|
-
/* harmony import */ var
|
|
83308
|
-
/* harmony import */ var
|
|
83309
|
-
/* harmony import */ var
|
|
83310
|
-
/* harmony import */ var
|
|
83311
|
-
/* harmony import */ var
|
|
83312
|
-
/* harmony import */ var
|
|
83313
|
-
/* harmony import */ var
|
|
83314
|
-
/* harmony import */ var
|
|
83315
|
-
/* harmony import */ var
|
|
83316
|
-
/* harmony import */ var
|
|
83317
|
-
/* harmony import */ var
|
|
83318
|
-
/* harmony import */ var
|
|
83319
|
-
/* harmony import */ var
|
|
83320
|
-
/* harmony import */ var
|
|
83321
|
-
/* harmony import */ var
|
|
83322
|
-
/* harmony import */ var
|
|
83323
|
-
/* harmony import */ var
|
|
83324
|
-
/* harmony import */ var
|
|
83325
|
-
/* harmony import */ var
|
|
83326
|
-
/* harmony import */ var
|
|
83327
|
-
/* harmony import */ var
|
|
83328
|
-
/* harmony import */ var
|
|
83329
|
-
/* harmony import */ var
|
|
83330
|
-
/* harmony import */ var
|
|
83331
|
-
/* harmony import */ var
|
|
83332
|
-
/* harmony import */ var
|
|
83333
|
-
/* harmony import */ var
|
|
83334
|
-
/* harmony import */ var
|
|
83335
|
-
/* harmony import */ var
|
|
83336
|
-
/* harmony import */ var
|
|
83337
|
-
/* harmony import */ var
|
|
83338
|
-
/* harmony import */ var
|
|
83339
|
-
/* harmony import */ var
|
|
83340
|
-
/* harmony import */ var
|
|
83341
|
-
/* harmony import */ var
|
|
83342
|
-
/* harmony import */ var
|
|
83343
|
-
/* harmony import */ var
|
|
83344
|
-
/* harmony import */ var
|
|
83345
|
-
/* harmony import */ var
|
|
83346
|
-
/* harmony import */ var
|
|
83347
|
-
/* harmony import */ var
|
|
83348
|
-
/* harmony import */ var
|
|
83349
|
-
/* harmony import */ var
|
|
83350
|
-
/* harmony import */ var
|
|
83351
|
-
/* harmony import */ var
|
|
83352
|
-
/* harmony import */ var
|
|
83353
|
-
/* harmony import */ var
|
|
83354
|
-
/* harmony import */ var
|
|
83355
|
-
/* harmony import */ var
|
|
83356
|
-
/* harmony import */ var
|
|
83357
|
-
/* harmony import */ var
|
|
83358
|
-
/* harmony import */ var
|
|
83359
|
-
/* harmony import */ var
|
|
83360
|
-
/* harmony import */ var
|
|
83361
|
-
/* harmony import */ var
|
|
83362
|
-
/* harmony import */ var
|
|
83363
|
-
/* harmony import */ var
|
|
83364
|
-
/* harmony import */ var
|
|
83365
|
-
/* harmony import */ var
|
|
83366
|
-
/* harmony import */ var
|
|
83367
|
-
/* harmony import */ var
|
|
83368
|
-
/* harmony import */ var
|
|
83369
|
-
/* harmony import */ var
|
|
83370
|
-
/* harmony import */ var
|
|
83371
|
-
/* harmony import */ var
|
|
83372
|
-
/* harmony import */ var
|
|
83373
|
-
/* harmony import */ var
|
|
83374
|
-
/* harmony import */ var
|
|
83380
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_CustomSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxConverter.ts");
|
|
83381
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_CustomSuggestComboBox_CustomSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxConverter.ts");
|
|
83382
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_CustomSuggestComboBox_ContractorsSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxConverter.ts");
|
|
83383
|
+
/* harmony import */ var _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ElementProcessors/Typography/Entity/EntityConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Entity/EntityConverter.ts");
|
|
83384
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/ExpertNote/ExpertNoteConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ExpertNote/ExpertNoteConverter.ts");
|
|
83385
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/FileLoader/FileLoaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoaderConverter.ts");
|
|
83386
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeConverter.ts");
|
|
83387
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/FilterInput/FilterInputConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterInput/FilterInputConverter.ts");
|
|
83388
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/FilterList/FilterListConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterList/FilterListConverter.ts");
|
|
83389
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/FIO/FIOConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/FIOConverter.ts");
|
|
83390
|
+
/* harmony import */ var _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./ElementProcessors/Layout/Flexbox/FlexboxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Flexbox/FlexboxConverter.ts");
|
|
83391
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Form/FormConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/FormConverter.ts");
|
|
83392
|
+
/* harmony import */ var _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./ElementProcessors/FormParts/FormInfo/FormInfoConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/FormInfo/FormInfoConverter.ts");
|
|
83393
|
+
/* harmony import */ var _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./ElementProcessors/Typography/Gray/GrayConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Gray/GrayConverter.ts");
|
|
83394
|
+
/* harmony import */ var _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./ElementProcessors/Layout/GridCol/GridColConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridCol/GridColConverter.ts");
|
|
83395
|
+
/* harmony import */ var _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ElementProcessors/Layout/GridRow/GridRowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridRow/GridRowConverter.ts");
|
|
83396
|
+
/* harmony import */ var _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Header/HeaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Header/HeaderConverter.ts");
|
|
83397
|
+
/* harmony import */ var _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/HeaderMenu/HeaderMenuConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/HeaderMenu/HeaderMenuConverter.ts");
|
|
83398
|
+
/* harmony import */ var _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Help/HelpConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Help/HelpConverter.ts");
|
|
83399
|
+
/* harmony import */ var _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Helpinfo/HelpInfoConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Helpinfo/HelpInfoConverter.ts");
|
|
83400
|
+
/* harmony import */ var _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./ElementProcessors/Typography/Highlight/HighlightConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Highlight/HighlightConverter.ts");
|
|
83401
|
+
/* harmony import */ var _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./ElementProcessors/Layout/Hr/HrConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Hr/HrConverter.ts");
|
|
83402
|
+
/* harmony import */ var _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./ElementProcessors/Typography/Icon/IconConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Icon/IconConverter.ts");
|
|
83403
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/If/IfConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/If/IfConverter.ts");
|
|
83404
|
+
/* harmony import */ var _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./ElementProcessors/Layout/Img/ImgConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Img/ImgConverter.ts");
|
|
83405
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/INN/INNConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/INN/INNConverter.ts");
|
|
83406
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Input/InputConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Input/InputConverter.ts");
|
|
83407
|
+
/* harmony import */ var _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./ElementProcessors/Typography/Italic/ItalicConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Italic/ItalicConverter.ts");
|
|
83408
|
+
/* harmony import */ var _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./ElementProcessors/Layout/ListItem/ListItemConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem/ListItemConverter.ts");
|
|
83409
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Kladr/KladrConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Kladr/KladrConverter.ts");
|
|
83410
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/Linetext/LinetextConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Linetext/LinetextConverter.ts");
|
|
83411
|
+
/* harmony import */ var _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./ElementProcessors/Action/Link/LinkConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Link/LinkConverter.ts");
|
|
83412
|
+
/* harmony import */ var _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./ElementProcessors/Layout/List/ListConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List/ListConverter.ts");
|
|
83413
|
+
/* harmony import */ var _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./ElementProcessors/Modal/Body/BodyConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Body/BodyConverter.ts");
|
|
83414
|
+
/* harmony import */ var _ElementProcessors_Modal_ErrorBlock_ErrorBlockConverter__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./ElementProcessors/Modal/ErrorBlock/ErrorBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockConverter.ts");
|
|
83415
|
+
/* harmony import */ var _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ElementProcessors/Modal/Footer/FooterConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterConverter.ts");
|
|
83416
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalForm/ModalFormConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalForm/ModalFormConverter.ts");
|
|
83417
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalFormCancel/ModalFormCancelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormCancel/ModalFormCancelConverter.ts");
|
|
83418
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmConverter.ts");
|
|
83419
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalFormLabel/ModalFormLabelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel/ModalFormLabelConverter.ts");
|
|
83420
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormRemove_ModalFormRemoveConverter__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalFormRemove/ModalFormRemoveConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormRemove/ModalFormRemoveConverter.ts");
|
|
83421
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Multilinefield/MultilineFieldConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/MultilineFieldConverter.ts");
|
|
83422
|
+
/* harmony import */ var _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Normativehelp/NormativeHelpConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Normativehelp/NormativeHelpConverter.ts");
|
|
83423
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Otherwise/OtherwiseConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Otherwise/OtherwiseConverter.ts");
|
|
83424
|
+
/* harmony import */ var _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Page/PageConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page/PageConverter.ts");
|
|
83425
|
+
/* harmony import */ var _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./ElementProcessors/Layout/Pencil/PencilConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Pencil/PencilConverter.ts");
|
|
83426
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Picklist/PicklistConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Picklist/PicklistConverter.ts");
|
|
83427
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/radio/RadioConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/radio/RadioConverter.ts");
|
|
83428
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/RadioGroup/RadioGroupConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup/RadioGroupConverter.ts");
|
|
83429
|
+
/* harmony import */ var _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonConverter.ts");
|
|
83430
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Select/SelectConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Select/SelectConverter.ts");
|
|
83431
|
+
/* harmony import */ var _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupConverter.ts");
|
|
83432
|
+
/* harmony import */ var _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./ElementProcessors/Layout/Spoiler/SpoilerConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Spoiler/SpoilerConverter.ts");
|
|
83433
|
+
/* harmony import */ var _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ElementProcessors/Typography/Strong/StrongConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Strong/StrongConverter.ts");
|
|
83434
|
+
/* harmony import */ var _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ElementProcessors/Typography/Sub/SubConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sub/SubConverter.ts");
|
|
83435
|
+
/* harmony import */ var _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./ElementProcessors/Layout/Subheader/SubheaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Subheader/SubheaderConverter.ts");
|
|
83436
|
+
/* harmony import */ var _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ElementProcessors/Typography/Sup/SupConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sup/SupConverter.ts");
|
|
83437
|
+
/* harmony import */ var _ElementProcessors_Typography_Nobr_NobrConverter__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ElementProcessors/Typography/Nobr/NobrConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Nobr/NobrConverter.ts");
|
|
83438
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Switch/SwitchConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchConverter.ts");
|
|
83439
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/CrossfitTable/CrossfitTableColumnConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableColumnConverter.ts");
|
|
83440
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/CrossfitTable/CrossfitTableConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableConverter.ts");
|
|
83441
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./ElementProcessors/Layout/SimpleTable/SimpleTableColumnConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableColumnConverter.ts");
|
|
83442
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./ElementProcessors/Layout/SimpleTable/SimpleTableConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableConverter.ts");
|
|
83443
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/StickyTable/StickyTableColumnConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableColumnConverter.ts");
|
|
83444
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/StickyTable/StickyTableWithMultilineConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableWithMultilineConverter.ts");
|
|
83445
|
+
/* harmony import */ var _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/TableCell/TableCellConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/TableCell/TableCellConverter.ts");
|
|
83446
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/Text/TextConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/TextConverter.ts");
|
|
83447
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Textarea/TextAreaConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Textarea/TextAreaConverter.ts");
|
|
83448
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Toggle/ToggleConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleConverter.ts");
|
|
83449
|
+
/* harmony import */ var _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Tour/TourConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Tour/TourConverter.ts");
|
|
83450
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UnitItem/UnitItemConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitItem/UnitItemConverter.ts");
|
|
83451
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UnitList/UnitListConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitList/UnitListConverter.ts");
|
|
83452
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/ValueLength/ValueLengthConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/ValueLength/ValueLengthConverter.ts");
|
|
83453
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockConverter.ts");
|
|
83454
|
+
/* harmony import */ var _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./ElementProcessors/Layout/Warning/WarningConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Warning/WarningConverter.ts");
|
|
83455
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/When/WhenConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/When/WhenConverter.ts");
|
|
83456
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter.ts");
|
|
83457
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter.ts");
|
|
83458
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
83459
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Table2/Table2MultirowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2/Table2MultirowConverter.ts");
|
|
83460
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Table2/Table2RowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2/Table2RowConverter.ts");
|
|
83461
|
+
/* harmony import */ var _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./ElementProcessors/Action/DropdownButton/DropdownButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/DropdownButtonConverter.ts");
|
|
83462
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./ElementProcessors/Layout/FixedTabs/FixedTabConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabConverter.ts");
|
|
83463
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./ElementProcessors/Layout/FixedTabs/FixedTabsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabsConverter.ts");
|
|
83464
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Multiple/MultipleConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multiple/MultipleConverter.ts");
|
|
83465
|
+
/* harmony import */ var _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelConverter.ts");
|
|
83466
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsConverter.ts");
|
|
83467
|
+
/* harmony import */ var _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UserPicklist/UserPicklistConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UserPicklist/UserPicklistConverter.ts");
|
|
83468
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/TaxRebate/TaxRebateConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TaxRebate/TaxRebateConverter.ts");
|
|
83469
|
+
/* harmony import */ var _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Banner/BannerConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner/BannerConverter.ts");
|
|
83470
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Short/ShortConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortConverter.ts");
|
|
83471
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Long/LongConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongConverter.ts");
|
|
83472
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter.ts");
|
|
83473
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/DateView/DateViewConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewConverter.ts");
|
|
83474
|
+
/* harmony import */ var _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ElementProcessors/Action/Kebab/KebabConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Kebab/KebabConverter.ts");
|
|
83475
|
+
/* harmony import */ var _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Clue/InfoBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Clue/InfoBlockConverter.ts");
|
|
83476
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxConverter.ts");
|
|
83477
|
+
/* harmony import */ var _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ElementProcessors/FormParts/AttachmentForm/AttachmentFormConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/AttachmentForm/AttachmentFormConverter.ts");
|
|
83478
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TreePicklist_TreePicklistConverter__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/TreePicklist/TreePicklistConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TreePicklist/TreePicklistConverter.ts");
|
|
83479
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxConverter__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/RelativesComboBox/RelativesComboBoxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RelativesComboBox/RelativesComboBoxConverter.ts");
|
|
83480
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxConverter.ts");
|
|
83481
|
+
/* harmony import */ var _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./ElementProcessors/FormParts/ModalHeader/ModalHeaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/ModalHeader/ModalHeaderConverter.ts");
|
|
83482
|
+
/* harmony import */ var _ElementProcessors_FormParts_GlobalModal_GlobalModalsConverter__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./ElementProcessors/FormParts/GlobalModal/GlobalModalsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/GlobalModal/GlobalModalsConverter.ts");
|
|
83483
|
+
/* harmony import */ var _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberConverter__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/InstanceNumber/InstanceNumberConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberConverter.ts");
|
|
83484
|
+
/* harmony import */ var _ElementProcessors_Layout_OptionalBlock_OptionalBlockConverter__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./ElementProcessors/Layout/OptionalBlock/OptionalBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/OptionalBlock/OptionalBlockConverter.ts");
|
|
83485
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinBlockConverter__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/JoinBlock/JoinBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinBlockConverter.ts");
|
|
83486
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinItemConverter__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/JoinBlock/JoinItemConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinItemConverter.ts");
|
|
83487
|
+
/* harmony import */ var _ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateConverter__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateConverter.ts");
|
|
83488
|
+
/* harmony import */ var _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryConverter__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/AggregationQuery/AggregationQueryConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryConverter.ts");
|
|
83489
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ContextVar_ExprEvalConverter__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/ContextVar/ExprEvalConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalConverter.ts");
|
|
83490
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Pluralize_PluralizeConverter__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/Pluralize/PluralizeConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Pluralize/PluralizeConverter.ts");
|
|
83491
|
+
|
|
83492
|
+
|
|
83375
83493
|
|
|
83376
83494
|
|
|
83377
83495
|
|
|
@@ -83508,11 +83626,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
83508
83626
|
|
|
83509
83627
|
let convertersFromNodeClassMap;
|
|
83510
83628
|
function buildConvertersFromNodeClassMap() {
|
|
83511
|
-
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter,
|
|
83629
|
+
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_122__.AttachmentFormConverter, _ElementProcessors_Layout_Block_BlockConverter__WEBPACK_IMPORTED_MODULE_10__.BlockConverter, _ElementProcessors_Layout_Minitour_MinitourConverter__WEBPACK_IMPORTED_MODULE_11__.MinitourConverter, _ElementProcessors_Typography_Bold_BoldConverter__WEBPACK_IMPORTED_MODULE_12__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_13__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_17__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_18__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_19__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_90__.TableCellConverter, _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_93__.ToggleConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_20__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_21__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_22__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_102__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_23__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_24__.DefaultContentConverter, _ElementProcessors_ValueEditors_CustomSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_25__.DiadocSuggestComboBoxConverter, _ElementProcessors_ValueEditors_CustomSuggestComboBox_CustomSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.CustomSuggestComboBoxConverter, _ElementProcessors_ValueEditors_CustomSuggestComboBox_ContractorsSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_27__.ContractorsSuggestComboBoxConverter, _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxConverter__WEBPACK_IMPORTED_MODULE_124__.RelativesComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_28__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_29__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_30__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_31__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_32__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_33__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_34__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_35__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_115__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_116__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_117__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _ElementProcessors_ControlFlow_JoinBlock_JoinBlockConverter__WEBPACK_IMPORTED_MODULE_130__.JoinBlockConverter, _ElementProcessors_ControlFlow_JoinBlock_JoinItemConverter__WEBPACK_IMPORTED_MODULE_131__.JoinItemConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__.ListConverter,
|
|
83512
83630
|
// <ModalForm>
|
|
83513
|
-
|
|
83631
|
+
_ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_58__.BodyConverter, _ElementProcessors_Modal_ErrorBlock_ErrorBlockConverter__WEBPACK_IMPORTED_MODULE_59__.ErrorBlockConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_60__.FooterConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_61__.ModalFormConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_62__.ModalFormCancelConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_63__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_64__.ModalFormLabelConverter, _ElementProcessors_Modal_ModalFormRemove_ModalFormRemoveConverter__WEBPACK_IMPORTED_MODULE_65__.ModalFormRemoveConverter,
|
|
83514
83632
|
// </ModalForm>
|
|
83515
|
-
|
|
83633
|
+
_ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_66__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_67__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_69__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_70__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_71__.PicklistConverter, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistConverter__WEBPACK_IMPORTED_MODULE_123__.TreePicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_72__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_73__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_74__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_75__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_76__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_77__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_78__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_79__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_80__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_81__.SupConverter, _ElementProcessors_Typography_Nobr_NobrConverter__WEBPACK_IMPORTED_MODULE_82__.NobrConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_91__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_92__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_101__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_97__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_98__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_99__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_68__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_100__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_96__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_95__.UnitItemConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_14__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_15__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_16__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_94__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_83__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_88__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_84__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_86__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_85__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_87__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_89__.StickyTableWithMultilineConverter, _ElementProcessors_Layout_Stack_StackConverter__WEBPACK_IMPORTED_MODULE_2__.StackConverter, _ElementProcessors_Layout_Grid_GridConverter__WEBPACK_IMPORTED_MODULE_1__.GridConverter, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelConverter__WEBPACK_IMPORTED_MODULE_6__.HeaderPanelConverter, _ElementProcessors_MultiControls_Tabs_TabsConverter__WEBPACK_IMPORTED_MODULE_5__.TabsConverter, _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_106__.DropdownButtonConverter, _ElementProcessors_ValueEditors_Fias_FiasConverter__WEBPACK_IMPORTED_MODULE_0__.FiasConverter, _ElementProcessors_MultiControls_FilterSelect_FilterSelectConverter__WEBPACK_IMPORTED_MODULE_3__.FilterSelectConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2Converter, _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_105__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_104__.Table2MultirowConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2ColumnConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2VerticalColumnConverter, _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_108__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_107__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_109__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_110__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_111__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_112__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_113__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_114__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_118__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_119__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_120__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_121__.SelectAllCheckboxConverter, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_125__.SelectCheckboxConverter, _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_126__.ModalHeaderConverter, _ElementProcessors_FormParts_GlobalModal_GlobalModalsConverter__WEBPACK_IMPORTED_MODULE_127__.GlobalModalsConverter, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberConverter__WEBPACK_IMPORTED_MODULE_128__.InstanceNumberConverter, _ElementProcessors_Layout_OptionalBlock_OptionalBlockConverter__WEBPACK_IMPORTED_MODULE_129__.OptionalBlockConverter, _ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateConverter__WEBPACK_IMPORTED_MODULE_132__.EmptyTemplateConverter, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryConverter__WEBPACK_IMPORTED_MODULE_133__.AggregationQueryConverter, _ElementProcessors_MultiControls_ContextVar_ExprEvalConverter__WEBPACK_IMPORTED_MODULE_134__.ExprEvalConverter, _ElementProcessors_ValueViewers_Pluralize_PluralizeConverter__WEBPACK_IMPORTED_MODULE_135__.PluralizeConverter];
|
|
83516
83634
|
return new Map(converters.flatMap(converterClass => {
|
|
83517
83635
|
let classes = converterClass.getAcceptNodeClass();
|
|
83518
83636
|
classes = Array.isArray(classes) ? classes : [classes];
|
|
@@ -83526,7 +83644,7 @@ function getConverterByNodeClass(nodeClass) {
|
|
|
83526
83644
|
}
|
|
83527
83645
|
function* iterateNodesDepthFirst(root) {
|
|
83528
83646
|
yield root;
|
|
83529
|
-
const controlConverterClass = getConverterByNodeClass((0,
|
|
83647
|
+
const controlConverterClass = getConverterByNodeClass((0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_103__.getNodeClass)(root));
|
|
83530
83648
|
if (controlConverterClass != undefined) {
|
|
83531
83649
|
const converter = new controlConverterClass(root);
|
|
83532
83650
|
for (const child of converter.traverseChildren()) {
|
|
@@ -83535,7 +83653,7 @@ function* iterateNodesDepthFirst(root) {
|
|
|
83535
83653
|
}
|
|
83536
83654
|
}
|
|
83537
83655
|
function* iterateNodesDepthFirstWithConverter(root) {
|
|
83538
|
-
const controlConverterClass = getConverterByNodeClass((0,
|
|
83656
|
+
const controlConverterClass = getConverterByNodeClass((0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_103__.getNodeClass)(root));
|
|
83539
83657
|
if (controlConverterClass != undefined) {
|
|
83540
83658
|
const converter = new controlConverterClass(root);
|
|
83541
83659
|
yield [root, converter];
|
|
@@ -95945,7 +96063,7 @@ class AddRowButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE
|
|
|
95945
96063
|
const element = formSchemaRng.getElementByPath(node.getFullPath());
|
|
95946
96064
|
|
|
95947
96065
|
// eslint-disable-next-line no-warning-comments
|
|
95948
|
-
// TODO(2026-05-
|
|
96066
|
+
// TODO(2026-05-31): Необходимо разобраться с тем, что тут конфликтят свойства в type. Подробности в задаче https://yt.skbkontur.ru/issue/FS-9234
|
|
95949
96067
|
const fakeNode = new _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_7__.TypeNode();
|
|
95950
96068
|
fakeNode.base = "string";
|
|
95951
96069
|
fakeNode.children = [];
|
|
@@ -103590,24 +103708,25 @@ let ComboBoxNode = (_dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MOD
|
|
|
103590
103708
|
|
|
103591
103709
|
/***/ }),
|
|
103592
103710
|
|
|
103593
|
-
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103594
|
-
|
|
103595
|
-
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103596
|
-
|
|
103711
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxConverter.ts":
|
|
103712
|
+
/*!**********************************************************************************************************************************************!*\
|
|
103713
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxConverter.ts ***!
|
|
103714
|
+
\**********************************************************************************************************************************************/
|
|
103597
103715
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
103598
103716
|
|
|
103599
103717
|
"use strict";
|
|
103600
103718
|
__webpack_require__.r(__webpack_exports__);
|
|
103601
103719
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
103602
|
-
/* harmony export */
|
|
103720
|
+
/* harmony export */ ContractorsSuggestComboBoxConverter: () => (/* binding */ ContractorsSuggestComboBoxConverter)
|
|
103603
103721
|
/* harmony export */ });
|
|
103604
|
-
/* harmony import */ var
|
|
103605
|
-
/* harmony import */ var
|
|
103606
|
-
/* harmony import */ var
|
|
103722
|
+
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
103723
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
103724
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
103607
103725
|
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
103608
103726
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
103609
|
-
/* harmony import */ var
|
|
103610
|
-
/* harmony import */ var
|
|
103727
|
+
/* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../../../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
|
|
103728
|
+
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
103729
|
+
/* harmony import */ var _ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ContractorsSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxNode.ts");
|
|
103611
103730
|
|
|
103612
103731
|
|
|
103613
103732
|
|
|
@@ -103615,91 +103734,76 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
103615
103734
|
|
|
103616
103735
|
|
|
103617
103736
|
|
|
103618
|
-
|
|
103737
|
+
|
|
103738
|
+
class ContractorsSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
103619
103739
|
static getAcceptNodeClass() {
|
|
103620
|
-
return
|
|
103740
|
+
return _ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.ContractorsSuggestComboBoxNode;
|
|
103621
103741
|
}
|
|
103622
|
-
|
|
103623
|
-
const node = this.getCurrentNodeAs(
|
|
103742
|
+
doBuildNodeValidations(validationGenerator) {
|
|
103743
|
+
const node = this.getCurrentNodeAs(_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.ContractorsSuggestComboBoxNode);
|
|
103744
|
+
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
103745
|
+
}
|
|
103746
|
+
*doBuildKCLangCalculations(buildContext, formSchemaRng, prefixPath) {
|
|
103747
|
+
const node = this.getCurrentNodeAs(_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.ContractorsSuggestComboBoxNode);
|
|
103624
103748
|
const element = formSchemaRng.getElementByPath(node.getFullPath());
|
|
103625
|
-
const targetPath = (0,
|
|
103749
|
+
const targetPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.createAbsoluteFromMask)(this.getResolvedBindingPath(node), _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.PathTokens.each);
|
|
103626
103750
|
const typeNode = buildContext.getTypeNode(node.validationInfo);
|
|
103627
103751
|
const schemaTypeNode = buildContext.getSchemaTypeInfo(targetPath);
|
|
103628
103752
|
const ownPath = node.getOwnPathForKCLang();
|
|
103629
103753
|
if (typeNode == undefined && schemaTypeNode == undefined || ownPath == undefined) {
|
|
103630
103754
|
return;
|
|
103631
103755
|
}
|
|
103632
|
-
yield* buildContext.buildBasicValidations(ownPath, targetPath, prefixPath, typeNode, schemaTypeNode, node.validationInfo.optional == undefined ? element === null || element === void 0 ? void 0 : element.isOptional() : node.validationInfo.optional, undefined, node.validationInfo.emptydescription
|
|
103633
|
-
}
|
|
103634
|
-
doBuildNodeValidations(validationGenerator) {
|
|
103635
|
-
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
103636
|
-
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
103756
|
+
yield* buildContext.buildBasicValidations(ownPath, targetPath, prefixPath, typeNode, schemaTypeNode, node.validationInfo.optional == undefined ? element === null || element === void 0 ? void 0 : element.isOptional() : node.validationInfo.optional, undefined, node.validationInfo.emptydescription);
|
|
103637
103757
|
}
|
|
103638
103758
|
get nodePaths() {
|
|
103639
|
-
const node = this.getCurrentNodeAs(
|
|
103759
|
+
const node = this.getCurrentNodeAs(_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.ContractorsSuggestComboBoxNode);
|
|
103640
103760
|
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
103641
103761
|
}
|
|
103642
|
-
doBuildNormalizeRules(builder) {
|
|
103643
|
-
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
103644
|
-
return [builder.valueInitializer(node, node.dataBinding, node.disabled), ...builder.specialFieldsInitializer(node, {
|
|
103645
|
-
disabled: node.disabled
|
|
103646
|
-
})];
|
|
103647
|
-
}
|
|
103648
103762
|
doBuildDataDeclaration(context) {
|
|
103649
|
-
const node = this.getCurrentNodeAs(
|
|
103650
|
-
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding,
|
|
103651
|
-
optional: node.dataBinding.optional
|
|
103652
|
-
disabled: node.disabled
|
|
103763
|
+
const node = this.getCurrentNodeAs(_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.ContractorsSuggestComboBoxNode);
|
|
103764
|
+
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding, false)], ["disabled", context.initSequenceFactory.disabled()]]), context.addSpecialFieldsEntry(node, {
|
|
103765
|
+
optional: node.dataBinding.optional
|
|
103653
103766
|
}), context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), context.addVisibilityPathDeclEntryNew(node, node.dataBinding.requisite));
|
|
103654
103767
|
}
|
|
103655
|
-
buildChildrenDataDeclaration(
|
|
103656
|
-
|
|
103657
|
-
return context.processChildrenDataDeclaration(node.helpNodes);
|
|
103768
|
+
buildChildrenDataDeclaration() {
|
|
103769
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__.emptyDataDeclarationCollection;
|
|
103658
103770
|
}
|
|
103659
103771
|
*doTraverseChildren() {
|
|
103660
|
-
|
|
103661
|
-
yield* node.helpNodes;
|
|
103772
|
+
// no children
|
|
103662
103773
|
}
|
|
103663
103774
|
doConvert(context) {
|
|
103664
|
-
const node = this.getCurrentNodeAs(
|
|
103775
|
+
const node = this.getCurrentNodeAs(_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.ContractorsSuggestComboBoxNode);
|
|
103665
103776
|
this.ensurePathExists(node, node.dataBinding.path);
|
|
103666
|
-
const markupBuilder = (0,
|
|
103777
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("ContractorsSuggestComboBox");
|
|
103778
|
+
markupBuilder.prop(x => x.allowTextWrap).set(node.allowTextWrap);
|
|
103667
103779
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node));
|
|
103668
|
-
markupBuilder.prop(x => x.
|
|
103669
|
-
markupBuilder.prop(x => x.
|
|
103670
|
-
markupBuilder.prop(x => x.menuPosVertical).set(node.menuPosVertical);
|
|
103671
|
-
markupBuilder.prop(x => x.enableTodayLink).set(node.enableTodayLink);
|
|
103672
|
-
markupBuilder.prop("data-tid").set(node.tid);
|
|
103780
|
+
markupBuilder.prop(x => x.query).set(context.generateHelperFunctionExpressionWithoutContext(node, "query", node.query));
|
|
103781
|
+
markupBuilder.prop(x => x.onUnexpectedInput).set(context.generateHelperFunctionExpression(node, "onUnexpectedInput", node.onUnexpectedInput));
|
|
103673
103782
|
markupBuilder.prop(x => x.width).set(node.width);
|
|
103674
|
-
(
|
|
103783
|
+
markupBuilder.prop(x => x.placeholder).set(node.placeholder);
|
|
103675
103784
|
if (node.disabled2 != undefined) {
|
|
103676
|
-
markupBuilder.prop(x => x.disabled2).set((0,
|
|
103785
|
+
markupBuilder.prop(x => x.disabled2).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__.buildExpressionPropValue)(node.disabled2));
|
|
103677
103786
|
if (this.getLegacyNode().getParent() != undefined) {
|
|
103678
103787
|
markupBuilder.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
|
|
103679
103788
|
}
|
|
103680
103789
|
}
|
|
103681
|
-
|
|
103682
|
-
|
|
103683
|
-
}
|
|
103684
|
-
if (node.callHelperOnBlur) {
|
|
103685
|
-
markupBuilder.prop(x => x.callHelperOnBlur).set(context.generateHelperFunctionExpression(node, "callHelperOnBlur", node.callHelperOnBlur));
|
|
103686
|
-
}
|
|
103687
|
-
return markupBuilder.buildConverterResultWithHelp(node, context);
|
|
103790
|
+
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__.setTooltipSettingsProps)(markupBuilder, node.tooltipSettings);
|
|
103791
|
+
return markupBuilder.buildConverterResult();
|
|
103688
103792
|
}
|
|
103689
103793
|
}
|
|
103690
103794
|
|
|
103691
103795
|
/***/ }),
|
|
103692
103796
|
|
|
103693
|
-
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103694
|
-
|
|
103695
|
-
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103696
|
-
|
|
103797
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxNode.ts":
|
|
103798
|
+
/*!*****************************************************************************************************************************************!*\
|
|
103799
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxNode.ts ***!
|
|
103800
|
+
\*****************************************************************************************************************************************/
|
|
103697
103801
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
103698
103802
|
|
|
103699
103803
|
"use strict";
|
|
103700
103804
|
__webpack_require__.r(__webpack_exports__);
|
|
103701
103805
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
103702
|
-
/* harmony export */
|
|
103806
|
+
/* harmony export */ ContractorsSuggestComboBoxNode: () => (/* binding */ ContractorsSuggestComboBoxNode)
|
|
103703
103807
|
/* harmony export */ });
|
|
103704
103808
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
103705
103809
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -103709,45 +103813,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
103709
103813
|
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
103710
103814
|
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
103711
103815
|
/* harmony import */ var _CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/ValidationInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/ValidationInfoNode.ts");
|
|
103712
|
-
/* harmony import */ var
|
|
103713
|
-
/* harmony import */ var
|
|
103714
|
-
/* harmony import */ var
|
|
103715
|
-
/* harmony import */ var
|
|
103716
|
-
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
103717
|
-
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
103718
|
-
|
|
103719
|
-
|
|
103816
|
+
/* harmony import */ var _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/SugarNodeWithLegacyVisibility */ "./Generator/src/generators/markupGenerator/Serializer/SugarNodeWithLegacyVisibility.ts");
|
|
103817
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
103818
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
103819
|
+
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
103720
103820
|
|
|
103721
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18;
|
|
103722
103821
|
|
|
103723
103822
|
|
|
103823
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9;
|
|
103724
103824
|
|
|
103725
103825
|
|
|
103726
103826
|
|
|
103727
103827
|
|
|
103728
103828
|
|
|
103729
103829
|
|
|
103730
|
-
let
|
|
103830
|
+
let ContractorsSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("contractorssuggestcombobox", `Комбобокс контрагентов`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_7__.TooltipSettingsNode), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("allowTextWrap", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean.default(true), `Разрешить переносы строки в выпадающем списке`), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit.default("100%"), `Ширина комбобокса`), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("query", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.helperFunctionName.required, `Имя кастомной helpers функции, которая вызовется при запросе. Должна вернуть массив`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("onUnexpectedInput", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.helperFunctionName, `Имя кастомной helpers функции, которая вызовется при невалидном вводе (когда не выбрали значение)`), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("placeholder", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, ``), _dec(_class = (_class2 = class ContractorsSuggestComboBoxNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__.SugarNodeWithLegacyVisibility {
|
|
103731
103831
|
constructor(...args) {
|
|
103732
103832
|
super(...args);
|
|
103733
103833
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
103734
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103735
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103736
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103737
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103738
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103739
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103740
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103741
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
103742
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dateFormat", _descriptor10, this);
|
|
103743
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path", _descriptor11, this);
|
|
103744
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "help", _descriptor12, this);
|
|
103745
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "helpNodes", _descriptor13, this);
|
|
103746
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "callHelperOnChange", _descriptor14, this);
|
|
103747
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "callHelperOnBlur", _descriptor15, this);
|
|
103748
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "menuPosHorizontal", _descriptor16, this);
|
|
103749
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "menuPosVertical", _descriptor17, this);
|
|
103750
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "enableTodayLink", _descriptor18, this);
|
|
103834
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled2", _descriptor2, this);
|
|
103835
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor3, this);
|
|
103836
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor4, this);
|
|
103837
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "allowTextWrap", _descriptor5, this);
|
|
103838
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor6, this);
|
|
103839
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "query", _descriptor7, this);
|
|
103840
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onUnexpectedInput", _descriptor8, this);
|
|
103841
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "placeholder", _descriptor9, this);
|
|
103751
103842
|
}
|
|
103752
103843
|
getOwnPath() {
|
|
103753
103844
|
return this.dataBinding.getOwnPath();
|
|
@@ -103757,87 +103848,42 @@ let DateNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7
|
|
|
103757
103848
|
enumerable: true,
|
|
103758
103849
|
writable: true,
|
|
103759
103850
|
initializer: null
|
|
103760
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
103761
|
-
configurable: true,
|
|
103762
|
-
enumerable: true,
|
|
103763
|
-
writable: true,
|
|
103764
|
-
initializer: null
|
|
103765
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled", [_dec4], {
|
|
103766
|
-
configurable: true,
|
|
103767
|
-
enumerable: true,
|
|
103768
|
-
writable: true,
|
|
103769
|
-
initializer: null
|
|
103770
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tid", [_dec5], {
|
|
103771
|
-
configurable: true,
|
|
103772
|
-
enumerable: true,
|
|
103773
|
-
writable: true,
|
|
103774
|
-
initializer: null
|
|
103775
|
-
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled2", [_dec6], {
|
|
103776
|
-
configurable: true,
|
|
103777
|
-
enumerable: true,
|
|
103778
|
-
writable: true,
|
|
103779
|
-
initializer: null
|
|
103780
|
-
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec7], {
|
|
103781
|
-
configurable: true,
|
|
103782
|
-
enumerable: true,
|
|
103783
|
-
writable: true,
|
|
103784
|
-
initializer: null
|
|
103785
|
-
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec8], {
|
|
103786
|
-
configurable: true,
|
|
103787
|
-
enumerable: true,
|
|
103788
|
-
writable: true,
|
|
103789
|
-
initializer: null
|
|
103790
|
-
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "placeholder", [_dec9], {
|
|
103791
|
-
configurable: true,
|
|
103792
|
-
enumerable: true,
|
|
103793
|
-
writable: true,
|
|
103794
|
-
initializer: null
|
|
103795
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec10], {
|
|
103796
|
-
configurable: true,
|
|
103797
|
-
enumerable: true,
|
|
103798
|
-
writable: true,
|
|
103799
|
-
initializer: null
|
|
103800
|
-
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dateFormat", [_dec11], {
|
|
103801
|
-
configurable: true,
|
|
103802
|
-
enumerable: true,
|
|
103803
|
-
writable: true,
|
|
103804
|
-
initializer: null
|
|
103805
|
-
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "path", [_dec12], {
|
|
103851
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled2", [_dec3], {
|
|
103806
103852
|
configurable: true,
|
|
103807
103853
|
enumerable: true,
|
|
103808
103854
|
writable: true,
|
|
103809
103855
|
initializer: null
|
|
103810
|
-
}),
|
|
103856
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec4], {
|
|
103811
103857
|
configurable: true,
|
|
103812
103858
|
enumerable: true,
|
|
103813
103859
|
writable: true,
|
|
103814
103860
|
initializer: null
|
|
103815
|
-
}),
|
|
103861
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec5], {
|
|
103816
103862
|
configurable: true,
|
|
103817
103863
|
enumerable: true,
|
|
103818
103864
|
writable: true,
|
|
103819
103865
|
initializer: null
|
|
103820
|
-
}),
|
|
103866
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "allowTextWrap", [_dec6], {
|
|
103821
103867
|
configurable: true,
|
|
103822
103868
|
enumerable: true,
|
|
103823
103869
|
writable: true,
|
|
103824
103870
|
initializer: null
|
|
103825
|
-
}),
|
|
103871
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec7], {
|
|
103826
103872
|
configurable: true,
|
|
103827
103873
|
enumerable: true,
|
|
103828
103874
|
writable: true,
|
|
103829
103875
|
initializer: null
|
|
103830
|
-
}),
|
|
103876
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "query", [_dec8], {
|
|
103831
103877
|
configurable: true,
|
|
103832
103878
|
enumerable: true,
|
|
103833
103879
|
writable: true,
|
|
103834
103880
|
initializer: null
|
|
103835
|
-
}),
|
|
103881
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "onUnexpectedInput", [_dec9], {
|
|
103836
103882
|
configurable: true,
|
|
103837
103883
|
enumerable: true,
|
|
103838
103884
|
writable: true,
|
|
103839
103885
|
initializer: null
|
|
103840
|
-
}),
|
|
103886
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "placeholder", [_dec10], {
|
|
103841
103887
|
configurable: true,
|
|
103842
103888
|
enumerable: true,
|
|
103843
103889
|
writable: true,
|
|
@@ -103846,16 +103892,16 @@ let DateNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7
|
|
|
103846
103892
|
|
|
103847
103893
|
/***/ }),
|
|
103848
103894
|
|
|
103849
|
-
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103895
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxConverter.ts":
|
|
103850
103896
|
/*!*****************************************************************************************************************************************!*\
|
|
103851
|
-
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103897
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxConverter.ts ***!
|
|
103852
103898
|
\*****************************************************************************************************************************************/
|
|
103853
103899
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
103854
103900
|
|
|
103855
103901
|
"use strict";
|
|
103856
103902
|
__webpack_require__.r(__webpack_exports__);
|
|
103857
103903
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
103858
|
-
/* harmony export */
|
|
103904
|
+
/* harmony export */ CustomSuggestComboBoxConverter: () => (/* binding */ CustomSuggestComboBoxConverter)
|
|
103859
103905
|
/* harmony export */ });
|
|
103860
103906
|
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
103861
103907
|
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
@@ -103864,7 +103910,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
103864
103910
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
103865
103911
|
/* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../../../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
|
|
103866
103912
|
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
103867
|
-
/* harmony import */ var
|
|
103913
|
+
/* harmony import */ var _CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CustomSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxNode.ts");
|
|
103868
103914
|
|
|
103869
103915
|
|
|
103870
103916
|
|
|
@@ -103873,16 +103919,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
103873
103919
|
|
|
103874
103920
|
|
|
103875
103921
|
|
|
103876
|
-
class
|
|
103922
|
+
class CustomSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
103877
103923
|
static getAcceptNodeClass() {
|
|
103878
|
-
return
|
|
103924
|
+
return _CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.CustomSuggestComboBoxNode;
|
|
103879
103925
|
}
|
|
103880
103926
|
doBuildNodeValidations(validationGenerator) {
|
|
103881
|
-
const node = this.getCurrentNodeAs(
|
|
103927
|
+
const node = this.getCurrentNodeAs(_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.CustomSuggestComboBoxNode);
|
|
103882
103928
|
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
103883
103929
|
}
|
|
103884
103930
|
*doBuildKCLangValidations(buildContext, formSchemaRng, prefixPath) {
|
|
103885
|
-
const node = this.getCurrentNodeAs(
|
|
103931
|
+
const node = this.getCurrentNodeAs(_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.CustomSuggestComboBoxNode);
|
|
103886
103932
|
const element = formSchemaRng.getElementByPath(node.getFullPath());
|
|
103887
103933
|
const targetPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.createAbsoluteFromMask)(this.getResolvedBindingPath(node), _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.PathTokens.each);
|
|
103888
103934
|
const typeNode = buildContext.getTypeNode(node.validationInfo);
|
|
@@ -103894,11 +103940,11 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
103894
103940
|
yield* buildContext.buildBasicValidations(ownPath, targetPath, prefixPath, typeNode, schemaTypeNode, node.validationInfo.optional == undefined ? element === null || element === void 0 ? void 0 : element.isOptional() : node.validationInfo.optional, undefined, node.validationInfo.emptydescription);
|
|
103895
103941
|
}
|
|
103896
103942
|
get nodePaths() {
|
|
103897
|
-
const node = this.getCurrentNodeAs(
|
|
103943
|
+
const node = this.getCurrentNodeAs(_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.CustomSuggestComboBoxNode);
|
|
103898
103944
|
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
103899
103945
|
}
|
|
103900
103946
|
doBuildDataDeclaration(context) {
|
|
103901
|
-
const node = this.getCurrentNodeAs(
|
|
103947
|
+
const node = this.getCurrentNodeAs(_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.CustomSuggestComboBoxNode);
|
|
103902
103948
|
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding, false)], ["disabled", context.initSequenceFactory.disabled()]]), context.addSpecialFieldsEntry(node, {
|
|
103903
103949
|
optional: node.dataBinding.optional
|
|
103904
103950
|
}), context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), context.addVisibilityPathDeclEntryNew(node, node.dataBinding.requisite));
|
|
@@ -103910,9 +103956,9 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
103910
103956
|
// no children
|
|
103911
103957
|
}
|
|
103912
103958
|
doConvert(context) {
|
|
103913
|
-
const node = this.getCurrentNodeAs(
|
|
103959
|
+
const node = this.getCurrentNodeAs(_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.CustomSuggestComboBoxNode);
|
|
103914
103960
|
this.ensurePathExists(node, node.dataBinding.path);
|
|
103915
|
-
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("
|
|
103961
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("CustomSuggestComboBox");
|
|
103916
103962
|
markupBuilder.prop(x => x.allowTextWrap).set(node.allowTextWrap);
|
|
103917
103963
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node));
|
|
103918
103964
|
markupBuilder.prop(x => x.disablePortal).set(node.disablePortal);
|
|
@@ -103933,16 +103979,16 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
103933
103979
|
|
|
103934
103980
|
/***/ }),
|
|
103935
103981
|
|
|
103936
|
-
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103982
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxNode.ts":
|
|
103937
103983
|
/*!************************************************************************************************************************************!*\
|
|
103938
|
-
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/
|
|
103984
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxNode.ts ***!
|
|
103939
103985
|
\************************************************************************************************************************************/
|
|
103940
103986
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
103941
103987
|
|
|
103942
103988
|
"use strict";
|
|
103943
103989
|
__webpack_require__.r(__webpack_exports__);
|
|
103944
103990
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
103945
|
-
/* harmony export */
|
|
103991
|
+
/* harmony export */ CustomSuggestComboBoxNode: () => (/* binding */ CustomSuggestComboBoxNode)
|
|
103946
103992
|
/* harmony export */ });
|
|
103947
103993
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
103948
103994
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -103966,7 +104012,7 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11
|
|
|
103966
104012
|
|
|
103967
104013
|
|
|
103968
104014
|
|
|
103969
|
-
let
|
|
104015
|
+
let CustomSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("customsuggestcombobox", `Кастомный комбобокс`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_7__.TooltipSettingsNode), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("allowTextWrap", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("disablePortal", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("keyColWidth", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("query", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string.required, ``), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("placeholder", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, ``), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("displayValueField", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, ``), _dec(_class = (_class2 = class CustomSuggestComboBoxNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__.SugarNodeWithLegacyVisibility {
|
|
103970
104016
|
constructor(...args) {
|
|
103971
104017
|
super(...args);
|
|
103972
104018
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
@@ -104043,6 +104089,305 @@ let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_
|
|
|
104043
104089
|
|
|
104044
104090
|
/***/ }),
|
|
104045
104091
|
|
|
104092
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxConverter.ts":
|
|
104093
|
+
/*!*****************************************************************************************************************************************!*\
|
|
104094
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxConverter.ts ***!
|
|
104095
|
+
\*****************************************************************************************************************************************/
|
|
104096
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
104097
|
+
|
|
104098
|
+
"use strict";
|
|
104099
|
+
__webpack_require__.r(__webpack_exports__);
|
|
104100
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
104101
|
+
/* harmony export */ DiadocSuggestComboBoxConverter: () => (/* binding */ DiadocSuggestComboBoxConverter)
|
|
104102
|
+
/* harmony export */ });
|
|
104103
|
+
/* harmony import */ var _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./DiadocSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxNode.ts");
|
|
104104
|
+
/* harmony import */ var _CustomSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CustomSuggestComboBoxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxConverter.ts");
|
|
104105
|
+
|
|
104106
|
+
|
|
104107
|
+
class DiadocSuggestComboBoxConverter extends _CustomSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_1__.CustomSuggestComboBoxConverter {
|
|
104108
|
+
static getAcceptNodeClass() {
|
|
104109
|
+
return _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_0__.DiadocSuggestComboBoxNode;
|
|
104110
|
+
}
|
|
104111
|
+
}
|
|
104112
|
+
|
|
104113
|
+
/***/ }),
|
|
104114
|
+
|
|
104115
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxNode.ts":
|
|
104116
|
+
/*!************************************************************************************************************************************!*\
|
|
104117
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxNode.ts ***!
|
|
104118
|
+
\************************************************************************************************************************************/
|
|
104119
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
104120
|
+
|
|
104121
|
+
"use strict";
|
|
104122
|
+
__webpack_require__.r(__webpack_exports__);
|
|
104123
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
104124
|
+
/* harmony export */ DiadocSuggestComboBoxNode: () => (/* binding */ DiadocSuggestComboBoxNode)
|
|
104125
|
+
/* harmony export */ });
|
|
104126
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
104127
|
+
/* harmony import */ var _CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CustomSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxNode.ts");
|
|
104128
|
+
var _dec, _class;
|
|
104129
|
+
|
|
104130
|
+
|
|
104131
|
+
let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_0__.sugarNode)("diadocsuggestcombobox", `Волшебный комбобокс для Диадока (deprecated: лучше использовать customsuggestcombobox - это то же самое)`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox sync recursive .md$")), _dec(_class = class DiadocSuggestComboBoxNode extends _CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_1__.CustomSuggestComboBoxNode {}) || _class);
|
|
104132
|
+
|
|
104133
|
+
/***/ }),
|
|
104134
|
+
|
|
104135
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateConverter.ts":
|
|
104136
|
+
/*!*******************************************************************************************************!*\
|
|
104137
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateConverter.ts ***!
|
|
104138
|
+
\*******************************************************************************************************/
|
|
104139
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
104140
|
+
|
|
104141
|
+
"use strict";
|
|
104142
|
+
__webpack_require__.r(__webpack_exports__);
|
|
104143
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
104144
|
+
/* harmony export */ DateConverter: () => (/* binding */ DateConverter)
|
|
104145
|
+
/* harmony export */ });
|
|
104146
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
104147
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
104148
|
+
/* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
|
|
104149
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
104150
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
104151
|
+
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
104152
|
+
/* harmony import */ var _DateNode__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./DateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateNode.ts");
|
|
104153
|
+
|
|
104154
|
+
|
|
104155
|
+
|
|
104156
|
+
|
|
104157
|
+
|
|
104158
|
+
|
|
104159
|
+
|
|
104160
|
+
class DateConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.SugarNodeConverterBase {
|
|
104161
|
+
static getAcceptNodeClass() {
|
|
104162
|
+
return _DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode;
|
|
104163
|
+
}
|
|
104164
|
+
*doBuildKCLangValidations(buildContext, formSchemaRng, prefixPath) {
|
|
104165
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104166
|
+
const element = formSchemaRng.getElementByPath(node.getFullPath());
|
|
104167
|
+
const targetPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_2__.createAbsoluteFromMask)(this.getResolvedBindingPath(node), _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_2__.PathTokens.each);
|
|
104168
|
+
const typeNode = buildContext.getTypeNode(node.validationInfo);
|
|
104169
|
+
const schemaTypeNode = buildContext.getSchemaTypeInfo(targetPath);
|
|
104170
|
+
const ownPath = node.getOwnPathForKCLang();
|
|
104171
|
+
if (typeNode == undefined && schemaTypeNode == undefined || ownPath == undefined) {
|
|
104172
|
+
return;
|
|
104173
|
+
}
|
|
104174
|
+
yield* buildContext.buildBasicValidations(ownPath, targetPath, prefixPath, typeNode, schemaTypeNode, node.validationInfo.optional == undefined ? element === null || element === void 0 ? void 0 : element.isOptional() : node.validationInfo.optional, undefined, node.validationInfo.emptydescription, node);
|
|
104175
|
+
}
|
|
104176
|
+
doBuildNodeValidations(validationGenerator) {
|
|
104177
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104178
|
+
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
104179
|
+
}
|
|
104180
|
+
get nodePaths() {
|
|
104181
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104182
|
+
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
104183
|
+
}
|
|
104184
|
+
doBuildNormalizeRules(builder) {
|
|
104185
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104186
|
+
return [builder.valueInitializer(node, node.dataBinding, node.disabled), ...builder.specialFieldsInitializer(node, {
|
|
104187
|
+
disabled: node.disabled
|
|
104188
|
+
})];
|
|
104189
|
+
}
|
|
104190
|
+
doBuildDataDeclaration(context) {
|
|
104191
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104192
|
+
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding, node.disabled)]]), context.addSpecialFieldsEntry(node, {
|
|
104193
|
+
optional: node.dataBinding.optional,
|
|
104194
|
+
disabled: node.disabled
|
|
104195
|
+
}), context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), context.addVisibilityPathDeclEntryNew(node, node.dataBinding.requisite));
|
|
104196
|
+
}
|
|
104197
|
+
buildChildrenDataDeclaration(context) {
|
|
104198
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104199
|
+
return context.processChildrenDataDeclaration(node.helpNodes);
|
|
104200
|
+
}
|
|
104201
|
+
*doTraverseChildren() {
|
|
104202
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104203
|
+
yield* node.helpNodes;
|
|
104204
|
+
}
|
|
104205
|
+
doConvert(context) {
|
|
104206
|
+
const node = this.getCurrentNodeAs(_DateNode__WEBPACK_IMPORTED_MODULE_6__.DateNode);
|
|
104207
|
+
this.ensurePathExists(node, node.dataBinding.path);
|
|
104208
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("DatePicker");
|
|
104209
|
+
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node));
|
|
104210
|
+
markupBuilder.prop(x => x.dateFormat).set(node.dateFormat);
|
|
104211
|
+
markupBuilder.prop(x => x.menuPosHorizontal).set(node.menuPosHorizontal);
|
|
104212
|
+
markupBuilder.prop(x => x.menuPosVertical).set(node.menuPosVertical);
|
|
104213
|
+
markupBuilder.prop(x => x.enableTodayLink).set(node.enableTodayLink);
|
|
104214
|
+
markupBuilder.prop("data-tid").set(node.tid);
|
|
104215
|
+
markupBuilder.prop(x => x.width).set(node.width);
|
|
104216
|
+
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__.setTooltipSettingsProps)(markupBuilder, node.tooltipSettings);
|
|
104217
|
+
if (node.disabled2 != undefined) {
|
|
104218
|
+
markupBuilder.prop(x => x.disabled2).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_5__.buildExpressionPropValue)(node.disabled2));
|
|
104219
|
+
if (this.getLegacyNode().getParent() != undefined) {
|
|
104220
|
+
markupBuilder.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
|
|
104221
|
+
}
|
|
104222
|
+
}
|
|
104223
|
+
if (node.callHelperOnChange) {
|
|
104224
|
+
markupBuilder.prop(x => x.callHelperOnChange).set(context.generateHelperFunctionExpression(node, "callHelperOnChange", node.callHelperOnChange));
|
|
104225
|
+
}
|
|
104226
|
+
if (node.callHelperOnBlur) {
|
|
104227
|
+
markupBuilder.prop(x => x.callHelperOnBlur).set(context.generateHelperFunctionExpression(node, "callHelperOnBlur", node.callHelperOnBlur));
|
|
104228
|
+
}
|
|
104229
|
+
return markupBuilder.buildConverterResultWithHelp(node, context);
|
|
104230
|
+
}
|
|
104231
|
+
}
|
|
104232
|
+
|
|
104233
|
+
/***/ }),
|
|
104234
|
+
|
|
104235
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateNode.ts":
|
|
104236
|
+
/*!**************************************************************************************************!*\
|
|
104237
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateNode.ts ***!
|
|
104238
|
+
\**************************************************************************************************/
|
|
104239
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
104240
|
+
|
|
104241
|
+
"use strict";
|
|
104242
|
+
__webpack_require__.r(__webpack_exports__);
|
|
104243
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
104244
|
+
/* harmony export */ DateNode: () => (/* binding */ DateNode)
|
|
104245
|
+
/* harmony export */ });
|
|
104246
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
104247
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
104248
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
|
|
104249
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
104250
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
104251
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
104252
|
+
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
104253
|
+
/* harmony import */ var _CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/ValidationInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/ValidationInfoNode.ts");
|
|
104254
|
+
/* harmony import */ var _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/DeprecationReason */ "./Generator/src/generators/markupGenerator/Serializer/DeprecationReason.ts");
|
|
104255
|
+
/* harmony import */ var _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../Serializer/SugarNodeWithLegacyVisibility */ "./Generator/src/generators/markupGenerator/Serializer/SugarNodeWithLegacyVisibility.ts");
|
|
104256
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
104257
|
+
/* harmony import */ var _Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../Helpers/Help/HelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Help/HelpNode.ts");
|
|
104258
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
104259
|
+
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
104260
|
+
|
|
104261
|
+
|
|
104262
|
+
|
|
104263
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18;
|
|
104264
|
+
|
|
104265
|
+
|
|
104266
|
+
|
|
104267
|
+
|
|
104268
|
+
|
|
104269
|
+
|
|
104270
|
+
|
|
104271
|
+
|
|
104272
|
+
let DateNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("date", `Контрол ввода даты`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("caption", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_9__.TooltipSettingsNode), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("placeholder", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.lengthUnit, `Ширина`), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("dateFormat", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.enum("fss"), `Форматы даты для сохранения в inner, в 4-ФСС указывается fss.`), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.bindingPath, ``), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("help", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, ``), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)("help", [_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_8__.HelpNode]), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("callHelperOnChange", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.helperFunctionName, "Вызов helper функции на onChange контролла"), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("callHelperOnBlur", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.helperFunctionName, "Вызов helper функции на onBlur контролла"), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("menuPosHorizontal", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.enum("left", "right"), "Отображение выпадающего окна по горизонтали."), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("menuPosVertical", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.enum("top", "bottom"), "Отображение выпадающего окна по вертикали."), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("enableTodayLink", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, "Включить отображение кнопки 'Сегодня' внизу выпадающего окна."), _dec(_class = (_class2 = class DateNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__.SugarNodeWithLegacyVisibility {
|
|
104273
|
+
constructor(...args) {
|
|
104274
|
+
super(...args);
|
|
104275
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
104276
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "caption", _descriptor2, this);
|
|
104277
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled", _descriptor3, this);
|
|
104278
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid", _descriptor4, this);
|
|
104279
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled2", _descriptor5, this);
|
|
104280
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor6, this);
|
|
104281
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor7, this);
|
|
104282
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "placeholder", _descriptor8, this);
|
|
104283
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor9, this);
|
|
104284
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dateFormat", _descriptor10, this);
|
|
104285
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path", _descriptor11, this);
|
|
104286
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "help", _descriptor12, this);
|
|
104287
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "helpNodes", _descriptor13, this);
|
|
104288
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "callHelperOnChange", _descriptor14, this);
|
|
104289
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "callHelperOnBlur", _descriptor15, this);
|
|
104290
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "menuPosHorizontal", _descriptor16, this);
|
|
104291
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "menuPosVertical", _descriptor17, this);
|
|
104292
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "enableTodayLink", _descriptor18, this);
|
|
104293
|
+
}
|
|
104294
|
+
getOwnPath() {
|
|
104295
|
+
return this.dataBinding.getOwnPath();
|
|
104296
|
+
}
|
|
104297
|
+
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dataBinding", [_dec2], {
|
|
104298
|
+
configurable: true,
|
|
104299
|
+
enumerable: true,
|
|
104300
|
+
writable: true,
|
|
104301
|
+
initializer: null
|
|
104302
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "caption", [_dec3], {
|
|
104303
|
+
configurable: true,
|
|
104304
|
+
enumerable: true,
|
|
104305
|
+
writable: true,
|
|
104306
|
+
initializer: null
|
|
104307
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled", [_dec4], {
|
|
104308
|
+
configurable: true,
|
|
104309
|
+
enumerable: true,
|
|
104310
|
+
writable: true,
|
|
104311
|
+
initializer: null
|
|
104312
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tid", [_dec5], {
|
|
104313
|
+
configurable: true,
|
|
104314
|
+
enumerable: true,
|
|
104315
|
+
writable: true,
|
|
104316
|
+
initializer: null
|
|
104317
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled2", [_dec6], {
|
|
104318
|
+
configurable: true,
|
|
104319
|
+
enumerable: true,
|
|
104320
|
+
writable: true,
|
|
104321
|
+
initializer: null
|
|
104322
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec7], {
|
|
104323
|
+
configurable: true,
|
|
104324
|
+
enumerable: true,
|
|
104325
|
+
writable: true,
|
|
104326
|
+
initializer: null
|
|
104327
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec8], {
|
|
104328
|
+
configurable: true,
|
|
104329
|
+
enumerable: true,
|
|
104330
|
+
writable: true,
|
|
104331
|
+
initializer: null
|
|
104332
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "placeholder", [_dec9], {
|
|
104333
|
+
configurable: true,
|
|
104334
|
+
enumerable: true,
|
|
104335
|
+
writable: true,
|
|
104336
|
+
initializer: null
|
|
104337
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec10], {
|
|
104338
|
+
configurable: true,
|
|
104339
|
+
enumerable: true,
|
|
104340
|
+
writable: true,
|
|
104341
|
+
initializer: null
|
|
104342
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dateFormat", [_dec11], {
|
|
104343
|
+
configurable: true,
|
|
104344
|
+
enumerable: true,
|
|
104345
|
+
writable: true,
|
|
104346
|
+
initializer: null
|
|
104347
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "path", [_dec12], {
|
|
104348
|
+
configurable: true,
|
|
104349
|
+
enumerable: true,
|
|
104350
|
+
writable: true,
|
|
104351
|
+
initializer: null
|
|
104352
|
+
}), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "help", [_dec13], {
|
|
104353
|
+
configurable: true,
|
|
104354
|
+
enumerable: true,
|
|
104355
|
+
writable: true,
|
|
104356
|
+
initializer: null
|
|
104357
|
+
}), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "helpNodes", [_dec14], {
|
|
104358
|
+
configurable: true,
|
|
104359
|
+
enumerable: true,
|
|
104360
|
+
writable: true,
|
|
104361
|
+
initializer: null
|
|
104362
|
+
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "callHelperOnChange", [_dec15], {
|
|
104363
|
+
configurable: true,
|
|
104364
|
+
enumerable: true,
|
|
104365
|
+
writable: true,
|
|
104366
|
+
initializer: null
|
|
104367
|
+
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "callHelperOnBlur", [_dec16], {
|
|
104368
|
+
configurable: true,
|
|
104369
|
+
enumerable: true,
|
|
104370
|
+
writable: true,
|
|
104371
|
+
initializer: null
|
|
104372
|
+
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "menuPosHorizontal", [_dec17], {
|
|
104373
|
+
configurable: true,
|
|
104374
|
+
enumerable: true,
|
|
104375
|
+
writable: true,
|
|
104376
|
+
initializer: null
|
|
104377
|
+
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "menuPosVertical", [_dec18], {
|
|
104378
|
+
configurable: true,
|
|
104379
|
+
enumerable: true,
|
|
104380
|
+
writable: true,
|
|
104381
|
+
initializer: null
|
|
104382
|
+
}), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "enableTodayLink", [_dec19], {
|
|
104383
|
+
configurable: true,
|
|
104384
|
+
enumerable: true,
|
|
104385
|
+
writable: true,
|
|
104386
|
+
initializer: null
|
|
104387
|
+
}), _class2)) || _class);
|
|
104388
|
+
|
|
104389
|
+
/***/ }),
|
|
104390
|
+
|
|
104046
104391
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ExpertNote/ExpertNoteConverter.ts":
|
|
104047
104392
|
/*!*******************************************************************************************************************!*\
|
|
104048
104393
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ExpertNote/ExpertNoteConverter.ts ***!
|
|
@@ -105172,14 +105517,16 @@ class FileLoaderConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_4
|
|
|
105172
105517
|
multiple: multipleNode
|
|
105173
105518
|
});
|
|
105174
105519
|
}
|
|
105175
|
-
|
|
105176
|
-
|
|
105520
|
+
|
|
105521
|
+
// eslint-disable-next-line no-warning-comments
|
|
105522
|
+
// TODO(2026-05-31): Исправить в рамках задачи https://yt.skbkontur.ru/issue/FS-9386
|
|
105523
|
+
*doBuildKCLangValidations_REMOVE_THIS_SUFFIX(buildContext, formSchemaRng, prefixPath) {
|
|
105177
105524
|
const node = this.getCurrentNodeAs(_FileLoaderNode__WEBPACK_IMPORTED_MODULE_11__.FileLoaderNode);
|
|
105178
105525
|
const element = formSchemaRng.getElementByPath(node.getFullPath());
|
|
105179
|
-
const targetPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_6__.createAbsoluteFromMask)(this.getResolvedBindingPath(node), _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_6__.PathTokens.each)
|
|
105526
|
+
const targetPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_6__.createAbsoluteFromMask)(this.getResolvedBindingPath(node), _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_6__.PathTokens.each);
|
|
105180
105527
|
const typeNode = buildContext.getTypeNode(node.validationInfo);
|
|
105181
105528
|
const schemaTypeNode = buildContext.getSchemaTypeInfo(targetPath);
|
|
105182
|
-
const ownPath =
|
|
105529
|
+
const ownPath = node.getOwnPathForKCLang();
|
|
105183
105530
|
if (typeNode == undefined && schemaTypeNode == undefined || ownPath == undefined) {
|
|
105184
105531
|
return;
|
|
105185
105532
|
}
|
|
@@ -108025,7 +108372,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
108025
108372
|
/* harmony import */ var _common_KCLang_CodeDom_FormulaStatement__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../../../common/KCLang/CodeDom/FormulaStatement */ "./Generator/src/common/KCLang/CodeDom/FormulaStatement.ts");
|
|
108026
108373
|
/* harmony import */ var _common_KCLang_CodeDom_KCLangPath__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../../../common/KCLang/CodeDom/KCLangPath */ "./Generator/src/common/KCLang/CodeDom/KCLangPath.ts");
|
|
108027
108374
|
/* harmony import */ var _common_KCLang_CodeDom_ValueReferenceExpression__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../../../common/KCLang/CodeDom/ValueReferenceExpression */ "./Generator/src/common/KCLang/CodeDom/ValueReferenceExpression.ts");
|
|
108028
|
-
/* harmony import */ var
|
|
108375
|
+
/* harmony import */ var _Common_ModelPath_PathSplitHelper__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../../../../../Common/ModelPath/PathSplitHelper */ "./Common/ModelPath/PathSplitHelper.ts");
|
|
108376
|
+
/* harmony import */ var _SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./SelectAllCheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxNode.ts");
|
|
108377
|
+
|
|
108029
108378
|
|
|
108030
108379
|
|
|
108031
108380
|
|
|
@@ -108039,10 +108388,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
108039
108388
|
|
|
108040
108389
|
class SelectAllCheckboxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
108041
108390
|
static getAcceptNodeClass() {
|
|
108042
|
-
return
|
|
108391
|
+
return _SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_11__.SelectAllCheckboxNode;
|
|
108043
108392
|
}
|
|
108044
108393
|
get nodePaths() {
|
|
108045
|
-
const node = this.getCurrentNodeAs(
|
|
108394
|
+
const node = this.getCurrentNodeAs(_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_11__.SelectAllCheckboxNode);
|
|
108046
108395
|
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
108047
108396
|
}
|
|
108048
108397
|
doBuildDataDeclaration() {
|
|
@@ -108050,21 +108399,22 @@ class SelectAllCheckboxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_M
|
|
|
108050
108399
|
}
|
|
108051
108400
|
doBuildKCLangCalculations(_buildContext, _formSchemaRng, _prefixPath) {
|
|
108052
108401
|
var _node$pathToChecked;
|
|
108053
|
-
const node = this.getCurrentNodeAs(
|
|
108402
|
+
const node = this.getCurrentNodeAs(_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_11__.SelectAllCheckboxNode);
|
|
108054
108403
|
const pathToCheckedArray = (0,_Engine_src_Controls_FastSelectAllCheckboxesHelper__WEBPACK_IMPORTED_MODULE_0__.buildDirtyPathForMultiplicityAndCheckboxPath)(node.getFullPath(), (_node$pathToChecked = node.pathToChecked) !== null && _node$pathToChecked !== void 0 ? _node$pathToChecked : "checked");
|
|
108055
|
-
|
|
108404
|
+
const splitInfo = (0,_Common_ModelPath_PathSplitHelper__WEBPACK_IMPORTED_MODULE_10__.getMatchedAndDifferentModelPaths)(node.getFullPath(), pathToCheckedArray);
|
|
108405
|
+
return node.dirtyModeInstancesCount != undefined ? [new _common_KCLang_CodeDom_CheckStatement__WEBPACK_IMPORTED_MODULE_6__.CheckStatement(new _common_KCLang_CodeDom_FormulaStatement__WEBPACK_IMPORTED_MODULE_7__.FormulaStatement(_common_KCLang_CodeDom_KCLangPath__WEBPACK_IMPORTED_MODULE_8__.KCLangPath.fromModelPath(splitInfo.differentPath, true), new _common_KCLang_CodeDom_ValueReferenceExpression__WEBPACK_IMPORTED_MODULE_9__.ValueReferenceExpression(_common_KCLang_CodeDom_KCLangPath__WEBPACK_IMPORTED_MODULE_8__.KCLangPath.fromModelPath((0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_4__.createRelativeFromTokens)(["null"])))))] : [];
|
|
108056
108406
|
}
|
|
108057
108407
|
buildChildrenDataDeclaration(context) {
|
|
108058
|
-
const node = this.getCurrentNodeAs(
|
|
108408
|
+
const node = this.getCurrentNodeAs(_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_11__.SelectAllCheckboxNode);
|
|
108059
108409
|
return context.processChildrenDataDeclaration(node.children);
|
|
108060
108410
|
}
|
|
108061
108411
|
*doTraverseChildren() {
|
|
108062
|
-
const node = this.getCurrentNodeAs(
|
|
108412
|
+
const node = this.getCurrentNodeAs(_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_11__.SelectAllCheckboxNode);
|
|
108063
108413
|
yield* node.children;
|
|
108064
108414
|
}
|
|
108065
108415
|
doConvert(context) {
|
|
108066
108416
|
var _node$filteredUniqKey, _node$uncheckedValue, _node$checkedValue;
|
|
108067
|
-
const node = this.getCurrentNodeAs(
|
|
108417
|
+
const node = this.getCurrentNodeAs(_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_11__.SelectAllCheckboxNode);
|
|
108068
108418
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("SelectAllCheckbox");
|
|
108069
108419
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node));
|
|
108070
108420
|
markupBuilder.prop(x => x.pathToChecked).set(node.getPathToChecked());
|
|
@@ -113609,115 +113959,119 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
113609
113959
|
/* harmony import */ var _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Cross/CrossNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Cross/CrossNode.ts");
|
|
113610
113960
|
/* harmony import */ var _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Date/DateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateNode.ts");
|
|
113611
113961
|
/* harmony import */ var _ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../ElementProcessors/FormParts/DefaultContent/DefaultContentNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/DefaultContent/DefaultContentNode.ts");
|
|
113612
|
-
/* harmony import */ var
|
|
113613
|
-
/* harmony import */ var
|
|
113614
|
-
/* harmony import */ var
|
|
113615
|
-
/* harmony import */ var
|
|
113616
|
-
/* harmony import */ var
|
|
113617
|
-
/* harmony import */ var
|
|
113618
|
-
/* harmony import */ var
|
|
113619
|
-
/* harmony import */ var
|
|
113620
|
-
/* harmony import */ var
|
|
113621
|
-
/* harmony import */ var
|
|
113622
|
-
/* harmony import */ var
|
|
113623
|
-
/* harmony import */ var
|
|
113624
|
-
/* harmony import */ var
|
|
113625
|
-
/* harmony import */ var
|
|
113626
|
-
/* harmony import */ var
|
|
113627
|
-
/* harmony import */ var
|
|
113628
|
-
/* harmony import */ var
|
|
113629
|
-
/* harmony import */ var
|
|
113630
|
-
/* harmony import */ var
|
|
113631
|
-
/* harmony import */ var
|
|
113632
|
-
/* harmony import */ var
|
|
113633
|
-
/* harmony import */ var
|
|
113634
|
-
/* harmony import */ var
|
|
113635
|
-
/* harmony import */ var
|
|
113636
|
-
/* harmony import */ var
|
|
113637
|
-
/* harmony import */ var
|
|
113638
|
-
/* harmony import */ var
|
|
113639
|
-
/* harmony import */ var
|
|
113640
|
-
/* harmony import */ var
|
|
113641
|
-
/* harmony import */ var
|
|
113642
|
-
/* harmony import */ var
|
|
113643
|
-
/* harmony import */ var
|
|
113644
|
-
/* harmony import */ var
|
|
113645
|
-
/* harmony import */ var
|
|
113646
|
-
/* harmony import */ var
|
|
113647
|
-
/* harmony import */ var
|
|
113648
|
-
/* harmony import */ var
|
|
113649
|
-
/* harmony import */ var
|
|
113650
|
-
/* harmony import */ var
|
|
113651
|
-
/* harmony import */ var
|
|
113652
|
-
/* harmony import */ var
|
|
113653
|
-
/* harmony import */ var
|
|
113654
|
-
/* harmony import */ var
|
|
113655
|
-
/* harmony import */ var
|
|
113656
|
-
/* harmony import */ var
|
|
113657
|
-
/* harmony import */ var
|
|
113658
|
-
/* harmony import */ var
|
|
113659
|
-
/* harmony import */ var
|
|
113660
|
-
/* harmony import */ var
|
|
113661
|
-
/* harmony import */ var
|
|
113662
|
-
/* harmony import */ var
|
|
113663
|
-
/* harmony import */ var
|
|
113664
|
-
/* harmony import */ var
|
|
113665
|
-
/* harmony import */ var
|
|
113666
|
-
/* harmony import */ var
|
|
113667
|
-
/* harmony import */ var
|
|
113668
|
-
/* harmony import */ var
|
|
113669
|
-
/* harmony import */ var
|
|
113670
|
-
/* harmony import */ var
|
|
113671
|
-
/* harmony import */ var
|
|
113672
|
-
/* harmony import */ var
|
|
113673
|
-
/* harmony import */ var
|
|
113674
|
-
/* harmony import */ var
|
|
113675
|
-
/* harmony import */ var
|
|
113676
|
-
/* harmony import */ var
|
|
113677
|
-
/* harmony import */ var
|
|
113678
|
-
/* harmony import */ var
|
|
113679
|
-
/* harmony import */ var
|
|
113680
|
-
/* harmony import */ var
|
|
113681
|
-
/* harmony import */ var
|
|
113682
|
-
/* harmony import */ var
|
|
113683
|
-
/* harmony import */ var
|
|
113684
|
-
/* harmony import */ var
|
|
113685
|
-
/* harmony import */ var
|
|
113686
|
-
/* harmony import */ var
|
|
113687
|
-
/* harmony import */ var
|
|
113688
|
-
/* harmony import */ var
|
|
113689
|
-
/* harmony import */ var
|
|
113690
|
-
/* harmony import */ var
|
|
113691
|
-
/* harmony import */ var
|
|
113692
|
-
/* harmony import */ var
|
|
113693
|
-
/* harmony import */ var
|
|
113694
|
-
/* harmony import */ var
|
|
113695
|
-
/* harmony import */ var
|
|
113696
|
-
/* harmony import */ var
|
|
113697
|
-
/* harmony import */ var
|
|
113698
|
-
/* harmony import */ var
|
|
113699
|
-
/* harmony import */ var
|
|
113700
|
-
/* harmony import */ var
|
|
113701
|
-
/* harmony import */ var
|
|
113702
|
-
/* harmony import */ var
|
|
113703
|
-
/* harmony import */ var
|
|
113704
|
-
/* harmony import */ var
|
|
113705
|
-
/* harmony import */ var
|
|
113706
|
-
/* harmony import */ var
|
|
113707
|
-
/* harmony import */ var
|
|
113708
|
-
/* harmony import */ var
|
|
113709
|
-
/* harmony import */ var
|
|
113710
|
-
/* harmony import */ var
|
|
113711
|
-
/* harmony import */ var
|
|
113712
|
-
/* harmony import */ var
|
|
113713
|
-
/* harmony import */ var
|
|
113714
|
-
/* harmony import */ var
|
|
113715
|
-
/* harmony import */ var
|
|
113716
|
-
/* harmony import */ var
|
|
113717
|
-
/* harmony import */ var
|
|
113718
|
-
/* harmony import */ var
|
|
113719
|
-
/* harmony import */ var
|
|
113720
|
-
/* harmony import */ var
|
|
113962
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_CustomSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/DiadocSuggestComboBoxNode.ts");
|
|
113963
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_CustomSuggestComboBox_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/CustomSuggestComboBoxNode.ts");
|
|
113964
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_CustomSuggestComboBox_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/CustomSuggestComboBox/ContractorsSuggestComboBoxNode.ts");
|
|
113965
|
+
/* harmony import */ var _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../ElementProcessors/Typography/Entity/EntityNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Entity/EntityNode.ts");
|
|
113966
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/ExpertNote/ExpertNoteNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ExpertNote/ExpertNoteNode.ts");
|
|
113967
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/AddButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/AddButtonNode.ts");
|
|
113968
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/AddLineNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/AddLineNode.ts");
|
|
113969
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/MenuNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/MenuNode.ts");
|
|
113970
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/RemoveButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/RemoveButtonNode.ts");
|
|
113971
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceButtonNode.ts");
|
|
113972
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceLineNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceLineNode.ts");
|
|
113973
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ViewFileNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ViewFileNode.ts");
|
|
113974
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoaderNode.ts");
|
|
113975
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeNode.ts");
|
|
113976
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterInput/FilterInputNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterInput/FilterInputNode.ts");
|
|
113977
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterList/FilterListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterList/FilterListNode.ts");
|
|
113978
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/FIO/FIONode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/FIONode.ts");
|
|
113979
|
+
/* harmony import */ var _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../ElementProcessors/Layout/Flexbox/FlexboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Flexbox/FlexboxNode.ts");
|
|
113980
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/FormNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/FormNode.ts");
|
|
113981
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_Nodes_ControlsNode__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/Nodes/ControlsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/Nodes/ControlsNode.ts");
|
|
113982
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_Nodes_ControlNode__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/Nodes/ControlNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/Nodes/ControlNode.ts");
|
|
113983
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/Nodes/PanelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/Nodes/PanelNode.ts");
|
|
113984
|
+
/* harmony import */ var _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../ElementProcessors/FormParts/FormInfo/FormInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/FormInfo/FormInfoNode.ts");
|
|
113985
|
+
/* harmony import */ var _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../ElementProcessors/Typography/Gray/GrayNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Gray/GrayNode.ts");
|
|
113986
|
+
/* harmony import */ var _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../ElementProcessors/Layout/GridCol/GridColNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridCol/GridColNode.ts");
|
|
113987
|
+
/* harmony import */ var _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../ElementProcessors/Layout/GridRow/GridRowNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridRow/GridRowNode.ts");
|
|
113988
|
+
/* harmony import */ var _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Header/HeaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Header/HeaderNode.ts");
|
|
113989
|
+
/* harmony import */ var _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/HeaderMenu/HeaderMenuNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/HeaderMenu/HeaderMenuNode.ts");
|
|
113990
|
+
/* harmony import */ var _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Help/HelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Help/HelpNode.ts");
|
|
113991
|
+
/* harmony import */ var _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Helpinfo/HelpInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Helpinfo/HelpInfoNode.ts");
|
|
113992
|
+
/* harmony import */ var _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../ElementProcessors/Typography/Highlight/HighlightNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Highlight/HighlightNode.ts");
|
|
113993
|
+
/* harmony import */ var _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../ElementProcessors/Layout/Hr/HrNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Hr/HrNode.ts");
|
|
113994
|
+
/* harmony import */ var _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../ElementProcessors/Typography/Icon/IconNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Icon/IconNode.ts");
|
|
113995
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/If/IfNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/If/IfNode.ts");
|
|
113996
|
+
/* harmony import */ var _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../ElementProcessors/Layout/Img/ImgNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Img/ImgNode.ts");
|
|
113997
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/INN/INNNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/INN/INNNode.ts");
|
|
113998
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Input/InputNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Input/InputNode.ts");
|
|
113999
|
+
/* harmony import */ var _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../ElementProcessors/Typography/Italic/ItalicNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Italic/ItalicNode.ts");
|
|
114000
|
+
/* harmony import */ var _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../ElementProcessors/Layout/ListItem/ListItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem/ListItemNode.ts");
|
|
114001
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Kladr/KladrNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Kladr/KladrNode.ts");
|
|
114002
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/Linetext/LineTextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Linetext/LineTextNode.ts");
|
|
114003
|
+
/* harmony import */ var _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ../ElementProcessors/Action/Link/LinkNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Link/LinkNode.ts");
|
|
114004
|
+
/* harmony import */ var _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ../ElementProcessors/Layout/List/ListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List/ListNode.ts");
|
|
114005
|
+
/* harmony import */ var _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../ElementProcessors/Modal/Body/BodyNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Body/BodyNode.ts");
|
|
114006
|
+
/* harmony import */ var _ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../ElementProcessors/Modal/ErrorBlock/ErrorBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockNode.ts");
|
|
114007
|
+
/* harmony import */ var _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../ElementProcessors/Modal/Footer/FooterNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterNode.ts");
|
|
114008
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalForm/ModalFormNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalForm/ModalFormNode.ts");
|
|
114009
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode.ts");
|
|
114010
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode.ts");
|
|
114011
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode.ts");
|
|
114012
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormRemove_ModalFormRemoveNode__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormRemove/ModalFormRemoveNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormRemove/ModalFormRemoveNode.ts");
|
|
114013
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode.ts");
|
|
114014
|
+
/* harmony import */ var _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Normativehelp/NormativeHelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Normativehelp/NormativeHelpNode.ts");
|
|
114015
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Otherwise/OtherwiseNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Otherwise/OtherwiseNode.ts");
|
|
114016
|
+
/* harmony import */ var _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Page/PageNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page/PageNode.ts");
|
|
114017
|
+
/* harmony import */ var _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ../ElementProcessors/Layout/Pencil/PencilNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Pencil/PencilNode.ts");
|
|
114018
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Picklist/PicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Picklist/PicklistNode.ts");
|
|
114019
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/radio/RadioNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/radio/RadioNode.ts");
|
|
114020
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode.ts");
|
|
114021
|
+
/* harmony import */ var _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode.ts");
|
|
114022
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Select/SelectNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Select/SelectNode.ts");
|
|
114023
|
+
/* harmony import */ var _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode.ts");
|
|
114024
|
+
/* harmony import */ var _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ../ElementProcessors/Layout/Spoiler/SpoilerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Spoiler/SpoilerNode.ts");
|
|
114025
|
+
/* harmony import */ var _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ../ElementProcessors/Typography/Strong/StrongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Strong/StrongNode.ts");
|
|
114026
|
+
/* harmony import */ var _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sub/SubNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sub/SubNode.ts");
|
|
114027
|
+
/* harmony import */ var _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ../ElementProcessors/Layout/Subheader/SubheaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Subheader/SubheaderNode.ts");
|
|
114028
|
+
/* harmony import */ var _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sup/SupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sup/SupNode.ts");
|
|
114029
|
+
/* harmony import */ var _ElementProcessors_Typography_Nobr_NobrNode__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ../ElementProcessors/Typography/Nobr/NobrNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Nobr/NobrNode.ts");
|
|
114030
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Switch/SwitchNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchNode.ts");
|
|
114031
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode.ts");
|
|
114032
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ../ElementProcessors/Layout/SimpleTable/SimpleTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableNode.ts");
|
|
114033
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/StickyTable/StickyTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableNode.ts");
|
|
114034
|
+
/* harmony import */ var _ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/TableCell/TableCellNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/TableCell/TableCellNode.ts");
|
|
114035
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/Text/TextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/TextNode.ts");
|
|
114036
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Textarea/TextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Textarea/TextAreaNode.ts");
|
|
114037
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitItem/UnitItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitItem/UnitItemNode.ts");
|
|
114038
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitList/UnitListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitList/UnitListNode.ts");
|
|
114039
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/ValueLength/ValueLengthNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/ValueLength/ValueLengthNode.ts");
|
|
114040
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode.ts");
|
|
114041
|
+
/* harmony import */ var _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ../ElementProcessors/Layout/Warning/WarningNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Warning/WarningNode.ts");
|
|
114042
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/When/WhenNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/When/WhenNode.ts");
|
|
114043
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode.ts");
|
|
114044
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode.ts");
|
|
114045
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
114046
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ../ElementProcessors/Layout/FixedTabs/FixedTabsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabsNode.ts");
|
|
114047
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multiple/MultipleNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multiple/MultipleNode.ts");
|
|
114048
|
+
/* harmony import */ var _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ../ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode.ts");
|
|
114049
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode.ts");
|
|
114050
|
+
/* harmony import */ var _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UserPicklist/UserPicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UserPicklist/UserPicklistNode.ts");
|
|
114051
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode.ts");
|
|
114052
|
+
/* harmony import */ var _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Banner/BannerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner/BannerNode.ts");
|
|
114053
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Long/LongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongNode.ts");
|
|
114054
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Short/ShortNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortNode.ts");
|
|
114055
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode.ts");
|
|
114056
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/DateView/DateViewNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts");
|
|
114057
|
+
/* harmony import */ var _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ../ElementProcessors/Action/Common/ActionNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Common/ActionNode.ts");
|
|
114058
|
+
/* harmony import */ var _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ../ElementProcessors/Action/Kebab/KebabNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Kebab/KebabNode.ts");
|
|
114059
|
+
/* harmony import */ var _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Clue/InfoBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Clue/InfoBlockNode.ts");
|
|
114060
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxNode.ts");
|
|
114061
|
+
/* harmony import */ var _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ../../../common/SchemaRng/Nodes/SchemaRngRoot */ "./Generator/src/common/SchemaRng/Nodes/SchemaRngRoot.ts");
|
|
114062
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/TreePicklist/TreePicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TreePicklist/TreePicklistNode.ts");
|
|
114063
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxNode__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/RelativesComboBox/RelativesComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RelativesComboBox/RelativesComboBoxNode.ts");
|
|
114064
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxNode.ts");
|
|
114065
|
+
/* harmony import */ var _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/InstanceNumber/InstanceNumberNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberNode.ts");
|
|
114066
|
+
/* harmony import */ var _ElementProcessors_Layout_OptionalBlock_OptionalBlockNode__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ../ElementProcessors/Layout/OptionalBlock/OptionalBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/OptionalBlock/OptionalBlockNode.ts");
|
|
114067
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinBlockNode__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/JoinBlock/JoinBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinBlockNode.ts");
|
|
114068
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinItemNode__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/JoinBlock/JoinItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinItemNode.ts");
|
|
114069
|
+
/* harmony import */ var _ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateNode__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ../ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateNode.ts");
|
|
114070
|
+
/* harmony import */ var _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/AggregationQuery/AggregationQueryNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryNode.ts");
|
|
114071
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ContextVar_ExprEvalNode__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/ContextVar/ExprEvalNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalNode.ts");
|
|
114072
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Pluralize_PluralizeNode__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/Pluralize/PluralizeNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Pluralize/PluralizeNode.ts");
|
|
114073
|
+
|
|
114074
|
+
|
|
113721
114075
|
|
|
113722
114076
|
|
|
113723
114077
|
|
|
@@ -113856,103 +114210,105 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
113856
114210
|
|
|
113857
114211
|
|
|
113858
114212
|
function registerDefaultSugarNodes(result) {
|
|
113859
|
-
result.registerNode(
|
|
113860
|
-
result.registerNode(
|
|
113861
|
-
result.registerNode(
|
|
113862
|
-
result.registerNode(
|
|
113863
|
-
result.registerNode(
|
|
114213
|
+
result.registerNode(_ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__.FormNode);
|
|
114214
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_ControlsNode__WEBPACK_IMPORTED_MODULE_47__.ControlsNode);
|
|
114215
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_ControlNode__WEBPACK_IMPORTED_MODULE_48__.ControlNode);
|
|
114216
|
+
result.registerNode(_ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_40__.FileLoaderNode);
|
|
114217
|
+
result.registerNode(_ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__.IconNode);
|
|
113864
114218
|
result.registerNode(_ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode);
|
|
113865
|
-
result.registerNode(
|
|
113866
|
-
result.registerNode(
|
|
113867
|
-
result.registerNode(
|
|
114219
|
+
result.registerNode(_ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_45__.FlexboxNode);
|
|
114220
|
+
result.registerNode(_ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_32__.ExpertNoteNode);
|
|
114221
|
+
result.registerNode(_ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_90__.SpoilerNode);
|
|
113868
114222
|
result.registerNode(_ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_15__.BrNode);
|
|
113869
|
-
result.registerNode(
|
|
114223
|
+
result.registerNode(_ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode);
|
|
113870
114224
|
result.registerNode(_ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_24__.ContentNode);
|
|
113871
114225
|
result.registerNode(_ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_19__.CaptionNode);
|
|
113872
|
-
result.registerNode(
|
|
113873
|
-
result.registerNode(
|
|
113874
|
-
result.registerNode(
|
|
113875
|
-
result.registerNode(
|
|
113876
|
-
result.registerNode(
|
|
114226
|
+
result.registerNode(_ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode);
|
|
114227
|
+
result.registerNode(_ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_80__.NormativeHelpNode);
|
|
114228
|
+
result.registerNode(_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_101__.TextNode);
|
|
114229
|
+
result.registerNode(_ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode);
|
|
114230
|
+
result.registerNode(_ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode);
|
|
113877
114231
|
result.registerNode(_ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_23__.ComboBoxNode);
|
|
113878
114232
|
result.registerNode(_ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_14__.BoldNode);
|
|
113879
|
-
result.registerNode(
|
|
113880
|
-
result.registerNode(
|
|
113881
|
-
result.registerNode(
|
|
113882
|
-
result.registerNode(
|
|
113883
|
-
result.registerNode(
|
|
113884
|
-
result.registerNode(
|
|
113885
|
-
result.registerNode(
|
|
113886
|
-
result.registerNode(
|
|
113887
|
-
result.registerNode(
|
|
113888
|
-
result.registerNode(
|
|
113889
|
-
result.registerNode(
|
|
113890
|
-
result.registerNode(
|
|
113891
|
-
result.registerNode(
|
|
113892
|
-
result.registerNode(
|
|
114233
|
+
result.registerNode(_ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_86__.RadioGroupNode);
|
|
114234
|
+
result.registerNode(_ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_44__.FIONode);
|
|
114235
|
+
result.registerNode(_ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode);
|
|
114236
|
+
result.registerNode(_ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_97__.CrossfitTableNode);
|
|
114237
|
+
result.registerNode(_ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_99__.StickyTableNode);
|
|
114238
|
+
result.registerNode(_ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_98__.SimpleTableNode);
|
|
114239
|
+
result.registerNode(_ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_107__.WarningNode);
|
|
114240
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_119__.LongNode);
|
|
114241
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_120__.ShortNode);
|
|
114242
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_121__.FillHintNode);
|
|
114243
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode);
|
|
114244
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode);
|
|
114245
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode);
|
|
114246
|
+
result.registerNode(_ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__.HelpNode);
|
|
113893
114247
|
result.registerNode(_ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode);
|
|
113894
114248
|
result.registerNode(_ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode);
|
|
113895
114249
|
result.registerNode(_ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_25__.CrossNode);
|
|
113896
|
-
result.registerNode(
|
|
113897
|
-
result.registerNode(
|
|
114250
|
+
result.registerNode(_ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode);
|
|
114251
|
+
result.registerNode(_ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_96__.SwitchNode);
|
|
113898
114252
|
result.registerNode(_ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode);
|
|
113899
114253
|
result.registerNode(_ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_20__.CheckboxNode);
|
|
113900
114254
|
result.registerNode(_ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_21__.ToggleNode);
|
|
113901
114255
|
result.registerNode(_ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_22__.ChoiceNode);
|
|
113902
|
-
result.registerNode(
|
|
113903
|
-
result.registerNode(
|
|
113904
|
-
result.registerNode(
|
|
113905
|
-
result.registerNode(
|
|
113906
|
-
result.registerNode(
|
|
113907
|
-
result.registerNode(
|
|
114256
|
+
result.registerNode(_ElementProcessors_ControlFlow_JoinBlock_JoinBlockNode__WEBPACK_IMPORTED_MODULE_133__.JoinBlockNode);
|
|
114257
|
+
result.registerNode(_ElementProcessors_ControlFlow_JoinBlock_JoinItemNode__WEBPACK_IMPORTED_MODULE_134__.JoinItemNode);
|
|
114258
|
+
result.registerNode(_ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode);
|
|
114259
|
+
result.registerNode(_ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_110__.ColgroupButtonNode);
|
|
114260
|
+
result.registerNode(_ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_84__.PicklistNode);
|
|
114261
|
+
result.registerNode(_ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_128__.TreePicklistNode);
|
|
113908
114262
|
result.registerNode(_ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_26__.DateNode);
|
|
113909
|
-
result.registerNode(
|
|
113910
|
-
result.registerNode(
|
|
113911
|
-
result.registerNode(
|
|
113912
|
-
result.registerNode(
|
|
113913
|
-
result.registerNode(
|
|
113914
|
-
result.registerNode(
|
|
113915
|
-
result.registerNode(
|
|
113916
|
-
result.registerNode(
|
|
113917
|
-
result.registerNode(
|
|
113918
|
-
result.registerNode(
|
|
114263
|
+
result.registerNode(_ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode);
|
|
114264
|
+
result.registerNode(_ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode);
|
|
114265
|
+
result.registerNode(_ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode);
|
|
114266
|
+
result.registerNode(_ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_88__.SelectNode);
|
|
114267
|
+
result.registerNode(_ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_93__.SubheaderNode);
|
|
114268
|
+
result.registerNode(_ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_94__.SupNode);
|
|
114269
|
+
result.registerNode(_ElementProcessors_Typography_Nobr_NobrNode__WEBPACK_IMPORTED_MODULE_95__.NobrNode);
|
|
114270
|
+
result.registerNode(_ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_92__.SubNode);
|
|
114271
|
+
result.registerNode(_ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode);
|
|
114272
|
+
result.registerNode(_ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode);
|
|
113919
114273
|
result.registerNode(_ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_27__.DefaultContentNode);
|
|
113920
|
-
result.registerNode(
|
|
113921
|
-
result.registerNode(
|
|
113922
|
-
result.registerNode(
|
|
113923
|
-
result.registerNode(
|
|
113924
|
-
result.registerNode(
|
|
113925
|
-
result.registerNode(
|
|
113926
|
-
result.registerNode(
|
|
113927
|
-
result.registerNode(
|
|
113928
|
-
result.registerNode(
|
|
113929
|
-
result.registerNode(
|
|
113930
|
-
result.registerNode(
|
|
113931
|
-
result.registerNode(
|
|
113932
|
-
result.registerNode(
|
|
113933
|
-
result.registerNode(
|
|
113934
|
-
result.registerNode(
|
|
113935
|
-
result.registerNode(
|
|
113936
|
-
result.registerNode(
|
|
113937
|
-
result.registerNode(
|
|
113938
|
-
result.registerNode(
|
|
113939
|
-
result.registerNode(
|
|
113940
|
-
result.registerNode(
|
|
113941
|
-
result.registerNode(
|
|
113942
|
-
result.registerNode(
|
|
113943
|
-
result.registerNode(
|
|
113944
|
-
result.registerNode(
|
|
113945
|
-
result.registerNode(
|
|
113946
|
-
result.registerNode(
|
|
113947
|
-
result.registerNode(
|
|
113948
|
-
result.registerNode(
|
|
113949
|
-
result.registerNode(
|
|
114274
|
+
result.registerNode(_ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode);
|
|
114275
|
+
result.registerNode(_ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode);
|
|
114276
|
+
result.registerNode(_ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_102__.TextAreaNode);
|
|
114277
|
+
result.registerNode(_ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_109__.PopupTextAreaNode);
|
|
114278
|
+
result.registerNode(_ElementProcessors_ValueEditors_CustomSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_28__.DiadocSuggestComboBoxNode);
|
|
114279
|
+
result.registerNode(_ElementProcessors_ValueEditors_CustomSuggestComboBox_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.CustomSuggestComboBoxNode);
|
|
114280
|
+
result.registerNode(_ElementProcessors_ValueEditors_CustomSuggestComboBox_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_30__.ContractorsSuggestComboBoxNode);
|
|
114281
|
+
result.registerNode(_ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxNode__WEBPACK_IMPORTED_MODULE_129__.RelativesComboBoxNode);
|
|
114282
|
+
result.registerNode(_ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_89__.SortRadioGroupNode);
|
|
114283
|
+
result.registerNode(_ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_31__.EntityNode);
|
|
114284
|
+
result.registerNode(_ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_85__.RadioNode);
|
|
114285
|
+
result.registerNode(_ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_91__.StrongNode);
|
|
114286
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_42__.FilterInputNode);
|
|
114287
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_41__.FilterDateRangeNode);
|
|
114288
|
+
result.registerNode(_ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode);
|
|
114289
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_43__.FilterListNode);
|
|
114290
|
+
result.registerNode(_ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_105__.ValueLengthNode);
|
|
114291
|
+
result.registerNode(_ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode);
|
|
114292
|
+
result.registerNode(_ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_103__.UnitItemNode);
|
|
114293
|
+
result.registerNode(_ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode);
|
|
114294
|
+
result.registerNode(_ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_83__.PencilNode);
|
|
114295
|
+
result.registerNode(_ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_106__.VisibilityBlockNode);
|
|
114296
|
+
result.registerNode(_ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_104__.UnitListNode);
|
|
114297
|
+
result.registerNode(_ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__.ErrorBlockNode);
|
|
114298
|
+
result.registerNode(_ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormNode);
|
|
114299
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_75__.ModalFormCancelNode);
|
|
114300
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_76__.ModalFormConfirmNode);
|
|
114301
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormRemove_ModalFormRemoveNode__WEBPACK_IMPORTED_MODULE_78__.ModalFormRemoveNode);
|
|
114302
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_77__.ModalFormLabelNode);
|
|
114303
|
+
result.registerNode(_ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_71__.BodyNode);
|
|
114304
|
+
result.registerNode(_ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_79__.MultilineFieldNode);
|
|
114305
|
+
result.registerNode(_ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_87__.RemoveRowButtonNode);
|
|
113950
114306
|
result.registerNode(_ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_16__.ButtonNode);
|
|
113951
114307
|
result.registerNode(_ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_17__.DownloadExcelButtonNode);
|
|
113952
114308
|
result.registerNode(_ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_18__.DropDownButtonLoadExcelNode);
|
|
113953
|
-
result.registerNode(
|
|
113954
|
-
result.registerNode(
|
|
113955
|
-
result.registerNode(
|
|
114309
|
+
result.registerNode(_ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_73__.FooterNode);
|
|
114310
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode);
|
|
114311
|
+
result.registerNode(_ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_100__.TableCellNode);
|
|
113956
114312
|
result.registerNode(_ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode);
|
|
113957
114313
|
result.registerNode(_ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode);
|
|
113958
114314
|
result.registerNode(_ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode);
|
|
@@ -113962,31 +114318,31 @@ function registerDefaultSugarNodes(result) {
|
|
|
113962
114318
|
result.registerNode(_ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode);
|
|
113963
114319
|
result.registerNode(_ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode);
|
|
113964
114320
|
result.registerNode(_ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node);
|
|
113965
|
-
result.registerNode(
|
|
113966
|
-
result.registerNode(
|
|
113967
|
-
result.registerNode(
|
|
113968
|
-
result.registerNode(
|
|
113969
|
-
result.registerNode(
|
|
113970
|
-
result.registerNode(
|
|
113971
|
-
result.registerNode(
|
|
113972
|
-
result.registerNode(
|
|
113973
|
-
result.registerNode(
|
|
113974
|
-
result.registerNode(
|
|
113975
|
-
result.registerNode(
|
|
113976
|
-
result.registerNode(
|
|
113977
|
-
result.registerNode(
|
|
113978
|
-
result.registerNode(
|
|
113979
|
-
result.registerNode(
|
|
113980
|
-
result.registerNode(
|
|
113981
|
-
result.registerNode(
|
|
113982
|
-
result.registerNode(
|
|
113983
|
-
result.registerNode(
|
|
113984
|
-
result.registerNode(
|
|
113985
|
-
result.registerNode(
|
|
113986
|
-
result.registerNode(
|
|
114321
|
+
result.registerNode(_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_82__.PageNode);
|
|
114322
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_112__.FixedTabsNode);
|
|
114323
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_112__.FixedTabNode);
|
|
114324
|
+
result.registerNode(_ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_113__.MultipleNode);
|
|
114325
|
+
result.registerNode(_ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_114__.ExcelPastePanelNode);
|
|
114326
|
+
result.registerNode(_ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_115__.ReferencedFieldsNode);
|
|
114327
|
+
result.registerNode(_ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_116__.UserPicklistNode);
|
|
114328
|
+
result.registerNode(_ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_117__.TaxRebateNode);
|
|
114329
|
+
result.registerNode(_ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_118__.BannerNode);
|
|
114330
|
+
result.registerNode(_ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_122__.DateViewNode);
|
|
114331
|
+
result.registerNode(_ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_124__.KebabNode);
|
|
114332
|
+
result.registerNode(_ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_125__.InfoBlockNode);
|
|
114333
|
+
result.registerNode(_ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_126__.SelectAllCheckboxNode);
|
|
114334
|
+
result.registerNode(_ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_130__.SelectCheckboxNode);
|
|
114335
|
+
result.registerNode(_ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_131__.InstanceNumberNode);
|
|
114336
|
+
result.registerNode(_ElementProcessors_Layout_OptionalBlock_OptionalBlockNode__WEBPACK_IMPORTED_MODULE_132__.OptionalBlockNode);
|
|
114337
|
+
result.registerNode(_ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateNode__WEBPACK_IMPORTED_MODULE_135__.EmptyTemplateNode);
|
|
114338
|
+
result.registerNode(_ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_136__.AggregationQueryNode);
|
|
114339
|
+
result.registerNode(_ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_136__.AggregationQuerySelectNode);
|
|
114340
|
+
result.registerNode(_ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_136__.AggregationQueryContentNode);
|
|
114341
|
+
result.registerNode(_ElementProcessors_MultiControls_ContextVar_ExprEvalNode__WEBPACK_IMPORTED_MODULE_137__.ExprEvalNode);
|
|
114342
|
+
result.registerNode(_ElementProcessors_ValueViewers_Pluralize_PluralizeNode__WEBPACK_IMPORTED_MODULE_138__.PluralizeNode);
|
|
113987
114343
|
}
|
|
113988
114344
|
function createDefaultSugarSerializer() {
|
|
113989
|
-
const result = new
|
|
114345
|
+
const result = new _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_111__.SugarSerializer({
|
|
113990
114346
|
unknownProperties: "error"
|
|
113991
114347
|
});
|
|
113992
114348
|
registerDefaultSugarNodes(result);
|
|
@@ -113996,10 +114352,10 @@ function getAllSugarValidationNodeClasses() {
|
|
|
113996
114352
|
return [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TypeNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.CustomValidationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.PatternTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.EnumerationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.AttachmentsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.LengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MinlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TotaldigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.IntegerdigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.FractiondigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ValueEqlAutoValueTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.DigestcheckTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MininclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxinclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MinExclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxExclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ForcedTypeChecksNode];
|
|
113997
114353
|
}
|
|
113998
114354
|
function getAllSugarNodeClasses() {
|
|
113999
|
-
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_99__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_94__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_94__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_94__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_31__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_32__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_69__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_14__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_15__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_16__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_17__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_18__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_19__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_20__.CheckboxNode, _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_21__.ToggleNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_22__.ChoiceNode, _ElementProcessors_ControlFlow_JoinBlock_JoinBlockNode__WEBPACK_IMPORTED_MODULE_131__.JoinBlockNode, _ElementProcessors_ControlFlow_JoinBlock_JoinItemNode__WEBPACK_IMPORTED_MODULE_132__.JoinItemNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_23__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_24__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_95__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_25__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_26__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_28__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_29__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_30__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_38__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_39__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_40__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_41__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_42__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_43__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_71__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_48__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_44__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_49__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_50__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_51__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_53__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_52__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_55__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_54__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_56__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_57__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_58__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_60__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_61__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_62__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_63__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_65__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_67__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_64__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_68__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_33__.MenuNode, _ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_70__.ErrorBlockNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormRemove_ModalFormRemoveNode__WEBPACK_IMPORTED_MODULE_76__.ModalFormRemoveNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_75__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_72__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_77__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_78__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_79__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_80__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_47__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_81__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_82__.PicklistNode, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_126__.TreePicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_83__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_34__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_85__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_35__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_36__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_86__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_96__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_87__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_84__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_88__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_97__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_89__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_91__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_90__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_92__.SupNode, _ElementProcessors_Typography_Nobr_NobrNode__WEBPACK_IMPORTED_MODULE_93__.NobrNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_100__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_107__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_101__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_102__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_103__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_37__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_104__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_105__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_106__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_30__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_30__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_67__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_30__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_66__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_118__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_117__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_119__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_59__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_59__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_59__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_96__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_96__.SimpleTableColumnNode, _ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode, _ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_97__.StickyTableMultilineNode, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_8__.HeaderPanelNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonNode, _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_121__.ActionNode, _ElementProcessors_MultiControls_Tabs_TabsNode__WEBPACK_IMPORTED_MODULE_7__.TabsNode, _ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode, _ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode, _ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_110__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_110__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_111__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_112__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_113__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_114__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_115__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_116__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_120__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_122__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_123__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_124__.SelectAllCheckboxNode, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_128__.SelectCheckboxNode, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_129__.InstanceNumberNode, _ElementProcessors_Layout_OptionalBlock_OptionalBlockNode__WEBPACK_IMPORTED_MODULE_130__.OptionalBlockNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_134__.AggregationQueryNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_134__.AggregationQuerySelectNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_134__.AggregationQueryContentNode, _ElementProcessors_MultiControls_ContextVar_ExprEvalNode__WEBPACK_IMPORTED_MODULE_135__.ExprEvalNode];
|
|
114355
|
+
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_101__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_96__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_96__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_96__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_33__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_34__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_71__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_14__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_15__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_16__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_17__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_18__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_19__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_20__.CheckboxNode, _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_21__.ToggleNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_22__.ChoiceNode, _ElementProcessors_ControlFlow_JoinBlock_JoinBlockNode__WEBPACK_IMPORTED_MODULE_133__.JoinBlockNode, _ElementProcessors_ControlFlow_JoinBlock_JoinItemNode__WEBPACK_IMPORTED_MODULE_134__.JoinItemNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_23__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_24__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_97__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_25__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_26__.DateNode, _ElementProcessors_ValueEditors_CustomSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_28__.DiadocSuggestComboBoxNode, _ElementProcessors_ValueEditors_CustomSuggestComboBox_CustomSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.CustomSuggestComboBoxNode, _ElementProcessors_ValueEditors_CustomSuggestComboBox_ContractorsSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_30__.ContractorsSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_31__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_32__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_40__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_41__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_42__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_43__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_44__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_45__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_73__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_52__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_35__.MenuNode, _ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__.ErrorBlockNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_75__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_76__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormRemove_ModalFormRemoveNode__WEBPACK_IMPORTED_MODULE_78__.ModalFormRemoveNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_77__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_79__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_80__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_81__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_82__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_83__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_84__.PicklistNode, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_128__.TreePicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_85__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_36__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_87__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_37__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_38__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_88__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_98__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_89__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_86__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_90__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_99__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_91__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_93__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_92__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_94__.SupNode, _ElementProcessors_Typography_Nobr_NobrNode__WEBPACK_IMPORTED_MODULE_95__.NobrNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_102__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_109__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_103__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_104__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_105__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_39__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_106__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_107__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_108__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_32__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_32__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_32__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_120__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_119__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_121__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_98__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_98__.SimpleTableColumnNode, _ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode, _ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_99__.StickyTableMultilineNode, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_8__.HeaderPanelNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonNode, _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_123__.ActionNode, _ElementProcessors_MultiControls_Tabs_TabsNode__WEBPACK_IMPORTED_MODULE_7__.TabsNode, _ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode, _ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode, _ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_112__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_112__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_113__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_114__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_115__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_116__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_117__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_118__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_122__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_124__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_125__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_126__.SelectAllCheckboxNode, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_130__.SelectCheckboxNode, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_131__.InstanceNumberNode, _ElementProcessors_Layout_OptionalBlock_OptionalBlockNode__WEBPACK_IMPORTED_MODULE_132__.OptionalBlockNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_136__.AggregationQueryNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_136__.AggregationQuerySelectNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_136__.AggregationQueryContentNode, _ElementProcessors_MultiControls_ContextVar_ExprEvalNode__WEBPACK_IMPORTED_MODULE_137__.ExprEvalNode];
|
|
114000
114356
|
}
|
|
114001
114357
|
function getAllSchemaRngNodeClasses() {
|
|
114002
|
-
return [
|
|
114358
|
+
return [_common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.SchemaRngElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.SchemaRngElementChoiceElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.SchemaRngInnerText, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.SchemaRngAttribute, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.SchemaRngType, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.MaxinclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.MininclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.MaxExclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.MinExclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.FractiondigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.IntegerdigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.TotaldigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.MaxlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.MinlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.LengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.EnumerationTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_127__.PatternTypeCheck];
|
|
114003
114359
|
}
|
|
114004
114360
|
|
|
114005
114361
|
/***/ }),
|