@kontur.candy/generator 4.298.0-multiuploadefs.0 → 4.298.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 +604 -336
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -574,6 +574,24 @@ module.exports = webpackEmptyContext;
|
|
|
574
574
|
|
|
575
575
|
/***/ }),
|
|
576
576
|
|
|
577
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel sync recursive .md$":
|
|
578
|
+
/*!**************************************************************************************************************!*\
|
|
579
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/ sync .md$ ***!
|
|
580
|
+
\**************************************************************************************************************/
|
|
581
|
+
/***/ ((module) => {
|
|
582
|
+
|
|
583
|
+
function webpackEmptyContext(req) {
|
|
584
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
585
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
586
|
+
throw e;
|
|
587
|
+
}
|
|
588
|
+
webpackEmptyContext.keys = () => ([]);
|
|
589
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
590
|
+
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel sync recursive .md$";
|
|
591
|
+
module.exports = webpackEmptyContext;
|
|
592
|
+
|
|
593
|
+
/***/ }),
|
|
594
|
+
|
|
577
595
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton sync recursive .md$":
|
|
578
596
|
/*!*****************************************************************************************************!*\
|
|
579
597
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/ sync .md$ ***!
|
|
@@ -111775,6 +111793,27 @@ exports.XPathWildcardElement = XPathWildcardElement;
|
|
|
111775
111793
|
|
|
111776
111794
|
/***/ }),
|
|
111777
111795
|
|
|
111796
|
+
/***/ "./Common/CandyApiClient/Types/DraftActions/CombineFufResult.ts":
|
|
111797
|
+
/*!**********************************************************************!*\
|
|
111798
|
+
!*** ./Common/CandyApiClient/Types/DraftActions/CombineFufResult.ts ***!
|
|
111799
|
+
\**********************************************************************/
|
|
111800
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
111801
|
+
|
|
111802
|
+
"use strict";
|
|
111803
|
+
__webpack_require__.r(__webpack_exports__);
|
|
111804
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
111805
|
+
/* harmony export */ "FufCombineMethod": () => (/* binding */ FufCombineMethod)
|
|
111806
|
+
/* harmony export */ });
|
|
111807
|
+
let FufCombineMethod;
|
|
111808
|
+
|
|
111809
|
+
(function (FufCombineMethod) {
|
|
111810
|
+
FufCombineMethod["Merge"] = "Merge";
|
|
111811
|
+
FufCombineMethod["AddToEnd"] = "AddToEnd";
|
|
111812
|
+
FufCombineMethod["Replace"] = "Replace";
|
|
111813
|
+
})(FufCombineMethod || (FufCombineMethod = {}));
|
|
111814
|
+
|
|
111815
|
+
/***/ }),
|
|
111816
|
+
|
|
111778
111817
|
/***/ "./Common/CommonConstants/SectionNames.ts":
|
|
111779
111818
|
/*!************************************************!*\
|
|
111780
111819
|
!*** ./Common/CommonConstants/SectionNames.ts ***!
|
|
@@ -114097,6 +114136,48 @@ function isMatchAbbreviation(abbreviation, value) {
|
|
|
114097
114136
|
|
|
114098
114137
|
/***/ }),
|
|
114099
114138
|
|
|
114139
|
+
/***/ "./Engine/src/Engine/Core/ModalManager/Modals/Utils/Utils.ts":
|
|
114140
|
+
/*!*******************************************************************!*\
|
|
114141
|
+
!*** ./Engine/src/Engine/Core/ModalManager/Modals/Utils/Utils.ts ***!
|
|
114142
|
+
\*******************************************************************/
|
|
114143
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
114144
|
+
|
|
114145
|
+
"use strict";
|
|
114146
|
+
__webpack_require__.r(__webpack_exports__);
|
|
114147
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
114148
|
+
/* harmony export */ "extractFileExtension": () => (/* binding */ extractFileExtension),
|
|
114149
|
+
/* harmony export */ "UploadFileStatuses": () => (/* binding */ UploadFileStatuses),
|
|
114150
|
+
/* harmony export */ "PatchFufSteps": () => (/* binding */ PatchFufSteps),
|
|
114151
|
+
/* harmony export */ "TableType": () => (/* binding */ TableType)
|
|
114152
|
+
/* harmony export */ });
|
|
114153
|
+
const extractFileExtension = fileName => fileName.substring(fileName.lastIndexOf(".") + 1, fileName.length).toLowerCase() || fileName;
|
|
114154
|
+
let UploadFileStatuses;
|
|
114155
|
+
|
|
114156
|
+
(function (UploadFileStatuses) {
|
|
114157
|
+
UploadFileStatuses["new"] = "new";
|
|
114158
|
+
UploadFileStatuses["progress"] = "progress";
|
|
114159
|
+
UploadFileStatuses["error"] = "error";
|
|
114160
|
+
UploadFileStatuses["success"] = "success";
|
|
114161
|
+
})(UploadFileStatuses || (UploadFileStatuses = {}));
|
|
114162
|
+
|
|
114163
|
+
let PatchFufSteps;
|
|
114164
|
+
|
|
114165
|
+
(function (PatchFufSteps) {
|
|
114166
|
+
PatchFufSteps[PatchFufSteps["SelectCombineFufMethod"] = 0] = "SelectCombineFufMethod";
|
|
114167
|
+
PatchFufSteps[PatchFufSteps["SelectFiles"] = 1] = "SelectFiles";
|
|
114168
|
+
PatchFufSteps[PatchFufSteps["ErrorMessage"] = 2] = "ErrorMessage";
|
|
114169
|
+
PatchFufSteps[PatchFufSteps["LoadToForm"] = 3] = "LoadToForm";
|
|
114170
|
+
})(PatchFufSteps || (PatchFufSteps = {}));
|
|
114171
|
+
|
|
114172
|
+
let TableType;
|
|
114173
|
+
|
|
114174
|
+
(function (TableType) {
|
|
114175
|
+
TableType["static"] = "static";
|
|
114176
|
+
TableType["dynamic"] = "dynamic";
|
|
114177
|
+
})(TableType || (TableType = {}));
|
|
114178
|
+
|
|
114179
|
+
/***/ }),
|
|
114180
|
+
|
|
114100
114181
|
/***/ "./Engine/src/Engine/Core/PathUtils/PathUtils.ts":
|
|
114101
114182
|
/*!*******************************************************!*\
|
|
114102
114183
|
!*** ./Engine/src/Engine/Core/PathUtils/PathUtils.ts ***!
|
|
@@ -136269,103 +136350,105 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
136269
136350
|
/* harmony import */ var _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ElementProcessors/Layout/Br/BrConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Br/BrConverter.ts");
|
|
136270
136351
|
/* harmony import */ var _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ElementProcessors/Action/Button/ButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Button/ButtonConverter.ts");
|
|
136271
136352
|
/* harmony import */ var _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ElementProcessors/Action/DownloadExcelButton/DownloadExcelButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DownloadExcelButton/DownloadExcelButtonConverter.ts");
|
|
136272
|
-
/* harmony import */ var
|
|
136273
|
-
/* harmony import */ var
|
|
136274
|
-
/* harmony import */ var
|
|
136275
|
-
/* harmony import */ var
|
|
136276
|
-
/* harmony import */ var
|
|
136277
|
-
/* harmony import */ var
|
|
136278
|
-
/* harmony import */ var
|
|
136279
|
-
/* harmony import */ var
|
|
136280
|
-
/* harmony import */ var
|
|
136281
|
-
/* harmony import */ var
|
|
136282
|
-
/* harmony import */ var
|
|
136283
|
-
/* harmony import */ var
|
|
136284
|
-
/* harmony import */ var
|
|
136285
|
-
/* harmony import */ var
|
|
136286
|
-
/* harmony import */ var
|
|
136287
|
-
/* harmony import */ var
|
|
136288
|
-
/* harmony import */ var
|
|
136289
|
-
/* harmony import */ var
|
|
136290
|
-
/* harmony import */ var
|
|
136291
|
-
/* harmony import */ var
|
|
136292
|
-
/* harmony import */ var
|
|
136293
|
-
/* harmony import */ var
|
|
136294
|
-
/* harmony import */ var
|
|
136295
|
-
/* harmony import */ var
|
|
136296
|
-
/* harmony import */ var
|
|
136297
|
-
/* harmony import */ var
|
|
136298
|
-
/* harmony import */ var
|
|
136299
|
-
/* harmony import */ var
|
|
136300
|
-
/* harmony import */ var
|
|
136301
|
-
/* harmony import */ var
|
|
136302
|
-
/* harmony import */ var
|
|
136303
|
-
/* harmony import */ var
|
|
136304
|
-
/* harmony import */ var
|
|
136305
|
-
/* harmony import */ var
|
|
136306
|
-
/* harmony import */ var
|
|
136307
|
-
/* harmony import */ var
|
|
136308
|
-
/* harmony import */ var
|
|
136309
|
-
/* harmony import */ var
|
|
136310
|
-
/* harmony import */ var
|
|
136311
|
-
/* harmony import */ var
|
|
136312
|
-
/* harmony import */ var
|
|
136313
|
-
/* harmony import */ var
|
|
136314
|
-
/* harmony import */ var
|
|
136315
|
-
/* harmony import */ var
|
|
136316
|
-
/* harmony import */ var
|
|
136317
|
-
/* harmony import */ var
|
|
136318
|
-
/* harmony import */ var
|
|
136319
|
-
/* harmony import */ var
|
|
136320
|
-
/* harmony import */ var
|
|
136321
|
-
/* harmony import */ var
|
|
136322
|
-
/* harmony import */ var
|
|
136323
|
-
/* harmony import */ var
|
|
136324
|
-
/* harmony import */ var
|
|
136325
|
-
/* harmony import */ var
|
|
136326
|
-
/* harmony import */ var
|
|
136327
|
-
/* harmony import */ var
|
|
136328
|
-
/* harmony import */ var
|
|
136329
|
-
/* harmony import */ var
|
|
136330
|
-
/* harmony import */ var
|
|
136331
|
-
/* harmony import */ var
|
|
136332
|
-
/* harmony import */ var
|
|
136333
|
-
/* harmony import */ var
|
|
136334
|
-
/* harmony import */ var
|
|
136335
|
-
/* harmony import */ var
|
|
136336
|
-
/* harmony import */ var
|
|
136337
|
-
/* harmony import */ var
|
|
136338
|
-
/* harmony import */ var
|
|
136339
|
-
/* harmony import */ var
|
|
136340
|
-
/* harmony import */ var
|
|
136341
|
-
/* harmony import */ var
|
|
136342
|
-
/* harmony import */ var
|
|
136343
|
-
/* harmony import */ var
|
|
136344
|
-
/* harmony import */ var
|
|
136345
|
-
/* harmony import */ var
|
|
136346
|
-
/* harmony import */ var
|
|
136347
|
-
/* harmony import */ var
|
|
136348
|
-
/* harmony import */ var
|
|
136349
|
-
/* harmony import */ var
|
|
136350
|
-
/* harmony import */ var
|
|
136351
|
-
/* harmony import */ var
|
|
136352
|
-
/* harmony import */ var
|
|
136353
|
-
/* harmony import */ var
|
|
136354
|
-
/* harmony import */ var
|
|
136355
|
-
/* harmony import */ var
|
|
136356
|
-
/* harmony import */ var
|
|
136357
|
-
/* harmony import */ var
|
|
136358
|
-
/* harmony import */ var
|
|
136359
|
-
/* harmony import */ var
|
|
136360
|
-
/* harmony import */ var
|
|
136361
|
-
/* harmony import */ var
|
|
136362
|
-
/* harmony import */ var
|
|
136363
|
-
/* harmony import */ var
|
|
136364
|
-
/* harmony import */ var
|
|
136365
|
-
/* harmony import */ var
|
|
136366
|
-
/* harmony import */ var
|
|
136367
|
-
/* harmony import */ var
|
|
136368
|
-
/* harmony import */ var
|
|
136353
|
+
/* harmony import */ var _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelConverter.ts");
|
|
136354
|
+
/* harmony import */ var _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Caption/CaptionConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Caption/CaptionConverter.ts");
|
|
136355
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Checkbox/CheckboxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Checkbox/CheckboxConverter.ts");
|
|
136356
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Choice/ChoiceConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Choice/ChoiceConverter.ts");
|
|
136357
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Combobox/ComboBoxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Combobox/ComboBoxConverter.ts");
|
|
136358
|
+
/* harmony import */ var _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Content/ContentConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Content/ContentConverter.ts");
|
|
136359
|
+
/* harmony import */ var _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Cross/CrossConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Cross/CrossConverter.ts");
|
|
136360
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Date/DateConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateConverter.ts");
|
|
136361
|
+
/* harmony import */ var _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ElementProcessors/FormParts/DefaultContent/DefaultContentConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/DefaultContent/DefaultContentConverter.ts");
|
|
136362
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxConverter.ts");
|
|
136363
|
+
/* harmony import */ var _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ElementProcessors/Typography/Entity/EntityConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Entity/EntityConverter.ts");
|
|
136364
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/ExpertNote/ExpertNoteConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ExpertNote/ExpertNoteConverter.ts");
|
|
136365
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/FileLoader/FileLoaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoaderConverter.ts");
|
|
136366
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeConverter.ts");
|
|
136367
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/FilterInput/FilterInputConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterInput/FilterInputConverter.ts");
|
|
136368
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/FilterList/FilterListConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterList/FilterListConverter.ts");
|
|
136369
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/FIO/FIOConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/FIOConverter.ts");
|
|
136370
|
+
/* harmony import */ var _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./ElementProcessors/Layout/Flexbox/FlexboxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Flexbox/FlexboxConverter.ts");
|
|
136371
|
+
/* harmony import */ var _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./ElementProcessors/Modal/Footer/FooterConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterConverter.ts");
|
|
136372
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Form/FormConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/FormConverter.ts");
|
|
136373
|
+
/* harmony import */ var _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./ElementProcessors/FormParts/FormInfo/FormInfoConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/FormInfo/FormInfoConverter.ts");
|
|
136374
|
+
/* harmony import */ var _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./ElementProcessors/Typography/Gray/GrayConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Gray/GrayConverter.ts");
|
|
136375
|
+
/* harmony import */ var _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./ElementProcessors/Layout/GridCol/GridColConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridCol/GridColConverter.ts");
|
|
136376
|
+
/* harmony import */ var _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ElementProcessors/Layout/GridRow/GridRowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridRow/GridRowConverter.ts");
|
|
136377
|
+
/* harmony import */ var _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Header/HeaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Header/HeaderConverter.ts");
|
|
136378
|
+
/* harmony import */ var _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/HeaderMenu/HeaderMenuConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/HeaderMenu/HeaderMenuConverter.ts");
|
|
136379
|
+
/* harmony import */ var _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Help/HelpConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Help/HelpConverter.ts");
|
|
136380
|
+
/* harmony import */ var _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Helpinfo/HelpInfoConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Helpinfo/HelpInfoConverter.ts");
|
|
136381
|
+
/* harmony import */ var _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./ElementProcessors/Typography/Highlight/HighlightConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Highlight/HighlightConverter.ts");
|
|
136382
|
+
/* harmony import */ var _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./ElementProcessors/Layout/Hr/HrConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Hr/HrConverter.ts");
|
|
136383
|
+
/* harmony import */ var _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./ElementProcessors/Typography/Icon/IconConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Icon/IconConverter.ts");
|
|
136384
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/If/IfConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/If/IfConverter.ts");
|
|
136385
|
+
/* harmony import */ var _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./ElementProcessors/Layout/Img/ImgConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Img/ImgConverter.ts");
|
|
136386
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/INN/INNConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/INN/INNConverter.ts");
|
|
136387
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Input/InputConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Input/InputConverter.ts");
|
|
136388
|
+
/* harmony import */ var _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./ElementProcessors/Typography/Italic/ItalicConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Italic/ItalicConverter.ts");
|
|
136389
|
+
/* harmony import */ var _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./ElementProcessors/Layout/ListItem/ListItemConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem/ListItemConverter.ts");
|
|
136390
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Kladr/KladrConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Kladr/KladrConverter.ts");
|
|
136391
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/Linetext/LinetextConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Linetext/LinetextConverter.ts");
|
|
136392
|
+
/* harmony import */ var _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./ElementProcessors/Action/Link/LinkConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Link/LinkConverter.ts");
|
|
136393
|
+
/* harmony import */ var _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./ElementProcessors/Layout/List/ListConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List/ListConverter.ts");
|
|
136394
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalForm/ModalFormConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalForm/ModalFormConverter.ts");
|
|
136395
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalFormCancel/ModalFormCancelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormCancel/ModalFormCancelConverter.ts");
|
|
136396
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmConverter.ts");
|
|
136397
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./ElementProcessors/Modal/ModalFormLabel/ModalFormLabelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel/ModalFormLabelConverter.ts");
|
|
136398
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Multilinefield/MultilineFieldConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/MultilineFieldConverter.ts");
|
|
136399
|
+
/* harmony import */ var _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Normativehelp/NormativeHelpConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Normativehelp/NormativeHelpConverter.ts");
|
|
136400
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Otherwise/OtherwiseConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Otherwise/OtherwiseConverter.ts");
|
|
136401
|
+
/* harmony import */ var _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Page/PageConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page/PageConverter.ts");
|
|
136402
|
+
/* harmony import */ var _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ElementProcessors/Layout/Pencil/PencilConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Pencil/PencilConverter.ts");
|
|
136403
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Picklist/PicklistConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Picklist/PicklistConverter.ts");
|
|
136404
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/radio/RadioConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/radio/RadioConverter.ts");
|
|
136405
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/RadioGroup/RadioGroupConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup/RadioGroupConverter.ts");
|
|
136406
|
+
/* harmony import */ var _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonConverter.ts");
|
|
136407
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/Select/SelectConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Select/SelectConverter.ts");
|
|
136408
|
+
/* harmony import */ var _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupConverter.ts");
|
|
136409
|
+
/* harmony import */ var _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./ElementProcessors/Layout/Spoiler/SpoilerConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Spoiler/SpoilerConverter.ts");
|
|
136410
|
+
/* harmony import */ var _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./ElementProcessors/Typography/Strong/StrongConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Strong/StrongConverter.ts");
|
|
136411
|
+
/* harmony import */ var _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ElementProcessors/Typography/Sub/SubConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sub/SubConverter.ts");
|
|
136412
|
+
/* harmony import */ var _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ElementProcessors/Layout/Subheader/SubheaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Subheader/SubheaderConverter.ts");
|
|
136413
|
+
/* harmony import */ var _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./ElementProcessors/Typography/Sup/SupConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sup/SupConverter.ts");
|
|
136414
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Switch/SwitchConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchConverter.ts");
|
|
136415
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/CrossfitTable/CrossfitTableColumnConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableColumnConverter.ts");
|
|
136416
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/CrossfitTable/CrossfitTableConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableConverter.ts");
|
|
136417
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ElementProcessors/Layout/SimpleTable/SimpleTableColumnConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableColumnConverter.ts");
|
|
136418
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ElementProcessors/Layout/SimpleTable/SimpleTableConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableConverter.ts");
|
|
136419
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/StickyTable/StickyTableColumnConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableColumnConverter.ts");
|
|
136420
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/StickyTable/StickyTableWithMultilineConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableWithMultilineConverter.ts");
|
|
136421
|
+
/* 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");
|
|
136422
|
+
/* 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");
|
|
136423
|
+
/* 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");
|
|
136424
|
+
/* harmony import */ var _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Tour/TourConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Tour/TourConverter.ts");
|
|
136425
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UnitItem/UnitItemConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitItem/UnitItemConverter.ts");
|
|
136426
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UnitList/UnitListConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitList/UnitListConverter.ts");
|
|
136427
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/ValueLength/ValueLengthConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/ValueLength/ValueLengthConverter.ts");
|
|
136428
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockConverter.ts");
|
|
136429
|
+
/* harmony import */ var _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./ElementProcessors/Layout/Warning/WarningConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Warning/WarningConverter.ts");
|
|
136430
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/When/WhenConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/When/WhenConverter.ts");
|
|
136431
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaConverter.ts");
|
|
136432
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter.ts");
|
|
136433
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
136434
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Table2/Table2MultirowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2/Table2MultirowConverter.ts");
|
|
136435
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Table2/Table2RowConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2/Table2RowConverter.ts");
|
|
136436
|
+
/* harmony import */ var _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./ElementProcessors/Action/DropdownButton/DropdownButtonConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/DropdownButtonConverter.ts");
|
|
136437
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./ElementProcessors/Layout/FixedTabs/FixedTabConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabConverter.ts");
|
|
136438
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./ElementProcessors/Layout/FixedTabs/FixedTabsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabsConverter.ts");
|
|
136439
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/Multiple/MultipleConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multiple/MultipleConverter.ts");
|
|
136440
|
+
/* harmony import */ var _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelConverter.ts");
|
|
136441
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsConverter.ts");
|
|
136442
|
+
/* harmony import */ var _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./ElementProcessors/FormParts/UserPicklist/UserPicklistConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UserPicklist/UserPicklistConverter.ts");
|
|
136443
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/TaxRebate/TaxRebateConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TaxRebate/TaxRebateConverter.ts");
|
|
136444
|
+
/* harmony import */ var _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./ElementProcessors/FormParts/Banner/BannerConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner/BannerConverter.ts");
|
|
136445
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Short/ShortConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortConverter.ts");
|
|
136446
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Long/LongConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongConverter.ts");
|
|
136447
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter.ts");
|
|
136448
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/DateView/DateViewConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewConverter.ts");
|
|
136449
|
+
/* harmony import */ var _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./ElementProcessors/Action/Kebab/KebabConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Kebab/KebabConverter.ts");
|
|
136450
|
+
/* harmony import */ var _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ElementProcessors/Helpers/Clue/InfoBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Clue/InfoBlockConverter.ts");
|
|
136451
|
+
|
|
136369
136452
|
|
|
136370
136453
|
|
|
136371
136454
|
|
|
@@ -136483,7 +136566,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
136483
136566
|
let convertersFromNodeClassMap;
|
|
136484
136567
|
|
|
136485
136568
|
function buildConvertersFromNodeClassMap() {
|
|
136486
|
-
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _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_17__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_18__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_19__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_84__.TableCellConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_20__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_21__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_22__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_95__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_23__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_24__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_25__.DiadocSuggestComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_26__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_27__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_28__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_29__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_30__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_31__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_32__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_33__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_35__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_36__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_37__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_38__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_39__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_40__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_41__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_42__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_43__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_44__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_45__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_46__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_108__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_109__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_110__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_47__.IfConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_48__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_49__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_50__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_51__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_52__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_53__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_54__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_55__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_56__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_57__.ModalFormConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_61__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_62__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_64__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_65__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_66__.PicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_67__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_68__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_69__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_70__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_71__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_72__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_73__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_74__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_75__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_76__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_85__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_86__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_94__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_90__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_91__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_92__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_63__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_93__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_89__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_88__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_34__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_87__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_77__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_82__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_78__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_80__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_83__.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_99__.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_98__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_97__.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_101__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_100__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_102__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_103__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_104__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_105__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_106__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_107__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_111__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_112__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_113__.InfoBlockConverter];
|
|
136569
|
+
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _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];
|
|
136487
136570
|
return new Map(converters.map(converterClass => [converterClass.getAcceptNodeClass(), converterClass]));
|
|
136488
136571
|
}
|
|
136489
136572
|
|
|
@@ -136495,7 +136578,7 @@ function getConverterByNodeClass(nodeClass) {
|
|
|
136495
136578
|
}
|
|
136496
136579
|
function* iterateNodesDepthFirst(root) {
|
|
136497
136580
|
yield root;
|
|
136498
|
-
const controlConverterClass = getConverterByNodeClass((0,
|
|
136581
|
+
const controlConverterClass = getConverterByNodeClass((0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_97__.getNodeClass)(root));
|
|
136499
136582
|
|
|
136500
136583
|
if (controlConverterClass != undefined) {
|
|
136501
136584
|
const converter = new controlConverterClass(root);
|
|
@@ -136506,7 +136589,7 @@ function* iterateNodesDepthFirst(root) {
|
|
|
136506
136589
|
}
|
|
136507
136590
|
}
|
|
136508
136591
|
function* iterateNodesDepthFirstWithConverter(root) {
|
|
136509
|
-
const controlConverterClass = getConverterByNodeClass((0,
|
|
136592
|
+
const controlConverterClass = getConverterByNodeClass((0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_97__.getNodeClass)(root));
|
|
136510
136593
|
|
|
136511
136594
|
if (controlConverterClass != undefined) {
|
|
136512
136595
|
const converter = new controlConverterClass(root);
|
|
@@ -137570,12 +137653,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
137570
137653
|
|
|
137571
137654
|
|
|
137572
137655
|
|
|
137573
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9,
|
|
137656
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8;
|
|
137574
137657
|
|
|
137575
137658
|
|
|
137576
137659
|
|
|
137577
137660
|
|
|
137578
|
-
let ActionNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("action", `Элемент выпадашки/кнопки с выпадющим меню`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Action/Common sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataReferenceMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("onClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("metricName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Название метрики"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("disabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, ""), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("icon", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Название кастомной иконки`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.
|
|
137661
|
+
let ActionNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("action", `Элемент выпадашки/кнопки с выпадющим меню`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Action/Common sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataReferenceMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("onClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("metricName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Название метрики"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("disabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, ""), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("icon", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Название кастомной иконки`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(), _dec(_class = (_class2 = class ActionNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
137579
137662
|
constructor(...args) {
|
|
137580
137663
|
super(...args);
|
|
137581
137664
|
|
|
@@ -137593,9 +137676,7 @@ let ActionNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE
|
|
|
137593
137676
|
|
|
137594
137677
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "icon", _descriptor7, this);
|
|
137595
137678
|
|
|
137596
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
137597
|
-
|
|
137598
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor9, this);
|
|
137679
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor8, this);
|
|
137599
137680
|
}
|
|
137600
137681
|
|
|
137601
137682
|
getOwnPath() {
|
|
@@ -137637,12 +137718,7 @@ let ActionNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE
|
|
|
137637
137718
|
enumerable: true,
|
|
137638
137719
|
writable: true,
|
|
137639
137720
|
initializer: null
|
|
137640
|
-
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
137641
|
-
configurable: true,
|
|
137642
|
-
enumerable: true,
|
|
137643
|
-
writable: true,
|
|
137644
|
-
initializer: null
|
|
137645
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec10], {
|
|
137721
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec9], {
|
|
137646
137722
|
configurable: true,
|
|
137647
137723
|
enumerable: true,
|
|
137648
137724
|
writable: true,
|
|
@@ -137827,6 +137903,164 @@ let DownloadExcelButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IM
|
|
|
137827
137903
|
|
|
137828
137904
|
/***/ }),
|
|
137829
137905
|
|
|
137906
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelConverter.ts":
|
|
137907
|
+
/*!***************************************************************************************************************************************!*\
|
|
137908
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelConverter.ts ***!
|
|
137909
|
+
\***************************************************************************************************************************************/
|
|
137910
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
137911
|
+
|
|
137912
|
+
"use strict";
|
|
137913
|
+
__webpack_require__.r(__webpack_exports__);
|
|
137914
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
137915
|
+
/* harmony export */ "DropDownButtonLoadExcelConverter": () => (/* binding */ DropDownButtonLoadExcelConverter)
|
|
137916
|
+
/* harmony export */ });
|
|
137917
|
+
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
137918
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
137919
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
137920
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
137921
|
+
/* harmony import */ var _Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../../../../Common/CandyApiClient/Types/DraftActions/CombineFufResult */ "./Common/CandyApiClient/Types/DraftActions/CombineFufResult.ts");
|
|
137922
|
+
/* harmony import */ var _DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./DropDownButtonLoadExcelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelNode.ts");
|
|
137923
|
+
|
|
137924
|
+
|
|
137925
|
+
|
|
137926
|
+
|
|
137927
|
+
|
|
137928
|
+
|
|
137929
|
+
class DropDownButtonLoadExcelConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
137930
|
+
static getAcceptNodeClass() {
|
|
137931
|
+
return _DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_5__.DropDownButtonLoadExcelNode;
|
|
137932
|
+
}
|
|
137933
|
+
|
|
137934
|
+
get nodePaths() {
|
|
137935
|
+
const node = this.getCurrentNodeAs(_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_5__.DropDownButtonLoadExcelNode);
|
|
137936
|
+
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
137937
|
+
}
|
|
137938
|
+
|
|
137939
|
+
doBuildDataDeclaration(context) {
|
|
137940
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__.emptyDataDeclarationCollection;
|
|
137941
|
+
}
|
|
137942
|
+
|
|
137943
|
+
buildChildrenDataDeclaration(context) {
|
|
137944
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__.emptyDataDeclarationCollection;
|
|
137945
|
+
}
|
|
137946
|
+
|
|
137947
|
+
*doTraverseChildren() {// no children
|
|
137948
|
+
}
|
|
137949
|
+
|
|
137950
|
+
doConvert(context) {
|
|
137951
|
+
var _node$text, _node$textInLoading, _node$combineType;
|
|
137952
|
+
|
|
137953
|
+
const node = this.getCurrentNodeAs(_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_5__.DropDownButtonLoadExcelNode);
|
|
137954
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("DropDownButtonLoadExcel");
|
|
137955
|
+
markupBuilder.prop(x => x.pathToTable).set(node.pathToTable);
|
|
137956
|
+
markupBuilder.prop("data-tid").set(node.tid);
|
|
137957
|
+
markupBuilder.prop(x => x.size).set(node.size);
|
|
137958
|
+
markupBuilder.prop(x => x.text).set((_node$text = node.text) !== null && _node$text !== void 0 ? _node$text : "Действия");
|
|
137959
|
+
markupBuilder.prop(x => x.textInLoading).set((_node$textInLoading = node.textInLoading) !== null && _node$textInLoading !== void 0 ? _node$textInLoading : "Скачиваем");
|
|
137960
|
+
markupBuilder.prop(x => x.tableType).set(node.tableType);
|
|
137961
|
+
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);
|
|
137962
|
+
return markupBuilder.buildConverterResult();
|
|
137963
|
+
}
|
|
137964
|
+
|
|
137965
|
+
}
|
|
137966
|
+
|
|
137967
|
+
/***/ }),
|
|
137968
|
+
|
|
137969
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelNode.ts":
|
|
137970
|
+
/*!**********************************************************************************************************************************!*\
|
|
137971
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel/DropDownButtonLoadExcelNode.ts ***!
|
|
137972
|
+
\**********************************************************************************************************************************/
|
|
137973
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
137974
|
+
|
|
137975
|
+
"use strict";
|
|
137976
|
+
__webpack_require__.r(__webpack_exports__);
|
|
137977
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
137978
|
+
/* harmony export */ "DropDownButtonLoadExcelNode": () => (/* binding */ DropDownButtonLoadExcelNode)
|
|
137979
|
+
/* harmony export */ });
|
|
137980
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
137981
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
137982
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
|
|
137983
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
137984
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
137985
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
137986
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
137987
|
+
/* harmony import */ var _Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../../../../Common/CandyApiClient/Types/DraftActions/CombineFufResult */ "./Common/CandyApiClient/Types/DraftActions/CombineFufResult.ts");
|
|
137988
|
+
/* harmony import */ var _Engine_src_Engine_Core_ModalManager_Modals_Utils_Utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../../../../../Engine/src/Engine/Core/ModalManager/Modals/Utils/Utils */ "./Engine/src/Engine/Core/ModalManager/Modals/Utils/Utils.ts");
|
|
137989
|
+
|
|
137990
|
+
|
|
137991
|
+
|
|
137992
|
+
|
|
137993
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7;
|
|
137994
|
+
|
|
137995
|
+
|
|
137996
|
+
|
|
137997
|
+
|
|
137998
|
+
let DropDownButtonLoadExcelNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("dropdownbuttonloadexcel", `Кнопка для выгрузки и загрузки файла Excel.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropDownButtonLoadExcel sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("pathToTable", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string.required, "Путь до multiline, абсолютный."), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("size", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType["enum"]("small", "medium", "large"), "Размер кнопки. По умолчанинию small"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Текст в кнопке до загрузки файла. По умолчанию 'Действия'."), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("textInLoading", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Текст в кнопке при загрузке файла в Excel. По умолчанию 'Скачиваем'"), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tableType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType["enum"](_Engine_src_Engine_Core_ModalManager_Modals_Utils_Utils__WEBPACK_IMPORTED_MODULE_5__.TableType["static"], _Engine_src_Engine_Core_ModalManager_Modals_Utils_Utils__WEBPACK_IMPORTED_MODULE_5__.TableType.dynamic).required, `Статичная или динамическая таблица.
|
|
137999
|
+
Статическая - таблица без изменений количества строк и столбцов.
|
|
138000
|
+
Динамическая - таблица с изменением количесва строк и/или столбцов. Например, мультилайн.
|
|
138001
|
+
Если в таблице есть и статические и данамические строки, то в этот атрибут писать static.
|
|
138002
|
+
`), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("combineType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType["enum"](_Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__.FufCombineMethod.AddToEnd, _Common_CandyApiClient_Types_DraftActions_CombineFufResult__WEBPACK_IMPORTED_MODULE_4__.FufCombineMethod.Merge), `Как объединять таблицы, если таблица в форме динамическая.
|
|
138003
|
+
AddToEnd - добавляет в конец данные, даже если есть повторяющиеся.
|
|
138004
|
+
Merge - по умному мерджит данные с одинаковыми полями (нужно спрашивать реализовано ли такое, пока что только для ПСВ).
|
|
138005
|
+
По умолчанию - AddToEnd.
|
|
138006
|
+
`), _dec(_class = (_class2 = class DropDownButtonLoadExcelNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
138007
|
+
constructor(...args) {
|
|
138008
|
+
super(...args);
|
|
138009
|
+
|
|
138010
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToTable", _descriptor, this);
|
|
138011
|
+
|
|
138012
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid", _descriptor2, this);
|
|
138013
|
+
|
|
138014
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "size", _descriptor3, this);
|
|
138015
|
+
|
|
138016
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "text", _descriptor4, this);
|
|
138017
|
+
|
|
138018
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "textInLoading", _descriptor5, this);
|
|
138019
|
+
|
|
138020
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tableType", _descriptor6, this);
|
|
138021
|
+
|
|
138022
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "combineType", _descriptor7, this);
|
|
138023
|
+
}
|
|
138024
|
+
|
|
138025
|
+
}, (_descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pathToTable", [_dec2], {
|
|
138026
|
+
configurable: true,
|
|
138027
|
+
enumerable: true,
|
|
138028
|
+
writable: true,
|
|
138029
|
+
initializer: null
|
|
138030
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tid", [_dec3], {
|
|
138031
|
+
configurable: true,
|
|
138032
|
+
enumerable: true,
|
|
138033
|
+
writable: true,
|
|
138034
|
+
initializer: null
|
|
138035
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "size", [_dec4], {
|
|
138036
|
+
configurable: true,
|
|
138037
|
+
enumerable: true,
|
|
138038
|
+
writable: true,
|
|
138039
|
+
initializer: null
|
|
138040
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "text", [_dec5], {
|
|
138041
|
+
configurable: true,
|
|
138042
|
+
enumerable: true,
|
|
138043
|
+
writable: true,
|
|
138044
|
+
initializer: null
|
|
138045
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "textInLoading", [_dec6], {
|
|
138046
|
+
configurable: true,
|
|
138047
|
+
enumerable: true,
|
|
138048
|
+
writable: true,
|
|
138049
|
+
initializer: null
|
|
138050
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tableType", [_dec7], {
|
|
138051
|
+
configurable: true,
|
|
138052
|
+
enumerable: true,
|
|
138053
|
+
writable: true,
|
|
138054
|
+
initializer: null
|
|
138055
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "combineType", [_dec8], {
|
|
138056
|
+
configurable: true,
|
|
138057
|
+
enumerable: true,
|
|
138058
|
+
writable: true,
|
|
138059
|
+
initializer: null
|
|
138060
|
+
})), _class2)) || _class);
|
|
138061
|
+
|
|
138062
|
+
/***/ }),
|
|
138063
|
+
|
|
137830
138064
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/DropdownButtonConverter.ts":
|
|
137831
138065
|
/*!*********************************************************************************************************************!*\
|
|
137832
138066
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/DropdownButtonConverter.ts ***!
|
|
@@ -137842,9 +138076,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
137842
138076
|
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
137843
138077
|
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
137844
138078
|
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
137845
|
-
/* harmony import */ var
|
|
137846
|
-
/* harmony import */ var _DropdownButtonNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./DropdownButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/DropdownButtonNode.ts");
|
|
137847
|
-
|
|
138079
|
+
/* harmony import */ var _DropdownButtonNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./DropdownButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DropdownButton/DropdownButtonNode.ts");
|
|
137848
138080
|
|
|
137849
138081
|
|
|
137850
138082
|
|
|
@@ -137852,11 +138084,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
137852
138084
|
|
|
137853
138085
|
class DropdownButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
137854
138086
|
static getAcceptNodeClass() {
|
|
137855
|
-
return
|
|
138087
|
+
return _DropdownButtonNode__WEBPACK_IMPORTED_MODULE_4__.DropdownButtonNode;
|
|
137856
138088
|
}
|
|
137857
138089
|
|
|
137858
138090
|
get nodePaths() {
|
|
137859
|
-
const node = this.getCurrentNodeAs(
|
|
138091
|
+
const node = this.getCurrentNodeAs(_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_4__.DropdownButtonNode);
|
|
137860
138092
|
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
137861
138093
|
}
|
|
137862
138094
|
|
|
@@ -137865,12 +138097,12 @@ class DropdownButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODU
|
|
|
137865
138097
|
}
|
|
137866
138098
|
|
|
137867
138099
|
buildChildrenDataDeclaration(context) {
|
|
137868
|
-
const node = this.getCurrentNodeAs(
|
|
138100
|
+
const node = this.getCurrentNodeAs(_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_4__.DropdownButtonNode);
|
|
137869
138101
|
return context.mergeDataDeclaration(...node.items.map(item => context.processChildrenDataDeclaration(item.children)));
|
|
137870
138102
|
}
|
|
137871
138103
|
|
|
137872
138104
|
*doTraverseChildren() {
|
|
137873
|
-
const node = this.getCurrentNodeAs(
|
|
138105
|
+
const node = this.getCurrentNodeAs(_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_4__.DropdownButtonNode);
|
|
137874
138106
|
|
|
137875
138107
|
for (const item of node.items) {
|
|
137876
138108
|
yield* item.children;
|
|
@@ -137878,7 +138110,7 @@ class DropdownButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODU
|
|
|
137878
138110
|
}
|
|
137879
138111
|
|
|
137880
138112
|
doConvert(context) {
|
|
137881
|
-
const node = this.getCurrentNodeAs(
|
|
138113
|
+
const node = this.getCurrentNodeAs(_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_4__.DropdownButtonNode);
|
|
137882
138114
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("DropdownButton");
|
|
137883
138115
|
markupBuilder.prop("data-tid").set(node.tid);
|
|
137884
138116
|
markupBuilder.prop(x => x.width).set(node.width);
|
|
@@ -137891,16 +138123,6 @@ class DropdownButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODU
|
|
|
137891
138123
|
itemBuilder.prop("data-tid").set(item.tid);
|
|
137892
138124
|
itemBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(item));
|
|
137893
138125
|
itemBuilder.prop(x => x.metricName).set(item.metricName);
|
|
137894
|
-
itemBuilder.prop(x => x.menuSeparator).set(item.menuSeparator);
|
|
137895
|
-
|
|
137896
|
-
if (item.disabled2 != undefined) {
|
|
137897
|
-
itemBuilder.prop(x => x.disabled2).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_4__.buildExpressionPropValue)(item.disabled2));
|
|
137898
|
-
|
|
137899
|
-
if (this.getLegacyNode().getParent() != undefined) {
|
|
137900
|
-
itemBuilder.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
|
|
137901
|
-
}
|
|
137902
|
-
}
|
|
137903
|
-
|
|
137904
138126
|
itemBuilder.prop(x => x.onActionClick).set(context.generateHelperFunctionExpression(node, "onClick", item.onClick));
|
|
137905
138127
|
itemBuilder.appendChild(context.convertChildNodes(item.children));
|
|
137906
138128
|
}
|
|
@@ -148116,6 +148338,8 @@ class AddRowButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE
|
|
|
148116
148338
|
markupBuilder.prop(x => x.validationPath).set(validationPath);
|
|
148117
148339
|
markupBuilder.prop(x => x.type).set(node.type);
|
|
148118
148340
|
markupBuilder.prop(x => x.text).set(node.text);
|
|
148341
|
+
markupBuilder.prop(x => x.filteredUniqKey).set(node.filteredUniqKey);
|
|
148342
|
+
markupBuilder.prop("data-tid").set(node.tid);
|
|
148119
148343
|
|
|
148120
148344
|
if (node.maxOccurs != undefined) {
|
|
148121
148345
|
const maxOccursWithDependencies = (0,_common_ConditionUtils__WEBPACK_IMPORTED_MODULE_5__.convertConditionToJsOrFailWithFriendlySugarError)(node.maxOccurs, "path", _Common_KCLangRuntimeUtils__WEBPACK_IMPORTED_MODULE_6__.KCLangRuntimeUtils.kcLangUtilsName, node, "maxOccurs");
|
|
@@ -148168,14 +148392,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
148168
148392
|
|
|
148169
148393
|
|
|
148170
148394
|
|
|
148171
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7;
|
|
148395
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9;
|
|
148172
148396
|
|
|
148173
148397
|
|
|
148174
148398
|
|
|
148175
148399
|
|
|
148176
148400
|
|
|
148177
148401
|
|
|
148178
|
-
let AddRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("addrowbutton", `Кнопка добавления новой строки в мультилайн`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AddRowButton sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataReferenceMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_6__.ValidationInfoNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_7__.FocusManagementNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.javascriptExpression,
|
|
148402
|
+
let AddRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("addrowbutton", `Кнопка добавления новой строки в мультилайн`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AddRowButton sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataReferenceMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_6__.ValidationInfoNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_7__.FocusManagementNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.javascriptExpression, `Максимальное возможное количество элементов в заданном множественном элементе. Может быть ${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.javaScriptExpressionLink)}.`), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("type", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType["enum"]("link", "button"), `Тип кнопки. default: link`), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.localizedString, `Текст в кнопке. default: "Добавить строку"`), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("validationPath", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.bindingPath, `Путь для валидации, если она нужна"`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("filteredUniqKey", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, `Уникальный ключ фильтрации multirow, используется, для фильтраций одних и тех же путей иннера
|
|
148403
|
+
разными фильтрами. Задается произвольной строкой. Фильтры с одинаковым ключом фильтрации получают одинаковый результат фильтрации`), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec(_class = (_class2 = class AddRowButtonNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
148179
148404
|
constructor(...args) {
|
|
148180
148405
|
super(...args);
|
|
148181
148406
|
|
|
@@ -148192,6 +148417,10 @@ let AddRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
|
|
|
148192
148417
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "text", _descriptor6, this);
|
|
148193
148418
|
|
|
148194
148419
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationPath", _descriptor7, this);
|
|
148420
|
+
|
|
148421
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filteredUniqKey", _descriptor8, this);
|
|
148422
|
+
|
|
148423
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid", _descriptor9, this);
|
|
148195
148424
|
}
|
|
148196
148425
|
|
|
148197
148426
|
getOwnPath() {
|
|
@@ -148233,6 +148462,16 @@ let AddRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
|
|
|
148233
148462
|
enumerable: true,
|
|
148234
148463
|
writable: true,
|
|
148235
148464
|
initializer: null
|
|
148465
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "filteredUniqKey", [_dec9], {
|
|
148466
|
+
configurable: true,
|
|
148467
|
+
enumerable: true,
|
|
148468
|
+
writable: true,
|
|
148469
|
+
initializer: null
|
|
148470
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tid", [_dec10], {
|
|
148471
|
+
configurable: true,
|
|
148472
|
+
enumerable: true,
|
|
148473
|
+
writable: true,
|
|
148474
|
+
initializer: null
|
|
148236
148475
|
})), _class2)) || _class);
|
|
148237
148476
|
|
|
148238
148477
|
/***/ }),
|
|
@@ -152904,6 +153143,9 @@ class Table2MultirowConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODU
|
|
|
152904
153143
|
this.ensurePathExists(node, node.dataScope.path);
|
|
152905
153144
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getNewBindingPathExpression)(node));
|
|
152906
153145
|
markupBuilder.prop(x => x.deferredInit).set(node.deferredInit);
|
|
153146
|
+
markupBuilder.prop(x => x.filteredUniqKey).set(node.filteredUniqKey);
|
|
153147
|
+
markupBuilder.prop(x => x.defaultFilter).set(node.defaultFilter);
|
|
153148
|
+
markupBuilder.prop(x => x.debounceDisable).set(node.debounceDisable);
|
|
152907
153149
|
markupBuilder.appendChild(context.convertChildNodes(node.columns));
|
|
152908
153150
|
return markupBuilder.buildConverterResult();
|
|
152909
153151
|
}
|
|
@@ -152951,7 +153193,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
152951
153193
|
|
|
152952
153194
|
|
|
152953
153195
|
|
|
152954
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _dec6, _dec7, _dec8, _class4, _class5, _descriptor5, _descriptor6, _dec9, _dec10, _dec11, _dec12, _class7, _class8, _descriptor7, _descriptor8, _descriptor9, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _class10, _class11, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14,
|
|
153196
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _dec6, _dec7, _dec8, _class4, _class5, _descriptor5, _descriptor6, _dec9, _dec10, _dec11, _dec12, _class7, _class8, _descriptor7, _descriptor8, _descriptor9, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _class10, _class11, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _dec22, _dec23, _dec24, _dec25, _dec26, _class13, _class14, _descriptor18, _descriptor19, _descriptor20, _descriptor21;
|
|
152955
153197
|
|
|
152956
153198
|
|
|
152957
153199
|
|
|
@@ -153048,7 +153290,9 @@ let Table2RowNode = (_dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MO
|
|
|
153048
153290
|
writable: true,
|
|
153049
153291
|
initializer: null
|
|
153050
153292
|
})), _class8)) || _class7);
|
|
153051
|
-
let Table2MultirowNode = (_dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("multirow", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, ``), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("deferredInit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `Имеет смысл только c optional="true". Всегда отображать на форме детей, несмотря на опциональность. Инициализация в иннере произойдет в момент загрузки контрола.`), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number,
|
|
153293
|
+
let Table2MultirowNode = (_dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("multirow", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, ``), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("deferredInit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `Имеет смысл только c optional="true". Всегда отображать на форме детей, несмотря на опциональность. Инициализация в иннере произойдет в момент загрузки контрола.`), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number, `Максимальное возможное количество элементов в заданном множественном элементе.`), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("debounceDisable", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `см. описание debounceDisable в multiline`), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("filteredUniqKey", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Уникальный ключ фильтрации multirow, используется, для фильтраций одних и тех же путей иннера
|
|
153294
|
+
разными фильтрами. Задается произвольной строкой. Фильтры с одинаковым ключом фильтрации получают одинаковый результат фильтрации
|
|
153295
|
+
В случае применения с таблицы с AddRowButton в нем нужно указать такой же filteredUniqKey`), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("defaultFilter", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.objectLiteral(), `Дает возможность изначально фильтровать multirow по определенному выражению`), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(["column", "verticalcolumn"], [Table2VerticalColumnNode, Table2ColumnNode]), _dec13(_class10 = (_class11 = class Table2MultirowNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
153052
153296
|
constructor(...args) {
|
|
153053
153297
|
super(...args);
|
|
153054
153298
|
|
|
@@ -153060,7 +153304,13 @@ let Table2MultirowNode = (_dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPOR
|
|
|
153060
153304
|
|
|
153061
153305
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxOccurs", _descriptor13, this);
|
|
153062
153306
|
|
|
153063
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
153307
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "debounceDisable", _descriptor14, this);
|
|
153308
|
+
|
|
153309
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filteredUniqKey", _descriptor15, this);
|
|
153310
|
+
|
|
153311
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "defaultFilter", _descriptor16, this);
|
|
153312
|
+
|
|
153313
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns", _descriptor17, this);
|
|
153064
153314
|
}
|
|
153065
153315
|
|
|
153066
153316
|
getOwnPath() {
|
|
@@ -153091,45 +153341,60 @@ let Table2MultirowNode = (_dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPOR
|
|
|
153091
153341
|
enumerable: true,
|
|
153092
153342
|
writable: true,
|
|
153093
153343
|
initializer: null
|
|
153094
|
-
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "
|
|
153344
|
+
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "debounceDisable", [_dec18], {
|
|
153345
|
+
configurable: true,
|
|
153346
|
+
enumerable: true,
|
|
153347
|
+
writable: true,
|
|
153348
|
+
initializer: null
|
|
153349
|
+
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "filteredUniqKey", [_dec19], {
|
|
153350
|
+
configurable: true,
|
|
153351
|
+
enumerable: true,
|
|
153352
|
+
writable: true,
|
|
153353
|
+
initializer: null
|
|
153354
|
+
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "defaultFilter", [_dec20], {
|
|
153355
|
+
configurable: true,
|
|
153356
|
+
enumerable: true,
|
|
153357
|
+
writable: true,
|
|
153358
|
+
initializer: null
|
|
153359
|
+
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "columns", [_dec21], {
|
|
153095
153360
|
configurable: true,
|
|
153096
153361
|
enumerable: true,
|
|
153097
153362
|
writable: true,
|
|
153098
153363
|
initializer: null
|
|
153099
153364
|
})), _class11)) || _class10);
|
|
153100
|
-
let Table2Node = (
|
|
153365
|
+
let Table2Node = (_dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("table2", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("columnWidths", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.delimitedStringArray, ``), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("columnPadding", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, ``), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(["row", "multirow"], [Table2MultirowNode, Table2RowNode]), _dec22(_class13 = (_class14 = class Table2Node extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
153101
153366
|
constructor(...args) {
|
|
153102
153367
|
super(...args);
|
|
153103
153368
|
|
|
153104
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope",
|
|
153369
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor18, this);
|
|
153105
153370
|
|
|
153106
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnWidths",
|
|
153371
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnWidths", _descriptor19, this);
|
|
153107
153372
|
|
|
153108
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnPadding",
|
|
153373
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnPadding", _descriptor20, this);
|
|
153109
153374
|
|
|
153110
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows",
|
|
153375
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows", _descriptor21, this);
|
|
153111
153376
|
}
|
|
153112
153377
|
|
|
153113
153378
|
getOwnPath() {
|
|
153114
153379
|
return this.dataScope.getOwnPath();
|
|
153115
153380
|
}
|
|
153116
153381
|
|
|
153117
|
-
}, (
|
|
153382
|
+
}, (_descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "dataScope", [_dec23], {
|
|
153118
153383
|
configurable: true,
|
|
153119
153384
|
enumerable: true,
|
|
153120
153385
|
writable: true,
|
|
153121
153386
|
initializer: null
|
|
153122
|
-
}),
|
|
153387
|
+
}), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "columnWidths", [_dec24], {
|
|
153123
153388
|
configurable: true,
|
|
153124
153389
|
enumerable: true,
|
|
153125
153390
|
writable: true,
|
|
153126
153391
|
initializer: null
|
|
153127
|
-
}),
|
|
153392
|
+
}), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "columnPadding", [_dec25], {
|
|
153128
153393
|
configurable: true,
|
|
153129
153394
|
enumerable: true,
|
|
153130
153395
|
writable: true,
|
|
153131
153396
|
initializer: null
|
|
153132
|
-
}),
|
|
153397
|
+
}), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "rows", [_dec26], {
|
|
153133
153398
|
configurable: true,
|
|
153134
153399
|
enumerable: true,
|
|
153135
153400
|
writable: true,
|
|
@@ -164850,106 +165115,108 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
164850
165115
|
/* harmony import */ var _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../ElementProcessors/Layout/Br/BrNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Br/BrNode.ts");
|
|
164851
165116
|
/* harmony import */ var _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../ElementProcessors/Action/Button/ButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Button/ButtonNode.ts");
|
|
164852
165117
|
/* harmony import */ var _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../ElementProcessors/Action/DownloadExcelButton/DownloadExcelButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/DownloadExcelButton/DownloadExcelButtonNode.ts");
|
|
164853
|
-
/* harmony import */ var
|
|
164854
|
-
/* harmony import */ var
|
|
164855
|
-
/* harmony import */ var
|
|
164856
|
-
/* harmony import */ var
|
|
164857
|
-
/* harmony import */ var
|
|
164858
|
-
/* harmony import */ var
|
|
164859
|
-
/* harmony import */ var
|
|
164860
|
-
/* harmony import */ var
|
|
164861
|
-
/* harmony import */ var
|
|
164862
|
-
/* harmony import */ var
|
|
164863
|
-
/* harmony import */ var
|
|
164864
|
-
/* harmony import */ var
|
|
164865
|
-
/* harmony import */ var
|
|
164866
|
-
/* harmony import */ var
|
|
164867
|
-
/* harmony import */ var
|
|
164868
|
-
/* harmony import */ var
|
|
164869
|
-
/* harmony import */ var
|
|
164870
|
-
/* harmony import */ var
|
|
164871
|
-
/* harmony import */ var
|
|
164872
|
-
/* harmony import */ var
|
|
164873
|
-
/* harmony import */ var
|
|
164874
|
-
/* harmony import */ var
|
|
164875
|
-
/* harmony import */ var
|
|
164876
|
-
/* harmony import */ var
|
|
164877
|
-
/* harmony import */ var
|
|
164878
|
-
/* harmony import */ var
|
|
164879
|
-
/* harmony import */ var
|
|
164880
|
-
/* harmony import */ var
|
|
164881
|
-
/* harmony import */ var
|
|
164882
|
-
/* harmony import */ var
|
|
164883
|
-
/* harmony import */ var
|
|
164884
|
-
/* harmony import */ var
|
|
164885
|
-
/* harmony import */ var
|
|
164886
|
-
/* harmony import */ var
|
|
164887
|
-
/* harmony import */ var
|
|
164888
|
-
/* harmony import */ var
|
|
164889
|
-
/* harmony import */ var
|
|
164890
|
-
/* harmony import */ var
|
|
164891
|
-
/* harmony import */ var
|
|
164892
|
-
/* harmony import */ var
|
|
164893
|
-
/* harmony import */ var
|
|
164894
|
-
/* harmony import */ var
|
|
164895
|
-
/* harmony import */ var
|
|
164896
|
-
/* harmony import */ var
|
|
164897
|
-
/* harmony import */ var
|
|
164898
|
-
/* harmony import */ var
|
|
164899
|
-
/* harmony import */ var
|
|
164900
|
-
/* harmony import */ var
|
|
164901
|
-
/* harmony import */ var
|
|
164902
|
-
/* harmony import */ var
|
|
164903
|
-
/* harmony import */ var
|
|
164904
|
-
/* harmony import */ var
|
|
164905
|
-
/* harmony import */ var
|
|
164906
|
-
/* harmony import */ var
|
|
164907
|
-
/* harmony import */ var
|
|
164908
|
-
/* harmony import */ var
|
|
164909
|
-
/* harmony import */ var
|
|
164910
|
-
/* harmony import */ var
|
|
164911
|
-
/* harmony import */ var
|
|
164912
|
-
/* harmony import */ var
|
|
164913
|
-
/* harmony import */ var
|
|
164914
|
-
/* harmony import */ var
|
|
164915
|
-
/* harmony import */ var
|
|
164916
|
-
/* harmony import */ var
|
|
164917
|
-
/* harmony import */ var
|
|
164918
|
-
/* harmony import */ var
|
|
164919
|
-
/* harmony import */ var
|
|
164920
|
-
/* harmony import */ var
|
|
164921
|
-
/* harmony import */ var
|
|
164922
|
-
/* harmony import */ var
|
|
164923
|
-
/* harmony import */ var
|
|
164924
|
-
/* harmony import */ var
|
|
164925
|
-
/* harmony import */ var
|
|
164926
|
-
/* harmony import */ var
|
|
164927
|
-
/* harmony import */ var
|
|
164928
|
-
/* harmony import */ var
|
|
164929
|
-
/* harmony import */ var
|
|
164930
|
-
/* harmony import */ var
|
|
164931
|
-
/* harmony import */ var
|
|
164932
|
-
/* harmony import */ var
|
|
164933
|
-
/* harmony import */ var
|
|
164934
|
-
/* harmony import */ var
|
|
164935
|
-
/* harmony import */ var
|
|
164936
|
-
/* harmony import */ var
|
|
164937
|
-
/* harmony import */ var
|
|
164938
|
-
/* harmony import */ var
|
|
164939
|
-
/* harmony import */ var
|
|
164940
|
-
/* harmony import */ var
|
|
164941
|
-
/* harmony import */ var
|
|
164942
|
-
/* harmony import */ var
|
|
164943
|
-
/* harmony import */ var
|
|
164944
|
-
/* harmony import */ var
|
|
164945
|
-
/* harmony import */ var
|
|
164946
|
-
/* harmony import */ var
|
|
164947
|
-
/* harmony import */ var
|
|
164948
|
-
/* harmony import */ var
|
|
164949
|
-
/* harmony import */ var
|
|
164950
|
-
/* harmony import */ var
|
|
164951
|
-
/* harmony import */ var
|
|
164952
|
-
/* harmony import */ var
|
|
165118
|
+
/* 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");
|
|
165119
|
+
/* 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");
|
|
165120
|
+
/* 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");
|
|
165121
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Choice/ChoiceNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Choice/ChoiceNode.ts");
|
|
165122
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Combobox/ComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Combobox/ComboBoxNode.ts");
|
|
165123
|
+
/* harmony import */ var _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Content/ContentNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Content/ContentNode.ts");
|
|
165124
|
+
/* harmony import */ var _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Cross/CrossNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Cross/CrossNode.ts");
|
|
165125
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Date/DateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Date/DateNode.ts");
|
|
165126
|
+
/* harmony import */ var _ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../ElementProcessors/FormParts/DefaultContent/DefaultContentNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/DefaultContent/DefaultContentNode.ts");
|
|
165127
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxNode.ts");
|
|
165128
|
+
/* harmony import */ var _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../ElementProcessors/Typography/Entity/EntityNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Entity/EntityNode.ts");
|
|
165129
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/ExpertNote/ExpertNoteNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ExpertNote/ExpertNoteNode.ts");
|
|
165130
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/AddButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/AddButtonNode.ts");
|
|
165131
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/AddLineNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/AddLineNode.ts");
|
|
165132
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/MenuNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/MenuNode.ts");
|
|
165133
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/RemoveButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/RemoveButtonNode.ts");
|
|
165134
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceButtonNode.ts");
|
|
165135
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceLineNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ReplaceLineNode.ts");
|
|
165136
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoader/ViewFileNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoader/ViewFileNode.ts");
|
|
165137
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/FileLoader/FileLoaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FileLoader/FileLoaderNode.ts");
|
|
165138
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterDateRange/FilterDateRangeNode.ts");
|
|
165139
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterInput/FilterInputNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterInput/FilterInputNode.ts");
|
|
165140
|
+
/* harmony import */ var _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/FilterList/FilterListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterList/FilterListNode.ts");
|
|
165141
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/FIO/FIONode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/FIONode.ts");
|
|
165142
|
+
/* harmony import */ var _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../ElementProcessors/Layout/Flexbox/FlexboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Flexbox/FlexboxNode.ts");
|
|
165143
|
+
/* harmony import */ var _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../ElementProcessors/Modal/Footer/FooterNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterNode.ts");
|
|
165144
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/FormNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/FormNode.ts");
|
|
165145
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_Nodes_ControlsNode__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/Nodes/ControlsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/Nodes/ControlsNode.ts");
|
|
165146
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_Nodes_ControlNode__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/Nodes/ControlNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/Nodes/ControlNode.ts");
|
|
165147
|
+
/* harmony import */ var _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Form/Nodes/PanelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form/Nodes/PanelNode.ts");
|
|
165148
|
+
/* harmony import */ var _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../ElementProcessors/FormParts/FormInfo/FormInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/FormInfo/FormInfoNode.ts");
|
|
165149
|
+
/* harmony import */ var _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../ElementProcessors/Typography/Gray/GrayNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Gray/GrayNode.ts");
|
|
165150
|
+
/* harmony import */ var _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../ElementProcessors/Layout/GridCol/GridColNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridCol/GridColNode.ts");
|
|
165151
|
+
/* harmony import */ var _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../ElementProcessors/Layout/GridRow/GridRowNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/GridRow/GridRowNode.ts");
|
|
165152
|
+
/* harmony import */ var _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Header/HeaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Header/HeaderNode.ts");
|
|
165153
|
+
/* harmony import */ var _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/HeaderMenu/HeaderMenuNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/HeaderMenu/HeaderMenuNode.ts");
|
|
165154
|
+
/* harmony import */ var _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Help/HelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Help/HelpNode.ts");
|
|
165155
|
+
/* harmony import */ var _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Helpinfo/HelpInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Helpinfo/HelpInfoNode.ts");
|
|
165156
|
+
/* harmony import */ var _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../ElementProcessors/Typography/Highlight/HighlightNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Highlight/HighlightNode.ts");
|
|
165157
|
+
/* harmony import */ var _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../ElementProcessors/Layout/Hr/HrNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Hr/HrNode.ts");
|
|
165158
|
+
/* harmony import */ var _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../ElementProcessors/Typography/Icon/IconNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Icon/IconNode.ts");
|
|
165159
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/If/IfNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/If/IfNode.ts");
|
|
165160
|
+
/* harmony import */ var _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../ElementProcessors/Layout/Img/ImgNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Img/ImgNode.ts");
|
|
165161
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/INN/INNNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/INN/INNNode.ts");
|
|
165162
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Input/InputNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Input/InputNode.ts");
|
|
165163
|
+
/* harmony import */ var _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../ElementProcessors/Typography/Italic/ItalicNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Italic/ItalicNode.ts");
|
|
165164
|
+
/* harmony import */ var _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../ElementProcessors/Layout/ListItem/ListItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem/ListItemNode.ts");
|
|
165165
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Kladr/KladrNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Kladr/KladrNode.ts");
|
|
165166
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/Linetext/LineTextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Linetext/LineTextNode.ts");
|
|
165167
|
+
/* harmony import */ var _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ../ElementProcessors/Action/Link/LinkNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Link/LinkNode.ts");
|
|
165168
|
+
/* harmony import */ var _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ../ElementProcessors/Layout/List/ListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List/ListNode.ts");
|
|
165169
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalForm/ModalFormNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalForm/ModalFormNode.ts");
|
|
165170
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode.ts");
|
|
165171
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode.ts");
|
|
165172
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode.ts");
|
|
165173
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode.ts");
|
|
165174
|
+
/* harmony import */ var _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Normativehelp/NormativeHelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Normativehelp/NormativeHelpNode.ts");
|
|
165175
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Otherwise/OtherwiseNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Otherwise/OtherwiseNode.ts");
|
|
165176
|
+
/* harmony import */ var _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Page/PageNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page/PageNode.ts");
|
|
165177
|
+
/* harmony import */ var _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../ElementProcessors/Layout/Pencil/PencilNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Pencil/PencilNode.ts");
|
|
165178
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Picklist/PicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Picklist/PicklistNode.ts");
|
|
165179
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/radio/RadioNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/radio/RadioNode.ts");
|
|
165180
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode.ts");
|
|
165181
|
+
/* harmony import */ var _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode.ts");
|
|
165182
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Select/SelectNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Select/SelectNode.ts");
|
|
165183
|
+
/* harmony import */ var _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode.ts");
|
|
165184
|
+
/* harmony import */ var _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ../ElementProcessors/Layout/Spoiler/SpoilerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Spoiler/SpoilerNode.ts");
|
|
165185
|
+
/* harmony import */ var _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ../ElementProcessors/Typography/Strong/StrongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Strong/StrongNode.ts");
|
|
165186
|
+
/* harmony import */ var _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sub/SubNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sub/SubNode.ts");
|
|
165187
|
+
/* harmony import */ var _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ../ElementProcessors/Layout/Subheader/SubheaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Subheader/SubheaderNode.ts");
|
|
165188
|
+
/* harmony import */ var _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sup/SupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sup/SupNode.ts");
|
|
165189
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Switch/SwitchNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchNode.ts");
|
|
165190
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode.ts");
|
|
165191
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ../ElementProcessors/Layout/SimpleTable/SimpleTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableNode.ts");
|
|
165192
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/StickyTable/StickyTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableNode.ts");
|
|
165193
|
+
/* harmony import */ var _ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/TableCell/TableCellNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/TableCell/TableCellNode.ts");
|
|
165194
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/Text/TextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/TextNode.ts");
|
|
165195
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Textarea/TextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Textarea/TextAreaNode.ts");
|
|
165196
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitItem/UnitItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitItem/UnitItemNode.ts");
|
|
165197
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitList/UnitListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitList/UnitListNode.ts");
|
|
165198
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/ValueLength/ValueLengthNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/ValueLength/ValueLengthNode.ts");
|
|
165199
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode.ts");
|
|
165200
|
+
/* harmony import */ var _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ../ElementProcessors/Layout/Warning/WarningNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Warning/WarningNode.ts");
|
|
165201
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/When/WhenNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/When/WhenNode.ts");
|
|
165202
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode.ts");
|
|
165203
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode.ts");
|
|
165204
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
165205
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ../ElementProcessors/Layout/FixedTabs/FixedTabsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabsNode.ts");
|
|
165206
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multiple/MultipleNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multiple/MultipleNode.ts");
|
|
165207
|
+
/* harmony import */ var _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ../ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode.ts");
|
|
165208
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode.ts");
|
|
165209
|
+
/* harmony import */ var _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UserPicklist/UserPicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UserPicklist/UserPicklistNode.ts");
|
|
165210
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode.ts");
|
|
165211
|
+
/* harmony import */ var _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Banner/BannerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner/BannerNode.ts");
|
|
165212
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Long/LongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongNode.ts");
|
|
165213
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Short/ShortNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortNode.ts");
|
|
165214
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode.ts");
|
|
165215
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/DateView/DateViewNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts");
|
|
165216
|
+
/* harmony import */ var _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ../ElementProcessors/Action/Common/ActionNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Common/ActionNode.ts");
|
|
165217
|
+
/* harmony import */ var _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ../ElementProcessors/Action/Kebab/KebabNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Kebab/KebabNode.ts");
|
|
165218
|
+
/* harmony import */ var _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Clue/InfoBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Clue/InfoBlockNode.ts");
|
|
165219
|
+
|
|
164953
165220
|
|
|
164954
165221
|
|
|
164955
165222
|
|
|
@@ -165071,93 +165338,94 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
165071
165338
|
|
|
165072
165339
|
|
|
165073
165340
|
function registerDefaultSugarNodes(result) {
|
|
165074
|
-
result.registerNode(
|
|
165075
|
-
result.registerNode(
|
|
165076
|
-
result.registerNode(
|
|
165077
|
-
result.registerNode(
|
|
165078
|
-
result.registerNode(
|
|
165341
|
+
result.registerNode(_ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_45__.FormNode);
|
|
165342
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_ControlsNode__WEBPACK_IMPORTED_MODULE_46__.ControlsNode);
|
|
165343
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_ControlNode__WEBPACK_IMPORTED_MODULE_47__.ControlNode);
|
|
165344
|
+
result.registerNode(_ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_38__.FileLoaderNode);
|
|
165345
|
+
result.registerNode(_ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_59__.IconNode);
|
|
165079
165346
|
result.registerNode(_ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode);
|
|
165080
|
-
result.registerNode(
|
|
165081
|
-
result.registerNode(
|
|
165082
|
-
result.registerNode(
|
|
165347
|
+
result.registerNode(_ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_43__.FlexboxNode);
|
|
165348
|
+
result.registerNode(_ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_30__.ExpertNoteNode);
|
|
165349
|
+
result.registerNode(_ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_85__.SpoilerNode);
|
|
165083
165350
|
result.registerNode(_ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode);
|
|
165084
|
-
result.registerNode(
|
|
165085
|
-
result.registerNode(
|
|
165086
|
-
result.registerNode(
|
|
165087
|
-
result.registerNode(
|
|
165088
|
-
result.registerNode(
|
|
165089
|
-
result.registerNode(
|
|
165090
|
-
result.registerNode(
|
|
165091
|
-
result.registerNode(
|
|
165092
|
-
result.registerNode(
|
|
165351
|
+
result.registerNode(_ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_68__.LinkNode);
|
|
165352
|
+
result.registerNode(_ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_24__.ContentNode);
|
|
165353
|
+
result.registerNode(_ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode);
|
|
165354
|
+
result.registerNode(_ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_53__.HeaderNode);
|
|
165355
|
+
result.registerNode(_ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_75__.NormativeHelpNode);
|
|
165356
|
+
result.registerNode(_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_95__.TextNode);
|
|
165357
|
+
result.registerNode(_ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_50__.GrayNode);
|
|
165358
|
+
result.registerNode(_ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_63__.InputNode);
|
|
165359
|
+
result.registerNode(_ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_23__.ComboBoxNode);
|
|
165093
165360
|
result.registerNode(_ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode);
|
|
165094
|
-
result.registerNode(
|
|
165095
|
-
result.registerNode(
|
|
165096
|
-
result.registerNode(
|
|
165097
|
-
result.registerNode(
|
|
165098
|
-
result.registerNode(
|
|
165099
|
-
result.registerNode(
|
|
165100
|
-
result.registerNode(
|
|
165101
|
-
result.registerNode(
|
|
165102
|
-
result.registerNode(
|
|
165103
|
-
result.registerNode(
|
|
165104
|
-
result.registerNode(
|
|
165105
|
-
result.registerNode(
|
|
165106
|
-
result.registerNode(
|
|
165107
|
-
result.registerNode(
|
|
165361
|
+
result.registerNode(_ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_81__.RadioGroupNode);
|
|
165362
|
+
result.registerNode(_ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_42__.FIONode);
|
|
165363
|
+
result.registerNode(_ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_52__.GridRowNode);
|
|
165364
|
+
result.registerNode(_ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_91__.CrossfitTableNode);
|
|
165365
|
+
result.registerNode(_ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_93__.StickyTableNode);
|
|
165366
|
+
result.registerNode(_ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_92__.SimpleTableNode);
|
|
165367
|
+
result.registerNode(_ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_101__.WarningNode);
|
|
165368
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_113__.LongNode);
|
|
165369
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_114__.ShortNode);
|
|
165370
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_115__.FillHintNode);
|
|
165371
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_60__.IfNode);
|
|
165372
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_60__.ThenNode);
|
|
165373
|
+
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_60__.ElseNode);
|
|
165374
|
+
result.registerNode(_ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_55__.HelpNode);
|
|
165108
165375
|
result.registerNode(_ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode);
|
|
165109
165376
|
result.registerNode(_ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode);
|
|
165110
|
-
result.registerNode(
|
|
165111
|
-
result.registerNode(
|
|
165112
|
-
result.registerNode(
|
|
165377
|
+
result.registerNode(_ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_25__.CrossNode);
|
|
165378
|
+
result.registerNode(_ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_64__.ItalicNode);
|
|
165379
|
+
result.registerNode(_ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_90__.SwitchNode);
|
|
165113
165380
|
result.registerNode(_ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode);
|
|
165114
|
-
result.registerNode(
|
|
165115
|
-
result.registerNode(
|
|
165116
|
-
result.registerNode(
|
|
165117
|
-
result.registerNode(
|
|
165118
|
-
result.registerNode(
|
|
165119
|
-
result.registerNode(
|
|
165120
|
-
result.registerNode(
|
|
165121
|
-
result.registerNode(
|
|
165122
|
-
result.registerNode(
|
|
165123
|
-
result.registerNode(
|
|
165124
|
-
result.registerNode(
|
|
165125
|
-
result.registerNode(
|
|
165126
|
-
result.registerNode(
|
|
165127
|
-
result.registerNode(
|
|
165128
|
-
result.registerNode(
|
|
165129
|
-
result.registerNode(
|
|
165130
|
-
result.registerNode(
|
|
165131
|
-
result.registerNode(
|
|
165132
|
-
result.registerNode(
|
|
165133
|
-
result.registerNode(
|
|
165134
|
-
result.registerNode(
|
|
165135
|
-
result.registerNode(
|
|
165136
|
-
result.registerNode(
|
|
165137
|
-
result.registerNode(
|
|
165138
|
-
result.registerNode(
|
|
165139
|
-
result.registerNode(
|
|
165140
|
-
result.registerNode(
|
|
165141
|
-
result.registerNode(
|
|
165142
|
-
result.registerNode(
|
|
165143
|
-
result.registerNode(
|
|
165144
|
-
result.registerNode(
|
|
165145
|
-
result.registerNode(
|
|
165146
|
-
result.registerNode(
|
|
165147
|
-
result.registerNode(
|
|
165148
|
-
result.registerNode(
|
|
165149
|
-
result.registerNode(
|
|
165150
|
-
result.registerNode(
|
|
165151
|
-
result.registerNode(
|
|
165152
|
-
result.registerNode(
|
|
165381
|
+
result.registerNode(_ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode);
|
|
165382
|
+
result.registerNode(_ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_22__.ChoiceNode);
|
|
165383
|
+
result.registerNode(_ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_58__.HrNode);
|
|
165384
|
+
result.registerNode(_ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_104__.ColgroupButtonNode);
|
|
165385
|
+
result.registerNode(_ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_79__.PicklistNode);
|
|
165386
|
+
result.registerNode(_ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_26__.DateNode);
|
|
165387
|
+
result.registerNode(_ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_62__.INNNode);
|
|
165388
|
+
result.registerNode(_ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_54__.HeaderMenuNode);
|
|
165389
|
+
result.registerNode(_ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_67__.LineTextNode);
|
|
165390
|
+
result.registerNode(_ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_83__.SelectNode);
|
|
165391
|
+
result.registerNode(_ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_88__.SubheaderNode);
|
|
165392
|
+
result.registerNode(_ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_89__.SupNode);
|
|
165393
|
+
result.registerNode(_ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_87__.SubNode);
|
|
165394
|
+
result.registerNode(_ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_69__.ListNode);
|
|
165395
|
+
result.registerNode(_ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_27__.DefaultContentNode);
|
|
165396
|
+
result.registerNode(_ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_66__.KladrNode);
|
|
165397
|
+
result.registerNode(_ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_57__.HighlightNode);
|
|
165398
|
+
result.registerNode(_ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_96__.TextAreaNode);
|
|
165399
|
+
result.registerNode(_ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_103__.PopupTextAreaNode);
|
|
165400
|
+
result.registerNode(_ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_28__.DiadocSuggestComboBoxNode);
|
|
165401
|
+
result.registerNode(_ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_84__.SortRadioGroupNode);
|
|
165402
|
+
result.registerNode(_ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_29__.EntityNode);
|
|
165403
|
+
result.registerNode(_ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_80__.RadioNode);
|
|
165404
|
+
result.registerNode(_ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_86__.StrongNode);
|
|
165405
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_40__.FilterInputNode);
|
|
165406
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_39__.FilterDateRangeNode);
|
|
165407
|
+
result.registerNode(_ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_49__.FormInfoNode);
|
|
165408
|
+
result.registerNode(_ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_41__.FilterListNode);
|
|
165409
|
+
result.registerNode(_ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_99__.ValueLengthNode);
|
|
165410
|
+
result.registerNode(_ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_56__.HelpInfoNode);
|
|
165411
|
+
result.registerNode(_ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_97__.UnitItemNode);
|
|
165412
|
+
result.registerNode(_ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_61__.ImgNode);
|
|
165413
|
+
result.registerNode(_ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_78__.PencilNode);
|
|
165414
|
+
result.registerNode(_ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_100__.VisibilityBlockNode);
|
|
165415
|
+
result.registerNode(_ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_98__.UnitListNode);
|
|
165416
|
+
result.registerNode(_ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_70__.ModalFormNode);
|
|
165417
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormCancelNode);
|
|
165418
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_72__.ModalFormConfirmNode);
|
|
165419
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormLabelNode);
|
|
165153
165420
|
result.registerNode(_ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode);
|
|
165154
|
-
result.registerNode(
|
|
165155
|
-
result.registerNode(
|
|
165421
|
+
result.registerNode(_ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_74__.MultilineFieldNode);
|
|
165422
|
+
result.registerNode(_ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_82__.RemoveRowButtonNode);
|
|
165156
165423
|
result.registerNode(_ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode);
|
|
165157
165424
|
result.registerNode(_ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode);
|
|
165158
|
-
result.registerNode(
|
|
165159
|
-
result.registerNode(
|
|
165160
|
-
result.registerNode(
|
|
165425
|
+
result.registerNode(_ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode);
|
|
165426
|
+
result.registerNode(_ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_44__.FooterNode);
|
|
165427
|
+
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_48__.PanelNode);
|
|
165428
|
+
result.registerNode(_ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_94__.TableCellNode);
|
|
165161
165429
|
result.registerNode(_ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode);
|
|
165162
165430
|
result.registerNode(_ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode);
|
|
165163
165431
|
result.registerNode(_ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode);
|
|
@@ -165167,22 +165435,22 @@ function registerDefaultSugarNodes(result) {
|
|
|
165167
165435
|
result.registerNode(_ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode);
|
|
165168
165436
|
result.registerNode(_ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode);
|
|
165169
165437
|
result.registerNode(_ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node);
|
|
165170
|
-
result.registerNode(
|
|
165171
|
-
result.registerNode(
|
|
165172
|
-
result.registerNode(
|
|
165173
|
-
result.registerNode(
|
|
165174
|
-
result.registerNode(
|
|
165175
|
-
result.registerNode(
|
|
165176
|
-
result.registerNode(
|
|
165177
|
-
result.registerNode(
|
|
165178
|
-
result.registerNode(
|
|
165179
|
-
result.registerNode(
|
|
165180
|
-
result.registerNode(
|
|
165181
|
-
result.registerNode(
|
|
165438
|
+
result.registerNode(_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_77__.PageNode);
|
|
165439
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_106__.FixedTabsNode);
|
|
165440
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_106__.FixedTabNode);
|
|
165441
|
+
result.registerNode(_ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_107__.MultipleNode);
|
|
165442
|
+
result.registerNode(_ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_108__.ExcelPastePanelNode);
|
|
165443
|
+
result.registerNode(_ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_109__.ReferencedFieldsNode);
|
|
165444
|
+
result.registerNode(_ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_110__.UserPicklistNode);
|
|
165445
|
+
result.registerNode(_ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_111__.TaxRebateNode);
|
|
165446
|
+
result.registerNode(_ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_112__.BannerNode);
|
|
165447
|
+
result.registerNode(_ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_116__.DateViewNode);
|
|
165448
|
+
result.registerNode(_ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_118__.KebabNode);
|
|
165449
|
+
result.registerNode(_ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_119__.InfoBlockNode);
|
|
165182
165450
|
}
|
|
165183
165451
|
|
|
165184
165452
|
function createDefaultSugarSerializer() {
|
|
165185
|
-
const result = new
|
|
165453
|
+
const result = new _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_105__.SugarSerializer({
|
|
165186
165454
|
unknownProperties: "error"
|
|
165187
165455
|
});
|
|
165188
165456
|
registerDefaultSugarNodes(result);
|
|
@@ -165192,7 +165460,7 @@ function getAllSugarValidationNodeClasses() {
|
|
|
165192
165460
|
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__.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];
|
|
165193
165461
|
}
|
|
165194
165462
|
function getAllSugarNodeClasses() {
|
|
165195
|
-
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_94__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_89__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_89__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_89__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_30__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_31__.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_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_19__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_20__.CheckboxNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_21__.ChoiceNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_22__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_23__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_90__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_24__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_25__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_27__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_28__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_29__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_37__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_38__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_39__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_40__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_41__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_42__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_43__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_48__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_44__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_49__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_50__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_51__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_53__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_52__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_55__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_54__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_56__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_57__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_58__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_60__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_61__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_62__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_63__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_65__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_67__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_64__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_68__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_32__.MenuNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_70__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_72__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_69__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_73__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_74__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_75__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_76__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_47__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_77__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_78__.PicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_79__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_33__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_81__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_34__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_35__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_82__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_91__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_83__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_80__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_84__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_92__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_85__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_87__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_86__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_88__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_95__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_102__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_96__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_97__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_98__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_36__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_99__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_100__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_101__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_29__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_29__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_67__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_29__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_66__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_113__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_112__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_114__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_59__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_59__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_59__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_91__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_91__.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_92__.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_116__.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_105__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_105__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_106__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_107__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_108__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_109__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_110__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_111__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_115__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_117__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_118__.InfoBlockNode];
|
|
165463
|
+
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];
|
|
165196
165464
|
}
|
|
165197
165465
|
|
|
165198
165466
|
/***/ }),
|