@kontur.candy/generator 5.82.0 → 5.83.0-diadoc-title-1.1
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 +417 -197
- 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$ ***!
|
|
@@ -46513,6 +46531,9 @@ class KCLangRuntimeUtils {
|
|
|
46513
46531
|
if (typeof argument === "number") {
|
|
46514
46532
|
return argument.toString();
|
|
46515
46533
|
}
|
|
46534
|
+
if (typeof argument === "boolean") {
|
|
46535
|
+
return argument.toString();
|
|
46536
|
+
}
|
|
46516
46537
|
if (argument instanceof big_js__WEBPACK_IMPORTED_MODULE_0__["default"]) {
|
|
46517
46538
|
return argument.toString();
|
|
46518
46539
|
}
|
|
@@ -47415,7 +47436,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
47415
47436
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
47416
47437
|
/* harmony export */ getMask: () => (/* binding */ getMask),
|
|
47417
47438
|
/* harmony export */ getMaskWithInstances: () => (/* binding */ getMaskWithInstances),
|
|
47418
|
-
/* harmony export */ isAggregationPath: () => (/* binding */ isAggregationPath)
|
|
47439
|
+
/* harmony export */ isAggregationPath: () => (/* binding */ isAggregationPath),
|
|
47440
|
+
/* harmony export */ isParentOf: () => (/* binding */ isParentOf)
|
|
47419
47441
|
/* harmony export */ });
|
|
47420
47442
|
/* harmony import */ var _ModelPath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ModelPath */ "./Common/ModelPath/ModelPath.ts");
|
|
47421
47443
|
|
|
@@ -47443,6 +47465,19 @@ function getMaskWithInstances(exactPath) {
|
|
|
47443
47465
|
instances: reduceResult.instances
|
|
47444
47466
|
};
|
|
47445
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
|
+
}
|
|
47446
47481
|
|
|
47447
47482
|
/***/ }),
|
|
47448
47483
|
|
|
@@ -48836,6 +48871,9 @@ function isDate(date) {
|
|
|
48836
48871
|
return date instanceof Date && !isNaN(date.getTime());
|
|
48837
48872
|
}
|
|
48838
48873
|
function convertDate(dateValue) {
|
|
48874
|
+
if (isDate(dateValue)) {
|
|
48875
|
+
return dateValue;
|
|
48876
|
+
}
|
|
48839
48877
|
// dd.MM.yyyy
|
|
48840
48878
|
if (_Engine_ValidationHelper__WEBPACK_IMPORTED_MODULE_0__.ValidationHelper.isDateFormat(dateValue)) {
|
|
48841
48879
|
var _v$, _v$2, _v$3;
|
|
@@ -69146,6 +69184,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
69146
69184
|
/* harmony import */ var _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../Common/IterableUtils */ "./Common/IterableUtils.ts");
|
|
69147
69185
|
/* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
|
|
69148
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
|
+
|
|
69149
69189
|
|
|
69150
69190
|
|
|
69151
69191
|
|
|
@@ -69232,6 +69272,14 @@ class DataDeclarationGenerationTimeHelper {
|
|
|
69232
69272
|
yield (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.createAbsoluteFromMask)(key, _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.PathTokens.each);
|
|
69233
69273
|
}
|
|
69234
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
|
+
}
|
|
69235
69283
|
getAllPathsBySection() {
|
|
69236
69284
|
const unpackSectionNameFromFn = fnCode => {
|
|
69237
69285
|
var _fnCode$match;
|
|
@@ -76015,6 +76063,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76015
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");
|
|
76016
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");
|
|
76017
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
|
+
|
|
76018
76068
|
|
|
76019
76069
|
|
|
76020
76070
|
|
|
@@ -76141,8 +76191,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76141
76191
|
|
|
76142
76192
|
let convertersFromNodeClassMap;
|
|
76143
76193
|
function buildConvertersFromNodeClassMap() {
|
|
76144
|
-
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, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberConverter__WEBPACK_IMPORTED_MODULE_123__.InstanceNumberConverter];
|
|
76145
|
-
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
|
+
}));
|
|
76146
76200
|
}
|
|
76147
76201
|
function getConverterByNodeClass(nodeClass) {
|
|
76148
76202
|
var _convertersFromNodeCl;
|
|
@@ -85408,30 +85462,31 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85408
85462
|
|
|
85409
85463
|
class ListItemConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.SugarNodeConverterBase {
|
|
85410
85464
|
static getAcceptNodeClass() {
|
|
85411
|
-
return _ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode;
|
|
85465
|
+
return [_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode, _ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemLegacyNode];
|
|
85412
85466
|
}
|
|
85413
85467
|
doBuildDataDeclaration(context) {
|
|
85414
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85468
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85415
85469
|
return context.mergeDataDeclaration(context.addPathSectionDeclarationEntry(node), context.addVisibilityPathDeclEntryNew(node));
|
|
85416
85470
|
}
|
|
85417
85471
|
buildChildrenDataDeclaration(context) {
|
|
85418
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85472
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85419
85473
|
return context.processChildrenDataDeclaration(node.children);
|
|
85420
85474
|
}
|
|
85421
85475
|
*doTraverseChildren() {
|
|
85422
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85476
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85423
85477
|
yield* node.children;
|
|
85424
85478
|
}
|
|
85425
85479
|
doConvert(context) {
|
|
85426
|
-
var
|
|
85427
|
-
const listNode = this.
|
|
85428
|
-
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);
|
|
85429
85484
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("ListItem");
|
|
85430
85485
|
markupBuilder.prop(x => x.bullet).set(listNode.bullet);
|
|
85431
85486
|
markupBuilder.prop(x => x.dash).set(listNode.dash);
|
|
85432
85487
|
markupBuilder.prop(x => x.inline).set(listNode.inline);
|
|
85433
85488
|
markupBuilder.prop(x => x.width).set(listNode.width);
|
|
85434
|
-
markupBuilder.prop(x => x.labelWidth).set(
|
|
85489
|
+
markupBuilder.prop(x => x.labelWidth).set(firstItem === null || firstItem === void 0 ? void 0 : firstItem.width);
|
|
85435
85490
|
markupBuilder.prop(x => x.label).set(itemNode.label);
|
|
85436
85491
|
markupBuilder.prop(x => x.alignLabel).set(itemNode.alignLabel);
|
|
85437
85492
|
markupBuilder.prop(x => x.noPaddings).set(itemNode.noPaddings);
|
|
@@ -85454,7 +85509,9 @@ class ListItemConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__
|
|
|
85454
85509
|
"use strict";
|
|
85455
85510
|
__webpack_require__.r(__webpack_exports__);
|
|
85456
85511
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
85457
|
-
/* harmony export */
|
|
85512
|
+
/* harmony export */ ListItemLegacyNode: () => (/* binding */ ListItemLegacyNode),
|
|
85513
|
+
/* harmony export */ ListItemNode: () => (/* binding */ ListItemNode),
|
|
85514
|
+
/* harmony export */ ListItemNodeBase: () => (/* binding */ ListItemNodeBase)
|
|
85458
85515
|
/* harmony export */ });
|
|
85459
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");
|
|
85460
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__);
|
|
@@ -85468,11 +85525,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85468
85525
|
|
|
85469
85526
|
|
|
85470
85527
|
|
|
85471
|
-
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;
|
|
85472
85529
|
|
|
85473
85530
|
|
|
85474
85531
|
|
|
85475
|
-
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 {
|
|
85476
85533
|
constructor(...args) {
|
|
85477
85534
|
super(...args);
|
|
85478
85535
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor, this);
|
|
@@ -85485,52 +85542,54 @@ let ListItemNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODU
|
|
|
85485
85542
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "paddingTop", _descriptor8, this);
|
|
85486
85543
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "paddingBottom", _descriptor9, this);
|
|
85487
85544
|
}
|
|
85488
|
-
}, _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], {
|
|
85489
85546
|
configurable: true,
|
|
85490
85547
|
enumerable: true,
|
|
85491
85548
|
writable: true,
|
|
85492
85549
|
initializer: null
|
|
85493
|
-
}), _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], {
|
|
85494
85551
|
configurable: true,
|
|
85495
85552
|
enumerable: true,
|
|
85496
85553
|
writable: true,
|
|
85497
85554
|
initializer: null
|
|
85498
|
-
}), _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], {
|
|
85499
85556
|
configurable: true,
|
|
85500
85557
|
enumerable: true,
|
|
85501
85558
|
writable: true,
|
|
85502
85559
|
initializer: null
|
|
85503
|
-
}), _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], {
|
|
85504
85561
|
configurable: true,
|
|
85505
85562
|
enumerable: true,
|
|
85506
85563
|
writable: true,
|
|
85507
85564
|
initializer: null
|
|
85508
|
-
}), _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], {
|
|
85509
85566
|
configurable: true,
|
|
85510
85567
|
enumerable: true,
|
|
85511
85568
|
writable: true,
|
|
85512
85569
|
initializer: null
|
|
85513
|
-
}), _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], {
|
|
85514
85571
|
configurable: true,
|
|
85515
85572
|
enumerable: true,
|
|
85516
85573
|
writable: true,
|
|
85517
85574
|
initializer: null
|
|
85518
|
-
}), _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], {
|
|
85519
85576
|
configurable: true,
|
|
85520
85577
|
enumerable: true,
|
|
85521
85578
|
writable: true,
|
|
85522
85579
|
initializer: null
|
|
85523
|
-
}), _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], {
|
|
85524
85581
|
configurable: true,
|
|
85525
85582
|
enumerable: true,
|
|
85526
85583
|
writable: true,
|
|
85527
85584
|
initializer: null
|
|
85528
|
-
}), _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], {
|
|
85529
85586
|
configurable: true,
|
|
85530
85587
|
enumerable: true,
|
|
85531
85588
|
writable: true,
|
|
85532
85589
|
initializer: null
|
|
85533
|
-
}),
|
|
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);
|
|
85534
85593
|
|
|
85535
85594
|
/***/ }),
|
|
85536
85595
|
|
|
@@ -85597,10 +85656,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85597
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__);
|
|
85598
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");
|
|
85599
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__);
|
|
85600
|
-
/* harmony import */ var
|
|
85601
|
-
/* harmony import */ var
|
|
85602
|
-
/* harmony import */ var
|
|
85603
|
-
/* 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");
|
|
85604
85665
|
|
|
85605
85666
|
|
|
85606
85667
|
|
|
@@ -85609,7 +85670,9 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _class, _class
|
|
|
85609
85670
|
|
|
85610
85671
|
|
|
85611
85672
|
|
|
85612
|
-
|
|
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 {
|
|
85613
85676
|
constructor(...args) {
|
|
85614
85677
|
super(...args);
|
|
85615
85678
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor, this);
|
|
@@ -86906,6 +86969,102 @@ let BodyNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4
|
|
|
86906
86969
|
|
|
86907
86970
|
/***/ }),
|
|
86908
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
|
+
|
|
86909
87068
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterConverter.ts":
|
|
86910
87069
|
/*!****************************************************************************************************!*\
|
|
86911
87070
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/Modal/Footer/FooterConverter.ts ***!
|
|
@@ -90261,6 +90420,7 @@ class RemoveRowButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MOD
|
|
|
90261
90420
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("RemoveRowButton");
|
|
90262
90421
|
markupBuilder.prop("data-tid").set(node.tid);
|
|
90263
90422
|
markupBuilder.prop(x => x.hint).set(node.hint);
|
|
90423
|
+
markupBuilder.prop(x => x.type).set(node.type);
|
|
90264
90424
|
markupBuilder.prop(x => x.clearLastInstance).set((_node$clearLastInstan = node.clearLastInstance) !== null && _node$clearLastInstan !== void 0 ? _node$clearLastInstan : false);
|
|
90265
90425
|
return markupBuilder.buildConverterResult();
|
|
90266
90426
|
}
|
|
@@ -90289,14 +90449,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
90289
90449
|
|
|
90290
90450
|
|
|
90291
90451
|
|
|
90292
|
-
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3;
|
|
90452
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4;
|
|
90293
90453
|
|
|
90294
|
-
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 {
|
|
90295
90455
|
constructor(...args) {
|
|
90296
90456
|
super(...args);
|
|
90297
90457
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid", _descriptor, this);
|
|
90298
90458
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "clearLastInstance", _descriptor2, this);
|
|
90299
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);
|
|
90300
90461
|
}
|
|
90301
90462
|
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tid", [_dec2], {
|
|
90302
90463
|
configurable: true,
|
|
@@ -90313,6 +90474,11 @@ let RemoveRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORT
|
|
|
90313
90474
|
enumerable: true,
|
|
90314
90475
|
writable: true,
|
|
90315
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
|
|
90316
90482
|
}), _class2)) || _class);
|
|
90317
90483
|
|
|
90318
90484
|
/***/ }),
|
|
@@ -91871,7 +92037,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91871
92037
|
|
|
91872
92038
|
|
|
91873
92039
|
|
|
91874
|
-
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;
|
|
91875
92041
|
|
|
91876
92042
|
|
|
91877
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 {
|
|
@@ -91926,12 +92092,14 @@ let Table2VerticalColumnNode = (_dec6 = (0,_Serializer_SugarSerializer__WEBPACK_
|
|
|
91926
92092
|
writable: true,
|
|
91927
92093
|
initializer: null
|
|
91928
92094
|
}), _class4)) || _class3);
|
|
91929
|
-
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 {
|
|
91930
92096
|
constructor(...args) {
|
|
91931
92097
|
super(...args);
|
|
91932
92098
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor7, this);
|
|
91933
92099
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "kind", _descriptor8, this);
|
|
91934
|
-
_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);
|
|
91935
92103
|
}
|
|
91936
92104
|
getOwnPath() {
|
|
91937
92105
|
return this.dataScope.getOwnPath();
|
|
@@ -91946,25 +92114,35 @@ let Table2RowNode = (_dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MO
|
|
|
91946
92114
|
enumerable: true,
|
|
91947
92115
|
writable: true,
|
|
91948
92116
|
initializer: null
|
|
91949
|
-
}), _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], {
|
|
91950
92128
|
configurable: true,
|
|
91951
92129
|
enumerable: true,
|
|
91952
92130
|
writable: true,
|
|
91953
92131
|
initializer: null
|
|
91954
92132
|
}), _class6)) || _class5);
|
|
91955
|
-
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, используется, для фильтраций одних и тех же путей иннера
|
|
91956
92134
|
разными фильтрами. Задается произвольной строкой. Фильтры с одинаковым ключом фильтрации получают одинаковый результат фильтрации
|
|
91957
|
-
В случае применения с таблицы с 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 {
|
|
91958
92136
|
constructor(...args) {
|
|
91959
92137
|
super(...args);
|
|
91960
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope",
|
|
91961
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional",
|
|
91962
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "deferredInit",
|
|
91963
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxOccurs",
|
|
91964
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "debounceDisable",
|
|
91965
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filteredUniqKey",
|
|
91966
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "defaultFilter",
|
|
91967
|
-
_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);
|
|
91968
92146
|
}
|
|
91969
92147
|
getOwnPath() {
|
|
91970
92148
|
return this.dataScope.getOwnPath();
|
|
@@ -91972,74 +92150,74 @@ let Table2MultirowNode = (_dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPOR
|
|
|
91972
92150
|
isMultiple() {
|
|
91973
92151
|
return true;
|
|
91974
92152
|
}
|
|
91975
|
-
},
|
|
92153
|
+
}, _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "dataScope", [_dec16], {
|
|
91976
92154
|
configurable: true,
|
|
91977
92155
|
enumerable: true,
|
|
91978
92156
|
writable: true,
|
|
91979
92157
|
initializer: null
|
|
91980
|
-
}),
|
|
92158
|
+
}), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "optional", [_dec17], {
|
|
91981
92159
|
configurable: true,
|
|
91982
92160
|
enumerable: true,
|
|
91983
92161
|
writable: true,
|
|
91984
92162
|
initializer: null
|
|
91985
|
-
}),
|
|
92163
|
+
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "deferredInit", [_dec18], {
|
|
91986
92164
|
configurable: true,
|
|
91987
92165
|
enumerable: true,
|
|
91988
92166
|
writable: true,
|
|
91989
92167
|
initializer: null
|
|
91990
|
-
}),
|
|
92168
|
+
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "maxOccurs", [_dec19], {
|
|
91991
92169
|
configurable: true,
|
|
91992
92170
|
enumerable: true,
|
|
91993
92171
|
writable: true,
|
|
91994
92172
|
initializer: null
|
|
91995
|
-
}),
|
|
92173
|
+
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "debounceDisable", [_dec20], {
|
|
91996
92174
|
configurable: true,
|
|
91997
92175
|
enumerable: true,
|
|
91998
92176
|
writable: true,
|
|
91999
92177
|
initializer: null
|
|
92000
|
-
}),
|
|
92178
|
+
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "filteredUniqKey", [_dec21], {
|
|
92001
92179
|
configurable: true,
|
|
92002
92180
|
enumerable: true,
|
|
92003
92181
|
writable: true,
|
|
92004
92182
|
initializer: null
|
|
92005
|
-
}),
|
|
92183
|
+
}), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "defaultFilter", [_dec22], {
|
|
92006
92184
|
configurable: true,
|
|
92007
92185
|
enumerable: true,
|
|
92008
92186
|
writable: true,
|
|
92009
92187
|
initializer: null
|
|
92010
|
-
}),
|
|
92188
|
+
}), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "columns", [_dec23], {
|
|
92011
92189
|
configurable: true,
|
|
92012
92190
|
enumerable: true,
|
|
92013
92191
|
writable: true,
|
|
92014
92192
|
initializer: null
|
|
92015
92193
|
}), _class8)) || _class7);
|
|
92016
|
-
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 {
|
|
92017
92195
|
constructor(...args) {
|
|
92018
92196
|
super(...args);
|
|
92019
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope",
|
|
92020
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnWidths",
|
|
92021
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnPadding",
|
|
92022
|
-
_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);
|
|
92023
92201
|
}
|
|
92024
92202
|
getOwnPath() {
|
|
92025
92203
|
return this.dataScope.getOwnPath();
|
|
92026
92204
|
}
|
|
92027
|
-
},
|
|
92205
|
+
}, _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "dataScope", [_dec25], {
|
|
92028
92206
|
configurable: true,
|
|
92029
92207
|
enumerable: true,
|
|
92030
92208
|
writable: true,
|
|
92031
92209
|
initializer: null
|
|
92032
|
-
}),
|
|
92210
|
+
}), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "columnWidths", [_dec26], {
|
|
92033
92211
|
configurable: true,
|
|
92034
92212
|
enumerable: true,
|
|
92035
92213
|
writable: true,
|
|
92036
92214
|
initializer: null
|
|
92037
|
-
}),
|
|
92215
|
+
}), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "columnPadding", [_dec27], {
|
|
92038
92216
|
configurable: true,
|
|
92039
92217
|
enumerable: true,
|
|
92040
92218
|
writable: true,
|
|
92041
92219
|
initializer: null
|
|
92042
|
-
}),
|
|
92220
|
+
}), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "rows", [_dec28], {
|
|
92043
92221
|
configurable: true,
|
|
92044
92222
|
enumerable: true,
|
|
92045
92223
|
writable: true,
|
|
@@ -92085,6 +92263,8 @@ class Table2RowConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1_
|
|
|
92085
92263
|
const node = this.getCurrentNodeAs(_Table2Node__WEBPACK_IMPORTED_MODULE_2__.Table2RowNode);
|
|
92086
92264
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("Table2Row");
|
|
92087
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);
|
|
92088
92268
|
markupBuilder.appendChild(context.convertChildNodes(node.columns));
|
|
92089
92269
|
return markupBuilder.buildConverterResult();
|
|
92090
92270
|
}
|
|
@@ -94772,7 +94952,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94772
94952
|
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
94773
94953
|
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
94774
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");
|
|
94775
|
-
/* 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
|
+
|
|
94776
94960
|
|
|
94777
94961
|
|
|
94778
94962
|
|
|
@@ -94781,18 +94965,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94781
94965
|
|
|
94782
94966
|
class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
94783
94967
|
static getAcceptNodeClass() {
|
|
94784
|
-
return
|
|
94968
|
+
return _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode;
|
|
94785
94969
|
}
|
|
94786
94970
|
doBuildNodeValidations(validationGenerator) {
|
|
94787
|
-
const node = this.getCurrentNodeAs(
|
|
94971
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94788
94972
|
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
94789
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
|
+
}
|
|
94790
94986
|
get nodePaths() {
|
|
94791
|
-
const node = this.getCurrentNodeAs(
|
|
94987
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94792
94988
|
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
94793
94989
|
}
|
|
94794
94990
|
doBuildDataDeclaration(context) {
|
|
94795
|
-
const node = this.getCurrentNodeAs(
|
|
94991
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94796
94992
|
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding, false)], ["disabled", context.initSequenceFactory.disabled()]]), context.addSpecialFieldsEntry(node, {
|
|
94797
94993
|
optional: node.dataBinding.optional
|
|
94798
94994
|
}), context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), context.addVisibilityPathDeclEntryNew(node, node.dataBinding.requisite));
|
|
@@ -94804,7 +95000,7 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
94804
95000
|
// no children
|
|
94805
95001
|
}
|
|
94806
95002
|
doConvert(context) {
|
|
94807
|
-
const node = this.getCurrentNodeAs(
|
|
95003
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94808
95004
|
this.ensurePathExists(node, node.dataBinding.path);
|
|
94809
95005
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("DiadocSuggestComboBox");
|
|
94810
95006
|
markupBuilder.prop(x => x.allowTextWrap).set(node.allowTextWrap);
|
|
@@ -94814,6 +95010,12 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
94814
95010
|
markupBuilder.prop(x => x.query).set(context.generateHelperFunctionExpressionWithoutContext(node, "query", node.query));
|
|
94815
95011
|
markupBuilder.prop(x => x.width).set(node.width);
|
|
94816
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
|
+
}
|
|
94817
95019
|
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__.setTooltipSettingsProps)(markupBuilder, node.tooltipSettings);
|
|
94818
95020
|
return markupBuilder.buildConverterResult();
|
|
94819
95021
|
}
|
|
@@ -94843,28 +95045,31 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94843
95045
|
/* harmony import */ var _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/SugarNodeWithLegacyVisibility */ "./Generator/src/generators/markupGenerator/Serializer/SugarNodeWithLegacyVisibility.ts");
|
|
94844
95046
|
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
94845
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");
|
|
94846
95049
|
|
|
94847
95050
|
|
|
94848
95051
|
|
|
94849
|
-
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
|
+
|
|
94850
95054
|
|
|
94851
95055
|
|
|
94852
95056
|
|
|
94853
95057
|
|
|
94854
95058
|
|
|
94855
|
-
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 {
|
|
94856
95060
|
constructor(...args) {
|
|
94857
95061
|
super(...args);
|
|
94858
95062
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
94859
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94860
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94861
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94862
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94863
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94864
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94865
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94866
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94867
|
-
_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);
|
|
94868
95073
|
}
|
|
94869
95074
|
getOwnPath() {
|
|
94870
95075
|
return this.dataBinding.getOwnPath();
|
|
@@ -94874,47 +95079,52 @@ let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_
|
|
|
94874
95079
|
enumerable: true,
|
|
94875
95080
|
writable: true,
|
|
94876
95081
|
initializer: null
|
|
94877
|
-
}), _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], {
|
|
94878
95083
|
configurable: true,
|
|
94879
95084
|
enumerable: true,
|
|
94880
95085
|
writable: true,
|
|
94881
95086
|
initializer: null
|
|
94882
|
-
}), _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], {
|
|
94883
95088
|
configurable: true,
|
|
94884
95089
|
enumerable: true,
|
|
94885
95090
|
writable: true,
|
|
94886
95091
|
initializer: null
|
|
94887
|
-
}), _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], {
|
|
94888
95093
|
configurable: true,
|
|
94889
95094
|
enumerable: true,
|
|
94890
95095
|
writable: true,
|
|
94891
95096
|
initializer: null
|
|
94892
|
-
}), _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], {
|
|
94893
95098
|
configurable: true,
|
|
94894
95099
|
enumerable: true,
|
|
94895
95100
|
writable: true,
|
|
94896
95101
|
initializer: null
|
|
94897
|
-
}), _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], {
|
|
94898
95103
|
configurable: true,
|
|
94899
95104
|
enumerable: true,
|
|
94900
95105
|
writable: true,
|
|
94901
95106
|
initializer: null
|
|
94902
|
-
}), _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], {
|
|
94903
95108
|
configurable: true,
|
|
94904
95109
|
enumerable: true,
|
|
94905
95110
|
writable: true,
|
|
94906
95111
|
initializer: null
|
|
94907
|
-
}), _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], {
|
|
94908
95113
|
configurable: true,
|
|
94909
95114
|
enumerable: true,
|
|
94910
95115
|
writable: true,
|
|
94911
95116
|
initializer: null
|
|
94912
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95117
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "query", [_dec10], {
|
|
94913
95118
|
configurable: true,
|
|
94914
95119
|
enumerable: true,
|
|
94915
95120
|
writable: true,
|
|
94916
95121
|
initializer: null
|
|
94917
|
-
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
95122
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "placeholder", [_dec11], {
|
|
95123
|
+
configurable: true,
|
|
95124
|
+
enumerable: true,
|
|
95125
|
+
writable: true,
|
|
95126
|
+
initializer: null
|
|
95127
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "displayValueField", [_dec12], {
|
|
94918
95128
|
configurable: true,
|
|
94919
95129
|
enumerable: true,
|
|
94920
95130
|
writable: true,
|
|
@@ -101673,6 +101883,9 @@ class MarkupBuildingContext {
|
|
|
101673
101883
|
}
|
|
101674
101884
|
return result;
|
|
101675
101885
|
}
|
|
101886
|
+
getAllNestedPaths(nodePath) {
|
|
101887
|
+
return this.dataDeclarationHelper.getAllNestedPaths(nodePath);
|
|
101888
|
+
}
|
|
101676
101889
|
getUniqueControlId(context) {
|
|
101677
101890
|
let currentValue = this.uniqueControlIdIncrement.get(context);
|
|
101678
101891
|
if (currentValue == undefined) {
|
|
@@ -103649,6 +103862,9 @@ class SugarNodeConverterBase {
|
|
|
103649
103862
|
const parent = node.getParentStrict();
|
|
103650
103863
|
return this.getNodeAs(nodeClass, parent);
|
|
103651
103864
|
}
|
|
103865
|
+
getNearestParentOfType(nodeClass) {
|
|
103866
|
+
return this.node.findParentOfTypeStrict(nodeClass);
|
|
103867
|
+
}
|
|
103652
103868
|
getRequisites(fetchFunctions) {
|
|
103653
103869
|
const result = this.getRequisitesFromFetchFunction(fetchFunctions);
|
|
103654
103870
|
for (const outerPath of this.doGetRequisites()) {
|
|
@@ -103968,61 +104184,63 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
103968
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");
|
|
103969
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");
|
|
103970
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");
|
|
103971
|
-
/* harmony import */ var
|
|
103972
|
-
/* harmony import */ var
|
|
103973
|
-
/* harmony import */ var
|
|
103974
|
-
/* harmony import */ var
|
|
103975
|
-
/* harmony import */ var
|
|
103976
|
-
/* harmony import */ var
|
|
103977
|
-
/* harmony import */ var
|
|
103978
|
-
/* harmony import */ var
|
|
103979
|
-
/* harmony import */ var
|
|
103980
|
-
/* harmony import */ var
|
|
103981
|
-
/* harmony import */ var
|
|
103982
|
-
/* harmony import */ var
|
|
103983
|
-
/* harmony import */ var
|
|
103984
|
-
/* harmony import */ var
|
|
103985
|
-
/* harmony import */ var
|
|
103986
|
-
/* harmony import */ var
|
|
103987
|
-
/* harmony import */ var
|
|
103988
|
-
/* harmony import */ var
|
|
103989
|
-
/* harmony import */ var
|
|
103990
|
-
/* harmony import */ var
|
|
103991
|
-
/* harmony import */ var
|
|
103992
|
-
/* harmony import */ var
|
|
103993
|
-
/* harmony import */ var
|
|
103994
|
-
/* harmony import */ var
|
|
103995
|
-
/* harmony import */ var
|
|
103996
|
-
/* harmony import */ var
|
|
103997
|
-
/* harmony import */ var
|
|
103998
|
-
/* harmony import */ var
|
|
103999
|
-
/* harmony import */ var
|
|
104000
|
-
/* harmony import */ var
|
|
104001
|
-
/* harmony import */ var
|
|
104002
|
-
/* harmony import */ var
|
|
104003
|
-
/* harmony import */ var
|
|
104004
|
-
/* harmony import */ var
|
|
104005
|
-
/* harmony import */ var
|
|
104006
|
-
/* harmony import */ var
|
|
104007
|
-
/* harmony import */ var
|
|
104008
|
-
/* harmony import */ var
|
|
104009
|
-
/* harmony import */ var
|
|
104010
|
-
/* harmony import */ var
|
|
104011
|
-
/* harmony import */ var
|
|
104012
|
-
/* harmony import */ var
|
|
104013
|
-
/* harmony import */ var
|
|
104014
|
-
/* harmony import */ var
|
|
104015
|
-
/* harmony import */ var
|
|
104016
|
-
/* harmony import */ var
|
|
104017
|
-
/* harmony import */ var
|
|
104018
|
-
/* harmony import */ var
|
|
104019
|
-
/* harmony import */ var
|
|
104020
|
-
/* harmony import */ var
|
|
104021
|
-
/* harmony import */ var
|
|
104022
|
-
/* harmony import */ var
|
|
104023
|
-
/* harmony import */ var
|
|
104024
|
-
/* harmony import */ var
|
|
104025
|
-
/* 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
|
+
|
|
104026
104244
|
|
|
104027
104245
|
|
|
104028
104246
|
|
|
@@ -104159,28 +104377,28 @@ function registerDefaultSugarNodes(result) {
|
|
|
104159
104377
|
result.registerNode(_ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode);
|
|
104160
104378
|
result.registerNode(_ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode);
|
|
104161
104379
|
result.registerNode(_ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode);
|
|
104162
|
-
result.registerNode(
|
|
104380
|
+
result.registerNode(_ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_87__.SpoilerNode);
|
|
104163
104381
|
result.registerNode(_ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode);
|
|
104164
104382
|
result.registerNode(_ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode);
|
|
104165
104383
|
result.registerNode(_ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode);
|
|
104166
104384
|
result.registerNode(_ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode);
|
|
104167
104385
|
result.registerNode(_ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode);
|
|
104168
|
-
result.registerNode(
|
|
104169
|
-
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);
|
|
104170
104388
|
result.registerNode(_ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode);
|
|
104171
104389
|
result.registerNode(_ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode);
|
|
104172
104390
|
result.registerNode(_ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode);
|
|
104173
104391
|
result.registerNode(_ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode);
|
|
104174
|
-
result.registerNode(
|
|
104392
|
+
result.registerNode(_ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_83__.RadioGroupNode);
|
|
104175
104393
|
result.registerNode(_ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode);
|
|
104176
104394
|
result.registerNode(_ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode);
|
|
104177
|
-
result.registerNode(
|
|
104178
|
-
result.registerNode(
|
|
104179
|
-
result.registerNode(
|
|
104180
|
-
result.registerNode(
|
|
104181
|
-
result.registerNode(
|
|
104182
|
-
result.registerNode(
|
|
104183
|
-
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);
|
|
104184
104402
|
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode);
|
|
104185
104403
|
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode);
|
|
104186
104404
|
result.registerNode(_ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode);
|
|
@@ -104189,59 +104407,61 @@ function registerDefaultSugarNodes(result) {
|
|
|
104189
104407
|
result.registerNode(_ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode);
|
|
104190
104408
|
result.registerNode(_ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode);
|
|
104191
104409
|
result.registerNode(_ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode);
|
|
104192
|
-
result.registerNode(
|
|
104410
|
+
result.registerNode(_ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchNode);
|
|
104193
104411
|
result.registerNode(_ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode);
|
|
104194
104412
|
result.registerNode(_ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode);
|
|
104195
104413
|
result.registerNode(_ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode);
|
|
104196
104414
|
result.registerNode(_ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode);
|
|
104197
104415
|
result.registerNode(_ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode);
|
|
104198
|
-
result.registerNode(
|
|
104199
|
-
result.registerNode(
|
|
104200
|
-
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);
|
|
104201
104419
|
result.registerNode(_ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode);
|
|
104202
104420
|
result.registerNode(_ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode);
|
|
104203
104421
|
result.registerNode(_ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode);
|
|
104204
104422
|
result.registerNode(_ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode);
|
|
104205
|
-
result.registerNode(
|
|
104206
|
-
result.registerNode(
|
|
104207
|
-
result.registerNode(
|
|
104208
|
-
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);
|
|
104209
104427
|
result.registerNode(_ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode);
|
|
104428
|
+
result.registerNode(_ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode);
|
|
104210
104429
|
result.registerNode(_ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_28__.DefaultContentNode);
|
|
104211
104430
|
result.registerNode(_ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode);
|
|
104212
104431
|
result.registerNode(_ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode);
|
|
104213
|
-
result.registerNode(
|
|
104214
|
-
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);
|
|
104215
104434
|
result.registerNode(_ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode);
|
|
104216
|
-
result.registerNode(
|
|
104217
|
-
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);
|
|
104218
104437
|
result.registerNode(_ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode);
|
|
104219
|
-
result.registerNode(
|
|
104220
|
-
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);
|
|
104221
104440
|
result.registerNode(_ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode);
|
|
104222
104441
|
result.registerNode(_ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode);
|
|
104223
104442
|
result.registerNode(_ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode);
|
|
104224
104443
|
result.registerNode(_ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode);
|
|
104225
|
-
result.registerNode(
|
|
104444
|
+
result.registerNode(_ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_101__.ValueLengthNode);
|
|
104226
104445
|
result.registerNode(_ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode);
|
|
104227
|
-
result.registerNode(
|
|
104446
|
+
result.registerNode(_ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_99__.UnitItemNode);
|
|
104228
104447
|
result.registerNode(_ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode);
|
|
104229
|
-
result.registerNode(
|
|
104230
|
-
result.registerNode(
|
|
104231
|
-
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);
|
|
104232
104452
|
result.registerNode(_ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode);
|
|
104233
|
-
result.registerNode(
|
|
104234
|
-
result.registerNode(
|
|
104235
|
-
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);
|
|
104236
104456
|
result.registerNode(_ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode);
|
|
104237
|
-
result.registerNode(
|
|
104238
|
-
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);
|
|
104239
104459
|
result.registerNode(_ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode);
|
|
104240
104460
|
result.registerNode(_ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode);
|
|
104241
104461
|
result.registerNode(_ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode);
|
|
104242
104462
|
result.registerNode(_ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.FooterNode);
|
|
104243
104463
|
result.registerNode(_ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode);
|
|
104244
|
-
result.registerNode(
|
|
104464
|
+
result.registerNode(_ElementProcessors_MultiControls_TableCell_TableCellNode__WEBPACK_IMPORTED_MODULE_96__.TableCellNode);
|
|
104245
104465
|
result.registerNode(_ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode);
|
|
104246
104466
|
result.registerNode(_ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode);
|
|
104247
104467
|
result.registerNode(_ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode);
|
|
@@ -104251,24 +104471,24 @@ function registerDefaultSugarNodes(result) {
|
|
|
104251
104471
|
result.registerNode(_ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode);
|
|
104252
104472
|
result.registerNode(_ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode);
|
|
104253
104473
|
result.registerNode(_ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node);
|
|
104254
|
-
result.registerNode(
|
|
104255
|
-
result.registerNode(
|
|
104256
|
-
result.registerNode(
|
|
104257
|
-
result.registerNode(
|
|
104258
|
-
result.registerNode(
|
|
104259
|
-
result.registerNode(
|
|
104260
|
-
result.registerNode(
|
|
104261
|
-
result.registerNode(
|
|
104262
|
-
result.registerNode(
|
|
104263
|
-
result.registerNode(
|
|
104264
|
-
result.registerNode(
|
|
104265
|
-
result.registerNode(
|
|
104266
|
-
result.registerNode(
|
|
104267
|
-
result.registerNode(
|
|
104268
|
-
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);
|
|
104269
104489
|
}
|
|
104270
104490
|
function createDefaultSugarSerializer() {
|
|
104271
|
-
const result = new
|
|
104491
|
+
const result = new _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_107__.SugarSerializer({
|
|
104272
104492
|
unknownProperties: "error"
|
|
104273
104493
|
});
|
|
104274
104494
|
registerDefaultSugarNodes(result);
|
|
@@ -104278,10 +104498,10 @@ function getAllSugarValidationNodeClasses() {
|
|
|
104278
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];
|
|
104279
104499
|
}
|
|
104280
104500
|
function getAllSugarNodeClasses() {
|
|
104281
|
-
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, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_126__.InstanceNumberNode];
|
|
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];
|
|
104282
104502
|
}
|
|
104283
104503
|
function getAllSchemaRngNodeClasses() {
|
|
104284
|
-
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];
|
|
104285
104505
|
}
|
|
104286
104506
|
|
|
104287
104507
|
/***/ }),
|