@kontur.candy/generator 5.82.0-history-widget-refactoring.0 → 5.83.0-diadoc-title-1.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 +597 -198
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1734,6 +1734,24 @@ module.exports = webpackEmptyContext;
|
|
|
1734
1734
|
|
|
1735
1735
|
/***/ }),
|
|
1736
1736
|
|
|
1737
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock sync recursive .md$":
|
|
1738
|
+
/*!************************************************************************************************!*\
|
|
1739
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ sync .md$ ***!
|
|
1740
|
+
\************************************************************************************************/
|
|
1741
|
+
/***/ ((module) => {
|
|
1742
|
+
|
|
1743
|
+
function webpackEmptyContext(req) {
|
|
1744
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
1745
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
1746
|
+
throw e;
|
|
1747
|
+
}
|
|
1748
|
+
webpackEmptyContext.keys = () => ([]);
|
|
1749
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
1750
|
+
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock sync recursive .md$";
|
|
1751
|
+
module.exports = webpackEmptyContext;
|
|
1752
|
+
|
|
1753
|
+
/***/ }),
|
|
1754
|
+
|
|
1737
1755
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer sync recursive .md$":
|
|
1738
1756
|
/*!********************************************************************************************!*\
|
|
1739
1757
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/ sync .md$ ***!
|
|
@@ -2067,6 +2085,24 @@ webpackContext.id = "./Generator/src/generators/markupGenerator/ElementProcessor
|
|
|
2067
2085
|
|
|
2068
2086
|
/***/ }),
|
|
2069
2087
|
|
|
2088
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber sync recursive .md$":
|
|
2089
|
+
/*!************************************************************************************************************!*\
|
|
2090
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/ sync .md$ ***!
|
|
2091
|
+
\************************************************************************************************************/
|
|
2092
|
+
/***/ ((module) => {
|
|
2093
|
+
|
|
2094
|
+
function webpackEmptyContext(req) {
|
|
2095
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
2096
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
2097
|
+
throw e;
|
|
2098
|
+
}
|
|
2099
|
+
webpackEmptyContext.keys = () => ([]);
|
|
2100
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
2101
|
+
webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber sync recursive .md$";
|
|
2102
|
+
module.exports = webpackEmptyContext;
|
|
2103
|
+
|
|
2104
|
+
/***/ }),
|
|
2105
|
+
|
|
2070
2106
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield sync recursive .md$":
|
|
2071
2107
|
/*!************************************************************************************************************!*\
|
|
2072
2108
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/ sync .md$ ***!
|
|
@@ -46495,6 +46531,9 @@ class KCLangRuntimeUtils {
|
|
|
46495
46531
|
if (typeof argument === "number") {
|
|
46496
46532
|
return argument.toString();
|
|
46497
46533
|
}
|
|
46534
|
+
if (typeof argument === "boolean") {
|
|
46535
|
+
return argument.toString();
|
|
46536
|
+
}
|
|
46498
46537
|
if (argument instanceof big_js__WEBPACK_IMPORTED_MODULE_0__["default"]) {
|
|
46499
46538
|
return argument.toString();
|
|
46500
46539
|
}
|
|
@@ -47057,6 +47096,29 @@ class ModelPathImpl {
|
|
|
47057
47096
|
const lastIterationIndex = this.tokens.lastIndexOf(PathTokens.each);
|
|
47058
47097
|
return this.tokens.slice(0, lastIterationIndex);
|
|
47059
47098
|
}
|
|
47099
|
+
getPathWithoutLastIteration() {
|
|
47100
|
+
if (!this.isContainCurrentOrEachIteration()) {
|
|
47101
|
+
return this;
|
|
47102
|
+
}
|
|
47103
|
+
const lastIterationIndex = this.getLastIndexOfCurrentOrEachIteration();
|
|
47104
|
+
if (lastIterationIndex === -1) {
|
|
47105
|
+
throw new Error("Path must contain current or each iteration");
|
|
47106
|
+
}
|
|
47107
|
+
const tokensWithoutLastIteration = this.tokens.slice(0, lastIterationIndex);
|
|
47108
|
+
return new ModelPathImpl(tokensWithoutLastIteration, this.absolute);
|
|
47109
|
+
}
|
|
47110
|
+
getLastIndexOfCurrentOrEachIteration() {
|
|
47111
|
+
if (!this.isContainCurrentOrEachIteration()) {
|
|
47112
|
+
return -1;
|
|
47113
|
+
}
|
|
47114
|
+
|
|
47115
|
+
// Проверка выше гарантирует, что будет PathTokens.each или PathTokens.current
|
|
47116
|
+
// @ts-ignore
|
|
47117
|
+
const lastIterationIndex = this.tokens.lastIndexOf(PathTokens.each);
|
|
47118
|
+
// @ts-ignore
|
|
47119
|
+
const lastCurrentIterationIndex = this.tokens.lastIndexOf(PathTokens.current);
|
|
47120
|
+
return Math.max(lastIterationIndex, lastCurrentIterationIndex);
|
|
47121
|
+
}
|
|
47060
47122
|
isEndsWithIteration() {
|
|
47061
47123
|
const lastItem = _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.last(this.tokens);
|
|
47062
47124
|
return lastItem == PathTokens.each;
|
|
@@ -47374,7 +47436,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
47374
47436
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
47375
47437
|
/* harmony export */ getMask: () => (/* binding */ getMask),
|
|
47376
47438
|
/* harmony export */ getMaskWithInstances: () => (/* binding */ getMaskWithInstances),
|
|
47377
|
-
/* harmony export */ isAggregationPath: () => (/* binding */ isAggregationPath)
|
|
47439
|
+
/* harmony export */ isAggregationPath: () => (/* binding */ isAggregationPath),
|
|
47440
|
+
/* harmony export */ isParentOf: () => (/* binding */ isParentOf)
|
|
47378
47441
|
/* harmony export */ });
|
|
47379
47442
|
/* harmony import */ var _ModelPath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ModelPath */ "./Common/ModelPath/ModelPath.ts");
|
|
47380
47443
|
|
|
@@ -47402,6 +47465,19 @@ function getMaskWithInstances(exactPath) {
|
|
|
47402
47465
|
instances: reduceResult.instances
|
|
47403
47466
|
};
|
|
47404
47467
|
}
|
|
47468
|
+
function isParentOf(parent, childPath) {
|
|
47469
|
+
const parentPathParts = [...parent.getPathParts()];
|
|
47470
|
+
const childPathParts = [...childPath.getPathParts()];
|
|
47471
|
+
if (parentPathParts.length >= childPathParts.length) {
|
|
47472
|
+
return false;
|
|
47473
|
+
}
|
|
47474
|
+
for (let i = 0; i < parentPathParts.length; i++) {
|
|
47475
|
+
if (parentPathParts[i] !== childPathParts[i]) {
|
|
47476
|
+
return false;
|
|
47477
|
+
}
|
|
47478
|
+
}
|
|
47479
|
+
return true;
|
|
47480
|
+
}
|
|
47405
47481
|
|
|
47406
47482
|
/***/ }),
|
|
47407
47483
|
|
|
@@ -48795,6 +48871,9 @@ function isDate(date) {
|
|
|
48795
48871
|
return date instanceof Date && !isNaN(date.getTime());
|
|
48796
48872
|
}
|
|
48797
48873
|
function convertDate(dateValue) {
|
|
48874
|
+
if (isDate(dateValue)) {
|
|
48875
|
+
return dateValue;
|
|
48876
|
+
}
|
|
48798
48877
|
// dd.MM.yyyy
|
|
48799
48878
|
if (_Engine_ValidationHelper__WEBPACK_IMPORTED_MODULE_0__.ValidationHelper.isDateFormat(dateValue)) {
|
|
48800
48879
|
var _v$, _v$2, _v$3;
|
|
@@ -69105,6 +69184,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
69105
69184
|
/* harmony import */ var _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../Common/IterableUtils */ "./Common/IterableUtils.ts");
|
|
69106
69185
|
/* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
|
|
69107
69186
|
/* harmony import */ var _Common_ModelPath_Set_Set2__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../Common/ModelPath/Set/Set2 */ "./Common/ModelPath/Set/Set2.ts");
|
|
69187
|
+
/* harmony import */ var _Common_ModelPath_ModelPathHelper__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../Common/ModelPath/ModelPathHelper */ "./Common/ModelPath/ModelPathHelper.ts");
|
|
69188
|
+
|
|
69108
69189
|
|
|
69109
69190
|
|
|
69110
69191
|
|
|
@@ -69191,6 +69272,14 @@ class DataDeclarationGenerationTimeHelper {
|
|
|
69191
69272
|
yield (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.createAbsoluteFromMask)(key, _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.PathTokens.each);
|
|
69192
69273
|
}
|
|
69193
69274
|
}
|
|
69275
|
+
*getAllNestedPaths(nodePath) {
|
|
69276
|
+
for (const key of (0,_Common_IterableUtils__WEBPACK_IMPORTED_MODULE_1__.iterateKeys)(this.dataDeclaration)) {
|
|
69277
|
+
const path = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.createAbsoluteFromMask)(key, _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.PathTokens.each);
|
|
69278
|
+
if ((0,_Common_ModelPath_ModelPathHelper__WEBPACK_IMPORTED_MODULE_4__.isParentOf)(nodePath, path)) {
|
|
69279
|
+
yield path;
|
|
69280
|
+
}
|
|
69281
|
+
}
|
|
69282
|
+
}
|
|
69194
69283
|
getAllPathsBySection() {
|
|
69195
69284
|
const unpackSectionNameFromFn = fnCode => {
|
|
69196
69285
|
var _fnCode$match;
|
|
@@ -75973,6 +76062,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
75973
76062
|
/* harmony import */ var _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxConverter.ts");
|
|
75974
76063
|
/* harmony import */ var _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ElementProcessors/FormParts/ModalHeader/ModalHeaderConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/ModalHeader/ModalHeaderConverter.ts");
|
|
75975
76064
|
/* harmony import */ var _ElementProcessors_FormParts_GlobalModal_GlobalModalsConverter__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ElementProcessors/FormParts/GlobalModal/GlobalModalsConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/GlobalModal/GlobalModalsConverter.ts");
|
|
76065
|
+
/* harmony import */ var _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberConverter__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/InstanceNumber/InstanceNumberConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberConverter.ts");
|
|
76066
|
+
/* harmony import */ var _ElementProcessors_Modal_ErrorBlock_ErrorBlockConverter__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./ElementProcessors/Modal/ErrorBlock/ErrorBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockConverter.ts");
|
|
76067
|
+
|
|
76068
|
+
|
|
75976
76069
|
|
|
75977
76070
|
|
|
75978
76071
|
|
|
@@ -76098,8 +76191,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76098
76191
|
|
|
76099
76192
|
let convertersFromNodeClassMap;
|
|
76100
76193
|
function buildConvertersFromNodeClassMap() {
|
|
76101
|
-
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_117__.AttachmentFormConverter, _ElementProcessors_Layout_Block_BlockConverter__WEBPACK_IMPORTED_MODULE_10__.BlockConverter, _ElementProcessors_Layout_Minitour_MinitourConverter__WEBPACK_IMPORTED_MODULE_11__.MinitourConverter, _ElementProcessors_Typography_Bold_BoldConverter__WEBPACK_IMPORTED_MODULE_13__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__.TableCellConverter, _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_88__.ToggleConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_97__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxConverter, _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxConverter__WEBPACK_IMPORTED_MODULE_119__.RelativesComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_110__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_111__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_112__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_61__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_62__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_63__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_65__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_66__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_67__.PicklistConverter, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistConverter__WEBPACK_IMPORTED_MODULE_118__.TreePicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_96__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_92__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_93__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_94__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_95__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_91__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_90__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_89__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__.StickyTableWithMultilineConverter, _ElementProcessors_Layout_Stack_StackConverter__WEBPACK_IMPORTED_MODULE_2__.StackConverter, _ElementProcessors_Layout_Grid_GridConverter__WEBPACK_IMPORTED_MODULE_1__.GridConverter, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelConverter__WEBPACK_IMPORTED_MODULE_6__.HeaderPanelConverter, _ElementProcessors_MultiControls_Tabs_TabsConverter__WEBPACK_IMPORTED_MODULE_5__.TabsConverter, _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_101__.DropdownButtonConverter, _ElementProcessors_ValueEditors_Fias_FiasConverter__WEBPACK_IMPORTED_MODULE_0__.FiasConverter, _ElementProcessors_MultiControls_FilterSelect_FilterSelectConverter__WEBPACK_IMPORTED_MODULE_3__.FilterSelectConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2Converter, _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_100__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_99__.Table2MultirowConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2ColumnConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2VerticalColumnConverter, _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_103__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_102__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_104__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_105__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_106__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_107__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_108__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_109__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_113__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_114__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_115__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_116__.SelectAllCheckboxConverter, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_120__.SelectCheckboxConverter, _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_121__.ModalHeaderConverter, _ElementProcessors_FormParts_GlobalModal_GlobalModalsConverter__WEBPACK_IMPORTED_MODULE_122__.GlobalModalsConverter];
|
|
76102
|
-
return new Map(converters.
|
|
76194
|
+
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_117__.AttachmentFormConverter, _ElementProcessors_Layout_Block_BlockConverter__WEBPACK_IMPORTED_MODULE_10__.BlockConverter, _ElementProcessors_Layout_Minitour_MinitourConverter__WEBPACK_IMPORTED_MODULE_11__.MinitourConverter, _ElementProcessors_Typography_Bold_BoldConverter__WEBPACK_IMPORTED_MODULE_13__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__.TableCellConverter, _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_88__.ToggleConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_97__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxConverter, _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxConverter__WEBPACK_IMPORTED_MODULE_119__.RelativesComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_110__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_111__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_112__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConverter, _ElementProcessors_Modal_ErrorBlock_ErrorBlockConverter__WEBPACK_IMPORTED_MODULE_124__.ErrorBlockConverter, _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_TreePicklist_TreePicklistConverter__WEBPACK_IMPORTED_MODULE_118__.TreePicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_96__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_92__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_93__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_94__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_95__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_91__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_90__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_89__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__.StickyTableWithMultilineConverter, _ElementProcessors_Layout_Stack_StackConverter__WEBPACK_IMPORTED_MODULE_2__.StackConverter, _ElementProcessors_Layout_Grid_GridConverter__WEBPACK_IMPORTED_MODULE_1__.GridConverter, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelConverter__WEBPACK_IMPORTED_MODULE_6__.HeaderPanelConverter, _ElementProcessors_MultiControls_Tabs_TabsConverter__WEBPACK_IMPORTED_MODULE_5__.TabsConverter, _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_101__.DropdownButtonConverter, _ElementProcessors_ValueEditors_Fias_FiasConverter__WEBPACK_IMPORTED_MODULE_0__.FiasConverter, _ElementProcessors_MultiControls_FilterSelect_FilterSelectConverter__WEBPACK_IMPORTED_MODULE_3__.FilterSelectConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2Converter, _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_100__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_99__.Table2MultirowConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2ColumnConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2VerticalColumnConverter, _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_103__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_102__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_104__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_105__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_106__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_107__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_108__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_109__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_113__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_114__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_115__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_116__.SelectAllCheckboxConverter, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_120__.SelectCheckboxConverter, _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_121__.ModalHeaderConverter, _ElementProcessors_FormParts_GlobalModal_GlobalModalsConverter__WEBPACK_IMPORTED_MODULE_122__.GlobalModalsConverter, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberConverter__WEBPACK_IMPORTED_MODULE_123__.InstanceNumberConverter];
|
|
76195
|
+
return new Map(converters.flatMap(converterClass => {
|
|
76196
|
+
let classes = converterClass.getAcceptNodeClass();
|
|
76197
|
+
classes = Array.isArray(classes) ? classes : [classes];
|
|
76198
|
+
return classes.map(c => [c, converterClass]);
|
|
76199
|
+
}));
|
|
76103
76200
|
}
|
|
76104
76201
|
function getConverterByNodeClass(nodeClass) {
|
|
76105
76202
|
var _convertersFromNodeCl;
|
|
@@ -85365,30 +85462,31 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85365
85462
|
|
|
85366
85463
|
class ListItemConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.SugarNodeConverterBase {
|
|
85367
85464
|
static getAcceptNodeClass() {
|
|
85368
|
-
return _ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode;
|
|
85465
|
+
return [_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode, _ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemLegacyNode];
|
|
85369
85466
|
}
|
|
85370
85467
|
doBuildDataDeclaration(context) {
|
|
85371
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85468
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85372
85469
|
return context.mergeDataDeclaration(context.addPathSectionDeclarationEntry(node), context.addVisibilityPathDeclEntryNew(node));
|
|
85373
85470
|
}
|
|
85374
85471
|
buildChildrenDataDeclaration(context) {
|
|
85375
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85472
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85376
85473
|
return context.processChildrenDataDeclaration(node.children);
|
|
85377
85474
|
}
|
|
85378
85475
|
*doTraverseChildren() {
|
|
85379
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85476
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85380
85477
|
yield* node.children;
|
|
85381
85478
|
}
|
|
85382
85479
|
doConvert(context) {
|
|
85383
|
-
var
|
|
85384
|
-
const listNode = this.
|
|
85385
|
-
const itemNode = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85480
|
+
var _itemNode$paddingTop, _itemNode$paddingBott;
|
|
85481
|
+
const listNode = this.getNearestParentOfType(_List_ListNode__WEBPACK_IMPORTED_MODULE_2__.ListNode);
|
|
85482
|
+
const itemNode = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85483
|
+
const firstItem = listNode.items.find(x => x instanceof _ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85386
85484
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("ListItem");
|
|
85387
85485
|
markupBuilder.prop(x => x.bullet).set(listNode.bullet);
|
|
85388
85486
|
markupBuilder.prop(x => x.dash).set(listNode.dash);
|
|
85389
85487
|
markupBuilder.prop(x => x.inline).set(listNode.inline);
|
|
85390
85488
|
markupBuilder.prop(x => x.width).set(listNode.width);
|
|
85391
|
-
markupBuilder.prop(x => x.labelWidth).set(
|
|
85489
|
+
markupBuilder.prop(x => x.labelWidth).set(firstItem === null || firstItem === void 0 ? void 0 : firstItem.width);
|
|
85392
85490
|
markupBuilder.prop(x => x.label).set(itemNode.label);
|
|
85393
85491
|
markupBuilder.prop(x => x.alignLabel).set(itemNode.alignLabel);
|
|
85394
85492
|
markupBuilder.prop(x => x.noPaddings).set(itemNode.noPaddings);
|
|
@@ -85411,7 +85509,9 @@ class ListItemConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__
|
|
|
85411
85509
|
"use strict";
|
|
85412
85510
|
__webpack_require__.r(__webpack_exports__);
|
|
85413
85511
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
85414
|
-
/* harmony export */
|
|
85512
|
+
/* harmony export */ ListItemLegacyNode: () => (/* binding */ ListItemLegacyNode),
|
|
85513
|
+
/* harmony export */ ListItemNode: () => (/* binding */ ListItemNode),
|
|
85514
|
+
/* harmony export */ ListItemNodeBase: () => (/* binding */ ListItemNodeBase)
|
|
85415
85515
|
/* harmony export */ });
|
|
85416
85516
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
85417
85517
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -85425,11 +85525,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85425
85525
|
|
|
85426
85526
|
|
|
85427
85527
|
|
|
85428
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9,
|
|
85528
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _class, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _dec10, _class2, _dec11, _class3;
|
|
85429
85529
|
|
|
85430
85530
|
|
|
85431
85531
|
|
|
85432
|
-
let
|
|
85532
|
+
let ListItemNodeBase = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("optional", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_3__.DeprecationReason.Removed), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("label", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, ``), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, ``), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("noPaddings", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("indent", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, ``), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("alignLabel", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.enum("top", "center", "bottom"), ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("paddingTop", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.lengthUnit, ``), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("paddingBottom", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.lengthUnit, ``), _class = class ListItemNodeBase extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_4__.SugarNodeWithLegacyVisibility {
|
|
85433
85533
|
constructor(...args) {
|
|
85434
85534
|
super(...args);
|
|
85435
85535
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor, this);
|
|
@@ -85442,52 +85542,54 @@ let ListItemNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODU
|
|
|
85442
85542
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "paddingTop", _descriptor8, this);
|
|
85443
85543
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "paddingBottom", _descriptor9, this);
|
|
85444
85544
|
}
|
|
85445
|
-
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85545
|
+
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "optional", [_dec], {
|
|
85446
85546
|
configurable: true,
|
|
85447
85547
|
enumerable: true,
|
|
85448
85548
|
writable: true,
|
|
85449
85549
|
initializer: null
|
|
85450
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85550
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "label", [_dec2], {
|
|
85451
85551
|
configurable: true,
|
|
85452
85552
|
enumerable: true,
|
|
85453
85553
|
writable: true,
|
|
85454
85554
|
initializer: null
|
|
85455
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85555
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "width", [_dec3], {
|
|
85456
85556
|
configurable: true,
|
|
85457
85557
|
enumerable: true,
|
|
85458
85558
|
writable: true,
|
|
85459
85559
|
initializer: null
|
|
85460
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85560
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "noPaddings", [_dec4], {
|
|
85461
85561
|
configurable: true,
|
|
85462
85562
|
enumerable: true,
|
|
85463
85563
|
writable: true,
|
|
85464
85564
|
initializer: null
|
|
85465
|
-
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85565
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "indent", [_dec5], {
|
|
85466
85566
|
configurable: true,
|
|
85467
85567
|
enumerable: true,
|
|
85468
85568
|
writable: true,
|
|
85469
85569
|
initializer: null
|
|
85470
|
-
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85570
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "alignLabel", [_dec6], {
|
|
85471
85571
|
configurable: true,
|
|
85472
85572
|
enumerable: true,
|
|
85473
85573
|
writable: true,
|
|
85474
85574
|
initializer: null
|
|
85475
|
-
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85575
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "children", [_dec7], {
|
|
85476
85576
|
configurable: true,
|
|
85477
85577
|
enumerable: true,
|
|
85478
85578
|
writable: true,
|
|
85479
85579
|
initializer: null
|
|
85480
|
-
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85580
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "paddingTop", [_dec8], {
|
|
85481
85581
|
configurable: true,
|
|
85482
85582
|
enumerable: true,
|
|
85483
85583
|
writable: true,
|
|
85484
85584
|
initializer: null
|
|
85485
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85585
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class.prototype, "paddingBottom", [_dec9], {
|
|
85486
85586
|
configurable: true,
|
|
85487
85587
|
enumerable: true,
|
|
85488
85588
|
writable: true,
|
|
85489
85589
|
initializer: null
|
|
85490
|
-
}),
|
|
85590
|
+
}), _class);
|
|
85591
|
+
let ListItemLegacyNode = (_dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("item", `Элемент списка`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem sync recursive .md$")), _dec10(_class2 = class ListItemLegacyNode extends ListItemNodeBase {}) || _class2);
|
|
85592
|
+
let ListItemNode = (_dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("listitem", `Элемент списка`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem sync recursive .md$")), _dec11(_class3 = class ListItemNode extends ListItemNodeBase {}) || _class3);
|
|
85491
85593
|
|
|
85492
85594
|
/***/ }),
|
|
85493
85595
|
|
|
@@ -85554,10 +85656,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85554
85656
|
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
85555
85657
|
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
85556
85658
|
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
85557
|
-
/* harmony import */ var
|
|
85558
|
-
/* harmony import */ var
|
|
85559
|
-
/* harmony import */ var
|
|
85560
|
-
/* harmony import */ var
|
|
85659
|
+
/* harmony import */ var _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../Serializer/SugarNodeWithLegacyVisibility */ "./Generator/src/generators/markupGenerator/Serializer/SugarNodeWithLegacyVisibility.ts");
|
|
85660
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
85661
|
+
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
85662
|
+
/* harmony import */ var _ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../ControlFlow/If/IfNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/If/IfNode.ts");
|
|
85663
|
+
/* harmony import */ var _ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../ControlFlow/Switch/SwitchNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchNode.ts");
|
|
85664
|
+
/* harmony import */ var _ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../ListItem/ListItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem/ListItemNode.ts");
|
|
85561
85665
|
|
|
85562
85666
|
|
|
85563
85667
|
|
|
@@ -85566,7 +85670,9 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _class, _class
|
|
|
85566
85670
|
|
|
85567
85671
|
|
|
85568
85672
|
|
|
85569
|
-
|
|
85673
|
+
|
|
85674
|
+
|
|
85675
|
+
let ListNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("list", `Список`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_5__.DataBindingScopeMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(["item", "listitem", "if", "switch"], [_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_8__.ListItemNode, _ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_8__.ListItemLegacyNode, _ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_6__.IfNode, _ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_7__.SwitchNode]), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("inline", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("bullet", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, ``), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("dash", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.number, ``), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("itemPaddingTop", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.lengthUnit, `Отступ сверху для каждого элемента списка`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("itemPaddingBottom", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.lengthUnit, `Отступ снизу для каждого элемента списка`), _dec(_class = (_class2 = class ListNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
|
|
85570
85676
|
constructor(...args) {
|
|
85571
85677
|
super(...args);
|
|
85572
85678
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor, this);
|
|
@@ -86863,6 +86969,102 @@ let BodyNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4
|
|
|
86863
86969
|
|
|
86864
86970
|
/***/ }),
|
|
86865
86971
|
|
|
86972
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockConverter.ts":
|
|
86973
|
+
/*!************************************************************************************************************!*\
|
|
86974
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockConverter.ts ***!
|
|
86975
|
+
\************************************************************************************************************/
|
|
86976
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
86977
|
+
|
|
86978
|
+
"use strict";
|
|
86979
|
+
__webpack_require__.r(__webpack_exports__);
|
|
86980
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
86981
|
+
/* harmony export */ ErrorBlockConverter: () => (/* binding */ ErrorBlockConverter)
|
|
86982
|
+
/* harmony export */ });
|
|
86983
|
+
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
86984
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
86985
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
86986
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
86987
|
+
/* harmony import */ var _ErrorBlockNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ErrorBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockNode.ts");
|
|
86988
|
+
|
|
86989
|
+
|
|
86990
|
+
|
|
86991
|
+
|
|
86992
|
+
|
|
86993
|
+
class ErrorBlockConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__.SugarNodeConverterBase {
|
|
86994
|
+
static getAcceptNodeClass() {
|
|
86995
|
+
return _ErrorBlockNode__WEBPACK_IMPORTED_MODULE_4__.ErrorBlockNode;
|
|
86996
|
+
}
|
|
86997
|
+
doBuildDataDeclaration(context) {
|
|
86998
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__.emptyDataDeclarationCollection;
|
|
86999
|
+
}
|
|
87000
|
+
buildChildrenDataDeclaration(context) {
|
|
87001
|
+
const node = this.getCurrentNodeAs(_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_4__.ErrorBlockNode);
|
|
87002
|
+
return context.processChildrenDataDeclaration(node.children);
|
|
87003
|
+
}
|
|
87004
|
+
*doTraverseChildren() {
|
|
87005
|
+
const node = this.getCurrentNodeAs(_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_4__.ErrorBlockNode);
|
|
87006
|
+
yield* node.children;
|
|
87007
|
+
}
|
|
87008
|
+
doConvert(context) {
|
|
87009
|
+
const node = this.getCurrentNodeAs(_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_4__.ErrorBlockNode);
|
|
87010
|
+
const nestedPaths = [...context.getAllNestedPaths((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node))];
|
|
87011
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("ErrorBlock");
|
|
87012
|
+
markupBuilder.prop(x => x.paths).set([...nestedPaths]);
|
|
87013
|
+
markupBuilder.appendChild(context.convertChildNodes(node.children));
|
|
87014
|
+
return markupBuilder.buildConverterResult();
|
|
87015
|
+
}
|
|
87016
|
+
}
|
|
87017
|
+
|
|
87018
|
+
/***/ }),
|
|
87019
|
+
|
|
87020
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockNode.ts":
|
|
87021
|
+
/*!*******************************************************************************************************!*\
|
|
87022
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockNode.ts ***!
|
|
87023
|
+
\*******************************************************************************************************/
|
|
87024
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
87025
|
+
|
|
87026
|
+
"use strict";
|
|
87027
|
+
__webpack_require__.r(__webpack_exports__);
|
|
87028
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
87029
|
+
/* harmony export */ ErrorBlockNode: () => (/* binding */ ErrorBlockNode)
|
|
87030
|
+
/* harmony export */ });
|
|
87031
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
87032
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
87033
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
|
|
87034
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
87035
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
87036
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
87037
|
+
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
87038
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
87039
|
+
|
|
87040
|
+
|
|
87041
|
+
|
|
87042
|
+
var _dec, _dec2, _dec3, _class, _class2, _descriptor, _descriptor2;
|
|
87043
|
+
|
|
87044
|
+
|
|
87045
|
+
let ErrorBlockNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("errorblock", `Элемент для отображение ошибок внутри блока`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingScopeMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(), _dec(_class = (_class2 = class ErrorBlockNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
87046
|
+
constructor(...args) {
|
|
87047
|
+
super(...args);
|
|
87048
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor, this);
|
|
87049
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor2, this);
|
|
87050
|
+
}
|
|
87051
|
+
getOwnPath() {
|
|
87052
|
+
return this.dataScope.getOwnPath();
|
|
87053
|
+
}
|
|
87054
|
+
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dataScope", [_dec2], {
|
|
87055
|
+
configurable: true,
|
|
87056
|
+
enumerable: true,
|
|
87057
|
+
writable: true,
|
|
87058
|
+
initializer: null
|
|
87059
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec3], {
|
|
87060
|
+
configurable: true,
|
|
87061
|
+
enumerable: true,
|
|
87062
|
+
writable: true,
|
|
87063
|
+
initializer: null
|
|
87064
|
+
}), _class2)) || _class);
|
|
87065
|
+
|
|
87066
|
+
/***/ }),
|
|
87067
|
+
|
|
86866
87068
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterConverter.ts":
|
|
86867
87069
|
/*!****************************************************************************************************!*\
|
|
86868
87070
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterConverter.ts ***!
|
|
@@ -89745,6 +89947,136 @@ let HeaderMenuNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MO
|
|
|
89745
89947
|
|
|
89746
89948
|
/***/ }),
|
|
89747
89949
|
|
|
89950
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberConverter.ts":
|
|
89951
|
+
/*!****************************************************************************************************************************!*\
|
|
89952
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberConverter.ts ***!
|
|
89953
|
+
\****************************************************************************************************************************/
|
|
89954
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
89955
|
+
|
|
89956
|
+
"use strict";
|
|
89957
|
+
__webpack_require__.r(__webpack_exports__);
|
|
89958
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
89959
|
+
/* harmony export */ InstanceNumberConverter: () => (/* binding */ InstanceNumberConverter)
|
|
89960
|
+
/* harmony export */ });
|
|
89961
|
+
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
89962
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
89963
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
89964
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
89965
|
+
/* harmony import */ var _InstanceNumberNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./InstanceNumberNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberNode.ts");
|
|
89966
|
+
|
|
89967
|
+
|
|
89968
|
+
|
|
89969
|
+
|
|
89970
|
+
|
|
89971
|
+
class InstanceNumberConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__.SugarNodeConverterBase {
|
|
89972
|
+
static getAcceptNodeClass() {
|
|
89973
|
+
return _InstanceNumberNode__WEBPACK_IMPORTED_MODULE_4__.InstanceNumberNode;
|
|
89974
|
+
}
|
|
89975
|
+
doBuildDataDeclaration(context) {
|
|
89976
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__.emptyDataDeclarationCollection;
|
|
89977
|
+
}
|
|
89978
|
+
buildChildrenDataDeclaration() {
|
|
89979
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_0__.emptyDataDeclarationCollection;
|
|
89980
|
+
}
|
|
89981
|
+
*doTraverseChildren() {
|
|
89982
|
+
// no children
|
|
89983
|
+
}
|
|
89984
|
+
doConvert() {
|
|
89985
|
+
const node = this.getCurrentNodeAs(_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_4__.InstanceNumberNode);
|
|
89986
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("InstanceNumber");
|
|
89987
|
+
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node));
|
|
89988
|
+
markupBuilder.prop(x => x.notResolvedBindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node));
|
|
89989
|
+
markupBuilder.prop(x => x.useParentAsPrefix).set(node.useParentAsPrefix);
|
|
89990
|
+
markupBuilder.prop(x => x.prefix).set(node.prefix);
|
|
89991
|
+
markupBuilder.prop(x => x.start).set(node.start);
|
|
89992
|
+
markupBuilder.prop(x => x.step).set(node.step);
|
|
89993
|
+
markupBuilder.prop(x => x.step).set(node.step);
|
|
89994
|
+
markupBuilder.prop(x => x.maxValue).set(node.maxValue);
|
|
89995
|
+
markupBuilder.prop(x => x.minLength).set(node.minLength);
|
|
89996
|
+
return markupBuilder.buildConverterResult();
|
|
89997
|
+
}
|
|
89998
|
+
}
|
|
89999
|
+
|
|
90000
|
+
/***/ }),
|
|
90001
|
+
|
|
90002
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberNode.ts":
|
|
90003
|
+
/*!***********************************************************************************************************************!*\
|
|
90004
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberNode.ts ***!
|
|
90005
|
+
\***********************************************************************************************************************/
|
|
90006
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
90007
|
+
|
|
90008
|
+
"use strict";
|
|
90009
|
+
__webpack_require__.r(__webpack_exports__);
|
|
90010
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
90011
|
+
/* harmony export */ InstanceNumberNode: () => (/* binding */ InstanceNumberNode)
|
|
90012
|
+
/* harmony export */ });
|
|
90013
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
90014
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
90015
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
|
|
90016
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
90017
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
90018
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
90019
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
90020
|
+
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
90021
|
+
|
|
90022
|
+
|
|
90023
|
+
|
|
90024
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7;
|
|
90025
|
+
|
|
90026
|
+
|
|
90027
|
+
let InstanceNumberNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("instancenumber", `Отображает номер экземпляра на основе его индекса и дополнительных правил.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("useParentAsPrefix", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean.default(false), "Номер экземпляра ближайшего множественного родителя будет использован как префикс к индексам вложенных экземпляров."), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("prefix", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Значение, которое будет префиксом для расчитанного номера."), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("start", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number.default(1), "Значение, от которого будет производиться расчет для каждого экземпляра. По умолчанию 1."), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("step", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number.default(1), "Значение, которое будет добавлено к предыдущему номеру, для рассчета следующего. По умолчанию 1."), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("maxValue", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number, ""), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("minLength", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number, ""), _dec(_class = (_class2 = class InstanceNumberNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
90028
|
+
constructor(...args) {
|
|
90029
|
+
super(...args);
|
|
90030
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor, this);
|
|
90031
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "useParentAsPrefix", _descriptor2, this);
|
|
90032
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "prefix", _descriptor3, this);
|
|
90033
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "start", _descriptor4, this);
|
|
90034
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "step", _descriptor5, this);
|
|
90035
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxValue", _descriptor6, this);
|
|
90036
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "minLength", _descriptor7, this);
|
|
90037
|
+
}
|
|
90038
|
+
getOwnPath() {
|
|
90039
|
+
return this.dataScope.getOwnPath();
|
|
90040
|
+
}
|
|
90041
|
+
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dataScope", [_dec2], {
|
|
90042
|
+
configurable: true,
|
|
90043
|
+
enumerable: true,
|
|
90044
|
+
writable: true,
|
|
90045
|
+
initializer: null
|
|
90046
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "useParentAsPrefix", [_dec3], {
|
|
90047
|
+
configurable: true,
|
|
90048
|
+
enumerable: true,
|
|
90049
|
+
writable: true,
|
|
90050
|
+
initializer: null
|
|
90051
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "prefix", [_dec4], {
|
|
90052
|
+
configurable: true,
|
|
90053
|
+
enumerable: true,
|
|
90054
|
+
writable: true,
|
|
90055
|
+
initializer: null
|
|
90056
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "start", [_dec5], {
|
|
90057
|
+
configurable: true,
|
|
90058
|
+
enumerable: true,
|
|
90059
|
+
writable: true,
|
|
90060
|
+
initializer: null
|
|
90061
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "step", [_dec6], {
|
|
90062
|
+
configurable: true,
|
|
90063
|
+
enumerable: true,
|
|
90064
|
+
writable: true,
|
|
90065
|
+
initializer: null
|
|
90066
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "maxValue", [_dec7], {
|
|
90067
|
+
configurable: true,
|
|
90068
|
+
enumerable: true,
|
|
90069
|
+
writable: true,
|
|
90070
|
+
initializer: null
|
|
90071
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "minLength", [_dec8], {
|
|
90072
|
+
configurable: true,
|
|
90073
|
+
enumerable: true,
|
|
90074
|
+
writable: true,
|
|
90075
|
+
initializer: null
|
|
90076
|
+
}), _class2)) || _class);
|
|
90077
|
+
|
|
90078
|
+
/***/ }),
|
|
90079
|
+
|
|
89748
90080
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/GetPluralTitles.ts":
|
|
89749
90081
|
/*!********************************************************************************************************************!*\
|
|
89750
90082
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/GetPluralTitles.ts ***!
|
|
@@ -90088,6 +90420,7 @@ class RemoveRowButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MOD
|
|
|
90088
90420
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("RemoveRowButton");
|
|
90089
90421
|
markupBuilder.prop("data-tid").set(node.tid);
|
|
90090
90422
|
markupBuilder.prop(x => x.hint).set(node.hint);
|
|
90423
|
+
markupBuilder.prop(x => x.type).set(node.type);
|
|
90091
90424
|
markupBuilder.prop(x => x.clearLastInstance).set((_node$clearLastInstan = node.clearLastInstance) !== null && _node$clearLastInstan !== void 0 ? _node$clearLastInstan : false);
|
|
90092
90425
|
return markupBuilder.buildConverterResult();
|
|
90093
90426
|
}
|
|
@@ -90116,14 +90449,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
90116
90449
|
|
|
90117
90450
|
|
|
90118
90451
|
|
|
90119
|
-
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3;
|
|
90452
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4;
|
|
90120
90453
|
|
|
90121
|
-
let RemoveRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("removerowbutton", `Кнопка удаления множественного элемента в виде креста`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("clearLastInstance", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `При удалении последнего элемента он будет очищаться, а не удаляться`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("hint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.localizedString, ``), _dec(_class = (_class2 = class RemoveRowButtonNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
90454
|
+
let RemoveRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("removerowbutton", `Кнопка удаления множественного элемента в виде креста`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("clearLastInstance", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `При удалении последнего элемента он будет очищаться, а не удаляться`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("hint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.localizedString, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("type", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.enum("bigicon", "link", "button"), `bigicon - большая иконка с крестиком (по умолчанию), link - ссылка, button - кнопка`), _dec(_class = (_class2 = class RemoveRowButtonNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
90122
90455
|
constructor(...args) {
|
|
90123
90456
|
super(...args);
|
|
90124
90457
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid", _descriptor, this);
|
|
90125
90458
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "clearLastInstance", _descriptor2, this);
|
|
90126
90459
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hint", _descriptor3, this);
|
|
90460
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "type", _descriptor4, this);
|
|
90127
90461
|
}
|
|
90128
90462
|
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tid", [_dec2], {
|
|
90129
90463
|
configurable: true,
|
|
@@ -90140,6 +90474,11 @@ let RemoveRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORT
|
|
|
90140
90474
|
enumerable: true,
|
|
90141
90475
|
writable: true,
|
|
90142
90476
|
initializer: null
|
|
90477
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "type", [_dec5], {
|
|
90478
|
+
configurable: true,
|
|
90479
|
+
enumerable: true,
|
|
90480
|
+
writable: true,
|
|
90481
|
+
initializer: null
|
|
90143
90482
|
}), _class2)) || _class);
|
|
90144
90483
|
|
|
90145
90484
|
/***/ }),
|
|
@@ -91698,7 +92037,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91698
92037
|
|
|
91699
92038
|
|
|
91700
92039
|
|
|
91701
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _dec6, _dec7, _dec8, _class3, _class4, _descriptor5, _descriptor6, _dec9, _dec10, _dec11, _dec12, _class5, _class6, _descriptor7, _descriptor8, _descriptor9,
|
|
92040
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _dec6, _dec7, _dec8, _class3, _class4, _descriptor5, _descriptor6, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _class5, _class6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _class7, _class8, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _dec24, _dec25, _dec26, _dec27, _dec28, _class9, _class10, _descriptor20, _descriptor21, _descriptor22, _descriptor23;
|
|
91702
92041
|
|
|
91703
92042
|
|
|
91704
92043
|
let Table2ColumnNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("column", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("horizontalAlign", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.enum("center", "left", "right"), ``), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("colspan", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(), _dec(_class = (_class2 = class Table2ColumnNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
@@ -91753,12 +92092,14 @@ let Table2VerticalColumnNode = (_dec6 = (0,_Serializer_SugarSerializer__WEBPACK_
|
|
|
91753
92092
|
writable: true,
|
|
91754
92093
|
initializer: null
|
|
91755
92094
|
}), _class4)) || _class3);
|
|
91756
|
-
let Table2RowNode = (_dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("row", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("kind", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.enum("head"), ``), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(["column"], [Table2ColumnNode]), _dec9(_class5 = (_class6 = class Table2RowNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
92095
|
+
let Table2RowNode = (_dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("row", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("kind", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.enum("head"), ``), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("noborder", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, ``), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("columnPadding", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, ``), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(["column"], [Table2ColumnNode]), _dec9(_class5 = (_class6 = class Table2RowNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
91757
92096
|
constructor(...args) {
|
|
91758
92097
|
super(...args);
|
|
91759
92098
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor7, this);
|
|
91760
92099
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "kind", _descriptor8, this);
|
|
91761
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
92100
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "noBorder", _descriptor9, this);
|
|
92101
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnPadding", _descriptor10, this);
|
|
92102
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns", _descriptor11, this);
|
|
91762
92103
|
}
|
|
91763
92104
|
getOwnPath() {
|
|
91764
92105
|
return this.dataScope.getOwnPath();
|
|
@@ -91773,25 +92114,35 @@ let Table2RowNode = (_dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MO
|
|
|
91773
92114
|
enumerable: true,
|
|
91774
92115
|
writable: true,
|
|
91775
92116
|
initializer: null
|
|
91776
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class6.prototype, "
|
|
92117
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class6.prototype, "noBorder", [_dec12], {
|
|
92118
|
+
configurable: true,
|
|
92119
|
+
enumerable: true,
|
|
92120
|
+
writable: true,
|
|
92121
|
+
initializer: null
|
|
92122
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class6.prototype, "columnPadding", [_dec13], {
|
|
92123
|
+
configurable: true,
|
|
92124
|
+
enumerable: true,
|
|
92125
|
+
writable: true,
|
|
92126
|
+
initializer: null
|
|
92127
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class6.prototype, "columns", [_dec14], {
|
|
91777
92128
|
configurable: true,
|
|
91778
92129
|
enumerable: true,
|
|
91779
92130
|
writable: true,
|
|
91780
92131
|
initializer: null
|
|
91781
92132
|
}), _class6)) || _class5);
|
|
91782
|
-
let Table2MultirowNode = (
|
|
92133
|
+
let Table2MultirowNode = (_dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("multirow", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, ``), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("deferredInit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `Имеет смысл только c optional="true". Всегда отображать на форме детей, несмотря на опциональность. Инициализация в иннере произойдет в момент загрузки контрола.`), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number, `Максимальное возможное количество элементов в заданном множественном элементе.`), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("debounceDisable", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `см. описание debounceDisable в multiline`), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("filteredUniqKey", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Уникальный ключ фильтрации multirow, используется, для фильтраций одних и тех же путей иннера
|
|
91783
92134
|
разными фильтрами. Задается произвольной строкой. Фильтры с одинаковым ключом фильтрации получают одинаковый результат фильтрации
|
|
91784
|
-
В случае применения с таблицы с AddRowButton в нем нужно указать такой же filteredUniqKey`),
|
|
92135
|
+
В случае применения с таблицы с AddRowButton в нем нужно указать такой же filteredUniqKey`), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("defaultFilter", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.objectLiteral(), `Дает возможность изначально фильтровать multirow по определенному выражению`), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(["column", "verticalcolumn"], [Table2VerticalColumnNode, Table2ColumnNode]), _dec15(_class7 = (_class8 = class Table2MultirowNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
91785
92136
|
constructor(...args) {
|
|
91786
92137
|
super(...args);
|
|
91787
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope",
|
|
91788
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional",
|
|
91789
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "deferredInit",
|
|
91790
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxOccurs",
|
|
91791
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "debounceDisable",
|
|
91792
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filteredUniqKey",
|
|
91793
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "defaultFilter",
|
|
91794
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns",
|
|
92138
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor12, this);
|
|
92139
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor13, this);
|
|
92140
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "deferredInit", _descriptor14, this);
|
|
92141
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxOccurs", _descriptor15, this);
|
|
92142
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "debounceDisable", _descriptor16, this);
|
|
92143
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filteredUniqKey", _descriptor17, this);
|
|
92144
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "defaultFilter", _descriptor18, this);
|
|
92145
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns", _descriptor19, this);
|
|
91795
92146
|
}
|
|
91796
92147
|
getOwnPath() {
|
|
91797
92148
|
return this.dataScope.getOwnPath();
|
|
@@ -91799,74 +92150,74 @@ let Table2MultirowNode = (_dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPOR
|
|
|
91799
92150
|
isMultiple() {
|
|
91800
92151
|
return true;
|
|
91801
92152
|
}
|
|
91802
|
-
},
|
|
92153
|
+
}, _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "dataScope", [_dec16], {
|
|
91803
92154
|
configurable: true,
|
|
91804
92155
|
enumerable: true,
|
|
91805
92156
|
writable: true,
|
|
91806
92157
|
initializer: null
|
|
91807
|
-
}),
|
|
92158
|
+
}), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "optional", [_dec17], {
|
|
91808
92159
|
configurable: true,
|
|
91809
92160
|
enumerable: true,
|
|
91810
92161
|
writable: true,
|
|
91811
92162
|
initializer: null
|
|
91812
|
-
}),
|
|
92163
|
+
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "deferredInit", [_dec18], {
|
|
91813
92164
|
configurable: true,
|
|
91814
92165
|
enumerable: true,
|
|
91815
92166
|
writable: true,
|
|
91816
92167
|
initializer: null
|
|
91817
|
-
}),
|
|
92168
|
+
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "maxOccurs", [_dec19], {
|
|
91818
92169
|
configurable: true,
|
|
91819
92170
|
enumerable: true,
|
|
91820
92171
|
writable: true,
|
|
91821
92172
|
initializer: null
|
|
91822
|
-
}),
|
|
92173
|
+
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "debounceDisable", [_dec20], {
|
|
91823
92174
|
configurable: true,
|
|
91824
92175
|
enumerable: true,
|
|
91825
92176
|
writable: true,
|
|
91826
92177
|
initializer: null
|
|
91827
|
-
}),
|
|
92178
|
+
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "filteredUniqKey", [_dec21], {
|
|
91828
92179
|
configurable: true,
|
|
91829
92180
|
enumerable: true,
|
|
91830
92181
|
writable: true,
|
|
91831
92182
|
initializer: null
|
|
91832
|
-
}),
|
|
92183
|
+
}), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "defaultFilter", [_dec22], {
|
|
91833
92184
|
configurable: true,
|
|
91834
92185
|
enumerable: true,
|
|
91835
92186
|
writable: true,
|
|
91836
92187
|
initializer: null
|
|
91837
|
-
}),
|
|
92188
|
+
}), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "columns", [_dec23], {
|
|
91838
92189
|
configurable: true,
|
|
91839
92190
|
enumerable: true,
|
|
91840
92191
|
writable: true,
|
|
91841
92192
|
initializer: null
|
|
91842
92193
|
}), _class8)) || _class7);
|
|
91843
|
-
let Table2Node = (
|
|
92194
|
+
let Table2Node = (_dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("table2", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Table2 sync recursive .md$")), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("columnWidths", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.delimitedStringArray, ``), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("columnPadding", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, ``), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(["row", "multirow"], [Table2MultirowNode, Table2RowNode]), _dec24(_class9 = (_class10 = class Table2Node extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
91844
92195
|
constructor(...args) {
|
|
91845
92196
|
super(...args);
|
|
91846
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope",
|
|
91847
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnWidths",
|
|
91848
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnPadding",
|
|
91849
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows",
|
|
92197
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor20, this);
|
|
92198
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnWidths", _descriptor21, this);
|
|
92199
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnPadding", _descriptor22, this);
|
|
92200
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows", _descriptor23, this);
|
|
91850
92201
|
}
|
|
91851
92202
|
getOwnPath() {
|
|
91852
92203
|
return this.dataScope.getOwnPath();
|
|
91853
92204
|
}
|
|
91854
|
-
},
|
|
92205
|
+
}, _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "dataScope", [_dec25], {
|
|
91855
92206
|
configurable: true,
|
|
91856
92207
|
enumerable: true,
|
|
91857
92208
|
writable: true,
|
|
91858
92209
|
initializer: null
|
|
91859
|
-
}),
|
|
92210
|
+
}), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "columnWidths", [_dec26], {
|
|
91860
92211
|
configurable: true,
|
|
91861
92212
|
enumerable: true,
|
|
91862
92213
|
writable: true,
|
|
91863
92214
|
initializer: null
|
|
91864
|
-
}),
|
|
92215
|
+
}), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "columnPadding", [_dec27], {
|
|
91865
92216
|
configurable: true,
|
|
91866
92217
|
enumerable: true,
|
|
91867
92218
|
writable: true,
|
|
91868
92219
|
initializer: null
|
|
91869
|
-
}),
|
|
92220
|
+
}), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "rows", [_dec28], {
|
|
91870
92221
|
configurable: true,
|
|
91871
92222
|
enumerable: true,
|
|
91872
92223
|
writable: true,
|
|
@@ -91912,6 +92263,8 @@ class Table2RowConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1_
|
|
|
91912
92263
|
const node = this.getCurrentNodeAs(_Table2Node__WEBPACK_IMPORTED_MODULE_2__.Table2RowNode);
|
|
91913
92264
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("Table2Row");
|
|
91914
92265
|
markupBuilder.prop(x => x.kind).set(node.kind);
|
|
92266
|
+
markupBuilder.prop(x => x.noBorder).set(node.noBorder);
|
|
92267
|
+
markupBuilder.prop(x => x.columnPadding).set(node.columnPadding);
|
|
91915
92268
|
markupBuilder.appendChild(context.convertChildNodes(node.columns));
|
|
91916
92269
|
return markupBuilder.buildConverterResult();
|
|
91917
92270
|
}
|
|
@@ -94599,7 +94952,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94599
94952
|
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
94600
94953
|
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
94601
94954
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
94602
|
-
/* harmony import */ var
|
|
94955
|
+
/* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../../../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
|
|
94956
|
+
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
94957
|
+
/* harmony import */ var _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./DiadocSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxNode.ts");
|
|
94958
|
+
|
|
94959
|
+
|
|
94603
94960
|
|
|
94604
94961
|
|
|
94605
94962
|
|
|
@@ -94608,18 +94965,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94608
94965
|
|
|
94609
94966
|
class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
94610
94967
|
static getAcceptNodeClass() {
|
|
94611
|
-
return
|
|
94968
|
+
return _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode;
|
|
94612
94969
|
}
|
|
94613
94970
|
doBuildNodeValidations(validationGenerator) {
|
|
94614
|
-
const node = this.getCurrentNodeAs(
|
|
94971
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94615
94972
|
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
94616
94973
|
}
|
|
94974
|
+
*doBuildKCLangValidations(buildContext, formSchemaRng) {
|
|
94975
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94976
|
+
const element = formSchemaRng.getElementByPath(node.getFullPath());
|
|
94977
|
+
const targetPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.createAbsoluteFromMask)(this.getResolvedBindingPath(node), _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.PathTokens.each);
|
|
94978
|
+
const typeNode = buildContext.getTypeNode(node.validationInfo);
|
|
94979
|
+
const schemaTypeNode = buildContext.getSchemaTypeInfo(targetPath);
|
|
94980
|
+
const ownPath = node.getOwnPathForKCLang();
|
|
94981
|
+
if (typeNode == undefined && schemaTypeNode == undefined || ownPath == undefined) {
|
|
94982
|
+
return;
|
|
94983
|
+
}
|
|
94984
|
+
yield* buildContext.buildBasicValidations(ownPath, targetPath, typeNode, schemaTypeNode, node.validationInfo.optional == undefined ? element === null || element === void 0 ? void 0 : element.isOptional() : node.validationInfo.optional);
|
|
94985
|
+
}
|
|
94617
94986
|
get nodePaths() {
|
|
94618
|
-
const node = this.getCurrentNodeAs(
|
|
94987
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94619
94988
|
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
94620
94989
|
}
|
|
94621
94990
|
doBuildDataDeclaration(context) {
|
|
94622
|
-
const node = this.getCurrentNodeAs(
|
|
94991
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94623
94992
|
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding, false)], ["disabled", context.initSequenceFactory.disabled()]]), context.addSpecialFieldsEntry(node, {
|
|
94624
94993
|
optional: node.dataBinding.optional
|
|
94625
94994
|
}), context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), context.addVisibilityPathDeclEntryNew(node, node.dataBinding.requisite));
|
|
@@ -94631,7 +95000,7 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
94631
95000
|
// no children
|
|
94632
95001
|
}
|
|
94633
95002
|
doConvert(context) {
|
|
94634
|
-
const node = this.getCurrentNodeAs(
|
|
95003
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94635
95004
|
this.ensurePathExists(node, node.dataBinding.path);
|
|
94636
95005
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("DiadocSuggestComboBox");
|
|
94637
95006
|
markupBuilder.prop(x => x.allowTextWrap).set(node.allowTextWrap);
|
|
@@ -94641,6 +95010,12 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
94641
95010
|
markupBuilder.prop(x => x.query).set(context.generateHelperFunctionExpressionWithoutContext(node, "query", node.query));
|
|
94642
95011
|
markupBuilder.prop(x => x.width).set(node.width);
|
|
94643
95012
|
markupBuilder.prop(x => x.placeholder).set(node.placeholder);
|
|
95013
|
+
if (node.disabled2 != undefined) {
|
|
95014
|
+
markupBuilder.prop(x => x.disabled2).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__.buildExpressionPropValue)(node.disabled2));
|
|
95015
|
+
if (this.getLegacyNode().getParent() != undefined) {
|
|
95016
|
+
markupBuilder.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
|
|
95017
|
+
}
|
|
95018
|
+
}
|
|
94644
95019
|
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__.setTooltipSettingsProps)(markupBuilder, node.tooltipSettings);
|
|
94645
95020
|
return markupBuilder.buildConverterResult();
|
|
94646
95021
|
}
|
|
@@ -94670,28 +95045,31 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94670
95045
|
/* harmony import */ var _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/SugarNodeWithLegacyVisibility */ "./Generator/src/generators/markupGenerator/Serializer/SugarNodeWithLegacyVisibility.ts");
|
|
94671
95046
|
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
94672
95047
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
95048
|
+
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
94673
95049
|
|
|
94674
95050
|
|
|
94675
95051
|
|
|
94676
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10;
|
|
95052
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11;
|
|
95053
|
+
|
|
94677
95054
|
|
|
94678
95055
|
|
|
94679
95056
|
|
|
94680
95057
|
|
|
94681
95058
|
|
|
94682
|
-
let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("diadocsuggestcombobox", `Волшебный комбобокс для Диадока`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode),
|
|
95059
|
+
let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("diadocsuggestcombobox", `Волшебный комбобокс для Диадока`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_7__.TooltipSettingsNode), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("allowTextWrap", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("disablePortal", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("keyColWidth", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("query", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string.required, ``), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("placeholder", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, ``), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("displayValueField", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, ``), _dec(_class = (_class2 = class DiadocSuggestComboBoxNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__.SugarNodeWithLegacyVisibility {
|
|
94683
95060
|
constructor(...args) {
|
|
94684
95061
|
super(...args);
|
|
94685
95062
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
94686
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94687
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94688
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94689
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94690
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94691
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94692
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94693
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94694
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
95063
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled2", _descriptor2, this);
|
|
95064
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor3, this);
|
|
95065
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor4, this);
|
|
95066
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "allowTextWrap", _descriptor5, this);
|
|
95067
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disablePortal", _descriptor6, this);
|
|
95068
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "keyColWidth", _descriptor7, this);
|
|
95069
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor8, this);
|
|
95070
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "query", _descriptor9, this);
|
|
95071
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "placeholder", _descriptor10, this);
|
|
95072
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "displayValueField", _descriptor11, this);
|
|
94695
95073
|
}
|
|
94696
95074
|
getOwnPath() {
|
|
94697
95075
|
return this.dataBinding.getOwnPath();
|
|
@@ -94701,47 +95079,52 @@ let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_
|
|
|
94701
95079
|
enumerable: true,
|
|
94702
95080
|
writable: true,
|
|
94703
95081
|
initializer: null
|
|
94704
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95082
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled2", [_dec3], {
|
|
94705
95083
|
configurable: true,
|
|
94706
95084
|
enumerable: true,
|
|
94707
95085
|
writable: true,
|
|
94708
95086
|
initializer: null
|
|
94709
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95087
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec4], {
|
|
94710
95088
|
configurable: true,
|
|
94711
95089
|
enumerable: true,
|
|
94712
95090
|
writable: true,
|
|
94713
95091
|
initializer: null
|
|
94714
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95092
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec5], {
|
|
94715
95093
|
configurable: true,
|
|
94716
95094
|
enumerable: true,
|
|
94717
95095
|
writable: true,
|
|
94718
95096
|
initializer: null
|
|
94719
|
-
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95097
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "allowTextWrap", [_dec6], {
|
|
94720
95098
|
configurable: true,
|
|
94721
95099
|
enumerable: true,
|
|
94722
95100
|
writable: true,
|
|
94723
95101
|
initializer: null
|
|
94724
|
-
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95102
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disablePortal", [_dec7], {
|
|
94725
95103
|
configurable: true,
|
|
94726
95104
|
enumerable: true,
|
|
94727
95105
|
writable: true,
|
|
94728
95106
|
initializer: null
|
|
94729
|
-
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95107
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "keyColWidth", [_dec8], {
|
|
94730
95108
|
configurable: true,
|
|
94731
95109
|
enumerable: true,
|
|
94732
95110
|
writable: true,
|
|
94733
95111
|
initializer: null
|
|
94734
|
-
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95112
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec9], {
|
|
95113
|
+
configurable: true,
|
|
95114
|
+
enumerable: true,
|
|
95115
|
+
writable: true,
|
|
95116
|
+
initializer: null
|
|
95117
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "query", [_dec10], {
|
|
94735
95118
|
configurable: true,
|
|
94736
95119
|
enumerable: true,
|
|
94737
95120
|
writable: true,
|
|
94738
95121
|
initializer: null
|
|
94739
|
-
}),
|
|
95122
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "placeholder", [_dec11], {
|
|
94740
95123
|
configurable: true,
|
|
94741
95124
|
enumerable: true,
|
|
94742
95125
|
writable: true,
|
|
94743
95126
|
initializer: null
|
|
94744
|
-
}),
|
|
95127
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "displayValueField", [_dec12], {
|
|
94745
95128
|
configurable: true,
|
|
94746
95129
|
enumerable: true,
|
|
94747
95130
|
writable: true,
|
|
@@ -101500,6 +101883,9 @@ class MarkupBuildingContext {
|
|
|
101500
101883
|
}
|
|
101501
101884
|
return result;
|
|
101502
101885
|
}
|
|
101886
|
+
getAllNestedPaths(nodePath) {
|
|
101887
|
+
return this.dataDeclarationHelper.getAllNestedPaths(nodePath);
|
|
101888
|
+
}
|
|
101503
101889
|
getUniqueControlId(context) {
|
|
101504
101890
|
let currentValue = this.uniqueControlIdIncrement.get(context);
|
|
101505
101891
|
if (currentValue == undefined) {
|
|
@@ -102467,12 +102853,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
102467
102853
|
/* harmony export */ NumberValueParser: () => (/* binding */ NumberValueParser)
|
|
102468
102854
|
/* harmony export */ });
|
|
102469
102855
|
/* harmony import */ var _Errors_SugarValueConstraintError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Errors/SugarValueConstraintError */ "./Generator/src/generators/markupGenerator/Serializer/Errors/SugarValueConstraintError.ts");
|
|
102470
|
-
/* harmony import */ var
|
|
102856
|
+
/* harmony import */ var _DefaultWrapperValueParser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DefaultWrapperValueParser */ "./Generator/src/generators/markupGenerator/Serializer/Properties/ValuesParsers/DefaultWrapperValueParser.ts");
|
|
102857
|
+
/* harmony import */ var _RequiredWrapperValueParser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./RequiredWrapperValueParser */ "./Generator/src/generators/markupGenerator/Serializer/Properties/ValuesParsers/RequiredWrapperValueParser.ts");
|
|
102858
|
+
|
|
102471
102859
|
|
|
102472
102860
|
|
|
102473
102861
|
class NumberValueParser {
|
|
102474
102862
|
constructor() {
|
|
102475
|
-
this.required = new
|
|
102863
|
+
this.required = new _RequiredWrapperValueParser__WEBPACK_IMPORTED_MODULE_2__.RequiredWrapperValueParser(this);
|
|
102864
|
+
this.default = defaultValue => new _DefaultWrapperValueParser__WEBPACK_IMPORTED_MODULE_1__.DefaultWrapperValueParser(this, defaultValue);
|
|
102476
102865
|
}
|
|
102477
102866
|
parseValue(attribute) {
|
|
102478
102867
|
if (attribute == undefined) {
|
|
@@ -102496,7 +102885,7 @@ class NumberValueParser {
|
|
|
102496
102885
|
}
|
|
102497
102886
|
class AnyExpressionValueParser {
|
|
102498
102887
|
constructor() {
|
|
102499
|
-
this.required = new
|
|
102888
|
+
this.required = new _RequiredWrapperValueParser__WEBPACK_IMPORTED_MODULE_2__.RequiredWrapperValueParser(this);
|
|
102500
102889
|
}
|
|
102501
102890
|
parseValue(attribute) {
|
|
102502
102891
|
if (attribute == undefined) {
|
|
@@ -103473,6 +103862,9 @@ class SugarNodeConverterBase {
|
|
|
103473
103862
|
const parent = node.getParentStrict();
|
|
103474
103863
|
return this.getNodeAs(nodeClass, parent);
|
|
103475
103864
|
}
|
|
103865
|
+
getNearestParentOfType(nodeClass) {
|
|
103866
|
+
return this.node.findParentOfTypeStrict(nodeClass);
|
|
103867
|
+
}
|
|
103476
103868
|
getRequisites(fetchFunctions) {
|
|
103477
103869
|
const result = this.getRequisitesFromFetchFunction(fetchFunctions);
|
|
103478
103870
|
for (const outerPath of this.doGetRequisites()) {
|
|
@@ -103792,60 +104184,64 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
103792
104184
|
/* harmony import */ var _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ../ElementProcessors/Action/Link/LinkNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Link/LinkNode.ts");
|
|
103793
104185
|
/* harmony import */ var _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ../ElementProcessors/Layout/List/ListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List/ListNode.ts");
|
|
103794
104186
|
/* harmony import */ var _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalForm/ModalFormNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalForm/ModalFormNode.ts");
|
|
103795
|
-
/* harmony import */ var
|
|
103796
|
-
/* harmony import */ var
|
|
103797
|
-
/* harmony import */ var
|
|
103798
|
-
/* harmony import */ var
|
|
103799
|
-
/* harmony import */ var
|
|
103800
|
-
/* harmony import */ var
|
|
103801
|
-
/* harmony import */ var
|
|
103802
|
-
/* harmony import */ var
|
|
103803
|
-
/* harmony import */ var
|
|
103804
|
-
/* harmony import */ var
|
|
103805
|
-
/* harmony import */ var
|
|
103806
|
-
/* harmony import */ var
|
|
103807
|
-
/* harmony import */ var
|
|
103808
|
-
/* harmony import */ var
|
|
103809
|
-
/* harmony import */ var
|
|
103810
|
-
/* harmony import */ var
|
|
103811
|
-
/* harmony import */ var
|
|
103812
|
-
/* harmony import */ var
|
|
103813
|
-
/* harmony import */ var
|
|
103814
|
-
/* harmony import */ var
|
|
103815
|
-
/* harmony import */ var
|
|
103816
|
-
/* harmony import */ var
|
|
103817
|
-
/* harmony import */ var
|
|
103818
|
-
/* harmony import */ var
|
|
103819
|
-
/* harmony import */ var
|
|
103820
|
-
/* harmony import */ var
|
|
103821
|
-
/* harmony import */ var
|
|
103822
|
-
/* harmony import */ var
|
|
103823
|
-
/* harmony import */ var
|
|
103824
|
-
/* harmony import */ var
|
|
103825
|
-
/* harmony import */ var
|
|
103826
|
-
/* harmony import */ var
|
|
103827
|
-
/* harmony import */ var
|
|
103828
|
-
/* harmony import */ var
|
|
103829
|
-
/* harmony import */ var
|
|
103830
|
-
/* harmony import */ var
|
|
103831
|
-
/* harmony import */ var
|
|
103832
|
-
/* harmony import */ var
|
|
103833
|
-
/* harmony import */ var
|
|
103834
|
-
/* harmony import */ var
|
|
103835
|
-
/* harmony import */ var
|
|
103836
|
-
/* harmony import */ var
|
|
103837
|
-
/* harmony import */ var
|
|
103838
|
-
/* harmony import */ var
|
|
103839
|
-
/* harmony import */ var
|
|
103840
|
-
/* harmony import */ var
|
|
103841
|
-
/* harmony import */ var
|
|
103842
|
-
/* harmony import */ var
|
|
103843
|
-
/* harmony import */ var
|
|
103844
|
-
/* harmony import */ var
|
|
103845
|
-
/* harmony import */ var
|
|
103846
|
-
/* harmony import */ var
|
|
103847
|
-
/* harmony import */ var
|
|
103848
|
-
/* harmony import */ var
|
|
104187
|
+
/* harmony import */ var _ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../ElementProcessors/Modal/ErrorBlock/ErrorBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ErrorBlock/ErrorBlockNode.ts");
|
|
104188
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormCancel/ModalFormCancelNode.ts");
|
|
104189
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormConfirm/ModalFormConfirmNode.ts");
|
|
104190
|
+
/* harmony import */ var _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode.ts");
|
|
104191
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multilinefield/MultilineFieldNode.ts");
|
|
104192
|
+
/* harmony import */ var _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Normativehelp/NormativeHelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Normativehelp/NormativeHelpNode.ts");
|
|
104193
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Otherwise/OtherwiseNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Otherwise/OtherwiseNode.ts");
|
|
104194
|
+
/* harmony import */ var _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Page/PageNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page/PageNode.ts");
|
|
104195
|
+
/* harmony import */ var _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ../ElementProcessors/Layout/Pencil/PencilNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Pencil/PencilNode.ts");
|
|
104196
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Picklist/PicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Picklist/PicklistNode.ts");
|
|
104197
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/radio/RadioNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/radio/RadioNode.ts");
|
|
104198
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup/RadioGroupNode.ts");
|
|
104199
|
+
/* harmony import */ var _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton/RemoveRowButtonNode.ts");
|
|
104200
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Select/SelectNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Select/SelectNode.ts");
|
|
104201
|
+
/* harmony import */ var _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/SortRadioGroup/SortRadioGroupNode.ts");
|
|
104202
|
+
/* harmony import */ var _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ../ElementProcessors/Layout/Spoiler/SpoilerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Spoiler/SpoilerNode.ts");
|
|
104203
|
+
/* harmony import */ var _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ../ElementProcessors/Typography/Strong/StrongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Strong/StrongNode.ts");
|
|
104204
|
+
/* harmony import */ var _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sub/SubNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sub/SubNode.ts");
|
|
104205
|
+
/* harmony import */ var _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ../ElementProcessors/Layout/Subheader/SubheaderNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Subheader/SubheaderNode.ts");
|
|
104206
|
+
/* harmony import */ var _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ../ElementProcessors/Typography/Sup/SupNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Sup/SupNode.ts");
|
|
104207
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Switch/SwitchNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchNode.ts");
|
|
104208
|
+
/* harmony import */ var _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableNode.ts");
|
|
104209
|
+
/* harmony import */ var _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ../ElementProcessors/Layout/SimpleTable/SimpleTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/SimpleTable/SimpleTableNode.ts");
|
|
104210
|
+
/* harmony import */ var _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/StickyTable/StickyTableNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable/StickyTableNode.ts");
|
|
104211
|
+
/* harmony import */ var _ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/TableCell/TableCellNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/TableCell/TableCellNode.ts");
|
|
104212
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/Text/TextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/TextNode.ts");
|
|
104213
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/Textarea/TextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Textarea/TextAreaNode.ts");
|
|
104214
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitItem/UnitItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitItem/UnitItemNode.ts");
|
|
104215
|
+
/* harmony import */ var _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UnitList/UnitListNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UnitList/UnitListNode.ts");
|
|
104216
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/ValueLength/ValueLengthNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/ValueLength/ValueLengthNode.ts");
|
|
104217
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/VisibilityBlock/VisibilityBlockNode.ts");
|
|
104218
|
+
/* harmony import */ var _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ../ElementProcessors/Layout/Warning/WarningNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/Warning/WarningNode.ts");
|
|
104219
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/When/WhenNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/When/WhenNode.ts");
|
|
104220
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/popupTextArea/PopupTextAreaNode.ts");
|
|
104221
|
+
/* harmony import */ var _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonNode.ts");
|
|
104222
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
104223
|
+
/* harmony import */ var _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ../ElementProcessors/Layout/FixedTabs/FixedTabsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/FixedTabs/FixedTabsNode.ts");
|
|
104224
|
+
/* harmony import */ var _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/Multiple/MultipleNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/Multiple/MultipleNode.ts");
|
|
104225
|
+
/* harmony import */ var _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ../ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/ExcelPastePanel/ExcelPastePanelNode.ts");
|
|
104226
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/ReferencedFields/ReferencedFieldsNode.ts");
|
|
104227
|
+
/* harmony import */ var _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ../ElementProcessors/FormParts/UserPicklist/UserPicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/UserPicklist/UserPicklistNode.ts");
|
|
104228
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TaxRebate/TaxRebateNode.ts");
|
|
104229
|
+
/* harmony import */ var _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ../ElementProcessors/FormParts/Banner/BannerNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner/BannerNode.ts");
|
|
104230
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Long/LongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongNode.ts");
|
|
104231
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Short/ShortNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortNode.ts");
|
|
104232
|
+
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode.ts");
|
|
104233
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/DateView/DateViewNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts");
|
|
104234
|
+
/* harmony import */ var _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ../ElementProcessors/Action/Common/ActionNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Common/ActionNode.ts");
|
|
104235
|
+
/* harmony import */ var _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ../ElementProcessors/Action/Kebab/KebabNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Action/Kebab/KebabNode.ts");
|
|
104236
|
+
/* harmony import */ var _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ../ElementProcessors/Helpers/Clue/InfoBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Clue/InfoBlockNode.ts");
|
|
104237
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectAllCheckbox/SelectAllCheckboxNode.ts");
|
|
104238
|
+
/* harmony import */ var _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ../../../common/SchemaRng/Nodes/SchemaRngRoot */ "./Generator/src/common/SchemaRng/Nodes/SchemaRngRoot.ts");
|
|
104239
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/TreePicklist/TreePicklistNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/TreePicklist/TreePicklistNode.ts");
|
|
104240
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxNode__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/RelativesComboBox/RelativesComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RelativesComboBox/RelativesComboBoxNode.ts");
|
|
104241
|
+
/* harmony import */ var _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ../ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/SelectCheckbox/SelectCheckboxNode.ts");
|
|
104242
|
+
/* harmony import */ var _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/InstanceNumber/InstanceNumberNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/InstanceNumber/InstanceNumberNode.ts");
|
|
104243
|
+
|
|
104244
|
+
|
|
103849
104245
|
|
|
103850
104246
|
|
|
103851
104247
|
|
|
@@ -103981,28 +104377,28 @@ function registerDefaultSugarNodes(result) {
|
|
|
103981
104377
|
result.registerNode(_ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode);
|
|
103982
104378
|
result.registerNode(_ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode);
|
|
103983
104379
|
result.registerNode(_ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode);
|
|
103984
|
-
result.registerNode(
|
|
104380
|
+
result.registerNode(_ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_87__.SpoilerNode);
|
|
103985
104381
|
result.registerNode(_ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode);
|
|
103986
104382
|
result.registerNode(_ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode);
|
|
103987
104383
|
result.registerNode(_ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode);
|
|
103988
104384
|
result.registerNode(_ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode);
|
|
103989
104385
|
result.registerNode(_ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode);
|
|
103990
|
-
result.registerNode(
|
|
103991
|
-
result.registerNode(
|
|
104386
|
+
result.registerNode(_ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_77__.NormativeHelpNode);
|
|
104387
|
+
result.registerNode(_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_97__.TextNode);
|
|
103992
104388
|
result.registerNode(_ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode);
|
|
103993
104389
|
result.registerNode(_ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode);
|
|
103994
104390
|
result.registerNode(_ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode);
|
|
103995
104391
|
result.registerNode(_ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode);
|
|
103996
|
-
result.registerNode(
|
|
104392
|
+
result.registerNode(_ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_83__.RadioGroupNode);
|
|
103997
104393
|
result.registerNode(_ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode);
|
|
103998
104394
|
result.registerNode(_ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode);
|
|
103999
|
-
result.registerNode(
|
|
104000
|
-
result.registerNode(
|
|
104001
|
-
result.registerNode(
|
|
104002
|
-
result.registerNode(
|
|
104003
|
-
result.registerNode(
|
|
104004
|
-
result.registerNode(
|
|
104005
|
-
result.registerNode(
|
|
104395
|
+
result.registerNode(_ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_93__.CrossfitTableNode);
|
|
104396
|
+
result.registerNode(_ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_95__.StickyTableNode);
|
|
104397
|
+
result.registerNode(_ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableNode);
|
|
104398
|
+
result.registerNode(_ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_103__.WarningNode);
|
|
104399
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_115__.LongNode);
|
|
104400
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_116__.ShortNode);
|
|
104401
|
+
result.registerNode(_ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_117__.FillHintNode);
|
|
104006
104402
|
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode);
|
|
104007
104403
|
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode);
|
|
104008
104404
|
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode);
|
|
@@ -104011,59 +104407,61 @@ function registerDefaultSugarNodes(result) {
|
|
|
104011
104407
|
result.registerNode(_ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode);
|
|
104012
104408
|
result.registerNode(_ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode);
|
|
104013
104409
|
result.registerNode(_ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode);
|
|
104014
|
-
result.registerNode(
|
|
104410
|
+
result.registerNode(_ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchNode);
|
|
104015
104411
|
result.registerNode(_ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode);
|
|
104016
104412
|
result.registerNode(_ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode);
|
|
104017
104413
|
result.registerNode(_ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode);
|
|
104018
104414
|
result.registerNode(_ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode);
|
|
104019
104415
|
result.registerNode(_ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode);
|
|
104020
|
-
result.registerNode(
|
|
104021
|
-
result.registerNode(
|
|
104022
|
-
result.registerNode(
|
|
104416
|
+
result.registerNode(_ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonNode__WEBPACK_IMPORTED_MODULE_106__.ColgroupButtonNode);
|
|
104417
|
+
result.registerNode(_ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_81__.PicklistNode);
|
|
104418
|
+
result.registerNode(_ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_124__.TreePicklistNode);
|
|
104023
104419
|
result.registerNode(_ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode);
|
|
104024
104420
|
result.registerNode(_ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode);
|
|
104025
104421
|
result.registerNode(_ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode);
|
|
104026
104422
|
result.registerNode(_ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode);
|
|
104027
|
-
result.registerNode(
|
|
104028
|
-
result.registerNode(
|
|
104029
|
-
result.registerNode(
|
|
104030
|
-
result.registerNode(
|
|
104423
|
+
result.registerNode(_ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_85__.SelectNode);
|
|
104424
|
+
result.registerNode(_ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_90__.SubheaderNode);
|
|
104425
|
+
result.registerNode(_ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_91__.SupNode);
|
|
104426
|
+
result.registerNode(_ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_89__.SubNode);
|
|
104031
104427
|
result.registerNode(_ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode);
|
|
104428
|
+
result.registerNode(_ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode);
|
|
104032
104429
|
result.registerNode(_ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_28__.DefaultContentNode);
|
|
104033
104430
|
result.registerNode(_ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode);
|
|
104034
104431
|
result.registerNode(_ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode);
|
|
104035
|
-
result.registerNode(
|
|
104036
|
-
result.registerNode(
|
|
104432
|
+
result.registerNode(_ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_98__.TextAreaNode);
|
|
104433
|
+
result.registerNode(_ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_105__.PopupTextAreaNode);
|
|
104037
104434
|
result.registerNode(_ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode);
|
|
104038
|
-
result.registerNode(
|
|
104039
|
-
result.registerNode(
|
|
104435
|
+
result.registerNode(_ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxNode__WEBPACK_IMPORTED_MODULE_125__.RelativesComboBoxNode);
|
|
104436
|
+
result.registerNode(_ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_86__.SortRadioGroupNode);
|
|
104040
104437
|
result.registerNode(_ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode);
|
|
104041
|
-
result.registerNode(
|
|
104042
|
-
result.registerNode(
|
|
104438
|
+
result.registerNode(_ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_82__.RadioNode);
|
|
104439
|
+
result.registerNode(_ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_88__.StrongNode);
|
|
104043
104440
|
result.registerNode(_ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode);
|
|
104044
104441
|
result.registerNode(_ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode);
|
|
104045
104442
|
result.registerNode(_ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode);
|
|
104046
104443
|
result.registerNode(_ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode);
|
|
104047
|
-
result.registerNode(
|
|
104444
|
+
result.registerNode(_ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_101__.ValueLengthNode);
|
|
104048
104445
|
result.registerNode(_ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode);
|
|
104049
|
-
result.registerNode(
|
|
104446
|
+
result.registerNode(_ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_99__.UnitItemNode);
|
|
104050
104447
|
result.registerNode(_ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode);
|
|
104051
|
-
result.registerNode(
|
|
104052
|
-
result.registerNode(
|
|
104053
|
-
result.registerNode(
|
|
104448
|
+
result.registerNode(_ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_80__.PencilNode);
|
|
104449
|
+
result.registerNode(_ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_102__.VisibilityBlockNode);
|
|
104450
|
+
result.registerNode(_ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_100__.UnitListNode);
|
|
104451
|
+
result.registerNode(_ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__.ErrorBlockNode);
|
|
104054
104452
|
result.registerNode(_ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode);
|
|
104055
|
-
result.registerNode(
|
|
104056
|
-
result.registerNode(
|
|
104057
|
-
result.registerNode(
|
|
104453
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormCancelNode);
|
|
104454
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormConfirmNode);
|
|
104455
|
+
result.registerNode(_ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_75__.ModalFormLabelNode);
|
|
104058
104456
|
result.registerNode(_ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode);
|
|
104059
|
-
result.registerNode(
|
|
104060
|
-
result.registerNode(
|
|
104457
|
+
result.registerNode(_ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_76__.MultilineFieldNode);
|
|
104458
|
+
result.registerNode(_ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_84__.RemoveRowButtonNode);
|
|
104061
104459
|
result.registerNode(_ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode);
|
|
104062
104460
|
result.registerNode(_ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode);
|
|
104063
104461
|
result.registerNode(_ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode);
|
|
104064
104462
|
result.registerNode(_ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.FooterNode);
|
|
104065
104463
|
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode);
|
|
104066
|
-
result.registerNode(
|
|
104464
|
+
result.registerNode(_ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_96__.TableCellNode);
|
|
104067
104465
|
result.registerNode(_ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode);
|
|
104068
104466
|
result.registerNode(_ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode);
|
|
104069
104467
|
result.registerNode(_ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode);
|
|
@@ -104073,23 +104471,24 @@ function registerDefaultSugarNodes(result) {
|
|
|
104073
104471
|
result.registerNode(_ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode);
|
|
104074
104472
|
result.registerNode(_ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode);
|
|
104075
104473
|
result.registerNode(_ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node);
|
|
104076
|
-
result.registerNode(
|
|
104077
|
-
result.registerNode(
|
|
104078
|
-
result.registerNode(
|
|
104079
|
-
result.registerNode(
|
|
104080
|
-
result.registerNode(
|
|
104081
|
-
result.registerNode(
|
|
104082
|
-
result.registerNode(
|
|
104083
|
-
result.registerNode(
|
|
104084
|
-
result.registerNode(
|
|
104085
|
-
result.registerNode(
|
|
104086
|
-
result.registerNode(
|
|
104087
|
-
result.registerNode(
|
|
104088
|
-
result.registerNode(
|
|
104089
|
-
result.registerNode(
|
|
104474
|
+
result.registerNode(_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_79__.PageNode);
|
|
104475
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__.FixedTabsNode);
|
|
104476
|
+
result.registerNode(_ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__.FixedTabNode);
|
|
104477
|
+
result.registerNode(_ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_109__.MultipleNode);
|
|
104478
|
+
result.registerNode(_ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_110__.ExcelPastePanelNode);
|
|
104479
|
+
result.registerNode(_ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_111__.ReferencedFieldsNode);
|
|
104480
|
+
result.registerNode(_ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_112__.UserPicklistNode);
|
|
104481
|
+
result.registerNode(_ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_113__.TaxRebateNode);
|
|
104482
|
+
result.registerNode(_ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_114__.BannerNode);
|
|
104483
|
+
result.registerNode(_ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_118__.DateViewNode);
|
|
104484
|
+
result.registerNode(_ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_120__.KebabNode);
|
|
104485
|
+
result.registerNode(_ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_121__.InfoBlockNode);
|
|
104486
|
+
result.registerNode(_ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_122__.SelectAllCheckboxNode);
|
|
104487
|
+
result.registerNode(_ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_126__.SelectCheckboxNode);
|
|
104488
|
+
result.registerNode(_ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_127__.InstanceNumberNode);
|
|
104090
104489
|
}
|
|
104091
104490
|
function createDefaultSugarSerializer() {
|
|
104092
|
-
const result = new
|
|
104491
|
+
const result = new _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_107__.SugarSerializer({
|
|
104093
104492
|
unknownProperties: "error"
|
|
104094
104493
|
});
|
|
104095
104494
|
registerDefaultSugarNodes(result);
|
|
@@ -104099,10 +104498,10 @@ function getAllSugarValidationNodeClasses() {
|
|
|
104099
104498
|
return [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TypeNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.CustomValidationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.PatternTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.EnumerationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.AttachmentsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.LengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MinlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TotaldigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.IntegerdigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.FractiondigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ValueEqlAutoValueTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.DigestcheckTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MininclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxinclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ForcedTypeChecksNode];
|
|
104100
104499
|
}
|
|
104101
104500
|
function getAllSugarNodeClasses() {
|
|
104102
|
-
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_96__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_91__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_32__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_33__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode, _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_92__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_39__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_52__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_34__.MenuNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_72__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_75__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_76__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_77__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_78__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_79__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_80__.PicklistNode, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_123__.TreePicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_81__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_35__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_83__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_36__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_37__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_84__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_93__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_85__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_82__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_86__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_94__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_87__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_89__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_88__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_90__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_97__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_104__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_98__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_99__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_100__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_38__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_101__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_102__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_103__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_115__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_114__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_116__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_93__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_93__.SimpleTableColumnNode, _ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode, _ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_94__.StickyTableMultilineNode, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_8__.HeaderPanelNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonNode, _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_118__.ActionNode, _ElementProcessors_MultiControls_Tabs_TabsNode__WEBPACK_IMPORTED_MODULE_7__.TabsNode, _ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode, _ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode, _ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_107__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_107__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_108__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_109__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_110__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_111__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_112__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_113__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_117__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_119__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_120__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_121__.SelectAllCheckboxNode, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_125__.SelectCheckboxNode];
|
|
104501
|
+
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_97__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_32__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_33__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode, _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_93__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_39__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_52__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_34__.MenuNode, _ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__.ErrorBlockNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_75__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_76__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_77__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_78__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_79__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_80__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_81__.PicklistNode, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_124__.TreePicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_82__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_35__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_84__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_36__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_37__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_85__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_86__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_83__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_87__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_95__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_88__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_90__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_89__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_91__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_98__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_105__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_99__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_100__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_101__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_38__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_102__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_103__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_104__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_116__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_115__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_117__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.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_95__.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_119__.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_108__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_109__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_110__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_111__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_112__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_113__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_114__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_118__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_120__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_121__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_122__.SelectAllCheckboxNode, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_126__.SelectCheckboxNode, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_127__.InstanceNumberNode];
|
|
104103
104502
|
}
|
|
104104
104503
|
function getAllSchemaRngNodeClasses() {
|
|
104105
|
-
return [
|
|
104504
|
+
return [_common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngElementChoiceElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngInnerText, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngAttribute, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngType, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MaxinclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MininclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.FractiondigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.IntegerdigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.TotaldigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MaxlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MinlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.LengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.EnumerationTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.PatternTypeCheck];
|
|
104106
104505
|
}
|
|
104107
104506
|
|
|
104108
104507
|
/***/ }),
|