@kontur.candy/generator 5.33.0-ss-doc-import.0 → 5.34.0-excel-efs.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 +700 -420
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2843,6 +2843,24 @@ webpackContext.id = "./Generator/src/generators/markupGenerator/ElementProcessor
|
|
|
2843
2843
|
|
|
2844
2844
|
/***/ }),
|
|
2845
2845
|
|
|
2846
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle sync recursive .md$":
|
|
2847
|
+
/*!***************************************************************************************************!*\
|
|
2848
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ sync .md$ ***!
|
|
2849
|
+
\***************************************************************************************************/
|
|
2850
|
+
/***/ ((module) => {
|
|
2851
|
+
|
|
2852
|
+
function webpackEmptyContext(req) {
|
|
2853
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
2854
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
2855
|
+
throw e;
|
|
2856
|
+
}
|
|
2857
|
+
webpackEmptyContext.keys = () => ([]);
|
|
2858
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
2859
|
+
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle sync recursive .md$";
|
|
2860
|
+
module.exports = webpackEmptyContext;
|
|
2861
|
+
|
|
2862
|
+
/***/ }),
|
|
2863
|
+
|
|
2846
2864
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea sync recursive .md$":
|
|
2847
2865
|
/*!**********************************************************************************************************!*\
|
|
2848
2866
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/ sync .md$ ***!
|
|
@@ -59087,6 +59105,18 @@ class KCLangRuntimeUtils {
|
|
|
59087
59105
|
const result = _Engine_src_Engine_ValidationHelper__WEBPACK_IMPORTED_MODULE_1__.ValidationHelper.isSnils(normalizedSnils);
|
|
59088
59106
|
return result;
|
|
59089
59107
|
}
|
|
59108
|
+
isRegNumSfr(valueSelector, path) {
|
|
59109
|
+
if (valueSelector == undefined) {
|
|
59110
|
+
return undefined;
|
|
59111
|
+
}
|
|
59112
|
+
const value = valueSelector(path);
|
|
59113
|
+
const normalizedRegNum = value === null || value === void 0 ? void 0 : value.replace(/[^0-9]/g, "");
|
|
59114
|
+
if ((0,_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.isNullOrWhiteSpace)(normalizedRegNum)) {
|
|
59115
|
+
return false;
|
|
59116
|
+
}
|
|
59117
|
+
const result = _Engine_src_Engine_ValidationHelper__WEBPACK_IMPORTED_MODULE_1__.ValidationHelper.isRegNumSfr(normalizedRegNum);
|
|
59118
|
+
return result;
|
|
59119
|
+
}
|
|
59090
59120
|
isInn(valueSelector, path) {
|
|
59091
59121
|
if (valueSelector == undefined) {
|
|
59092
59122
|
return undefined;
|
|
@@ -60348,6 +60378,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
60348
60378
|
/* harmony export */ WellKnownDirectories: () => (/* binding */ WellKnownDirectories)
|
|
60349
60379
|
/* harmony export */ });
|
|
60350
60380
|
class WellKnownDirectories {}
|
|
60381
|
+
WellKnownDirectories.FormsDirectory = "forms";
|
|
60351
60382
|
WellKnownDirectories.CandySubdirectoryName = "Candy";
|
|
60352
60383
|
WellKnownDirectories.FormJsonFileName = "form.json";
|
|
60353
60384
|
WellKnownDirectories.GeneratedFormSubdirectory = "form";
|
|
@@ -60982,6 +61013,33 @@ class ValidationHelper {
|
|
|
60982
61013
|
}
|
|
60983
61014
|
return false;
|
|
60984
61015
|
}
|
|
61016
|
+
static isRegNumSfr(regNum) {
|
|
61017
|
+
if (!regNum.length) {
|
|
61018
|
+
return false;
|
|
61019
|
+
} else if (/[^0-9]/.test(regNum)) {
|
|
61020
|
+
return false; // может состоять только из цифр
|
|
61021
|
+
} else if (regNum.length !== 10) {
|
|
61022
|
+
return false; // может состоять только из 10 цифр
|
|
61023
|
+
} else if (regNum.startsWith("0")) {
|
|
61024
|
+
return false; // не может начинаться с лидирующего нуля
|
|
61025
|
+
} else {
|
|
61026
|
+
const coefs = [2, 1, 2, 1, 2, 1, 2, 1, 2, 1];
|
|
61027
|
+
let sum = 0;
|
|
61028
|
+
for (let i = 0; i < 10; i++) {
|
|
61029
|
+
const currentDigit = regNum[i];
|
|
61030
|
+
if ((0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_0__.isNotNullOrEmpty)(currentDigit)) {
|
|
61031
|
+
const typedCurrentDigit = parseInt(currentDigit, 10);
|
|
61032
|
+
// @ts-ignore
|
|
61033
|
+
const coefMul = typedCurrentDigit * coefs[i];
|
|
61034
|
+
sum += coefMul > 9 ? coefMul - 9 : coefMul;
|
|
61035
|
+
}
|
|
61036
|
+
}
|
|
61037
|
+
if (sum % 10 === 0) {
|
|
61038
|
+
return true;
|
|
61039
|
+
}
|
|
61040
|
+
}
|
|
61041
|
+
return false;
|
|
61042
|
+
}
|
|
60985
61043
|
static isKpp(str) {
|
|
60986
61044
|
if (str.length !== 9) {
|
|
60987
61045
|
return false;
|
|
@@ -61315,22 +61373,7 @@ function addYears(date, amount) {
|
|
|
61315
61373
|
return date;
|
|
61316
61374
|
}
|
|
61317
61375
|
function dateToString(date, format) {
|
|
61318
|
-
|
|
61319
|
-
const months = {
|
|
61320
|
-
"1": "января",
|
|
61321
|
-
"2": "февраля",
|
|
61322
|
-
"3": "марта",
|
|
61323
|
-
"4": "апреля",
|
|
61324
|
-
"5": "мая",
|
|
61325
|
-
"6": "июня",
|
|
61326
|
-
"7": "июля",
|
|
61327
|
-
"8": "августа",
|
|
61328
|
-
"9": "сентября",
|
|
61329
|
-
"10": "октября",
|
|
61330
|
-
"11": "ноября",
|
|
61331
|
-
"12": "декабря"
|
|
61332
|
-
};
|
|
61333
|
-
return format.replace("HH", date.getHours().toString().padStart(2, "0")).replace("mm", date.getMinutes().toString().padStart(2, "0")).replace("dd", date.getDate().toString().padStart(2, "0")).replace("d", date.getDate().toString()).replace("MMMM", (_months = months[date.getMonth() + 1]) !== null && _months !== void 0 ? _months : "").replace("MM", (date.getMonth() + 1).toString().padStart(2, "0")).replace("yyyy", date.getFullYear().toString());
|
|
61376
|
+
return format.replace("dd", date.getDate().toString().padStart(2, "0")).replace("MM", (date.getMonth() + 1).toString().padStart(2, "0")).replace("yyyy", date.getFullYear().toString());
|
|
61334
61377
|
}
|
|
61335
61378
|
function isDate(date) {
|
|
61336
61379
|
return date instanceof Date && !isNaN(date.getTime());
|
|
@@ -62045,6 +62088,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
62045
62088
|
/* harmony export */ hashSetKCLangFunction: () => (/* binding */ hashSetKCLangFunction),
|
|
62046
62089
|
/* harmony export */ isDateInMonthKCLangFunction: () => (/* binding */ isDateInMonthKCLangFunction),
|
|
62047
62090
|
/* harmony export */ isInnKCLangFunction: () => (/* binding */ isInnKCLangFunction),
|
|
62091
|
+
/* harmony export */ isRegNumSfrKCLangFunction: () => (/* binding */ isRegNumSfrKCLangFunction),
|
|
62048
62092
|
/* harmony export */ isSnilsKCLangFunction: () => (/* binding */ isSnilsKCLangFunction),
|
|
62049
62093
|
/* harmony export */ isValidAccountNumberKCLangFunction: () => (/* binding */ isValidAccountNumberKCLangFunction),
|
|
62050
62094
|
/* harmony export */ isValidMirCardNumberKCLangFunction: () => (/* binding */ isValidMirCardNumberKCLangFunction),
|
|
@@ -62213,13 +62257,32 @@ const isSnilsKCLangFunction = params => {
|
|
|
62213
62257
|
}
|
|
62214
62258
|
throw new Error("Invalid parameters!");
|
|
62215
62259
|
};
|
|
62216
|
-
const
|
|
62260
|
+
const isRegNumSfrKCLangFunction = params => {
|
|
62217
62261
|
var _params$11;
|
|
62218
62262
|
const errors = Array.from(validateParams(params, 1));
|
|
62219
62263
|
if (errors.length > 0) {
|
|
62220
62264
|
return new FunctionValidationErrorCollection(errors);
|
|
62221
62265
|
}
|
|
62222
62266
|
const argumentExpr = (_params$11 = params[0]) === null || _params$11 === void 0 ? void 0 : _params$11.value;
|
|
62267
|
+
if ((argumentExpr === null || argumentExpr === void 0 ? void 0 : argumentExpr.type) === "argument") {
|
|
62268
|
+
const param = argumentExpr.select;
|
|
62269
|
+
if (param == undefined) {
|
|
62270
|
+
throw new Error("Unexpected error!");
|
|
62271
|
+
}
|
|
62272
|
+
return {
|
|
62273
|
+
type: "isRegNumSfr",
|
|
62274
|
+
select: param
|
|
62275
|
+
};
|
|
62276
|
+
}
|
|
62277
|
+
throw new Error("Invalid parameters!");
|
|
62278
|
+
};
|
|
62279
|
+
const isInnKCLangFunction = params => {
|
|
62280
|
+
var _params$12;
|
|
62281
|
+
const errors = Array.from(validateParams(params, 1));
|
|
62282
|
+
if (errors.length > 0) {
|
|
62283
|
+
return new FunctionValidationErrorCollection(errors);
|
|
62284
|
+
}
|
|
62285
|
+
const argumentExpr = (_params$12 = params[0]) === null || _params$12 === void 0 ? void 0 : _params$12.value;
|
|
62223
62286
|
if ((argumentExpr === null || argumentExpr === void 0 ? void 0 : argumentExpr.type) === "argument") {
|
|
62224
62287
|
const param = argumentExpr.select;
|
|
62225
62288
|
if (param == undefined) {
|
|
@@ -62243,12 +62306,12 @@ const arrayKCLangFunction = params => {
|
|
|
62243
62306
|
};
|
|
62244
62307
|
};
|
|
62245
62308
|
const firstOrDefaultKCLangFunction = params => {
|
|
62246
|
-
var _params$
|
|
62309
|
+
var _params$13;
|
|
62247
62310
|
const errors = Array.from(validateParams(params, 1));
|
|
62248
62311
|
if (errors.length > 0) {
|
|
62249
62312
|
return new FunctionValidationErrorCollection(errors);
|
|
62250
62313
|
}
|
|
62251
|
-
const expr = (_params$
|
|
62314
|
+
const expr = (_params$13 = params[0]) === null || _params$13 === void 0 ? void 0 : _params$13.value;
|
|
62252
62315
|
if (expr === undefined) {
|
|
62253
62316
|
throw new Error("first param in firstOrDefault must be defined");
|
|
62254
62317
|
}
|
|
@@ -62258,12 +62321,12 @@ const firstOrDefaultKCLangFunction = params => {
|
|
|
62258
62321
|
};
|
|
62259
62322
|
};
|
|
62260
62323
|
const hashSetKCLangFunction = params => {
|
|
62261
|
-
var _params$
|
|
62324
|
+
var _params$14;
|
|
62262
62325
|
const errors = Array.from(validateParams(params, 1));
|
|
62263
62326
|
if (errors.length > 0) {
|
|
62264
62327
|
return new FunctionValidationErrorCollection(errors);
|
|
62265
62328
|
}
|
|
62266
|
-
const expr = (_params$
|
|
62329
|
+
const expr = (_params$14 = params[0]) === null || _params$14 === void 0 ? void 0 : _params$14.value;
|
|
62267
62330
|
if (expr === undefined) {
|
|
62268
62331
|
throw new Error("Parameter in hashSet() must be defined");
|
|
62269
62332
|
}
|
|
@@ -62273,12 +62336,12 @@ const hashSetKCLangFunction = params => {
|
|
|
62273
62336
|
};
|
|
62274
62337
|
};
|
|
62275
62338
|
const noDepsKCLangFunction = params => {
|
|
62276
|
-
var _params$
|
|
62339
|
+
var _params$15;
|
|
62277
62340
|
const errors = Array.from(validateParams(params, 1));
|
|
62278
62341
|
if (errors.length > 0) {
|
|
62279
62342
|
return new FunctionValidationErrorCollection(errors);
|
|
62280
62343
|
}
|
|
62281
|
-
const expr = (_params$
|
|
62344
|
+
const expr = (_params$15 = params[0]) === null || _params$15 === void 0 ? void 0 : _params$15.value;
|
|
62282
62345
|
if (expr === undefined) {
|
|
62283
62346
|
throw new Error("first param in nodeps must be defined");
|
|
62284
62347
|
}
|
|
@@ -62288,15 +62351,15 @@ const noDepsKCLangFunction = params => {
|
|
|
62288
62351
|
};
|
|
62289
62352
|
};
|
|
62290
62353
|
const getPicklistValuesKCLangFunction = params => {
|
|
62291
|
-
var _params$
|
|
62354
|
+
var _params$16, _params$17, _params$18, _params$19;
|
|
62292
62355
|
const errors = Array.from(validateParams(params, 4));
|
|
62293
62356
|
if (errors.length > 0) {
|
|
62294
62357
|
return new FunctionValidationErrorCollection(errors);
|
|
62295
62358
|
}
|
|
62296
|
-
const gId = (_params$
|
|
62297
|
-
const filterColumnParam = (_params$
|
|
62298
|
-
const filterKeyParam = (_params$
|
|
62299
|
-
const resultColumn = (_params$
|
|
62359
|
+
const gId = (_params$16 = params[0]) === null || _params$16 === void 0 ? void 0 : _params$16.value;
|
|
62360
|
+
const filterColumnParam = (_params$17 = params[1]) === null || _params$17 === void 0 ? void 0 : _params$17.value;
|
|
62361
|
+
const filterKeyParam = (_params$18 = params[2]) === null || _params$18 === void 0 ? void 0 : _params$18.value;
|
|
62362
|
+
const resultColumn = (_params$19 = params[3]) === null || _params$19 === void 0 ? void 0 : _params$19.value;
|
|
62300
62363
|
if ((filterColumnParam === null || filterColumnParam === void 0 ? void 0 : filterColumnParam.type) !== "array") {
|
|
62301
62364
|
throw new Error("second param in getPicklistValues must be wrapped in array( ... )");
|
|
62302
62365
|
}
|
|
@@ -62318,12 +62381,12 @@ const getPicklistValuesKCLangFunction = params => {
|
|
|
62318
62381
|
};
|
|
62319
62382
|
};
|
|
62320
62383
|
const isValidMirCardNumberKCLangFunction = params => {
|
|
62321
|
-
var _params$
|
|
62384
|
+
var _params$20;
|
|
62322
62385
|
const errors = Array.from(validateParams(params, 1));
|
|
62323
62386
|
if (errors.length > 0) {
|
|
62324
62387
|
return new FunctionValidationErrorCollection(errors);
|
|
62325
62388
|
}
|
|
62326
|
-
const argumentExpr = (_params$
|
|
62389
|
+
const argumentExpr = (_params$20 = params[0]) === null || _params$20 === void 0 ? void 0 : _params$20.value;
|
|
62327
62390
|
if ((argumentExpr === null || argumentExpr === void 0 ? void 0 : argumentExpr.type) === "argument") {
|
|
62328
62391
|
const param = argumentExpr.select;
|
|
62329
62392
|
if (param == undefined) {
|
|
@@ -62337,13 +62400,13 @@ const isValidMirCardNumberKCLangFunction = params => {
|
|
|
62337
62400
|
throw new Error("Invalid parameters!");
|
|
62338
62401
|
};
|
|
62339
62402
|
const isValidAccountNumberKCLangFunction = params => {
|
|
62340
|
-
var _params$
|
|
62403
|
+
var _params$21, _params$22;
|
|
62341
62404
|
const errors = Array.from(validateParams(params, 2));
|
|
62342
62405
|
if (errors.length > 0) {
|
|
62343
62406
|
return new FunctionValidationErrorCollection(errors);
|
|
62344
62407
|
}
|
|
62345
|
-
const bik = (_params$
|
|
62346
|
-
const account = (_params$
|
|
62408
|
+
const bik = (_params$21 = params[0]) === null || _params$21 === void 0 ? void 0 : _params$21.value;
|
|
62409
|
+
const account = (_params$22 = params[1]) === null || _params$22 === void 0 ? void 0 : _params$22.value;
|
|
62347
62410
|
if ((bik === null || bik === void 0 ? void 0 : bik.type) === "argument" && (account === null || account === void 0 ? void 0 : account.type) === "argument") {
|
|
62348
62411
|
const bikValue = bik.select;
|
|
62349
62412
|
const accountValue = account.select;
|
|
@@ -62359,12 +62422,12 @@ const isValidAccountNumberKCLangFunction = params => {
|
|
|
62359
62422
|
throw new Error("Invalid parameters!");
|
|
62360
62423
|
};
|
|
62361
62424
|
const countKCLangFunction = params => {
|
|
62362
|
-
var _params$
|
|
62425
|
+
var _params$23;
|
|
62363
62426
|
const errors = Array.from(validateParams(params, 1));
|
|
62364
62427
|
if (errors.length > 0) {
|
|
62365
62428
|
return new FunctionValidationErrorCollection(errors);
|
|
62366
62429
|
}
|
|
62367
|
-
const expr = (_params$
|
|
62430
|
+
const expr = (_params$23 = params[0]) === null || _params$23 === void 0 ? void 0 : _params$23.value;
|
|
62368
62431
|
if ((expr === null || expr === void 0 ? void 0 : expr.type) === "argument") {
|
|
62369
62432
|
const param = expr.select;
|
|
62370
62433
|
if (param == undefined) {
|
|
@@ -62378,12 +62441,12 @@ const countKCLangFunction = params => {
|
|
|
62378
62441
|
throw new Error("Invalid parameters!");
|
|
62379
62442
|
};
|
|
62380
62443
|
const sumKCLangFunction = params => {
|
|
62381
|
-
var _params$
|
|
62444
|
+
var _params$24;
|
|
62382
62445
|
const errors = Array.from(validateParams(params, 1));
|
|
62383
62446
|
if (errors.length > 0) {
|
|
62384
62447
|
return new FunctionValidationErrorCollection(errors);
|
|
62385
62448
|
}
|
|
62386
|
-
const argumentExpr = (_params$
|
|
62449
|
+
const argumentExpr = (_params$24 = params[0]) === null || _params$24 === void 0 ? void 0 : _params$24.value;
|
|
62387
62450
|
if ((argumentExpr === null || argumentExpr === void 0 ? void 0 : argumentExpr.type) === "argument") {
|
|
62388
62451
|
const param = argumentExpr.select;
|
|
62389
62452
|
if (param == undefined) {
|
|
@@ -62407,14 +62470,14 @@ const sumKCLangFunction = params => {
|
|
|
62407
62470
|
throw new Error("Invalid parameters!");
|
|
62408
62471
|
};
|
|
62409
62472
|
const substringKCLangFunction = params => {
|
|
62410
|
-
var _params$
|
|
62473
|
+
var _params$25, _params$26, _params$27;
|
|
62411
62474
|
const errors = Array.from(validateParams(params, 2, 1));
|
|
62412
62475
|
if (errors.length > 0) {
|
|
62413
62476
|
return new FunctionValidationErrorCollection(errors);
|
|
62414
62477
|
}
|
|
62415
|
-
const exprParam = (_params$
|
|
62416
|
-
const startParam = (_params$
|
|
62417
|
-
const lengthParam = (_params$
|
|
62478
|
+
const exprParam = (_params$25 = params[0]) === null || _params$25 === void 0 ? void 0 : _params$25.value;
|
|
62479
|
+
const startParam = (_params$26 = params[1]) === null || _params$26 === void 0 ? void 0 : _params$26.value;
|
|
62480
|
+
const lengthParam = (_params$27 = params[2]) === null || _params$27 === void 0 ? void 0 : _params$27.value;
|
|
62418
62481
|
if (exprParam == undefined) {
|
|
62419
62482
|
throw new Error("Unexpected error!");
|
|
62420
62483
|
}
|
|
@@ -62432,14 +62495,14 @@ const substringKCLangFunction = params => {
|
|
|
62432
62495
|
};
|
|
62433
62496
|
};
|
|
62434
62497
|
const groupSumKCLangFunction = params => {
|
|
62435
|
-
var _params$
|
|
62498
|
+
var _params$28, _params$29, _params$30;
|
|
62436
62499
|
const errors = Array.from(validateParams(params, 3));
|
|
62437
62500
|
if (errors.length > 0) {
|
|
62438
62501
|
return new FunctionValidationErrorCollection(errors);
|
|
62439
62502
|
}
|
|
62440
|
-
const targetKeysParam = (_params$
|
|
62441
|
-
const sourceKeyPathParam = (_params$
|
|
62442
|
-
const sourceValuePathParam = (_params$
|
|
62503
|
+
const targetKeysParam = (_params$28 = params[0]) === null || _params$28 === void 0 ? void 0 : _params$28.value;
|
|
62504
|
+
const sourceKeyPathParam = (_params$29 = params[1]) === null || _params$29 === void 0 ? void 0 : _params$29.value;
|
|
62505
|
+
const sourceValuePathParam = (_params$30 = params[2]) === null || _params$30 === void 0 ? void 0 : _params$30.value;
|
|
62443
62506
|
if (targetKeysParam == undefined || (sourceKeyPathParam === null || sourceKeyPathParam === void 0 ? void 0 : sourceKeyPathParam.type) !== "argument" || (sourceValuePathParam === null || sourceValuePathParam === void 0 ? void 0 : sourceValuePathParam.type) !== "argument") {
|
|
62444
62507
|
const argumentsValidationError = new ArgumentValidationError("Expected 3 paths as arguments: targetKeys, sourceKeyPath, sourceValuePath");
|
|
62445
62508
|
return new FunctionValidationErrorCollection([argumentsValidationError]);
|
|
@@ -62456,13 +62519,13 @@ const groupSumKCLangFunction = params => {
|
|
|
62456
62519
|
};
|
|
62457
62520
|
};
|
|
62458
62521
|
const groupCountKCLangFunction = params => {
|
|
62459
|
-
var _params$
|
|
62522
|
+
var _params$31, _params$32;
|
|
62460
62523
|
const errors = Array.from(validateParams(params, 2));
|
|
62461
62524
|
if (errors.length > 0) {
|
|
62462
62525
|
return new FunctionValidationErrorCollection(errors);
|
|
62463
62526
|
}
|
|
62464
|
-
const targetKeysParam = (_params$
|
|
62465
|
-
const sourceKeyPathParam = (_params$
|
|
62527
|
+
const targetKeysParam = (_params$31 = params[0]) === null || _params$31 === void 0 ? void 0 : _params$31.value;
|
|
62528
|
+
const sourceKeyPathParam = (_params$32 = params[1]) === null || _params$32 === void 0 ? void 0 : _params$32.value;
|
|
62466
62529
|
if (targetKeysParam == undefined || (sourceKeyPathParam === null || sourceKeyPathParam === void 0 ? void 0 : sourceKeyPathParam.type) !== "argument") {
|
|
62467
62530
|
const argumentsValidationError = new ArgumentValidationError("Expected 2 paths as arguments: targetKeyPath, sourceKeyPath");
|
|
62468
62531
|
return new FunctionValidationErrorCollection([argumentsValidationError]);
|
|
@@ -62506,12 +62569,12 @@ const dateNowKCLangFunction = params => {
|
|
|
62506
62569
|
};
|
|
62507
62570
|
};
|
|
62508
62571
|
const getDaysInMonthKCLangFunction = params => {
|
|
62509
|
-
var _params$
|
|
62572
|
+
var _params$33;
|
|
62510
62573
|
const errors = Array.from(validateParams(params, 1));
|
|
62511
62574
|
if (errors.length > 0) {
|
|
62512
62575
|
return new FunctionValidationErrorCollection(errors);
|
|
62513
62576
|
}
|
|
62514
|
-
const param = (_params$
|
|
62577
|
+
const param = (_params$33 = params[0]) === null || _params$33 === void 0 ? void 0 : _params$33.value;
|
|
62515
62578
|
if (param == undefined) {
|
|
62516
62579
|
throw new Error("Unexpected error!");
|
|
62517
62580
|
}
|
|
@@ -62521,12 +62584,12 @@ const getDaysInMonthKCLangFunction = params => {
|
|
|
62521
62584
|
};
|
|
62522
62585
|
};
|
|
62523
62586
|
const getDayKCLangFunction = params => {
|
|
62524
|
-
var _params$
|
|
62587
|
+
var _params$34;
|
|
62525
62588
|
const errors = Array.from(validateParams(params, 1));
|
|
62526
62589
|
if (errors.length > 0) {
|
|
62527
62590
|
return new FunctionValidationErrorCollection(errors);
|
|
62528
62591
|
}
|
|
62529
|
-
const param = (_params$
|
|
62592
|
+
const param = (_params$34 = params[0]) === null || _params$34 === void 0 ? void 0 : _params$34.value;
|
|
62530
62593
|
if (param == undefined) {
|
|
62531
62594
|
throw new Error("Unexpected error!");
|
|
62532
62595
|
}
|
|
@@ -62536,12 +62599,12 @@ const getDayKCLangFunction = params => {
|
|
|
62536
62599
|
};
|
|
62537
62600
|
};
|
|
62538
62601
|
const getMonthKCLangFunction = params => {
|
|
62539
|
-
var _params$
|
|
62602
|
+
var _params$35;
|
|
62540
62603
|
const errors = Array.from(validateParams(params, 1));
|
|
62541
62604
|
if (errors.length > 0) {
|
|
62542
62605
|
return new FunctionValidationErrorCollection(errors);
|
|
62543
62606
|
}
|
|
62544
|
-
const param = (_params$
|
|
62607
|
+
const param = (_params$35 = params[0]) === null || _params$35 === void 0 ? void 0 : _params$35.value;
|
|
62545
62608
|
if (param == undefined) {
|
|
62546
62609
|
throw new Error("Unexpected error!");
|
|
62547
62610
|
}
|
|
@@ -62551,12 +62614,12 @@ const getMonthKCLangFunction = params => {
|
|
|
62551
62614
|
};
|
|
62552
62615
|
};
|
|
62553
62616
|
const getYearKCLangFunction = params => {
|
|
62554
|
-
var _params$
|
|
62617
|
+
var _params$36;
|
|
62555
62618
|
const errors = Array.from(validateParams(params, 1));
|
|
62556
62619
|
if (errors.length > 0) {
|
|
62557
62620
|
return new FunctionValidationErrorCollection(errors);
|
|
62558
62621
|
}
|
|
62559
|
-
const param = (_params$
|
|
62622
|
+
const param = (_params$36 = params[0]) === null || _params$36 === void 0 ? void 0 : _params$36.value;
|
|
62560
62623
|
if (param == undefined) {
|
|
62561
62624
|
throw new Error("Unexpected error!");
|
|
62562
62625
|
}
|
|
@@ -62566,12 +62629,12 @@ const getYearKCLangFunction = params => {
|
|
|
62566
62629
|
};
|
|
62567
62630
|
};
|
|
62568
62631
|
const isDateInMonthKCLangFunction = params => {
|
|
62569
|
-
var _params$
|
|
62632
|
+
var _params$37;
|
|
62570
62633
|
const errors = Array.from(validateParams(params, 1));
|
|
62571
62634
|
if (errors.length > 0) {
|
|
62572
62635
|
return new FunctionValidationErrorCollection(errors);
|
|
62573
62636
|
}
|
|
62574
|
-
const param = (_params$
|
|
62637
|
+
const param = (_params$37 = params[0]) === null || _params$37 === void 0 ? void 0 : _params$37.value;
|
|
62575
62638
|
if (param == undefined) {
|
|
62576
62639
|
throw new Error("Unexpected error!");
|
|
62577
62640
|
}
|
|
@@ -62601,13 +62664,13 @@ const differenceInDaysKCLangFunction = params => {
|
|
|
62601
62664
|
};
|
|
62602
62665
|
};
|
|
62603
62666
|
const addDaysKCLangFunction = params => {
|
|
62604
|
-
var _params$
|
|
62667
|
+
var _params$38, _params$39;
|
|
62605
62668
|
const errors = Array.from(validateParams(params, 2));
|
|
62606
62669
|
if (errors.length > 0) {
|
|
62607
62670
|
return new FunctionValidationErrorCollection(errors);
|
|
62608
62671
|
}
|
|
62609
|
-
const exprParam = (_params$
|
|
62610
|
-
const amountParam = (_params$
|
|
62672
|
+
const exprParam = (_params$38 = params[0]) === null || _params$38 === void 0 ? void 0 : _params$38.value;
|
|
62673
|
+
const amountParam = (_params$39 = params[1]) === null || _params$39 === void 0 ? void 0 : _params$39.value;
|
|
62611
62674
|
if (exprParam == undefined) {
|
|
62612
62675
|
throw new Error("Expected expression for addDays().");
|
|
62613
62676
|
}
|
|
@@ -62623,13 +62686,13 @@ const addDaysKCLangFunction = params => {
|
|
|
62623
62686
|
};
|
|
62624
62687
|
};
|
|
62625
62688
|
const addMonthsKCLangFunction = params => {
|
|
62626
|
-
var _params$
|
|
62689
|
+
var _params$40, _params$41;
|
|
62627
62690
|
const errors = Array.from(validateParams(params, 2));
|
|
62628
62691
|
if (errors.length > 0) {
|
|
62629
62692
|
return new FunctionValidationErrorCollection(errors);
|
|
62630
62693
|
}
|
|
62631
|
-
const exprParam = (_params$
|
|
62632
|
-
const amountParam = (_params$
|
|
62694
|
+
const exprParam = (_params$40 = params[0]) === null || _params$40 === void 0 ? void 0 : _params$40.value;
|
|
62695
|
+
const amountParam = (_params$41 = params[1]) === null || _params$41 === void 0 ? void 0 : _params$41.value;
|
|
62633
62696
|
if (exprParam == undefined) {
|
|
62634
62697
|
throw new Error("Expected expression for addMonths().");
|
|
62635
62698
|
}
|
|
@@ -62645,13 +62708,13 @@ const addMonthsKCLangFunction = params => {
|
|
|
62645
62708
|
};
|
|
62646
62709
|
};
|
|
62647
62710
|
const addYearsKCLangFunction = params => {
|
|
62648
|
-
var _params$
|
|
62711
|
+
var _params$42, _params$43;
|
|
62649
62712
|
const errors = Array.from(validateParams(params, 2));
|
|
62650
62713
|
if (errors.length > 0) {
|
|
62651
62714
|
return new FunctionValidationErrorCollection(errors);
|
|
62652
62715
|
}
|
|
62653
|
-
const exprParam = (_params$
|
|
62654
|
-
const amountParam = (_params$
|
|
62716
|
+
const exprParam = (_params$42 = params[0]) === null || _params$42 === void 0 ? void 0 : _params$42.value;
|
|
62717
|
+
const amountParam = (_params$43 = params[1]) === null || _params$43 === void 0 ? void 0 : _params$43.value;
|
|
62655
62718
|
if (exprParam == undefined) {
|
|
62656
62719
|
throw new Error("Expected expression for addYears().");
|
|
62657
62720
|
}
|
|
@@ -62667,13 +62730,13 @@ const addYearsKCLangFunction = params => {
|
|
|
62667
62730
|
};
|
|
62668
62731
|
};
|
|
62669
62732
|
const dateToStringKCLangFunction = params => {
|
|
62670
|
-
var _params$
|
|
62733
|
+
var _params$44, _params$45;
|
|
62671
62734
|
const errors = Array.from(validateParams(params, 1, 2));
|
|
62672
62735
|
if (errors.length > 0) {
|
|
62673
62736
|
return new FunctionValidationErrorCollection(errors);
|
|
62674
62737
|
}
|
|
62675
|
-
const exprParam = (_params$
|
|
62676
|
-
const formatParam = (_params$
|
|
62738
|
+
const exprParam = (_params$44 = params[0]) === null || _params$44 === void 0 ? void 0 : _params$44.value;
|
|
62739
|
+
const formatParam = (_params$45 = params[1]) === null || _params$45 === void 0 ? void 0 : _params$45.value;
|
|
62677
62740
|
if (exprParam == undefined) {
|
|
62678
62741
|
throw new Error("Expected expression for dateToString().");
|
|
62679
62742
|
}
|
|
@@ -62688,12 +62751,12 @@ const dateToStringKCLangFunction = params => {
|
|
|
62688
62751
|
};
|
|
62689
62752
|
};
|
|
62690
62753
|
const dateTimeKCLangFunction = params => {
|
|
62691
|
-
var _params$
|
|
62754
|
+
var _params$46;
|
|
62692
62755
|
const errors = Array.from(validateParams(params, 1));
|
|
62693
62756
|
if (errors.length > 0) {
|
|
62694
62757
|
return new FunctionValidationErrorCollection(errors);
|
|
62695
62758
|
}
|
|
62696
|
-
const param = (_params$
|
|
62759
|
+
const param = (_params$46 = params[0]) === null || _params$46 === void 0 ? void 0 : _params$46.value;
|
|
62697
62760
|
if (param == undefined) {
|
|
62698
62761
|
throw new Error("Unexpected error!");
|
|
62699
62762
|
}
|
|
@@ -62703,12 +62766,12 @@ const dateTimeKCLangFunction = params => {
|
|
|
62703
62766
|
};
|
|
62704
62767
|
};
|
|
62705
62768
|
const hasAutoFlagKCLangFunction = params => {
|
|
62706
|
-
var _params$
|
|
62769
|
+
var _params$47;
|
|
62707
62770
|
const errors = Array.from(validateParams(params, 1));
|
|
62708
62771
|
if (errors.length > 0) {
|
|
62709
62772
|
return new FunctionValidationErrorCollection(errors);
|
|
62710
62773
|
}
|
|
62711
|
-
const param = (_params$
|
|
62774
|
+
const param = (_params$47 = params[0]) === null || _params$47 === void 0 ? void 0 : _params$47.value;
|
|
62712
62775
|
if (param == undefined) {
|
|
62713
62776
|
throw new Error("Unexpected error!");
|
|
62714
62777
|
}
|
|
@@ -62752,6 +62815,7 @@ const getKCLangGlobalFunctionBuilders = () => ({
|
|
|
62752
62815
|
floor: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_2__.floorKCLangFunction],
|
|
62753
62816
|
exists: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_2__.existsKCLangFunction],
|
|
62754
62817
|
isSnils: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_2__.isSnilsKCLangFunction],
|
|
62818
|
+
isRegNumSfr: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_2__.isRegNumSfrKCLangFunction],
|
|
62755
62819
|
isInn: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_2__.isInnKCLangFunction],
|
|
62756
62820
|
firstOrDefault: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_2__.firstOrDefaultKCLangFunction],
|
|
62757
62821
|
nodeps: [_KCLangAntlrFunctions__WEBPACK_IMPORTED_MODULE_2__.noDepsKCLangFunction],
|
|
@@ -70165,6 +70229,9 @@ function traverseKCLangExpression(node, visitor) {
|
|
|
70165
70229
|
case "isSnils":
|
|
70166
70230
|
visitor.visitIsSnilsKCLangNode(node);
|
|
70167
70231
|
break;
|
|
70232
|
+
case "isRegNumSfr":
|
|
70233
|
+
visitor.visitIsRegNumSfrKCLangNode(node);
|
|
70234
|
+
break;
|
|
70168
70235
|
case "isValidAccountNumber":
|
|
70169
70236
|
visitor.visitIsValidAccountNumberNode(node);
|
|
70170
70237
|
break;
|
|
@@ -70373,6 +70440,9 @@ class DefaultKCLangExpressionVisitor {
|
|
|
70373
70440
|
visitIsSnilsKCLangNode(node) {
|
|
70374
70441
|
// default empty implementation
|
|
70375
70442
|
}
|
|
70443
|
+
visitIsRegNumSfrKCLangNode(node) {
|
|
70444
|
+
// default empty implementation
|
|
70445
|
+
}
|
|
70376
70446
|
visitIsInnKCLangNode(node) {
|
|
70377
70447
|
// default empty implementation
|
|
70378
70448
|
}
|
|
@@ -70710,6 +70780,12 @@ const getGenerateJsExpressionFunc = options => {
|
|
|
70710
70780
|
const isSnilsFnName = gn(x => x.isSnils);
|
|
70711
70781
|
return `${utilsName}.${isSnilsFnName}(${pathFnName}, "${expression.select}")`;
|
|
70712
70782
|
}
|
|
70783
|
+
case "isRegNumSfr":
|
|
70784
|
+
{
|
|
70785
|
+
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
70786
|
+
const isValidRegNumSfrFnName = gn(x => x.isRegNumSfr);
|
|
70787
|
+
return `${utilsName}.${isValidRegNumSfrFnName}(${pathFnName}, "${expression.select}")`;
|
|
70788
|
+
}
|
|
70713
70789
|
case "isInn":
|
|
70714
70790
|
{
|
|
70715
70791
|
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
@@ -70905,6 +70981,7 @@ function generateKCXmlExpression(expression) {
|
|
|
70905
70981
|
case "exists":
|
|
70906
70982
|
case "isSnils":
|
|
70907
70983
|
case "isInn":
|
|
70984
|
+
case "isRegNumSfr":
|
|
70908
70985
|
case "isValidMirCardNumber":
|
|
70909
70986
|
case "multySum":
|
|
70910
70987
|
return `<m:${expression.type} select="${expression.select}" />`;
|
|
@@ -71064,6 +71141,11 @@ function guessConditionTarget(condition) {
|
|
|
71064
71141
|
result = node.select;
|
|
71065
71142
|
}
|
|
71066
71143
|
}
|
|
71144
|
+
visitIsRegNumSfrKCLangNode(node) {
|
|
71145
|
+
if (result == undefined) {
|
|
71146
|
+
result = node.select;
|
|
71147
|
+
}
|
|
71148
|
+
}
|
|
71067
71149
|
visitIsInnKCLangNode(node) {
|
|
71068
71150
|
if (result == undefined) {
|
|
71069
71151
|
result = node.select;
|
|
@@ -76407,6 +76489,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76407
76489
|
/* harmony export */ FormulaHashSetExpression: () => (/* binding */ FormulaHashSetExpression),
|
|
76408
76490
|
/* harmony export */ FormulaIsDateExpression: () => (/* binding */ FormulaIsDateExpression),
|
|
76409
76491
|
/* harmony export */ FormulaIsInnExpression: () => (/* binding */ FormulaIsInnExpression),
|
|
76492
|
+
/* harmony export */ FormulaIsRegNumSfrExpression: () => (/* binding */ FormulaIsRegNumSfrExpression),
|
|
76410
76493
|
/* harmony export */ FormulaIsSnilsExpression: () => (/* binding */ FormulaIsSnilsExpression),
|
|
76411
76494
|
/* harmony export */ FormulaIsValidAccountNumberExpression: () => (/* binding */ FormulaIsValidAccountNumberExpression),
|
|
76412
76495
|
/* harmony export */ FormulaIsValidMirCardNumberExpression: () => (/* binding */ FormulaIsValidMirCardNumberExpression),
|
|
@@ -76444,7 +76527,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76444
76527
|
|
|
76445
76528
|
|
|
76446
76529
|
|
|
76447
|
-
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _class4, _dec4, _dec5, _class5, _class6, _descriptor2, _dec6, _dec7, _class8, _class9, _descriptor3, _dec8, _dec9, _class11, _class12, _descriptor4, _dec10, _dec11, _class14, _class15, _descriptor5, _dec12, _dec13, _class17, _class18, _descriptor6, _dec14, _dec15, _dec16, _class20, _class21, _descriptor7, _descriptor8, _dec17, _dec18, _dec19, _class23, _class24, _descriptor9, _descriptor10, _dec20, _dec21, _class26, _class27, _descriptor11, _dec22, _dec23, _class29, _class30, _descriptor12, _dec24, _dec25, _class32, _class33, _descriptor13, _dec26, _dec27, _class35, _class36, _descriptor14, _dec28, _dec29, _class38, _class39, _descriptor15, _dec30, _dec31, _class41, _class42, _descriptor16, _dec32, _dec33, _class44, _class45, _descriptor17, _dec34, _dec35, _class47, _class48, _descriptor18, _dec36, _dec37, _class50, _class51, _descriptor19, _dec38, _dec39, _dec40, _dec41, _class53, _class54, _descriptor20, _descriptor21, _descriptor22, _dec42, _dec43, _class56, _class57, _descriptor23, _dec44, _dec45, _class59, _class60, _descriptor24, _dec46, _dec47, _dec48, _class62, _class63, _descriptor25, _descriptor26, _dec49, _dec50, _class65, _class66, _descriptor27, _dec51, _dec52, _class68, _class69, _descriptor28, _dec53, _dec54, _class71, _class72, _descriptor29, _dec55, _dec56, _class74, _class75, _descriptor30, _dec57, _dec58, _dec59, _class77, _class78, _descriptor31, _descriptor32, _dec60, _dec61, _dec62, _dec63, _class80, _class81, _descriptor33, _descriptor34, _descriptor35, _dec64, _dec65, _dec66, _class83, _class84, _descriptor36, _descriptor37, _dec67, _class86, _dec68, _dec69, _class87, _class88, _descriptor38, _dec70, _dec71, _class90, _class91, _descriptor39, _dec72, _dec73, _class93, _class94, _descriptor40, _dec74, _dec75, _class96, _class97, _descriptor41, _dec76, _dec77, _class99, _class100, _descriptor42, _dec78, _dec79, _class102, _class103, _descriptor43, _dec80, _dec81, _class105, _class106, _descriptor44, _dec82, _dec83, _class108, _class109, _descriptor45, _dec84, _dec85, _dec86, _class111, _class112, _descriptor46, _descriptor47, _dec87, _dec88, _dec89, _class114, _class115, _descriptor48, _descriptor49, _dec90, _dec91, _dec92, _class117, _class118, _descriptor50, _descriptor51, _dec93, _dec94, _dec95, _class120, _class121, _descriptor52, _descriptor53, _dec96, _dec97, _class123, _class124, _descriptor54, _dec98, _dec99, _class126, _class127, _descriptor55, _dec100, _dec101, _class129, _class130, _descriptor56, _dec102, _dec103, _class132, _class133, _descriptor57, _dec104, _dec105,
|
|
76530
|
+
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _class4, _dec4, _dec5, _class5, _class6, _descriptor2, _dec6, _dec7, _class8, _class9, _descriptor3, _dec8, _dec9, _class11, _class12, _descriptor4, _dec10, _dec11, _class14, _class15, _descriptor5, _dec12, _dec13, _class17, _class18, _descriptor6, _dec14, _dec15, _dec16, _class20, _class21, _descriptor7, _descriptor8, _dec17, _dec18, _dec19, _class23, _class24, _descriptor9, _descriptor10, _dec20, _dec21, _class26, _class27, _descriptor11, _dec22, _dec23, _class29, _class30, _descriptor12, _dec24, _dec25, _class32, _class33, _descriptor13, _dec26, _dec27, _class35, _class36, _descriptor14, _dec28, _dec29, _class38, _class39, _descriptor15, _dec30, _dec31, _class41, _class42, _descriptor16, _dec32, _dec33, _class44, _class45, _descriptor17, _dec34, _dec35, _class47, _class48, _descriptor18, _dec36, _dec37, _class50, _class51, _descriptor19, _dec38, _dec39, _dec40, _dec41, _class53, _class54, _descriptor20, _descriptor21, _descriptor22, _dec42, _dec43, _class56, _class57, _descriptor23, _dec44, _dec45, _class59, _class60, _descriptor24, _dec46, _dec47, _dec48, _class62, _class63, _descriptor25, _descriptor26, _dec49, _dec50, _class65, _class66, _descriptor27, _dec51, _dec52, _class68, _class69, _descriptor28, _dec53, _dec54, _class71, _class72, _descriptor29, _dec55, _dec56, _class74, _class75, _descriptor30, _dec57, _dec58, _dec59, _class77, _class78, _descriptor31, _descriptor32, _dec60, _dec61, _dec62, _dec63, _class80, _class81, _descriptor33, _descriptor34, _descriptor35, _dec64, _dec65, _dec66, _class83, _class84, _descriptor36, _descriptor37, _dec67, _class86, _dec68, _dec69, _class87, _class88, _descriptor38, _dec70, _dec71, _class90, _class91, _descriptor39, _dec72, _dec73, _class93, _class94, _descriptor40, _dec74, _dec75, _class96, _class97, _descriptor41, _dec76, _dec77, _class99, _class100, _descriptor42, _dec78, _dec79, _class102, _class103, _descriptor43, _dec80, _dec81, _class105, _class106, _descriptor44, _dec82, _dec83, _class108, _class109, _descriptor45, _dec84, _dec85, _dec86, _class111, _class112, _descriptor46, _descriptor47, _dec87, _dec88, _dec89, _class114, _class115, _descriptor48, _descriptor49, _dec90, _dec91, _dec92, _class117, _class118, _descriptor50, _descriptor51, _dec93, _dec94, _dec95, _class120, _class121, _descriptor52, _descriptor53, _dec96, _dec97, _class123, _class124, _descriptor54, _dec98, _dec99, _class126, _class127, _descriptor55, _dec100, _dec101, _class129, _class130, _descriptor56, _dec102, _dec103, _class132, _class133, _descriptor57, _dec104, _dec105, _class135, _class136, _descriptor58, _dec106, _dec107, _dec108, _class138, _class139, _descriptor59, _descriptor60, _dec109, _dec110, _dec111, _class141, _class142, _descriptor61, _descriptor62, _dec112, _dec113, _class144, _class145, _descriptor63, _dec114, _dec115, _class147, _class148, _descriptor64, _dec116, _dec117, _class150, _class151, _descriptor65, _dec118, _dec119, _dec120, _dec121, _dec122, _class153, _class154, _descriptor66, _descriptor67, _descriptor68, _descriptor69, _dec123, _dec124, _class156, _class157, _descriptor70, _dec125, _dec126, _class159, _class160, _descriptor71, _dec127, _dec128, _class162, _class163, _descriptor72, _dec129, _dec130, _class165, _class166, _descriptor73, _dec131, _dec132, _dec133, _class168, _class169, _descriptor74, _descriptor75, _dec134, _dec135, _class171, _class172, _descriptor76, _dec136, _class174, _dec137, _dec138, _dec139, _dec140, _class175, _class176, _descriptor77, _descriptor78, _descriptor79, _dec141, _dec142, _class178, _class179, _descriptor80, _dec143, _dec144, _class181, _class182, _descriptor81, _dec145, _dec146, _dec147, _dec148, _dec149, _dec150, _class184, _class185, _descriptor82, _descriptor83, _descriptor84, _descriptor85, _descriptor86, _dec151, _dec152, _class187, _class188, _descriptor87, _dec153, _dec154, _dec155, _class190, _class191, _descriptor88, _descriptor89, _dec156, _dec157, _dec158, _dec159, _class193, _class194, _descriptor90, _descriptor91, _descriptor92, _dec160, _dec161, _dec162, _class196, _class197, _descriptor93, _descriptor94;
|
|
76448
76531
|
|
|
76449
76532
|
|
|
76450
76533
|
|
|
@@ -77067,13 +77150,13 @@ let FormulaIsSnilsExpression = (_dec98 = (0,_markupGenerator_Serializer_SugarSer
|
|
|
77067
77150
|
writable: true,
|
|
77068
77151
|
initializer: null
|
|
77069
77152
|
})), _class127)) || _class126);
|
|
77070
|
-
let
|
|
77153
|
+
let FormulaIsRegNumSfrExpression = (_dec100 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("isregnumsfr", `Проверка на валидность рег-номера СФР`), _dec101 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec100(_class129 = (_class130 = class FormulaIsRegNumSfrExpression extends FormulaExpression {
|
|
77071
77154
|
constructor(...args) {
|
|
77072
77155
|
super(...args);
|
|
77073
77156
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor56, this);
|
|
77074
77157
|
}
|
|
77075
77158
|
getLegacyExpressionTypeForFunctionName() {
|
|
77076
|
-
return "
|
|
77159
|
+
return "isRegNumSfr";
|
|
77077
77160
|
}
|
|
77078
77161
|
}, (_descriptor56 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class130.prototype, "select", [_dec101], {
|
|
77079
77162
|
configurable: true,
|
|
@@ -77081,13 +77164,13 @@ let FormulaIsInnExpression = (_dec100 = (0,_markupGenerator_Serializer_SugarSeri
|
|
|
77081
77164
|
writable: true,
|
|
77082
77165
|
initializer: null
|
|
77083
77166
|
})), _class130)) || _class129);
|
|
77084
|
-
let
|
|
77167
|
+
let FormulaIsInnExpression = (_dec102 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("isinn", `Проверка на валидность ИИН`), _dec103 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec102(_class132 = (_class133 = class FormulaIsInnExpression extends FormulaExpression {
|
|
77085
77168
|
constructor(...args) {
|
|
77086
77169
|
super(...args);
|
|
77087
77170
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor57, this);
|
|
77088
77171
|
}
|
|
77089
77172
|
getLegacyExpressionTypeForFunctionName() {
|
|
77090
|
-
return "
|
|
77173
|
+
return "isInn";
|
|
77091
77174
|
}
|
|
77092
77175
|
}, (_descriptor57 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class133.prototype, "select", [_dec103], {
|
|
77093
77176
|
configurable: true,
|
|
@@ -77095,122 +77178,125 @@ let FormulaIsValidMirCardNumberExpression = (_dec102 = (0,_markupGenerator_Seria
|
|
|
77095
77178
|
writable: true,
|
|
77096
77179
|
initializer: null
|
|
77097
77180
|
})), _class133)) || _class132);
|
|
77098
|
-
let
|
|
77181
|
+
let FormulaIsValidMirCardNumberExpression = (_dec104 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("isvalidmircardnumber", `Проверка на валидность карты МИР`), _dec105 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec104(_class135 = (_class136 = class FormulaIsValidMirCardNumberExpression extends FormulaExpression {
|
|
77182
|
+
constructor(...args) {
|
|
77183
|
+
super(...args);
|
|
77184
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor58, this);
|
|
77185
|
+
}
|
|
77186
|
+
getLegacyExpressionTypeForFunctionName() {
|
|
77187
|
+
return "isValidMirCardNumber";
|
|
77188
|
+
}
|
|
77189
|
+
}, (_descriptor58 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class136.prototype, "select", [_dec105], {
|
|
77190
|
+
configurable: true,
|
|
77191
|
+
enumerable: true,
|
|
77192
|
+
writable: true,
|
|
77193
|
+
initializer: null
|
|
77194
|
+
})), _class136)) || _class135);
|
|
77195
|
+
let FormulaIsValidAccountNumberExpression = (_dec106 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("isvalidaccountnumber", `Проверка на валидность карты МИР`), _dec107 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("bik", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec108 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("account", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec106(_class138 = (_class139 = class FormulaIsValidAccountNumberExpression extends FormulaExpression {
|
|
77099
77196
|
constructor(...args) {
|
|
77100
77197
|
super(...args);
|
|
77101
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "bik",
|
|
77102
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "account",
|
|
77198
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "bik", _descriptor59, this);
|
|
77199
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "account", _descriptor60, this);
|
|
77103
77200
|
}
|
|
77104
77201
|
getLegacyExpressionTypeForFunctionName() {
|
|
77105
77202
|
return "isValidAccountNumber";
|
|
77106
77203
|
}
|
|
77107
|
-
}, (
|
|
77204
|
+
}, (_descriptor59 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class139.prototype, "bik", [_dec107], {
|
|
77108
77205
|
configurable: true,
|
|
77109
77206
|
enumerable: true,
|
|
77110
77207
|
writable: true,
|
|
77111
77208
|
initializer: null
|
|
77112
|
-
}),
|
|
77209
|
+
}), _descriptor60 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class139.prototype, "account", [_dec108], {
|
|
77113
77210
|
configurable: true,
|
|
77114
77211
|
enumerable: true,
|
|
77115
77212
|
writable: true,
|
|
77116
77213
|
initializer: null
|
|
77117
|
-
})),
|
|
77118
|
-
let FormulaArgumentExpression = (
|
|
77214
|
+
})), _class139)) || _class138);
|
|
77215
|
+
let FormulaArgumentExpression = (_dec109 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("argument", `TODO`), _dec110 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec111 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("type", typeArgumentValueParser, `Тип атрибута: string или decimal (по умолчанию)`), _dec109(_class141 = (_class142 = class FormulaArgumentExpression extends FormulaExpression {
|
|
77119
77216
|
constructor(...args) {
|
|
77120
77217
|
super(...args);
|
|
77121
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select",
|
|
77122
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "type",
|
|
77218
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor61, this);
|
|
77219
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "type", _descriptor62, this);
|
|
77123
77220
|
}
|
|
77124
|
-
}, (
|
|
77221
|
+
}, (_descriptor61 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class142.prototype, "select", [_dec110], {
|
|
77125
77222
|
configurable: true,
|
|
77126
77223
|
enumerable: true,
|
|
77127
77224
|
writable: true,
|
|
77128
77225
|
initializer: null
|
|
77129
|
-
}),
|
|
77226
|
+
}), _descriptor62 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class142.prototype, "type", [_dec111], {
|
|
77130
77227
|
configurable: true,
|
|
77131
77228
|
enumerable: true,
|
|
77132
77229
|
writable: true,
|
|
77133
77230
|
initializer: function () {
|
|
77134
77231
|
return "decimal";
|
|
77135
77232
|
}
|
|
77136
|
-
})),
|
|
77137
|
-
let FormulaArrayExpression = (
|
|
77233
|
+
})), _class142)) || _class141);
|
|
77234
|
+
let FormulaArrayExpression = (_dec112 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("array", `TODO`), _dec113 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec112(_class144 = (_class145 = class FormulaArrayExpression extends FormulaExpression {
|
|
77138
77235
|
constructor(...args) {
|
|
77139
77236
|
super(...args);
|
|
77140
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items",
|
|
77237
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items", _descriptor63, this);
|
|
77141
77238
|
}
|
|
77142
|
-
}, (
|
|
77239
|
+
}, (_descriptor63 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class145.prototype, "items", [_dec113], {
|
|
77143
77240
|
configurable: true,
|
|
77144
77241
|
enumerable: true,
|
|
77145
77242
|
writable: true,
|
|
77146
77243
|
initializer: null
|
|
77147
|
-
})),
|
|
77148
|
-
let FormulaFilterColumnExpression = (
|
|
77244
|
+
})), _class145)) || _class144);
|
|
77245
|
+
let FormulaFilterColumnExpression = (_dec114 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("filtercolumn", `Получить значения пиклиста по фильру`), _dec115 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec114(_class147 = (_class148 = class FormulaFilterColumnExpression extends FormulaExpression {
|
|
77149
77246
|
constructor(...args) {
|
|
77150
77247
|
super(...args);
|
|
77151
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterColumn",
|
|
77248
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterColumn", _descriptor64, this);
|
|
77152
77249
|
}
|
|
77153
|
-
}, (
|
|
77250
|
+
}, (_descriptor64 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class148.prototype, "filterColumn", [_dec115], {
|
|
77154
77251
|
configurable: true,
|
|
77155
77252
|
enumerable: true,
|
|
77156
77253
|
writable: true,
|
|
77157
77254
|
initializer: null
|
|
77158
|
-
})),
|
|
77159
|
-
let FormulaFilterKeyExpression = (
|
|
77255
|
+
})), _class148)) || _class147);
|
|
77256
|
+
let FormulaFilterKeyExpression = (_dec116 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("filterkey", `Получить значения пиклиста по фильру`), _dec117 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec116(_class150 = (_class151 = class FormulaFilterKeyExpression extends FormulaExpression {
|
|
77160
77257
|
constructor(...args) {
|
|
77161
77258
|
super(...args);
|
|
77162
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterKey",
|
|
77259
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterKey", _descriptor65, this);
|
|
77163
77260
|
}
|
|
77164
|
-
}, (
|
|
77261
|
+
}, (_descriptor65 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class151.prototype, "filterKey", [_dec117], {
|
|
77165
77262
|
configurable: true,
|
|
77166
77263
|
enumerable: true,
|
|
77167
77264
|
writable: true,
|
|
77168
77265
|
initializer: null
|
|
77169
|
-
})),
|
|
77170
|
-
let FormulaGetPicklistValuesExpression = (
|
|
77266
|
+
})), _class151)) || _class150);
|
|
77267
|
+
let FormulaGetPicklistValuesExpression = (_dec118 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("getpicklistvalues", `Получить значения пиклиста по фильру. Используется только для генерации FLANG. В калькуляторе не работает`), _dec119 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("gId", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec120 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("filtercolumn", [FormulaFilterColumnExpression]), _dec121 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("filterkey", [FormulaFilterKeyExpression]), _dec122 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("resultColumn", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec118(_class153 = (_class154 = class FormulaGetPicklistValuesExpression extends FormulaExpression {
|
|
77171
77268
|
constructor(...args) {
|
|
77172
77269
|
super(...args);
|
|
77173
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "gId",
|
|
77174
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterColumn",
|
|
77175
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterKey",
|
|
77176
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "resultColumn",
|
|
77270
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "gId", _descriptor66, this);
|
|
77271
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterColumn", _descriptor67, this);
|
|
77272
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterKey", _descriptor68, this);
|
|
77273
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "resultColumn", _descriptor69, this);
|
|
77177
77274
|
}
|
|
77178
77275
|
getLegacyExpressionTypeForFunctionName() {
|
|
77179
77276
|
return "getPicklistValues";
|
|
77180
77277
|
}
|
|
77181
|
-
}, (
|
|
77182
|
-
configurable: true,
|
|
77183
|
-
enumerable: true,
|
|
77184
|
-
writable: true,
|
|
77185
|
-
initializer: null
|
|
77186
|
-
}), _descriptor66 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class151.prototype, "filterColumn", [_dec118], {
|
|
77278
|
+
}, (_descriptor66 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class154.prototype, "gId", [_dec119], {
|
|
77187
77279
|
configurable: true,
|
|
77188
77280
|
enumerable: true,
|
|
77189
77281
|
writable: true,
|
|
77190
77282
|
initializer: null
|
|
77191
|
-
}), _descriptor67 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
77283
|
+
}), _descriptor67 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class154.prototype, "filterColumn", [_dec120], {
|
|
77192
77284
|
configurable: true,
|
|
77193
77285
|
enumerable: true,
|
|
77194
77286
|
writable: true,
|
|
77195
77287
|
initializer: null
|
|
77196
|
-
}), _descriptor68 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
77288
|
+
}), _descriptor68 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class154.prototype, "filterKey", [_dec121], {
|
|
77197
77289
|
configurable: true,
|
|
77198
77290
|
enumerable: true,
|
|
77199
77291
|
writable: true,
|
|
77200
77292
|
initializer: null
|
|
77201
|
-
})
|
|
77202
|
-
let FormulaFirstOrDefaultExpression = (_dec121 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("firstordefault", `Взять первый элемент массива. Используется только для генерации FLANG. В калькуляторе не работает`), _dec122 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec121(_class153 = (_class154 = class FormulaFirstOrDefaultExpression extends FormulaExpression {
|
|
77203
|
-
constructor(...args) {
|
|
77204
|
-
super(...args);
|
|
77205
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor69, this);
|
|
77206
|
-
}
|
|
77207
|
-
}, (_descriptor69 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class154.prototype, "expression", [_dec122], {
|
|
77293
|
+
}), _descriptor69 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class154.prototype, "resultColumn", [_dec122], {
|
|
77208
77294
|
configurable: true,
|
|
77209
77295
|
enumerable: true,
|
|
77210
77296
|
writable: true,
|
|
77211
77297
|
initializer: null
|
|
77212
77298
|
})), _class154)) || _class153);
|
|
77213
|
-
let
|
|
77299
|
+
let FormulaFirstOrDefaultExpression = (_dec123 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("firstordefault", `Взять первый элемент массива. Используется только для генерации FLANG. В калькуляторе не работает`), _dec124 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec123(_class156 = (_class157 = class FormulaFirstOrDefaultExpression extends FormulaExpression {
|
|
77214
77300
|
constructor(...args) {
|
|
77215
77301
|
super(...args);
|
|
77216
77302
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor70, this);
|
|
@@ -77221,209 +77307,220 @@ let FormulaHashSetExpression = (_dec123 = (0,_markupGenerator_Serializer_SugarSe
|
|
|
77221
77307
|
writable: true,
|
|
77222
77308
|
initializer: null
|
|
77223
77309
|
})), _class157)) || _class156);
|
|
77224
|
-
let
|
|
77310
|
+
let FormulaHashSetExpression = (_dec125 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("hashset", `Оставить только уникальные значения в массиве. Используется только для генерации FLANG. В калькуляторе не работает`), _dec126 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec125(_class159 = (_class160 = class FormulaHashSetExpression extends FormulaExpression {
|
|
77225
77311
|
constructor(...args) {
|
|
77226
77312
|
super(...args);
|
|
77227
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
77228
|
-
}
|
|
77229
|
-
getLegacyExpressionTypeForFunctionName() {
|
|
77230
|
-
return "exists";
|
|
77313
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor71, this);
|
|
77231
77314
|
}
|
|
77232
|
-
}, (_descriptor71 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class160.prototype, "
|
|
77315
|
+
}, (_descriptor71 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class160.prototype, "expression", [_dec126], {
|
|
77233
77316
|
configurable: true,
|
|
77234
77317
|
enumerable: true,
|
|
77235
77318
|
writable: true,
|
|
77236
77319
|
initializer: null
|
|
77237
77320
|
})), _class160)) || _class159);
|
|
77238
|
-
let
|
|
77321
|
+
let FormulaExistsExpression = (_dec127 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("exists", `TODO`), _dec128 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec127(_class162 = (_class163 = class FormulaExistsExpression extends FormulaExpression {
|
|
77239
77322
|
constructor(...args) {
|
|
77240
77323
|
super(...args);
|
|
77241
77324
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor72, this);
|
|
77242
77325
|
}
|
|
77326
|
+
getLegacyExpressionTypeForFunctionName() {
|
|
77327
|
+
return "exists";
|
|
77328
|
+
}
|
|
77243
77329
|
}, (_descriptor72 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class163.prototype, "select", [_dec128], {
|
|
77244
77330
|
configurable: true,
|
|
77245
77331
|
enumerable: true,
|
|
77246
77332
|
writable: true,
|
|
77247
77333
|
initializer: null
|
|
77248
77334
|
})), _class163)) || _class162);
|
|
77249
|
-
let
|
|
77335
|
+
let FormulaMultySumExpression = (_dec129 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("multysum", `TODO`), _dec130 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec129(_class165 = (_class166 = class FormulaMultySumExpression extends FormulaExpression {
|
|
77250
77336
|
constructor(...args) {
|
|
77251
77337
|
super(...args);
|
|
77252
77338
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor73, this);
|
|
77253
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withNullOrEmptyValues", _descriptor74, this);
|
|
77254
77339
|
}
|
|
77255
77340
|
}, (_descriptor73 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class166.prototype, "select", [_dec130], {
|
|
77256
77341
|
configurable: true,
|
|
77257
77342
|
enumerable: true,
|
|
77258
77343
|
writable: true,
|
|
77259
77344
|
initializer: null
|
|
77260
|
-
}),
|
|
77345
|
+
})), _class166)) || _class165);
|
|
77346
|
+
let FormulaCountExpression = (_dec131 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("count", `TODO`), _dec132 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec133 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("withNullOrEmptyValues", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `брать в расчет незаполненные экземпляры`), _dec131(_class168 = (_class169 = class FormulaCountExpression extends FormulaExpression {
|
|
77347
|
+
constructor(...args) {
|
|
77348
|
+
super(...args);
|
|
77349
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor74, this);
|
|
77350
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withNullOrEmptyValues", _descriptor75, this);
|
|
77351
|
+
}
|
|
77352
|
+
}, (_descriptor74 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class169.prototype, "select", [_dec132], {
|
|
77261
77353
|
configurable: true,
|
|
77262
77354
|
enumerable: true,
|
|
77263
77355
|
writable: true,
|
|
77264
77356
|
initializer: null
|
|
77265
|
-
})
|
|
77266
|
-
|
|
77357
|
+
}), _descriptor75 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class169.prototype, "withNullOrEmptyValues", [_dec133], {
|
|
77358
|
+
configurable: true,
|
|
77359
|
+
enumerable: true,
|
|
77360
|
+
writable: true,
|
|
77361
|
+
initializer: null
|
|
77362
|
+
})), _class169)) || _class168);
|
|
77363
|
+
let FormulaConcatExpression = (_dec134 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("concat", `Конкатенация строк`), _dec135 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec134(_class171 = (_class172 = class FormulaConcatExpression extends FormulaExpression {
|
|
77267
77364
|
constructor(...args) {
|
|
77268
77365
|
super(...args);
|
|
77269
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "arguments",
|
|
77366
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "arguments", _descriptor76, this);
|
|
77270
77367
|
}
|
|
77271
|
-
}, (
|
|
77368
|
+
}, (_descriptor76 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class172.prototype, "arguments", [_dec135], {
|
|
77272
77369
|
configurable: true,
|
|
77273
77370
|
enumerable: true,
|
|
77274
77371
|
writable: true,
|
|
77275
77372
|
initializer: null
|
|
77276
|
-
})),
|
|
77277
|
-
let FormulaNewLineExpression = (
|
|
77278
|
-
let Formula = (
|
|
77373
|
+
})), _class172)) || _class171);
|
|
77374
|
+
let FormulaNewLineExpression = (_dec136 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("newline", `Перевод на новую строку`), _dec136(_class174 = class FormulaNewLineExpression extends FormulaExpression {}) || _class174);
|
|
77375
|
+
let Formula = (_dec137 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("formula", `TODO`), _dec138 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("match", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec139 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("target", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec140 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec137(_class175 = (_class176 = class Formula extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
77279
77376
|
constructor(...args) {
|
|
77280
77377
|
super(...args);
|
|
77281
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match",
|
|
77282
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target",
|
|
77283
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression",
|
|
77378
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match", _descriptor77, this);
|
|
77379
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target", _descriptor78, this);
|
|
77380
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor79, this);
|
|
77284
77381
|
}
|
|
77285
|
-
}, (
|
|
77382
|
+
}, (_descriptor77 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class176.prototype, "match", [_dec138], {
|
|
77286
77383
|
configurable: true,
|
|
77287
77384
|
enumerable: true,
|
|
77288
77385
|
writable: true,
|
|
77289
77386
|
initializer: null
|
|
77290
|
-
}),
|
|
77387
|
+
}), _descriptor78 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class176.prototype, "target", [_dec139], {
|
|
77291
77388
|
configurable: true,
|
|
77292
77389
|
enumerable: true,
|
|
77293
77390
|
writable: true,
|
|
77294
77391
|
initializer: null
|
|
77295
|
-
}),
|
|
77392
|
+
}), _descriptor79 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class176.prototype, "expression", [_dec140], {
|
|
77296
77393
|
configurable: true,
|
|
77297
77394
|
enumerable: true,
|
|
77298
77395
|
writable: true,
|
|
77299
77396
|
initializer: null
|
|
77300
|
-
})),
|
|
77301
|
-
let FormulaNoDepsNode = (
|
|
77397
|
+
})), _class176)) || _class175);
|
|
77398
|
+
let FormulaNoDepsNode = (_dec141 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("nodeps", `Замыкает цикл пробега по зависимостям на элементе, что исключает бесконечную зацикленность. Только для серверной нормализации`), _dec142 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec141(_class178 = (_class179 = class FormulaNoDepsNode extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
77302
77399
|
constructor(...args) {
|
|
77303
77400
|
super(...args);
|
|
77304
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression",
|
|
77401
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor80, this);
|
|
77305
77402
|
}
|
|
77306
|
-
}, (
|
|
77403
|
+
}, (_descriptor80 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class179.prototype, "expression", [_dec142], {
|
|
77307
77404
|
configurable: true,
|
|
77308
77405
|
enumerable: true,
|
|
77309
77406
|
writable: true,
|
|
77310
77407
|
initializer: null
|
|
77311
|
-
})),
|
|
77312
|
-
let Formulas = (
|
|
77408
|
+
})), _class179)) || _class178);
|
|
77409
|
+
let Formulas = (_dec143 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("formulas", `TODO`), _dec144 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("formula", [Formula]), _dec143(_class181 = (_class182 = class Formulas extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
77313
77410
|
constructor(...args) {
|
|
77314
77411
|
super(...args);
|
|
77315
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items",
|
|
77412
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items", _descriptor81, this);
|
|
77316
77413
|
}
|
|
77317
|
-
}, (
|
|
77414
|
+
}, (_descriptor81 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class182.prototype, "items", [_dec144], {
|
|
77318
77415
|
configurable: true,
|
|
77319
77416
|
enumerable: true,
|
|
77320
77417
|
writable: true,
|
|
77321
77418
|
initializer: null
|
|
77322
|
-
})),
|
|
77323
|
-
let ConditionNode = (
|
|
77419
|
+
})), _class182)) || _class181);
|
|
77420
|
+
let ConditionNode = (_dec145 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("condition", `TODO`), _dec146 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("match", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec147 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("target", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec148 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("description", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec149 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("errorLevel", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.enum("Error", "Warning"), `Уровень ошибки может быть Error или Warning - параметр влияет на подсветку. Красную или Оранжевую соотвественно`), _dec150 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec145(_class184 = (_class185 = class ConditionNode extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
77324
77421
|
constructor(...args) {
|
|
77325
77422
|
super(...args);
|
|
77326
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match",
|
|
77327
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target",
|
|
77328
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "description",
|
|
77329
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "errorLevel",
|
|
77330
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression",
|
|
77423
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match", _descriptor82, this);
|
|
77424
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target", _descriptor83, this);
|
|
77425
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "description", _descriptor84, this);
|
|
77426
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "errorLevel", _descriptor85, this);
|
|
77427
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor86, this);
|
|
77331
77428
|
}
|
|
77332
|
-
}, (
|
|
77429
|
+
}, (_descriptor82 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class185.prototype, "match", [_dec146], {
|
|
77333
77430
|
configurable: true,
|
|
77334
77431
|
enumerable: true,
|
|
77335
77432
|
writable: true,
|
|
77336
77433
|
initializer: null
|
|
77337
|
-
}),
|
|
77434
|
+
}), _descriptor83 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class185.prototype, "target", [_dec147], {
|
|
77338
77435
|
configurable: true,
|
|
77339
77436
|
enumerable: true,
|
|
77340
77437
|
writable: true,
|
|
77341
77438
|
initializer: null
|
|
77342
|
-
}),
|
|
77439
|
+
}), _descriptor84 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class185.prototype, "description", [_dec148], {
|
|
77343
77440
|
configurable: true,
|
|
77344
77441
|
enumerable: true,
|
|
77345
77442
|
writable: true,
|
|
77346
77443
|
initializer: null
|
|
77347
|
-
}),
|
|
77444
|
+
}), _descriptor85 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class185.prototype, "errorLevel", [_dec149], {
|
|
77348
77445
|
configurable: true,
|
|
77349
77446
|
enumerable: true,
|
|
77350
77447
|
writable: true,
|
|
77351
77448
|
initializer: null
|
|
77352
|
-
}),
|
|
77449
|
+
}), _descriptor86 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class185.prototype, "expression", [_dec150], {
|
|
77353
77450
|
configurable: true,
|
|
77354
77451
|
enumerable: true,
|
|
77355
77452
|
writable: true,
|
|
77356
77453
|
initializer: null
|
|
77357
|
-
})),
|
|
77358
|
-
let ConditionsNode = (
|
|
77454
|
+
})), _class185)) || _class184);
|
|
77455
|
+
let ConditionsNode = (_dec151 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("conditions", `TODO`), _dec152 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("condition", [ConditionNode]), _dec151(_class187 = (_class188 = class ConditionsNode extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
77359
77456
|
constructor(...args) {
|
|
77360
77457
|
super(...args);
|
|
77361
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items",
|
|
77458
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items", _descriptor87, this);
|
|
77362
77459
|
}
|
|
77363
|
-
}, (
|
|
77460
|
+
}, (_descriptor87 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class188.prototype, "items", [_dec152], {
|
|
77364
77461
|
configurable: true,
|
|
77365
77462
|
enumerable: true,
|
|
77366
77463
|
writable: true,
|
|
77367
77464
|
initializer: null
|
|
77368
|
-
})),
|
|
77369
|
-
let MathContainer = (
|
|
77465
|
+
})), _class188)) || _class187);
|
|
77466
|
+
let MathContainer = (_dec153 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("math", `TODO`), _dec154 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("formulas", [Formulas]), _dec155 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("conditions", [ConditionsNode]), _dec153(_class190 = (_class191 = class MathContainer extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
77370
77467
|
constructor(...args) {
|
|
77371
77468
|
super(...args);
|
|
77372
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "formulas",
|
|
77373
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "conditions",
|
|
77469
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "formulas", _descriptor88, this);
|
|
77470
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "conditions", _descriptor89, this);
|
|
77374
77471
|
}
|
|
77375
|
-
}, (
|
|
77472
|
+
}, (_descriptor88 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class191.prototype, "formulas", [_dec154], {
|
|
77376
77473
|
configurable: true,
|
|
77377
77474
|
enumerable: true,
|
|
77378
77475
|
writable: true,
|
|
77379
77476
|
initializer: null
|
|
77380
|
-
}),
|
|
77477
|
+
}), _descriptor89 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class191.prototype, "conditions", [_dec155], {
|
|
77381
77478
|
configurable: true,
|
|
77382
77479
|
enumerable: true,
|
|
77383
77480
|
writable: true,
|
|
77384
77481
|
initializer: null
|
|
77385
|
-
})),
|
|
77386
|
-
let FormulaGroupSumExpression = (
|
|
77482
|
+
})), _class191)) || _class190);
|
|
77483
|
+
let FormulaGroupSumExpression = (_dec156 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("groupsum", `Вычисление суммы с группировкой в разных множественностях`), _dec157 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("array", [FormulaArrayExpression]), _dec158 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("sourceKeyPath", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, `Путь откуда брать ключ группы в суммируемой множественности`), _dec159 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("sourceValuePath", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, `Путь в суммируемой множественности откуда берем значение для свёртки`), _dec156(_class193 = (_class194 = class FormulaGroupSumExpression extends FormulaExpression {
|
|
77387
77484
|
constructor(...args) {
|
|
77388
77485
|
super(...args);
|
|
77389
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "targetKeys",
|
|
77390
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sourceKeyPath",
|
|
77391
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sourceValuePath",
|
|
77486
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "targetKeys", _descriptor90, this);
|
|
77487
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sourceKeyPath", _descriptor91, this);
|
|
77488
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sourceValuePath", _descriptor92, this);
|
|
77392
77489
|
}
|
|
77393
|
-
}, (
|
|
77490
|
+
}, (_descriptor90 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class194.prototype, "targetKeys", [_dec157], {
|
|
77394
77491
|
configurable: true,
|
|
77395
77492
|
enumerable: true,
|
|
77396
77493
|
writable: true,
|
|
77397
77494
|
initializer: null
|
|
77398
|
-
}),
|
|
77495
|
+
}), _descriptor91 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class194.prototype, "sourceKeyPath", [_dec158], {
|
|
77399
77496
|
configurable: true,
|
|
77400
77497
|
enumerable: true,
|
|
77401
77498
|
writable: true,
|
|
77402
77499
|
initializer: null
|
|
77403
|
-
}),
|
|
77500
|
+
}), _descriptor92 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class194.prototype, "sourceValuePath", [_dec159], {
|
|
77404
77501
|
configurable: true,
|
|
77405
77502
|
enumerable: true,
|
|
77406
77503
|
writable: true,
|
|
77407
77504
|
initializer: null
|
|
77408
|
-
})),
|
|
77409
|
-
let FormulaGroupCountExpression = (
|
|
77505
|
+
})), _class194)) || _class193);
|
|
77506
|
+
let FormulaGroupCountExpression = (_dec160 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("groupcount", `Вычисление количества элементов по группам в разных множественностях`), _dec161 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("array", [FormulaArrayExpression]), _dec162 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("sourceKeyPath", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, `Путь откуда брать ключ группы в суммируемой множественности`), _dec160(_class196 = (_class197 = class FormulaGroupCountExpression extends FormulaExpression {
|
|
77410
77507
|
constructor(...args) {
|
|
77411
77508
|
super(...args);
|
|
77412
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "targetKeys",
|
|
77413
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sourceKeyPath",
|
|
77509
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "targetKeys", _descriptor93, this);
|
|
77510
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sourceKeyPath", _descriptor94, this);
|
|
77414
77511
|
}
|
|
77415
|
-
}, (
|
|
77512
|
+
}, (_descriptor93 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class197.prototype, "targetKeys", [_dec161], {
|
|
77416
77513
|
configurable: true,
|
|
77417
77514
|
enumerable: true,
|
|
77418
77515
|
writable: true,
|
|
77419
77516
|
initializer: null
|
|
77420
|
-
}),
|
|
77517
|
+
}), _descriptor94 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class197.prototype, "sourceKeyPath", [_dec162], {
|
|
77421
77518
|
configurable: true,
|
|
77422
77519
|
enumerable: true,
|
|
77423
77520
|
writable: true,
|
|
77424
77521
|
initializer: null
|
|
77425
|
-
})),
|
|
77426
|
-
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, FormulaDateNowExpression, FormulaGetDaysInMonthExpression, FormulaGetDayExpression, FormulaGetMonthExpression, FormulaGetYearExpression, FormulaIsDateExpression, FormulaDifferenceInMonthsExpression, FormulaDifferenceInDaysExpression, FormulaAddDaysExpression, FormulaAddMonthsExpression, FormulaAddYearsExpression, FormulaDateToStringExpression, FormulaDateTimeExpression, FormulaIsSnilsExpression, FormulaIsInnExpression, FormulaIsValidAccountNumberExpression, FormulaIsValidMirCardNumberExpression, FormulaCastExpression, FormulaConcatExpression, FormulaGroupSumExpression, FormulaGroupCountExpression, FormulaNewLineExpression, FormulaOneOfExpression, FormulaGetPicklistValuesExpression, FormulaArrayExpression, FormulaFirstOrDefaultExpression, FormulaHashSetExpression, FormulaFilterColumnExpression, FormulaFilterKeyExpression, FormulaNoDepsNode, FormulaHasAutoFlagExpression];
|
|
77522
|
+
})), _class197)) || _class196);
|
|
77523
|
+
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, FormulaDateNowExpression, FormulaGetDaysInMonthExpression, FormulaGetDayExpression, FormulaGetMonthExpression, FormulaGetYearExpression, FormulaIsDateExpression, FormulaDifferenceInMonthsExpression, FormulaDifferenceInDaysExpression, FormulaAddDaysExpression, FormulaAddMonthsExpression, FormulaAddYearsExpression, FormulaDateToStringExpression, FormulaDateTimeExpression, FormulaIsSnilsExpression, FormulaIsRegNumSfrExpression, FormulaIsInnExpression, FormulaIsValidAccountNumberExpression, FormulaIsValidMirCardNumberExpression, FormulaCastExpression, FormulaConcatExpression, FormulaGroupSumExpression, FormulaGroupCountExpression, FormulaNewLineExpression, FormulaOneOfExpression, FormulaGetPicklistValuesExpression, FormulaArrayExpression, FormulaFirstOrDefaultExpression, FormulaHashSetExpression, FormulaFilterColumnExpression, FormulaFilterKeyExpression, FormulaNoDepsNode, FormulaHasAutoFlagExpression];
|
|
77427
77524
|
|
|
77428
77525
|
/***/ }),
|
|
77429
77526
|
|
|
@@ -79431,6 +79528,11 @@ class KCXmlGeneratorBase {
|
|
|
79431
79528
|
deps.push(new RegularDependency(modelPath));
|
|
79432
79529
|
return gcf(x => x.isSnils, `"${modelPath.toLegacyPath()}"`);
|
|
79433
79530
|
}
|
|
79531
|
+
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaIsRegNumSfrExpression) {
|
|
79532
|
+
const modelPath = this.schema.adjustPathMultiplicity(prefix.joinWith((0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.createFromMask)(this.removeAttributePrefix(this.removeMultiplicity(expression.select)), false, _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.PathTokens.each)).normalize());
|
|
79533
|
+
deps.push(new RegularDependency(modelPath));
|
|
79534
|
+
return gcf(x => x.isRegNumSfr, `"${modelPath.toLegacyPath()}"`);
|
|
79535
|
+
}
|
|
79434
79536
|
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaIsInnExpression) {
|
|
79435
79537
|
const modelPath = this.schema.adjustPathMultiplicity(prefix.joinWith((0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.createFromMask)(this.removeAttributePrefix(this.removeMultiplicity(expression.select)), false, _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.PathTokens.each)).normalize());
|
|
79436
79538
|
deps.push(new RegularDependency(modelPath));
|
|
@@ -81206,6 +81308,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
81206
81308
|
/* harmony export */ IsDateExpression: () => (/* binding */ IsDateExpression),
|
|
81207
81309
|
/* harmony export */ IsEqualsBinaryExpression: () => (/* binding */ IsEqualsBinaryExpression),
|
|
81208
81310
|
/* harmony export */ IsInnExpression: () => (/* binding */ IsInnExpression),
|
|
81311
|
+
/* harmony export */ IsRegNumSfrExpression: () => (/* binding */ IsRegNumSfrExpression),
|
|
81209
81312
|
/* harmony export */ IsSnilsExpression: () => (/* binding */ IsSnilsExpression),
|
|
81210
81313
|
/* harmony export */ IsValidAccountNumberExpression: () => (/* binding */ IsValidAccountNumberExpression),
|
|
81211
81314
|
/* harmony export */ IsValidMirCardNumberExpression: () => (/* binding */ IsValidMirCardNumberExpression),
|
|
@@ -81986,6 +82089,19 @@ class IsSnilsExpression extends FLangBoolExpression {
|
|
|
81986
82089
|
return `isSnils(${this.expression.convertToString()})`;
|
|
81987
82090
|
}
|
|
81988
82091
|
}
|
|
82092
|
+
class IsRegNumSfrExpression extends FLangBoolExpression {
|
|
82093
|
+
constructor(expression) {
|
|
82094
|
+
super();
|
|
82095
|
+
this.expression = void 0;
|
|
82096
|
+
this.expression = expression;
|
|
82097
|
+
}
|
|
82098
|
+
*getChildNodes() {
|
|
82099
|
+
yield this.expression;
|
|
82100
|
+
}
|
|
82101
|
+
convertToString() {
|
|
82102
|
+
return `isRegNumSfr(${this.expression.convertToString()})`;
|
|
82103
|
+
}
|
|
82104
|
+
}
|
|
81989
82105
|
class IsInnExpression extends FLangBoolExpression {
|
|
81990
82106
|
constructor(expression) {
|
|
81991
82107
|
super();
|
|
@@ -83012,6 +83128,10 @@ class FormulaExpressionToFlangExpressionConverter {
|
|
|
83012
83128
|
const arg = this.compiledArgumentExpression(prefix, target, expression.select, "string", addPrecalculationRule);
|
|
83013
83129
|
return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_8__.IsSnilsExpression((0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_7__.castOperandToStringIfNeed)(arg));
|
|
83014
83130
|
}
|
|
83131
|
+
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_0__.FormulaIsRegNumSfrExpression) {
|
|
83132
|
+
const arg = this.compiledArgumentExpression(prefix, target, expression.select, "string", addPrecalculationRule);
|
|
83133
|
+
return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_8__.IsRegNumSfrExpression((0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_7__.castOperandToStringIfNeed)(arg));
|
|
83134
|
+
}
|
|
83015
83135
|
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_0__.FormulaIsInnExpression) {
|
|
83016
83136
|
const arg = this.compiledArgumentExpression(prefix, target, expression.select, "string", addPrecalculationRule);
|
|
83017
83137
|
return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_8__.IsInnExpression((0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_7__.castOperandToStringIfNeed)(arg));
|
|
@@ -84347,35 +84467,37 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
84347
84467
|
/* harmony import */ var _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/TableCell/TableCellConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/TableCell/TableCellConverter.ts");
|
|
84348
84468
|
/* harmony import */ var _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/Text/TextConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/TextConverter.ts");
|
|
84349
84469
|
/* harmony import */ var _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Textarea/TextAreaConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Textarea/TextAreaConverter.ts");
|
|
84350
|
-
/* harmony import */ var
|
|
84351
|
-
/* harmony import */ var
|
|
84352
|
-
/* harmony import */ var
|
|
84353
|
-
/* harmony import */ var
|
|
84354
|
-
/* harmony import */ var
|
|
84355
|
-
/* harmony import */ var
|
|
84356
|
-
/* harmony import */ var
|
|
84357
|
-
/* harmony import */ var
|
|
84358
|
-
/* harmony import */ var
|
|
84359
|
-
/* harmony import */ var
|
|
84360
|
-
/* harmony import */ var
|
|
84361
|
-
/* harmony import */ var
|
|
84362
|
-
/* harmony import */ var
|
|
84363
|
-
/* harmony import */ var
|
|
84364
|
-
/* harmony import */ var
|
|
84365
|
-
/* harmony import */ var
|
|
84366
|
-
/* harmony import */ var
|
|
84367
|
-
/* harmony import */ var
|
|
84368
|
-
/* harmony import */ var
|
|
84369
|
-
/* harmony import */ var
|
|
84370
|
-
/* harmony import */ var
|
|
84371
|
-
/* harmony import */ var
|
|
84372
|
-
/* harmony import */ var
|
|
84373
|
-
/* harmony import */ var
|
|
84374
|
-
/* harmony import */ var
|
|
84375
|
-
/* harmony import */ var
|
|
84376
|
-
/* harmony import */ var
|
|
84377
|
-
/* harmony import */ var
|
|
84378
|
-
/* harmony import */ var
|
|
84470
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Toggle/ToggleConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleConverter.ts");
|
|
84471
|
+
/* harmony import */ var _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Tour/TourConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Tour/TourConverter.ts");
|
|
84472
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UnitItem/UnitItemConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitItem/UnitItemConverter.ts");
|
|
84473
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UnitList/UnitListConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitList/UnitListConverter.ts");
|
|
84474
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/ValueLength/ValueLengthConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/ValueLength/ValueLengthConverter.ts");
|
|
84475
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockConverter.ts");
|
|
84476
|
+
/* harmony import */ var _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./ElementProcessors/Layout/Warning/WarningConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Warning/WarningConverter.ts");
|
|
84477
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/When/WhenConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/When/WhenConverter.ts");
|
|
84478
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter.ts");
|
|
84479
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter.ts");
|
|
84480
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
84481
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Table2/Table2MultirowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2/Table2MultirowConverter.ts");
|
|
84482
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Table2/Table2RowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2/Table2RowConverter.ts");
|
|
84483
|
+
/* harmony import */ var _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./ElementProcessors/Action/DropdownButton/DropdownButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/DropdownButtonConverter.ts");
|
|
84484
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./ElementProcessors/Layout/FixedTabs/FixedTabConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabConverter.ts");
|
|
84485
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./ElementProcessors/Layout/FixedTabs/FixedTabsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabsConverter.ts");
|
|
84486
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Multiple/MultipleConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multiple/MultipleConverter.ts");
|
|
84487
|
+
/* harmony import */ var _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelConverter.ts");
|
|
84488
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsConverter.ts");
|
|
84489
|
+
/* harmony import */ var _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UserPicklist/UserPicklistConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UserPicklist/UserPicklistConverter.ts");
|
|
84490
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/TaxRebate/TaxRebateConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TaxRebate/TaxRebateConverter.ts");
|
|
84491
|
+
/* harmony import */ var _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Banner/BannerConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner/BannerConverter.ts");
|
|
84492
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Short/ShortConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortConverter.ts");
|
|
84493
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Long/LongConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongConverter.ts");
|
|
84494
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter.ts");
|
|
84495
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/DateView/DateViewConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewConverter.ts");
|
|
84496
|
+
/* harmony import */ var _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ElementProcessors/Action/Kebab/KebabConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Kebab/KebabConverter.ts");
|
|
84497
|
+
/* harmony import */ var _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Clue/InfoBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Clue/InfoBlockConverter.ts");
|
|
84498
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxConverter.ts");
|
|
84499
|
+
/* harmony import */ var _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ElementProcessors/FormParts/AttachmentForm/AttachmentFormConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/AttachmentForm/AttachmentFormConverter.ts");
|
|
84500
|
+
|
|
84379
84501
|
|
|
84380
84502
|
|
|
84381
84503
|
|
|
@@ -84495,7 +84617,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
84495
84617
|
|
|
84496
84618
|
let convertersFromNodeClassMap;
|
|
84497
84619
|
function buildConvertersFromNodeClassMap() {
|
|
84498
|
-
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_116__.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_13__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__.TableCellConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_96__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__.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_109__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_110__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_111__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _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, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_61__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_62__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_63__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_65__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_66__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_67__.PicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_95__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_91__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_92__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_93__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_94__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_90__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_89__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_88__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__.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_100__.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_99__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_98__.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_102__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_101__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_103__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_104__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_105__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_106__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_107__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_108__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_112__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_113__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_114__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_115__.SelectAllCheckboxConverter];
|
|
84620
|
+
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_117__.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_13__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__.TableCellConverter, _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_88__.ToggleConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_97__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__.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_110__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_111__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_112__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _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, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_61__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_62__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_63__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_65__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_66__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_67__.PicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_96__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_92__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_93__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_94__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_95__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_91__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_90__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_89__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__.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_101__.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_100__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_99__.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_103__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_102__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_104__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_105__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_106__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_107__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_108__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_109__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_113__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_114__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_115__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_116__.SelectAllCheckboxConverter];
|
|
84499
84621
|
return new Map(converters.map(converterClass => [converterClass.getAcceptNodeClass(), converterClass]));
|
|
84500
84622
|
}
|
|
84501
84623
|
function getConverterByNodeClass(nodeClass) {
|
|
@@ -84505,7 +84627,7 @@ function getConverterByNodeClass(nodeClass) {
|
|
|
84505
84627
|
}
|
|
84506
84628
|
function* iterateNodesDepthFirst(root) {
|
|
84507
84629
|
yield root;
|
|
84508
|
-
const controlConverterClass = getConverterByNodeClass((0,
|
|
84630
|
+
const controlConverterClass = getConverterByNodeClass((0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_98__.getNodeClass)(root));
|
|
84509
84631
|
if (controlConverterClass != undefined) {
|
|
84510
84632
|
const converter = new controlConverterClass(root);
|
|
84511
84633
|
for (const child of converter.traverseChildren()) {
|
|
@@ -84514,7 +84636,7 @@ function* iterateNodesDepthFirst(root) {
|
|
|
84514
84636
|
}
|
|
84515
84637
|
}
|
|
84516
84638
|
function* iterateNodesDepthFirstWithConverter(root) {
|
|
84517
|
-
const controlConverterClass = getConverterByNodeClass((0,
|
|
84639
|
+
const controlConverterClass = getConverterByNodeClass((0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_98__.getNodeClass)(root));
|
|
84518
84640
|
if (controlConverterClass != undefined) {
|
|
84519
84641
|
const converter = new controlConverterClass(root);
|
|
84520
84642
|
yield [root, converter];
|
|
@@ -85715,7 +85837,7 @@ class DropDownButtonLoadExcelConverter extends _SugarNodeConverter__WEBPACK_IMPO
|
|
|
85715
85837
|
// no children
|
|
85716
85838
|
}
|
|
85717
85839
|
doConvert(context) {
|
|
85718
|
-
var _node$text, _node$textInLoading, _node$combinatorType, _node$combineType, _node$acceptGFVs;
|
|
85840
|
+
var _node$text, _node$textInLoading, _node$combinatorType, _node$combineType, _node$acceptGFVs, _node$needTypeId;
|
|
85719
85841
|
const node = this.getCurrentNodeAs(_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_5__.DropDownButtonLoadExcelNode);
|
|
85720
85842
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("DropDownButtonLoadExcel");
|
|
85721
85843
|
markupBuilder.prop(x => x.pathToTable).set(node.pathToTable);
|
|
@@ -85727,6 +85849,9 @@ class DropDownButtonLoadExcelConverter extends _SugarNodeConverter__WEBPACK_IMPO
|
|
|
85727
85849
|
markupBuilder.prop(x => x.combinatorType).set((_node$combinatorType = node.combinatorType) !== null && _node$combinatorType !== void 0 ? _node$combinatorType : _Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__.CombinatorType.Default);
|
|
85728
85850
|
markupBuilder.prop(x => x.combineType).set((_node$combineType = node.combineType) !== null && _node$combineType !== void 0 ? _node$combineType : _Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__.FufCombineMethod.AddToEnd);
|
|
85729
85851
|
markupBuilder.prop(x => x.acceptGFVs).set((_node$acceptGFVs = node.acceptGFVs) !== null && _node$acceptGFVs !== void 0 ? _node$acceptGFVs : []);
|
|
85852
|
+
markupBuilder.prop(x => x.needTypeId).set((_node$needTypeId = node.needTypeId) !== null && _node$needTypeId !== void 0 ? _node$needTypeId : false);
|
|
85853
|
+
markupBuilder.prop(x => x.navigationPath).set(node.navigationPath);
|
|
85854
|
+
markupBuilder.prop(x => x.lastPathTokenPageExist).set(node.lastPathTokenPageExist);
|
|
85730
85855
|
return markupBuilder.buildConverterResult();
|
|
85731
85856
|
}
|
|
85732
85857
|
}
|
|
@@ -85756,7 +85881,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85756
85881
|
|
|
85757
85882
|
|
|
85758
85883
|
|
|
85759
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9;
|
|
85884
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12;
|
|
85760
85885
|
|
|
85761
85886
|
|
|
85762
85887
|
|
|
@@ -85771,7 +85896,7 @@ let DropDownButtonLoadExcelNode = (_dec = (0,_Serializer_SugarSerializer__WEBPAC
|
|
|
85771
85896
|
`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("combinatorType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.enum(_Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__.CombinatorType.Default, _Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__.CombinatorType.XmlCombinatorByPath), `Default: использует умный комбинатор, который пишется флешами.
|
|
85772
85897
|
XmlCombinatorByPath: новый вид комбинатора по пути. Перекладывает из фуфа в черновик 1 к 1.
|
|
85773
85898
|
В связке с XmlCombinatorByPath - в combineType писать AddToEnd.
|
|
85774
|
-
`), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("acceptGFVs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.array(_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string), `Разрешенные гфв, например старых форматов`), _dec(_class = (_class2 = class DropDownButtonLoadExcelNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
85899
|
+
`), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("acceptGFVs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.array(_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string), `Разрешенные гфв, например старых форматов`), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("needTypeId", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `Атрибут для вычисления typeId в загрузке excel, например в ЕФС.`), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("navigationPath", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Путь для навигации, если он отличается от пути до таблицы (pathToTable). Если этот путь задан, то навигируется в него, иначе в pathToTable.`), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("lastPathTokenPageExist", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Токе пути для определения заполненности раздела.`), _dec(_class = (_class2 = class DropDownButtonLoadExcelNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
85775
85900
|
constructor(...args) {
|
|
85776
85901
|
super(...args);
|
|
85777
85902
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToTable", _descriptor, this);
|
|
@@ -85783,6 +85908,9 @@ let DropDownButtonLoadExcelNode = (_dec = (0,_Serializer_SugarSerializer__WEBPAC
|
|
|
85783
85908
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "combineType", _descriptor7, this);
|
|
85784
85909
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "combinatorType", _descriptor8, this);
|
|
85785
85910
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "acceptGFVs", _descriptor9, this);
|
|
85911
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "needTypeId", _descriptor10, this);
|
|
85912
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationPath", _descriptor11, this);
|
|
85913
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "lastPathTokenPageExist", _descriptor12, this);
|
|
85786
85914
|
}
|
|
85787
85915
|
}, (_descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pathToTable", [_dec2], {
|
|
85788
85916
|
configurable: true,
|
|
@@ -85829,6 +85957,21 @@ let DropDownButtonLoadExcelNode = (_dec = (0,_Serializer_SugarSerializer__WEBPAC
|
|
|
85829
85957
|
enumerable: true,
|
|
85830
85958
|
writable: true,
|
|
85831
85959
|
initializer: null
|
|
85960
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "needTypeId", [_dec11], {
|
|
85961
|
+
configurable: true,
|
|
85962
|
+
enumerable: true,
|
|
85963
|
+
writable: true,
|
|
85964
|
+
initializer: null
|
|
85965
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "navigationPath", [_dec12], {
|
|
85966
|
+
configurable: true,
|
|
85967
|
+
enumerable: true,
|
|
85968
|
+
writable: true,
|
|
85969
|
+
initializer: null
|
|
85970
|
+
}), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "lastPathTokenPageExist", [_dec13], {
|
|
85971
|
+
configurable: true,
|
|
85972
|
+
enumerable: true,
|
|
85973
|
+
writable: true,
|
|
85974
|
+
initializer: null
|
|
85832
85975
|
})), _class2)) || _class);
|
|
85833
85976
|
|
|
85834
85977
|
/***/ }),
|
|
@@ -106429,6 +106572,140 @@ let TextAreaNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODU
|
|
|
106429
106572
|
|
|
106430
106573
|
/***/ }),
|
|
106431
106574
|
|
|
106575
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleConverter.ts":
|
|
106576
|
+
/*!***********************************************************************************************************!*\
|
|
106577
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleConverter.ts ***!
|
|
106578
|
+
\***********************************************************************************************************/
|
|
106579
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
106580
|
+
|
|
106581
|
+
"use strict";
|
|
106582
|
+
__webpack_require__.r(__webpack_exports__);
|
|
106583
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
106584
|
+
/* harmony export */ ToggleConverter: () => (/* binding */ ToggleConverter)
|
|
106585
|
+
/* harmony export */ });
|
|
106586
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
106587
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
106588
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
106589
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
106590
|
+
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
106591
|
+
/* harmony import */ var _ToggleNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ToggleNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleNode.ts");
|
|
106592
|
+
|
|
106593
|
+
|
|
106594
|
+
|
|
106595
|
+
|
|
106596
|
+
|
|
106597
|
+
|
|
106598
|
+
class ToggleConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.SugarNodeConverterBase {
|
|
106599
|
+
static getAcceptNodeClass() {
|
|
106600
|
+
return _ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode;
|
|
106601
|
+
}
|
|
106602
|
+
get nodePaths() {
|
|
106603
|
+
const node = this.getCurrentNodeAs(_ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode);
|
|
106604
|
+
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node)];
|
|
106605
|
+
}
|
|
106606
|
+
doBuildNodeValidations(validationGenerator) {
|
|
106607
|
+
const node = this.getCurrentNodeAs(_ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode);
|
|
106608
|
+
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
106609
|
+
}
|
|
106610
|
+
doBuildDataDeclaration(context) {
|
|
106611
|
+
const node = this.getCurrentNodeAs(_ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode);
|
|
106612
|
+
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding, false, this.getDefaultValue(node))]]), context.addSpecialFieldsEntry(node, {
|
|
106613
|
+
optional: node.dataBinding.optional
|
|
106614
|
+
}), context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), context.addVisibilityPathDeclEntryNew(node, node.dataBinding.requisite));
|
|
106615
|
+
}
|
|
106616
|
+
doBuildNormalizeRules(builder) {
|
|
106617
|
+
const node = this.getCurrentNodeAs(_ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode);
|
|
106618
|
+
return [builder.valueInitializer(node, node.dataBinding, false), ...builder.specialFieldsInitializer(node, {
|
|
106619
|
+
disabled: false
|
|
106620
|
+
})];
|
|
106621
|
+
}
|
|
106622
|
+
getDefaultValue(node) {
|
|
106623
|
+
var _node$dataBinding$def;
|
|
106624
|
+
const defaultValue = (_node$dataBinding$def = node.dataBinding.defaultValue) !== null && _node$dataBinding$def !== void 0 ? _node$dataBinding$def : "";
|
|
106625
|
+
if (defaultValue) {
|
|
106626
|
+
if (defaultValue === "checked") {
|
|
106627
|
+
var _node$checkedValue;
|
|
106628
|
+
return (_node$checkedValue = node.checkedValue) !== null && _node$checkedValue !== void 0 ? _node$checkedValue : true;
|
|
106629
|
+
} else {
|
|
106630
|
+
var _node$uncheckedValue;
|
|
106631
|
+
return (_node$uncheckedValue = node.uncheckedValue) !== null && _node$uncheckedValue !== void 0 ? _node$uncheckedValue : false;
|
|
106632
|
+
}
|
|
106633
|
+
}
|
|
106634
|
+
return defaultValue;
|
|
106635
|
+
}
|
|
106636
|
+
buildChildrenDataDeclaration(context) {
|
|
106637
|
+
const node = this.getCurrentNodeAs(_ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode);
|
|
106638
|
+
return context.processChildrenDataDeclaration(node.children);
|
|
106639
|
+
}
|
|
106640
|
+
*doTraverseChildren() {
|
|
106641
|
+
const node = this.getCurrentNodeAs(_ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode);
|
|
106642
|
+
yield* node.children;
|
|
106643
|
+
}
|
|
106644
|
+
doConvert(context) {
|
|
106645
|
+
const node = this.getCurrentNodeAs(_ToggleNode__WEBPACK_IMPORTED_MODULE_5__.ToggleNode);
|
|
106646
|
+
this.ensurePathExists(node, node.dataBinding.path);
|
|
106647
|
+
const markupBuilderToggle = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("Toggle");
|
|
106648
|
+
markupBuilderToggle.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node));
|
|
106649
|
+
markupBuilderToggle.prop(x => x.checkedValue).set(node.checkedValue);
|
|
106650
|
+
markupBuilderToggle.prop(x => x.captionPosition).set(node.captionPosition);
|
|
106651
|
+
markupBuilderToggle.prop("data-tid").set(node.tid);
|
|
106652
|
+
markupBuilderToggle.prop(x => x.uncheckedValue).set(node.uncheckedValue);
|
|
106653
|
+
if (node.callHelperOnChange) {
|
|
106654
|
+
markupBuilderToggle.prop(x => x.callHelperOnChange).set(context.generateHelperFunctionExpression(node, "callHelperOnChange", node.callHelperOnChange));
|
|
106655
|
+
}
|
|
106656
|
+
if (node.disabled2 != undefined) {
|
|
106657
|
+
markupBuilderToggle.prop(x => x.disabled2).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_4__.buildExpressionPropValue)(node.disabled2));
|
|
106658
|
+
if (this.getLegacyNode().getParent() != undefined) {
|
|
106659
|
+
markupBuilderToggle.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
|
|
106660
|
+
}
|
|
106661
|
+
}
|
|
106662
|
+
markupBuilderToggle.appendChild(context.convertChildNodes(node.children));
|
|
106663
|
+
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_3__.setTooltipSettingsProps)(markupBuilderToggle, node.tooltipSettings);
|
|
106664
|
+
return markupBuilderToggle.buildConverterResult();
|
|
106665
|
+
}
|
|
106666
|
+
}
|
|
106667
|
+
|
|
106668
|
+
/***/ }),
|
|
106669
|
+
|
|
106670
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleNode.ts":
|
|
106671
|
+
/*!******************************************************************************************************!*\
|
|
106672
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleNode.ts ***!
|
|
106673
|
+
\******************************************************************************************************/
|
|
106674
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
106675
|
+
|
|
106676
|
+
"use strict";
|
|
106677
|
+
__webpack_require__.r(__webpack_exports__);
|
|
106678
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
106679
|
+
/* harmony export */ ToggleNode: () => (/* binding */ ToggleNode)
|
|
106680
|
+
/* harmony export */ });
|
|
106681
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
106682
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
106683
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
|
|
106684
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
106685
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
106686
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
106687
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
106688
|
+
/* harmony import */ var _Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../Checkbox/CheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Checkbox/CheckboxNode.ts");
|
|
106689
|
+
|
|
106690
|
+
|
|
106691
|
+
|
|
106692
|
+
var _dec, _dec2, _class, _class2, _descriptor;
|
|
106693
|
+
|
|
106694
|
+
|
|
106695
|
+
let ToggleNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("toggle", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("captionPosition", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.enum("right", "left"), `Располжение текста. По умолчанию right`), _dec(_class = (_class2 = class ToggleNode extends _Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_4__.CheckboxNode {
|
|
106696
|
+
constructor(...args) {
|
|
106697
|
+
super(...args);
|
|
106698
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "captionPosition", _descriptor, this);
|
|
106699
|
+
}
|
|
106700
|
+
}, (_descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "captionPosition", [_dec2], {
|
|
106701
|
+
configurable: true,
|
|
106702
|
+
enumerable: true,
|
|
106703
|
+
writable: true,
|
|
106704
|
+
initializer: null
|
|
106705
|
+
})), _class2)) || _class);
|
|
106706
|
+
|
|
106707
|
+
/***/ }),
|
|
106708
|
+
|
|
106432
106709
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter.ts":
|
|
106433
106710
|
/*!*************************************************************************************************************************!*\
|
|
106434
106711
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter.ts ***!
|
|
@@ -109970,106 +110247,108 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
109970
110247
|
/* harmony import */ var _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelNode.ts");
|
|
109971
110248
|
/* harmony import */ var _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Caption/CaptionNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Caption/CaptionNode.ts");
|
|
109972
110249
|
/* harmony import */ var _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Checkbox/CheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Checkbox/CheckboxNode.ts");
|
|
109973
|
-
/* harmony import */ var
|
|
109974
|
-
/* harmony import */ var
|
|
109975
|
-
/* harmony import */ var
|
|
109976
|
-
/* harmony import */ var
|
|
109977
|
-
/* harmony import */ var
|
|
109978
|
-
/* harmony import */ var
|
|
109979
|
-
/* harmony import */ var
|
|
109980
|
-
/* harmony import */ var
|
|
109981
|
-
/* harmony import */ var
|
|
109982
|
-
/* harmony import */ var
|
|
109983
|
-
/* harmony import */ var
|
|
109984
|
-
/* harmony import */ var
|
|
109985
|
-
/* harmony import */ var
|
|
109986
|
-
/* harmony import */ var
|
|
109987
|
-
/* harmony import */ var
|
|
109988
|
-
/* harmony import */ var
|
|
109989
|
-
/* harmony import */ var
|
|
109990
|
-
/* harmony import */ var
|
|
109991
|
-
/* harmony import */ var
|
|
109992
|
-
/* harmony import */ var
|
|
109993
|
-
/* harmony import */ var
|
|
109994
|
-
/* harmony import */ var
|
|
109995
|
-
/* harmony import */ var
|
|
109996
|
-
/* harmony import */ var
|
|
109997
|
-
/* harmony import */ var
|
|
109998
|
-
/* harmony import */ var
|
|
109999
|
-
/* harmony import */ var
|
|
110000
|
-
/* harmony import */ var
|
|
110001
|
-
/* harmony import */ var
|
|
110002
|
-
/* harmony import */ var
|
|
110003
|
-
/* harmony import */ var
|
|
110004
|
-
/* harmony import */ var
|
|
110005
|
-
/* harmony import */ var
|
|
110006
|
-
/* harmony import */ var
|
|
110007
|
-
/* harmony import */ var
|
|
110008
|
-
/* harmony import */ var
|
|
110009
|
-
/* harmony import */ var
|
|
110010
|
-
/* harmony import */ var
|
|
110011
|
-
/* harmony import */ var
|
|
110012
|
-
/* harmony import */ var
|
|
110013
|
-
/* harmony import */ var
|
|
110014
|
-
/* harmony import */ var
|
|
110015
|
-
/* harmony import */ var
|
|
110016
|
-
/* harmony import */ var
|
|
110017
|
-
/* harmony import */ var
|
|
110018
|
-
/* harmony import */ var
|
|
110019
|
-
/* harmony import */ var
|
|
110020
|
-
/* harmony import */ var
|
|
110021
|
-
/* harmony import */ var
|
|
110022
|
-
/* harmony import */ var
|
|
110023
|
-
/* harmony import */ var
|
|
110024
|
-
/* harmony import */ var
|
|
110025
|
-
/* harmony import */ var
|
|
110026
|
-
/* harmony import */ var
|
|
110027
|
-
/* harmony import */ var
|
|
110028
|
-
/* harmony import */ var
|
|
110029
|
-
/* harmony import */ var
|
|
110030
|
-
/* harmony import */ var
|
|
110031
|
-
/* harmony import */ var
|
|
110032
|
-
/* harmony import */ var
|
|
110033
|
-
/* harmony import */ var
|
|
110034
|
-
/* harmony import */ var
|
|
110035
|
-
/* harmony import */ var
|
|
110036
|
-
/* harmony import */ var
|
|
110037
|
-
/* harmony import */ var
|
|
110038
|
-
/* harmony import */ var
|
|
110039
|
-
/* harmony import */ var
|
|
110040
|
-
/* harmony import */ var
|
|
110041
|
-
/* harmony import */ var
|
|
110042
|
-
/* harmony import */ var
|
|
110043
|
-
/* harmony import */ var
|
|
110044
|
-
/* harmony import */ var
|
|
110045
|
-
/* harmony import */ var
|
|
110046
|
-
/* harmony import */ var
|
|
110047
|
-
/* harmony import */ var
|
|
110048
|
-
/* harmony import */ var
|
|
110049
|
-
/* harmony import */ var
|
|
110050
|
-
/* harmony import */ var
|
|
110051
|
-
/* harmony import */ var
|
|
110052
|
-
/* harmony import */ var
|
|
110053
|
-
/* harmony import */ var
|
|
110054
|
-
/* harmony import */ var
|
|
110055
|
-
/* harmony import */ var
|
|
110056
|
-
/* harmony import */ var
|
|
110057
|
-
/* harmony import */ var
|
|
110058
|
-
/* harmony import */ var
|
|
110059
|
-
/* harmony import */ var
|
|
110060
|
-
/* harmony import */ var
|
|
110061
|
-
/* harmony import */ var
|
|
110062
|
-
/* harmony import */ var
|
|
110063
|
-
/* harmony import */ var
|
|
110064
|
-
/* harmony import */ var
|
|
110065
|
-
/* harmony import */ var
|
|
110066
|
-
/* harmony import */ var
|
|
110067
|
-
/* harmony import */ var
|
|
110068
|
-
/* harmony import */ var
|
|
110069
|
-
/* harmony import */ var
|
|
110070
|
-
/* harmony import */ var
|
|
110071
|
-
/* harmony import */ var
|
|
110072
|
-
/* harmony import */ var
|
|
110250
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Toggle/ToggleNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Toggle/ToggleNode.ts");
|
|
110251
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Choice/ChoiceNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Choice/ChoiceNode.ts");
|
|
110252
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Combobox/ComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Combobox/ComboBoxNode.ts");
|
|
110253
|
+
/* harmony import */ var _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Content/ContentNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Content/ContentNode.ts");
|
|
110254
|
+
/* harmony import */ var _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Cross/CrossNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Cross/CrossNode.ts");
|
|
110255
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Date/DateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateNode.ts");
|
|
110256
|
+
/* harmony import */ var _ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../ElementProcessors/FormParts/DefaultContent/DefaultContentNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/DefaultContent/DefaultContentNode.ts");
|
|
110257
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxNode.ts");
|
|
110258
|
+
/* harmony import */ var _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../ElementProcessors/Typography/Entity/EntityNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Entity/EntityNode.ts");
|
|
110259
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/ExpertNote/ExpertNoteNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ExpertNote/ExpertNoteNode.ts");
|
|
110260
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/AddButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/AddButtonNode.ts");
|
|
110261
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/AddLineNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/AddLineNode.ts");
|
|
110262
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/MenuNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/MenuNode.ts");
|
|
110263
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/RemoveButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/RemoveButtonNode.ts");
|
|
110264
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceButtonNode.ts");
|
|
110265
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceLineNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceLineNode.ts");
|
|
110266
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ViewFileNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ViewFileNode.ts");
|
|
110267
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoaderNode.ts");
|
|
110268
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeNode.ts");
|
|
110269
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterInput/FilterInputNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterInput/FilterInputNode.ts");
|
|
110270
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterList/FilterListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterList/FilterListNode.ts");
|
|
110271
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/FIO/FIONode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/FIONode.ts");
|
|
110272
|
+
/* harmony import */ var _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../ElementProcessors/Layout/Flexbox/FlexboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Flexbox/FlexboxNode.ts");
|
|
110273
|
+
/* harmony import */ var _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../ElementProcessors/Modal/Footer/FooterNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterNode.ts");
|
|
110274
|
+
/* 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");
|
|
110275
|
+
/* 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");
|
|
110276
|
+
/* 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");
|
|
110277
|
+
/* 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");
|
|
110278
|
+
/* 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");
|
|
110279
|
+
/* 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");
|
|
110280
|
+
/* 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");
|
|
110281
|
+
/* 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");
|
|
110282
|
+
/* 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");
|
|
110283
|
+
/* 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");
|
|
110284
|
+
/* 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");
|
|
110285
|
+
/* 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");
|
|
110286
|
+
/* 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");
|
|
110287
|
+
/* 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");
|
|
110288
|
+
/* 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");
|
|
110289
|
+
/* 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");
|
|
110290
|
+
/* 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");
|
|
110291
|
+
/* 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");
|
|
110292
|
+
/* 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");
|
|
110293
|
+
/* 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");
|
|
110294
|
+
/* 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");
|
|
110295
|
+
/* 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");
|
|
110296
|
+
/* 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");
|
|
110297
|
+
/* 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");
|
|
110298
|
+
/* 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");
|
|
110299
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalForm/ModalFormNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalForm/ModalFormNode.ts");
|
|
110300
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode.ts");
|
|
110301
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode.ts");
|
|
110302
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode.ts");
|
|
110303
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode.ts");
|
|
110304
|
+
/* harmony import */ var _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Normativehelp/NormativeHelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Normativehelp/NormativeHelpNode.ts");
|
|
110305
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Otherwise/OtherwiseNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Otherwise/OtherwiseNode.ts");
|
|
110306
|
+
/* harmony import */ var _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Page/PageNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page/PageNode.ts");
|
|
110307
|
+
/* harmony import */ var _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../ElementProcessors/Layout/Pencil/PencilNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Pencil/PencilNode.ts");
|
|
110308
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Picklist/PicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Picklist/PicklistNode.ts");
|
|
110309
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/radio/RadioNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/radio/RadioNode.ts");
|
|
110310
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode.ts");
|
|
110311
|
+
/* harmony import */ var _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode.ts");
|
|
110312
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Select/SelectNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Select/SelectNode.ts");
|
|
110313
|
+
/* harmony import */ var _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode.ts");
|
|
110314
|
+
/* harmony import */ var _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ../ElementProcessors/Layout/Spoiler/SpoilerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Spoiler/SpoilerNode.ts");
|
|
110315
|
+
/* harmony import */ var _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ../ElementProcessors/Typography/Strong/StrongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Strong/StrongNode.ts");
|
|
110316
|
+
/* harmony import */ var _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sub/SubNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sub/SubNode.ts");
|
|
110317
|
+
/* harmony import */ var _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ../ElementProcessors/Layout/Subheader/SubheaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Subheader/SubheaderNode.ts");
|
|
110318
|
+
/* harmony import */ var _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sup/SupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sup/SupNode.ts");
|
|
110319
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Switch/SwitchNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchNode.ts");
|
|
110320
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode.ts");
|
|
110321
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ../ElementProcessors/Layout/SimpleTable/SimpleTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableNode.ts");
|
|
110322
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/StickyTable/StickyTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableNode.ts");
|
|
110323
|
+
/* harmony import */ var _ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/TableCell/TableCellNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/TableCell/TableCellNode.ts");
|
|
110324
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/Text/TextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/TextNode.ts");
|
|
110325
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Textarea/TextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Textarea/TextAreaNode.ts");
|
|
110326
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitItem/UnitItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitItem/UnitItemNode.ts");
|
|
110327
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitList/UnitListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitList/UnitListNode.ts");
|
|
110328
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/ValueLength/ValueLengthNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/ValueLength/ValueLengthNode.ts");
|
|
110329
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode.ts");
|
|
110330
|
+
/* harmony import */ var _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ../ElementProcessors/Layout/Warning/WarningNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Warning/WarningNode.ts");
|
|
110331
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/When/WhenNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/When/WhenNode.ts");
|
|
110332
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode.ts");
|
|
110333
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode.ts");
|
|
110334
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
110335
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ../ElementProcessors/Layout/FixedTabs/FixedTabsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabsNode.ts");
|
|
110336
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multiple/MultipleNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multiple/MultipleNode.ts");
|
|
110337
|
+
/* harmony import */ var _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ../ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode.ts");
|
|
110338
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode.ts");
|
|
110339
|
+
/* harmony import */ var _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UserPicklist/UserPicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UserPicklist/UserPicklistNode.ts");
|
|
110340
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode.ts");
|
|
110341
|
+
/* harmony import */ var _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Banner/BannerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner/BannerNode.ts");
|
|
110342
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Long/LongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongNode.ts");
|
|
110343
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Short/ShortNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortNode.ts");
|
|
110344
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode.ts");
|
|
110345
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/DateView/DateViewNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts");
|
|
110346
|
+
/* harmony import */ var _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ../ElementProcessors/Action/Common/ActionNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Common/ActionNode.ts");
|
|
110347
|
+
/* harmony import */ var _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ../ElementProcessors/Action/Kebab/KebabNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Kebab/KebabNode.ts");
|
|
110348
|
+
/* harmony import */ var _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Clue/InfoBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Clue/InfoBlockNode.ts");
|
|
110349
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxNode.ts");
|
|
110350
|
+
/* harmony import */ var _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ../../../common/SchemaRng/Nodes/SchemaRngRoot */ "./Generator/src/common/SchemaRng/Nodes/SchemaRngRoot.ts");
|
|
110351
|
+
|
|
110073
110352
|
|
|
110074
110353
|
|
|
110075
110354
|
|
|
@@ -110193,94 +110472,95 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
110193
110472
|
|
|
110194
110473
|
|
|
110195
110474
|
function registerDefaultSugarNodes(result) {
|
|
110196
|
-
result.registerNode(
|
|
110197
|
-
result.registerNode(
|
|
110198
|
-
result.registerNode(
|
|
110199
|
-
result.registerNode(
|
|
110200
|
-
result.registerNode(
|
|
110475
|
+
result.registerNode(_ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__.FormNode);
|
|
110476
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_ControlsNode__WEBPACK_IMPORTED_MODULE_47__.ControlsNode);
|
|
110477
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_ControlNode__WEBPACK_IMPORTED_MODULE_48__.ControlNode);
|
|
110478
|
+
result.registerNode(_ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_39__.FileLoaderNode);
|
|
110479
|
+
result.registerNode(_ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__.IconNode);
|
|
110201
110480
|
result.registerNode(_ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode);
|
|
110202
|
-
result.registerNode(
|
|
110203
|
-
result.registerNode(
|
|
110204
|
-
result.registerNode(
|
|
110481
|
+
result.registerNode(_ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode);
|
|
110482
|
+
result.registerNode(_ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode);
|
|
110483
|
+
result.registerNode(_ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_86__.SpoilerNode);
|
|
110205
110484
|
result.registerNode(_ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode);
|
|
110206
|
-
result.registerNode(
|
|
110207
|
-
result.registerNode(
|
|
110485
|
+
result.registerNode(_ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode);
|
|
110486
|
+
result.registerNode(_ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode);
|
|
110208
110487
|
result.registerNode(_ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode);
|
|
110209
|
-
result.registerNode(
|
|
110210
|
-
result.registerNode(
|
|
110211
|
-
result.registerNode(
|
|
110212
|
-
result.registerNode(
|
|
110213
|
-
result.registerNode(
|
|
110214
|
-
result.registerNode(
|
|
110488
|
+
result.registerNode(_ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode);
|
|
110489
|
+
result.registerNode(_ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_76__.NormativeHelpNode);
|
|
110490
|
+
result.registerNode(_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_96__.TextNode);
|
|
110491
|
+
result.registerNode(_ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode);
|
|
110492
|
+
result.registerNode(_ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode);
|
|
110493
|
+
result.registerNode(_ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode);
|
|
110215
110494
|
result.registerNode(_ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode);
|
|
110216
|
-
result.registerNode(
|
|
110217
|
-
result.registerNode(
|
|
110218
|
-
result.registerNode(
|
|
110219
|
-
result.registerNode(
|
|
110220
|
-
result.registerNode(
|
|
110221
|
-
result.registerNode(
|
|
110222
|
-
result.registerNode(
|
|
110223
|
-
result.registerNode(
|
|
110224
|
-
result.registerNode(
|
|
110225
|
-
result.registerNode(
|
|
110226
|
-
result.registerNode(
|
|
110227
|
-
result.registerNode(
|
|
110228
|
-
result.registerNode(
|
|
110229
|
-
result.registerNode(
|
|
110495
|
+
result.registerNode(_ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_82__.RadioGroupNode);
|
|
110496
|
+
result.registerNode(_ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode);
|
|
110497
|
+
result.registerNode(_ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode);
|
|
110498
|
+
result.registerNode(_ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_92__.CrossfitTableNode);
|
|
110499
|
+
result.registerNode(_ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_94__.StickyTableNode);
|
|
110500
|
+
result.registerNode(_ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_93__.SimpleTableNode);
|
|
110501
|
+
result.registerNode(_ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_102__.WarningNode);
|
|
110502
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_114__.LongNode);
|
|
110503
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_115__.ShortNode);
|
|
110504
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_116__.FillHintNode);
|
|
110505
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode);
|
|
110506
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode);
|
|
110507
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode);
|
|
110508
|
+
result.registerNode(_ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__.HelpNode);
|
|
110230
110509
|
result.registerNode(_ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode);
|
|
110231
110510
|
result.registerNode(_ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode);
|
|
110232
|
-
result.registerNode(
|
|
110233
|
-
result.registerNode(
|
|
110234
|
-
result.registerNode(
|
|
110511
|
+
result.registerNode(_ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode);
|
|
110512
|
+
result.registerNode(_ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode);
|
|
110513
|
+
result.registerNode(_ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__.SwitchNode);
|
|
110235
110514
|
result.registerNode(_ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode);
|
|
110236
110515
|
result.registerNode(_ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode);
|
|
110237
|
-
result.registerNode(
|
|
110238
|
-
result.registerNode(
|
|
110239
|
-
result.registerNode(
|
|
110240
|
-
result.registerNode(
|
|
110241
|
-
result.registerNode(
|
|
110242
|
-
result.registerNode(
|
|
110243
|
-
result.registerNode(
|
|
110244
|
-
result.registerNode(
|
|
110245
|
-
result.registerNode(
|
|
110246
|
-
result.registerNode(
|
|
110247
|
-
result.registerNode(
|
|
110248
|
-
result.registerNode(
|
|
110249
|
-
result.registerNode(
|
|
110250
|
-
result.registerNode(
|
|
110251
|
-
result.registerNode(
|
|
110252
|
-
result.registerNode(
|
|
110253
|
-
result.registerNode(
|
|
110254
|
-
result.registerNode(
|
|
110255
|
-
result.registerNode(
|
|
110256
|
-
result.registerNode(
|
|
110257
|
-
result.registerNode(
|
|
110258
|
-
result.registerNode(
|
|
110259
|
-
result.registerNode(
|
|
110260
|
-
result.registerNode(
|
|
110261
|
-
result.registerNode(
|
|
110262
|
-
result.registerNode(
|
|
110263
|
-
result.registerNode(
|
|
110264
|
-
result.registerNode(
|
|
110265
|
-
result.registerNode(
|
|
110266
|
-
result.registerNode(
|
|
110267
|
-
result.registerNode(
|
|
110268
|
-
result.registerNode(
|
|
110269
|
-
result.registerNode(
|
|
110270
|
-
result.registerNode(
|
|
110271
|
-
result.registerNode(
|
|
110272
|
-
result.registerNode(
|
|
110273
|
-
result.registerNode(
|
|
110274
|
-
result.registerNode(
|
|
110516
|
+
result.registerNode(_ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode);
|
|
110517
|
+
result.registerNode(_ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode);
|
|
110518
|
+
result.registerNode(_ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode);
|
|
110519
|
+
result.registerNode(_ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_105__.ColgroupButtonNode);
|
|
110520
|
+
result.registerNode(_ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_80__.PicklistNode);
|
|
110521
|
+
result.registerNode(_ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode);
|
|
110522
|
+
result.registerNode(_ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode);
|
|
110523
|
+
result.registerNode(_ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode);
|
|
110524
|
+
result.registerNode(_ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode);
|
|
110525
|
+
result.registerNode(_ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_84__.SelectNode);
|
|
110526
|
+
result.registerNode(_ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_89__.SubheaderNode);
|
|
110527
|
+
result.registerNode(_ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_90__.SupNode);
|
|
110528
|
+
result.registerNode(_ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_88__.SubNode);
|
|
110529
|
+
result.registerNode(_ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode);
|
|
110530
|
+
result.registerNode(_ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_28__.DefaultContentNode);
|
|
110531
|
+
result.registerNode(_ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode);
|
|
110532
|
+
result.registerNode(_ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode);
|
|
110533
|
+
result.registerNode(_ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_97__.TextAreaNode);
|
|
110534
|
+
result.registerNode(_ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_104__.PopupTextAreaNode);
|
|
110535
|
+
result.registerNode(_ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode);
|
|
110536
|
+
result.registerNode(_ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_85__.SortRadioGroupNode);
|
|
110537
|
+
result.registerNode(_ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode);
|
|
110538
|
+
result.registerNode(_ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_81__.RadioNode);
|
|
110539
|
+
result.registerNode(_ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_87__.StrongNode);
|
|
110540
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode);
|
|
110541
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode);
|
|
110542
|
+
result.registerNode(_ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode);
|
|
110543
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode);
|
|
110544
|
+
result.registerNode(_ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_100__.ValueLengthNode);
|
|
110545
|
+
result.registerNode(_ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode);
|
|
110546
|
+
result.registerNode(_ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_98__.UnitItemNode);
|
|
110547
|
+
result.registerNode(_ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode);
|
|
110548
|
+
result.registerNode(_ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_79__.PencilNode);
|
|
110549
|
+
result.registerNode(_ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_101__.VisibilityBlockNode);
|
|
110550
|
+
result.registerNode(_ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_99__.UnitListNode);
|
|
110551
|
+
result.registerNode(_ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode);
|
|
110552
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_72__.ModalFormCancelNode);
|
|
110553
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormConfirmNode);
|
|
110554
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormLabelNode);
|
|
110275
110555
|
result.registerNode(_ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode);
|
|
110276
|
-
result.registerNode(
|
|
110277
|
-
result.registerNode(
|
|
110556
|
+
result.registerNode(_ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_75__.MultilineFieldNode);
|
|
110557
|
+
result.registerNode(_ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_83__.RemoveRowButtonNode);
|
|
110278
110558
|
result.registerNode(_ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode);
|
|
110279
110559
|
result.registerNode(_ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode);
|
|
110280
110560
|
result.registerNode(_ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode);
|
|
110281
|
-
result.registerNode(
|
|
110282
|
-
result.registerNode(
|
|
110283
|
-
result.registerNode(
|
|
110561
|
+
result.registerNode(_ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.FooterNode);
|
|
110562
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode);
|
|
110563
|
+
result.registerNode(_ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_95__.TableCellNode);
|
|
110284
110564
|
result.registerNode(_ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode);
|
|
110285
110565
|
result.registerNode(_ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode);
|
|
110286
110566
|
result.registerNode(_ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode);
|
|
@@ -110290,22 +110570,22 @@ function registerDefaultSugarNodes(result) {
|
|
|
110290
110570
|
result.registerNode(_ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode);
|
|
110291
110571
|
result.registerNode(_ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode);
|
|
110292
110572
|
result.registerNode(_ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node);
|
|
110293
|
-
result.registerNode(
|
|
110294
|
-
result.registerNode(
|
|
110295
|
-
result.registerNode(
|
|
110296
|
-
result.registerNode(
|
|
110297
|
-
result.registerNode(
|
|
110298
|
-
result.registerNode(
|
|
110299
|
-
result.registerNode(
|
|
110300
|
-
result.registerNode(
|
|
110301
|
-
result.registerNode(
|
|
110302
|
-
result.registerNode(
|
|
110303
|
-
result.registerNode(
|
|
110304
|
-
result.registerNode(
|
|
110305
|
-
result.registerNode(
|
|
110573
|
+
result.registerNode(_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_78__.PageNode);
|
|
110574
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_107__.FixedTabsNode);
|
|
110575
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_107__.FixedTabNode);
|
|
110576
|
+
result.registerNode(_ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_108__.MultipleNode);
|
|
110577
|
+
result.registerNode(_ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_109__.ExcelPastePanelNode);
|
|
110578
|
+
result.registerNode(_ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_110__.ReferencedFieldsNode);
|
|
110579
|
+
result.registerNode(_ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_111__.UserPicklistNode);
|
|
110580
|
+
result.registerNode(_ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_112__.TaxRebateNode);
|
|
110581
|
+
result.registerNode(_ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_113__.BannerNode);
|
|
110582
|
+
result.registerNode(_ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_117__.DateViewNode);
|
|
110583
|
+
result.registerNode(_ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_119__.KebabNode);
|
|
110584
|
+
result.registerNode(_ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_120__.InfoBlockNode);
|
|
110585
|
+
result.registerNode(_ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_121__.SelectAllCheckboxNode);
|
|
110306
110586
|
}
|
|
110307
110587
|
function createDefaultSugarSerializer() {
|
|
110308
|
-
const result = new
|
|
110588
|
+
const result = new _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_106__.SugarSerializer({
|
|
110309
110589
|
unknownProperties: "error"
|
|
110310
110590
|
});
|
|
110311
110591
|
registerDefaultSugarNodes(result);
|
|
@@ -110315,10 +110595,10 @@ function getAllSugarValidationNodeClasses() {
|
|
|
110315
110595
|
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__.DigestConditionTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MininclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxinclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ForcedTypeChecksNode];
|
|
110316
110596
|
}
|
|
110317
110597
|
function getAllSugarNodeClasses() {
|
|
110318
|
-
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_95__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_90__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_90__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_90__.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_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_22__.ChoiceNode, _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_91__.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_44__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_49__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_45__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_50__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_51__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_52__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_54__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_53__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_56__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_55__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_57__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_58__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_59__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_61__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_62__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_63__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_64__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_66__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_68__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_65__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_69__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_33__.MenuNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_72__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_70__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_74__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_75__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_76__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_77__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_48__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_78__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_79__.PicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_80__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_34__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_82__.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_83__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_92__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_84__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_81__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_85__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_93__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_86__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_88__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_87__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_89__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_96__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_103__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_97__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_98__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_99__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_37__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_100__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_101__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_102__.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_68__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_30__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_67__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_114__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_113__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_115__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_60__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_60__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_60__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_92__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_92__.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_93__.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_117__.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_106__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_106__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_107__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_108__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_109__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_110__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_111__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_112__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_116__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_118__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_119__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_120__.SelectAllCheckboxNode];
|
|
110598
|
+
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_96__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_32__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_33__.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_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode, _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_92__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_39__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.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_34__.MenuNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_72__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_75__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_76__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_77__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_78__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_79__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_80__.PicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_81__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_35__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_83__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_36__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_37__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_84__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_93__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_85__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_82__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_86__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_94__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_87__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_89__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_88__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_90__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_97__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_104__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_98__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_99__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_100__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_38__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_101__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_102__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_103__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_115__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_114__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_116__.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_93__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_93__.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_94__.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_118__.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_107__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_107__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_108__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_109__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_110__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_111__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_112__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_113__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_117__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_119__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_120__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_121__.SelectAllCheckboxNode];
|
|
110319
110599
|
}
|
|
110320
110600
|
function getAllSchemaRngNodeClasses() {
|
|
110321
|
-
return [
|
|
110601
|
+
return [_common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.SchemaRngElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.SchemaRngElementChoiceElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.SchemaRngInnerText, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.SchemaRngAttribute, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.SchemaRngType, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.MaxinclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.MininclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.FractiondigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.IntegerdigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.TotaldigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.MaxlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.MinlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.LengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.EnumerationTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_122__.PatternTypeCheck];
|
|
110322
110602
|
}
|
|
110323
110603
|
|
|
110324
110604
|
/***/ }),
|