@kontur.candy/generator 4.269.0 → 4.270.0-pribyl-copy-application5.2

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.
Files changed (2) hide show
  1. package/dist/index.js +379 -175
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -111609,6 +111609,7 @@ let ButtonSettingsTypeEnum;
111609
111609
 
111610
111610
  (function (ButtonSettingsTypeEnum) {
111611
111611
  ButtonSettingsTypeEnum["Revise"] = "revise";
111612
+ ButtonSettingsTypeEnum["DigitalWarrant"] = "digitalWarrant";
111612
111613
  })(ButtonSettingsTypeEnum || (ButtonSettingsTypeEnum = {}));
111613
111614
 
111614
111615
  /***/ }),
@@ -113400,6 +113401,15 @@ class Set2 {
113400
113401
  return false;
113401
113402
  }
113402
113403
 
113404
+ remove(path) {
113405
+ const hash = this.getItemHash(path);
113406
+ const list = this.hashMap.get(hash);
113407
+
113408
+ if (list != undefined) {
113409
+ this.hashMap.set(hash, list.filter(x => !this.areItemsEqual(x, path)));
113410
+ }
113411
+ }
113412
+
113403
113413
  has(path) {
113404
113414
  var _this$hashMap$get;
113405
113415
 
@@ -113578,6 +113588,7 @@ __webpack_require__.r(__webpack_exports__);
113578
113588
  /* harmony export */ "unitWithoutInstance": () => (/* binding */ unitWithoutInstance),
113579
113589
  /* harmony export */ "isUnitIdEquals": () => (/* binding */ isUnitIdEquals),
113580
113590
  /* harmony export */ "sectionNameToUnitId": () => (/* binding */ sectionNameToUnitId),
113591
+ /* harmony export */ "getAllUnitIdInstances": () => (/* binding */ getAllUnitIdInstances),
113581
113592
  /* harmony export */ "unitIdToLegacyUnitId": () => (/* binding */ unitIdToLegacyUnitId),
113582
113593
  /* harmony export */ "unitIdWithInstance": () => (/* binding */ unitIdWithInstance),
113583
113594
  /* harmony export */ "createUnitId": () => (/* binding */ createUnitId)
@@ -113635,6 +113646,11 @@ function sectionNameToUnitId(sectionName) {
113635
113646
  };
113636
113647
  }
113637
113648
  }
113649
+ function getAllUnitIdInstances(unitId) {
113650
+ var _unitId$parentInstanc, _unitId$instance;
113651
+
113652
+ return ((_unitId$parentInstanc = unitId.parentInstances) !== null && _unitId$parentInstanc !== void 0 ? _unitId$parentInstanc : []).concat((_unitId$instance = unitId.instance) !== null && _unitId$instance !== void 0 ? _unitId$instance : []);
113653
+ }
113638
113654
  function unitIdToLegacyUnitId(unitId) {
113639
113655
  if (unitId == undefined) {
113640
113656
  return undefined;
@@ -128878,12 +128894,31 @@ class DataDeclarationGenerationContext {
128878
128894
  return {};
128879
128895
  }
128880
128896
 
128897
+ *getAllParentPages(node) {
128898
+ let currentNode = node;
128899
+
128900
+ while (currentNode != undefined) {
128901
+ const parent = currentNode.findParentOfType(_markupGenerator_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__.PageNode);
128902
+
128903
+ if (parent != undefined) {
128904
+ yield parent;
128905
+ }
128906
+
128907
+ currentNode = parent;
128908
+ }
128909
+ }
128910
+
128881
128911
  getSections(node, requisite, requisiteMode = RequisiteSectionMode.AsRequisiteAttribute) {
128882
128912
  const page = node instanceof _markupGenerator_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__.PageNode ? node : node.findParentOfType(_markupGenerator_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__.PageNode);
128883
128913
  const pageName = page === null || page === void 0 ? void 0 : page.id;
128914
+ const pageRequiresResolution = page != undefined && (page.multiple || Iterator.from(this.getAllParentPages(page)).some(x => {
128915
+ var _x$multiple;
128916
+
128917
+ return (_x$multiple = x.multiple) !== null && _x$multiple !== void 0 ? _x$multiple : false;
128918
+ }));
128884
128919
 
128885
128920
  if (!(node instanceof _markupGenerator_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__.PageNode)) {
128886
- if (page != undefined && page.multiple) {
128921
+ if (pageRequiresResolution) {
128887
128922
  return [{
128888
128923
  fn: `#getSectionFunction('${pageName}')#`
128889
128924
  }];
@@ -129940,102 +129975,169 @@ require('./webEntry')
129940
129975
 
129941
129976
  /***/ }),
129942
129977
 
129943
- /***/ "./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts":
129944
- /*!***************************************************************************************!*\
129945
- !*** ./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts ***!
129946
- \***************************************************************************************/
129978
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts":
129979
+ /*!***********************************************************************************!*\
129980
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts ***!
129981
+ \***********************************************************************************/
129947
129982
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
129948
129983
 
129949
129984
  "use strict";
129950
129985
  __webpack_require__.r(__webpack_exports__);
129951
129986
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
129952
- /* harmony export */ "HelperFunctionsGenerator": () => (/* binding */ HelperFunctionsGenerator)
129987
+ /* harmony export */ "astToExportStatement": () => (/* binding */ astToExportStatement)
129953
129988
  /* harmony export */ });
129954
- /* harmony import */ var _babel_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/core */ "./node_modules/@babel/core/lib/index.js");
129955
- /* harmony import */ var _babel_template__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/template */ "./node_modules/@babel/template/lib/index.js");
129956
- /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
129957
- /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_2__);
129989
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
129990
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_0__);
129958
129991
 
129992
+ const astToExportStatement = (filename, ast) => {
129993
+ const defaultExport = ast.program.body.find(x => _babel_types__WEBPACK_IMPORTED_MODULE_0__.isExportDefaultDeclaration(x) && _babel_types__WEBPACK_IMPORTED_MODULE_0__.isFunctionDeclaration(x.declaration));
129959
129994
 
129995
+ if (!_babel_types__WEBPACK_IMPORTED_MODULE_0__.isExportDefaultDeclaration(defaultExport) || !_babel_types__WEBPACK_IMPORTED_MODULE_0__.isFunctionDeclaration(defaultExport.declaration)) {
129996
+ throw new Error(`InvalidProgramState: default function export not found in ${filename}.js`);
129997
+ }
129960
129998
 
129961
- class HelperFunctionsGenerator {
129962
- generate(helpers) {
129963
- if (!helpers || helpers.length === 0) {
129999
+ return _babel_types__WEBPACK_IMPORTED_MODULE_0__.exportNamedDeclaration(_babel_types__WEBPACK_IMPORTED_MODULE_0__.functionDeclaration(_babel_types__WEBPACK_IMPORTED_MODULE_0__.identifier(filename), defaultExport.declaration.params, defaultExport.declaration.body, defaultExport.declaration.generator, defaultExport.declaration.async));
130000
+ };
130001
+
130002
+ /***/ }),
130003
+
130004
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/CommonHelperFunctionsGenerator.ts":
130005
+ /*!*********************************************************************************************!*\
130006
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/CommonHelperFunctionsGenerator.ts ***!
130007
+ \*********************************************************************************************/
130008
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
130009
+
130010
+ "use strict";
130011
+ __webpack_require__.r(__webpack_exports__);
130012
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
130013
+ /* harmony export */ "CommonHelperFunctionsGenerator": () => (/* binding */ CommonHelperFunctionsGenerator)
130014
+ /* harmony export */ });
130015
+ /* harmony import */ var _babel_template__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/template */ "./node_modules/@babel/template/lib/index.js");
130016
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
130017
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_1__);
130018
+ /* harmony import */ var _FileContentToAst__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./FileContentToAst */ "./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts");
130019
+ /* harmony import */ var _AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AstToExportStatement */ "./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts");
130020
+ /* harmony import */ var _StatementsToCode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StatementsToCode */ "./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts");
130021
+
130022
+
130023
+
130024
+
130025
+
130026
+ class CommonHelperFunctionsGenerator {
130027
+ generate(commonHelpers) {
130028
+ if (commonHelpers.length === 0) {
129964
130029
  return "";
129965
130030
  }
129966
130031
 
129967
- const helperFunctionsList = helpers.map(helper => helper.filename).join(", ");
129968
- const buildExportDefault = (0,_babel_template__WEBPACK_IMPORTED_MODULE_1__["default"])(`export default { ${helperFunctionsList} }`, {
130032
+ const helperFunctionsList = commonHelpers.map(helper => helper.filename).join(", ");
130033
+ const buildExportDefault = (0,_babel_template__WEBPACK_IMPORTED_MODULE_0__["default"])(`export default { ${helperFunctionsList} }`, {
129969
130034
  sourceType: "module"
129970
130035
  });
129971
130036
  const exportDefault = buildExportDefault();
129972
130037
 
129973
130038
  if (Array.isArray(exportDefault)) {
129974
- throw new Error("InvalidProgramState");
130039
+ throw new Error("InvalidProgramState: default export build failed");
129975
130040
  }
129976
130041
 
129977
- const additionalHelpers = [].concat(...helpers.map(helper => {
129978
- const ast = (0,_babel_core__WEBPACK_IMPORTED_MODULE_0__.parse)(helper.content, {
129979
- sourceType: "module",
129980
- filename: "fake-file-name.js",
129981
- configFile: false,
129982
- babelrc: false,
129983
- plugins: [__webpack_require__(/*! @babel/plugin-syntax-jsx */ "./node_modules/@babel/plugin-syntax-jsx/lib/index.js")]
129984
- });
130042
+ const helpersStatements = [].concat(...commonHelpers.map(helper => {
130043
+ const ast = (0,_FileContentToAst__WEBPACK_IMPORTED_MODULE_2__.fileContentToAst)(helper);
130044
+ return this.transform(helper.filename, ast);
130045
+ }), exportDefault);
130046
+ return (0,_StatementsToCode__WEBPACK_IMPORTED_MODULE_4__.statementsToCode)(helpersStatements);
130047
+ }
129985
130048
 
129986
- if (ast == undefined || ast.type !== "File") {
129987
- throw new Error("InvalidProgramState");
129988
- }
130049
+ transform(filename, ast) {
130050
+ const result = (0,_AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__.astToExportStatement)(filename, ast);
130051
+ const imports = ast.program.body.filter(x => _babel_types__WEBPACK_IMPORTED_MODULE_1__.isImportDeclaration(x) && !x.source.value.startsWith("./"));
130052
+ return [...imports, result];
130053
+ }
129989
130054
 
129990
- return this.transform(helper.filename, ast);
129991
- }), exportDefault); // tslint:disable-next-line:no-null-keyword
130055
+ }
129992
130056
 
129993
- const transformResult = (0,_babel_core__WEBPACK_IMPORTED_MODULE_0__.transformFromAstSync)(_babel_types__WEBPACK_IMPORTED_MODULE_2__.program(additionalHelpers), undefined, {
129994
- configFile: false,
129995
- sourceType: "module"
129996
- });
130057
+ /***/ }),
129997
130058
 
129998
- if (transformResult == undefined || transformResult.code == undefined) {
129999
- throw new Error("InvalidProgramState");
130000
- }
130059
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts":
130060
+ /*!*******************************************************************************!*\
130061
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts ***!
130062
+ \*******************************************************************************/
130063
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
130001
130064
 
130002
- const {
130003
- code
130004
- } = transformResult;
130005
- return unescape(code.replace(/(\\)(u[\dA-Fa-f]{4})/g, "%$2"));
130065
+ "use strict";
130066
+ __webpack_require__.r(__webpack_exports__);
130067
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
130068
+ /* harmony export */ "fileContentToAst": () => (/* binding */ fileContentToAst)
130069
+ /* harmony export */ });
130070
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
130071
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_0__);
130072
+ /* harmony import */ var _babel_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/core */ "./node_modules/@babel/core/lib/index.js");
130073
+
130074
+
130075
+ const fileContentToAst = helper => {
130076
+ const ast = (0,_babel_core__WEBPACK_IMPORTED_MODULE_1__.parse)(helper.content, {
130077
+ sourceType: "module",
130078
+ filename: "fake-file-name.js",
130079
+ configFile: false,
130080
+ babelrc: false,
130081
+ plugins: [__webpack_require__(/*! @babel/plugin-syntax-jsx */ "./node_modules/@babel/plugin-syntax-jsx/lib/index.js")]
130082
+ });
130083
+
130084
+ if (!_babel_types__WEBPACK_IMPORTED_MODULE_0__.isFile(ast)) {
130085
+ throw new Error(`InvalidProgramState: incorrect helper ${helper.filename}.js`);
130006
130086
  }
130007
130087
 
130008
- transform(filename, ast) {
130009
- const defaultExport = ast.program.body.find(x => x.type === "ExportDefaultDeclaration" && x.declaration.type === "FunctionDeclaration");
130088
+ return ast;
130089
+ };
130010
130090
 
130011
- if (defaultExport == undefined || !_babel_types__WEBPACK_IMPORTED_MODULE_2__.isExportDefaultDeclaration(defaultExport)) {
130012
- throw new Error("InvalidProgramState");
130013
- }
130091
+ /***/ }),
130014
130092
 
130015
- const declaration = defaultExport.declaration;
130093
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts":
130094
+ /*!***************************************************************************************!*\
130095
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts ***!
130096
+ \***************************************************************************************/
130097
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
130016
130098
 
130017
- if (!_babel_types__WEBPACK_IMPORTED_MODULE_2__.isFunctionDeclaration(declaration)) {
130018
- throw new Error("InvalidProgramState");
130099
+ "use strict";
130100
+ __webpack_require__.r(__webpack_exports__);
130101
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
130102
+ /* harmony export */ "HelperFunctionsGenerator": () => (/* binding */ HelperFunctionsGenerator)
130103
+ /* harmony export */ });
130104
+ /* harmony import */ var _babel_template__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/template */ "./node_modules/@babel/template/lib/index.js");
130105
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
130106
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_1__);
130107
+ /* harmony import */ var _FileContentToAst__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./FileContentToAst */ "./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts");
130108
+ /* harmony import */ var _AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AstToExportStatement */ "./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts");
130109
+ /* harmony import */ var _StatementsToCode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StatementsToCode */ "./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts");
130110
+
130111
+
130112
+
130113
+
130114
+
130115
+ class HelperFunctionsGenerator {
130116
+ generate(helpers) {
130117
+ if (helpers.length === 0) {
130118
+ return "";
130019
130119
  }
130020
130120
 
130021
- const parameters = declaration.params;
130022
- const {
130023
- body
130024
- } = declaration;
130025
- const buildExport = (0,_babel_template__WEBPACK_IMPORTED_MODULE_1__["default"])(`export ${declaration.async ? "async " : ""}function FILENAME(PARAMETERS) { BODY }`, {
130121
+ const helperFunctionsList = helpers.map(helper => helper.filename).join(", ");
130122
+ const buildExportDefault = (0,_babel_template__WEBPACK_IMPORTED_MODULE_0__["default"])(`export default { ${helperFunctionsList} }`, {
130026
130123
  sourceType: "module"
130027
130124
  });
130028
- const result = buildExport({
130029
- FILENAME: _babel_types__WEBPACK_IMPORTED_MODULE_2__.identifier(filename),
130030
- PARAMETERS: parameters,
130031
- BODY: body.body
130032
- });
130033
- const imports = ast.program.body.filter(x => x.type === "ImportDeclaration");
130125
+ const exportDefault = buildExportDefault();
130034
130126
 
130035
- if (Array.isArray(result)) {
130036
- throw new Error("InvalidProgramState");
130127
+ if (Array.isArray(exportDefault)) {
130128
+ throw new Error("InvalidProgramState: default export build failed");
130037
130129
  }
130038
130130
 
130131
+ const helpersStatements = [].concat(...helpers.map(helper => {
130132
+ const ast = (0,_FileContentToAst__WEBPACK_IMPORTED_MODULE_2__.fileContentToAst)(helper);
130133
+ return this.transform(helper.filename, ast);
130134
+ }), exportDefault);
130135
+ return (0,_StatementsToCode__WEBPACK_IMPORTED_MODULE_4__.statementsToCode)(helpersStatements);
130136
+ }
130137
+
130138
+ transform(filename, ast) {
130139
+ const result = (0,_AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__.astToExportStatement)(filename, ast);
130140
+ const imports = ast.program.body.filter(x => _babel_types__WEBPACK_IMPORTED_MODULE_1__.isImportDeclaration(x) && !x.source.value.startsWith("./")).map(x => _babel_types__WEBPACK_IMPORTED_MODULE_1__.isImportDeclaration(x) && x.source.value.includes("/jsHelpers/") ? _babel_types__WEBPACK_IMPORTED_MODULE_1__.importDeclaration(x.specifiers.map(s => _babel_types__WEBPACK_IMPORTED_MODULE_1__.importSpecifier(s.local, s.local)), _babel_types__WEBPACK_IMPORTED_MODULE_1__.stringLiteral("./commonHelperFunctions")) : x);
130039
130141
  return [...imports, result];
130040
130142
  }
130041
130143
 
@@ -130043,6 +130145,40 @@ class HelperFunctionsGenerator {
130043
130145
 
130044
130146
  /***/ }),
130045
130147
 
130148
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts":
130149
+ /*!*******************************************************************************!*\
130150
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts ***!
130151
+ \*******************************************************************************/
130152
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
130153
+
130154
+ "use strict";
130155
+ __webpack_require__.r(__webpack_exports__);
130156
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
130157
+ /* harmony export */ "statementsToCode": () => (/* binding */ statementsToCode)
130158
+ /* harmony export */ });
130159
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
130160
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_0__);
130161
+ /* harmony import */ var _babel_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/core */ "./node_modules/@babel/core/lib/index.js");
130162
+
130163
+
130164
+ const statementsToCode = statements => {
130165
+ const transformResult = (0,_babel_core__WEBPACK_IMPORTED_MODULE_1__.transformFromAstSync)(_babel_types__WEBPACK_IMPORTED_MODULE_0__.program(statements), undefined, {
130166
+ configFile: false,
130167
+ sourceType: "module"
130168
+ });
130169
+
130170
+ if (transformResult == undefined || transformResult.code == undefined) {
130171
+ throw new Error("InvalidProgramState: statements transform failed");
130172
+ }
130173
+
130174
+ const {
130175
+ code
130176
+ } = transformResult;
130177
+ return unescape(code.replace(/(\\)(u[\dA-Fa-f]{4})/g, "%$2"));
130178
+ };
130179
+
130180
+ /***/ }),
130181
+
130046
130182
  /***/ "./Generator/src/generators/KCXmlGenerator/KCXmlGeneratorBase.ts":
130047
130183
  /*!***********************************************************************!*\
130048
130184
  !*** ./Generator/src/generators/KCXmlGenerator/KCXmlGeneratorBase.ts ***!
@@ -130600,6 +130736,8 @@ __webpack_require__.r(__webpack_exports__);
130600
130736
  /* harmony import */ var _AutoCalculationsGenerator_AutoCalculationsFromFormulas_Calculator2_AutoCalculationsCalculator2Generator__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./AutoCalculationsGenerator/AutoCalculationsFromFormulas/Calculator2/AutoCalculationsCalculator2Generator */ "./Generator/src/generators/AutoCalculationsGenerator/AutoCalculationsFromFormulas/Calculator2/AutoCalculationsCalculator2Generator.ts");
130601
130737
  /* harmony import */ var _LazyLoadDeclarationGenerator_LazyLoadDeclarationGenerator__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./LazyLoadDeclarationGenerator/LazyLoadDeclarationGenerator */ "./Generator/src/generators/LazyLoadDeclarationGenerator/LazyLoadDeclarationGenerator.ts");
130602
130738
  /* harmony import */ var _ServerSideFLangNormalization_FormulaOnlyNormalizationRuleGenerator__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ServerSideFLangNormalization/FormulaOnlyNormalizationRuleGenerator */ "./Generator/src/generators/ServerSideFLangNormalization/FormulaOnlyNormalizationRuleGenerator.ts");
130739
+ /* harmony import */ var _HelperFunctionsGenerator_CommonHelperFunctionsGenerator__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./HelperFunctionsGenerator/CommonHelperFunctionsGenerator */ "./Generator/src/generators/HelperFunctionsGenerator/CommonHelperFunctionsGenerator.ts");
130740
+
130603
130741
 
130604
130742
 
130605
130743
 
@@ -130719,6 +130857,11 @@ function processSugar(formSugarContent, additionalContent, generationOptions) {
130719
130857
 
130720
130858
  if (helperFunctionsContent) {
130721
130859
  builder.addResource("helperFunctions.js", helperFunctionsContent);
130860
+ const commonHelperFunctionsContent = new _HelperFunctionsGenerator_CommonHelperFunctionsGenerator__WEBPACK_IMPORTED_MODULE_31__.CommonHelperFunctionsGenerator().generate(additionalContent.commonHelpersContent);
130861
+
130862
+ if (commonHelperFunctionsContent) {
130863
+ builder.addResource("commonHelperFunctions.js", commonHelperFunctionsContent);
130864
+ }
130722
130865
  }
130723
130866
 
130724
130867
  if (additionalContent.hooksContent) {
@@ -130854,6 +130997,7 @@ async function readFormSources(formSourcesPath, farmDirectory) {
130854
130997
  additionalSettings: await readFileSource(formSourcesPath, "settings.json", "{}"),
130855
130998
  autocalcsContent: await readAutoCalcFiles(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "autocalc")),
130856
130999
  helpersContent: await readJavaScriptFilesWithNames(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "helpers")),
131000
+ commonHelpersContent: await readJavaScriptFilesWithNames(path__WEBPACK_IMPORTED_MODULE_1___default().join(farmDirectory, "jsHelpers")),
130857
131001
  validationsContent: await readJavaScriptFilesWithNames(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "validations")),
130858
131002
  schemaRngContent: await readSchemaRngFile(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "schemas"), formName),
130859
131003
  kcJsXmlContent: (await readFileSource(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "autocalc"), `${formName}.КС.candy.js.xml`, "<dummy/>")) || "",
@@ -130959,7 +131103,7 @@ async function getAllDependencies(formSourcesPath, farmDirectory) {
130959
131103
  sugarReferences.fetchFunctionFiles = (await readdirAsync(legacyfetchfunctionsDirectory)).map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(legacyfetchfunctionsDirectory, x));
130960
131104
  }
130961
131105
 
130962
- return [path__WEBPACK_IMPORTED_MODULE_1___default().join(formSugarDirectoryPath, "index.sugar.xml"), ...sugarReferences.fetchFunctionFiles.map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSugarDirectoryPath, x)), ...sugarReferences.sugarFiles.map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSugarDirectoryPath, x + ".sugar.xml")), ...sugarReferences.resourceFiles.map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSugarDirectoryPath, x)), ...(await checkFileExists(path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSourcesPath, "settings.json"))), ...(await checkFileExists(path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSourcesPath, "hooks.js"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "autocalc"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "helpers"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "validations"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "schemas"))), ...(await checkFileExists(path__WEBPACK_IMPORTED_MODULE_1___default().join(farmDirectory, "tour", "tour.js"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "controls"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "localization")))];
131106
+ return [path__WEBPACK_IMPORTED_MODULE_1___default().join(formSugarDirectoryPath, "index.sugar.xml"), ...sugarReferences.fetchFunctionFiles.map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSugarDirectoryPath, x)), ...sugarReferences.sugarFiles.map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSugarDirectoryPath, x + ".sugar.xml")), ...sugarReferences.resourceFiles.map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSugarDirectoryPath, x)), ...(await checkFileExists(path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSourcesPath, "settings.json"))), ...(await checkFileExists(path__WEBPACK_IMPORTED_MODULE_1___default().resolve(formSourcesPath, "hooks.js"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "autocalc"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "helpers"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(farmDirectory, "jsHelpers"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "validations"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "schemas"))), ...(await checkFileExists(path__WEBPACK_IMPORTED_MODULE_1___default().join(farmDirectory, "tour", "tour.js"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "controls"))), ...(await getAllFilePathsInDirectory(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "localization")))];
130963
131107
  }
130964
131108
 
130965
131109
  function normalizeLineEndings(content) {
@@ -136731,12 +136875,23 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
136731
136875
  }
136732
136876
 
136733
136877
  findOptionalSections(node) {
136734
- const optionalPages = node.pages.filter(page => page.optional && !page.multiple).map(page => page.id).filter(_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_0__.isNotNullOrUndefined);
136878
+ const optionalPages = this.getAllPages(node.pages).filter(page => {
136879
+ var _page$optional;
136880
+
136881
+ return ((_page$optional = page.optional) !== null && _page$optional !== void 0 ? _page$optional : false) && !page.multiple;
136882
+ }).map(page => ({
136883
+ id: page.id,
136884
+ path: page.getFullPath().toLegacyPath()
136885
+ })).filter(x => (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_0__.isNotNullOrUndefined)(x.id));
136735
136886
  return optionalPages;
136736
136887
  }
136737
136888
 
136889
+ getAllPages(pages) {
136890
+ const allPages = pages.flatMap(page => this.getAllPages(page.pages));
136891
+ return pages.concat(allPages);
136892
+ }
136893
+
136738
136894
  buildBaseFormWithContent(context, formContent, formNode) {
136739
- this.assertHasNowOptionalNestedPagesInsideMultipleUnits(formNode);
136740
136895
  const pageNodes = this.getFormPages(formNode);
136741
136896
  const formMarkupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)("BaseForm");
136742
136897
 
@@ -136754,20 +136909,6 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
136754
136909
  return result;
136755
136910
  }
136756
136911
 
136757
- assertHasNowOptionalNestedPagesInsideMultipleUnits(formNode) {
136758
- function assert(pages, hasMultipleUnitsInParents) {
136759
- for (const page of pages) {
136760
- if (hasMultipleUnitsInParents && page.optional && !page.multiple) {
136761
- throw new Error(`Check page with id '${page.id}'. Optional nested pages not supported: actions 'add', 'remove', 'check is empty' does not work for optional nested of multiple instance`);
136762
- }
136763
-
136764
- assert(page.pages, hasMultipleUnitsInParents || !!page.multiple);
136765
- }
136766
- }
136767
-
136768
- assert(formNode.pages, false);
136769
- }
136770
-
136771
136912
  getFormPages(formNode) {
136772
136913
  const pages = [];
136773
136914
  const queue = [...formNode.pages];
@@ -136931,8 +137072,11 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
136931
137072
  }
136932
137073
 
136933
137074
  if (pageNode.multiple) {
137075
+ var _pageNode$unitsCountF;
137076
+
136934
137077
  markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_15__.getNewBindingPathExpression)(pageNode));
136935
137078
  markupBuilder.prop(x => x.multiple).set(true);
137079
+ markupBuilder.prop(x => x.unitsCountForPaging).set((_pageNode$unitsCountF = pageNode.unitsCountForPaging) !== null && _pageNode$unitsCountF !== void 0 ? _pageNode$unitsCountF : node.defaultUnitsCountForPaging);
136936
137080
  } else if (pageNode.path != undefined) {
136937
137081
  markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_15__.getNewBindingPathExpression)(pageNode));
136938
137082
  }
@@ -136962,7 +137106,18 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
136962
137106
  simpleFormBuilder.prop(x => x.maxWidth).set(node.width);
136963
137107
  simpleFormBuilder.prop(x => x.cssWidth).set(node.cssWidth);
136964
137108
  simpleFormBuilder.prop(x => x.buttonSettingsType).set(node.buttonSettingsType);
137109
+
137110
+ if (node.modalheader) {
137111
+ var _node$modalheader$wit, _node$modalheader, _node$modalheader$tex, _node$modalheader2;
137112
+
137113
+ simpleFormBuilder.prop(x => x.header).set({
137114
+ closeButton: (_node$modalheader$wit = (_node$modalheader = node.modalheader) === null || _node$modalheader === void 0 ? void 0 : _node$modalheader.withCloseButton) !== null && _node$modalheader$wit !== void 0 ? _node$modalheader$wit : false,
137115
+ text: (_node$modalheader$tex = (_node$modalheader2 = node.modalheader) === null || _node$modalheader2 === void 0 ? void 0 : _node$modalheader2.text) !== null && _node$modalheader$tex !== void 0 ? _node$modalheader$tex : ""
137116
+ });
137117
+ }
137118
+
136965
137119
  simpleFormBuilder.prop(x => x.padding).set(node.padding);
137120
+ simpleFormBuilder.prop(x => x.validationBeforeSend).set(node.validationBeforeSend);
136966
137121
 
136967
137122
  for (const pageNode of node.pages.filter(x => !x.showOnDemand)) {
136968
137123
  const unitBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)("SimpleFormUnit");
@@ -137092,7 +137247,7 @@ __webpack_require__.r(__webpack_exports__);
137092
137247
 
137093
137248
 
137094
137249
 
137095
- var _dec, _dec2, _class, _class2, _descriptor, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _class4, _class5, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38;
137250
+ var _dec, _dec2, _class, _class2, _descriptor, _dec3, _dec4, _dec5, _class4, _class5, _descriptor2, _descriptor3, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _class7, _class8, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43;
137096
137251
 
137097
137252
 
137098
137253
 
@@ -137118,83 +137273,110 @@ let FetchFunctionsReferenceNode = (_dec = (0,_Serializer_SugarSerializer__WEBPAC
137118
137273
  writable: true,
137119
137274
  initializer: null
137120
137275
  })), _class2)) || _class);
137121
- let FormNode = (_dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("form", `Корневой элемент формы.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form sync recursive .md$")), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("userpicklist", [_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_10__.UserPicklistNode]), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("tour", [_Tour_TourNode__WEBPACK_IMPORTED_MODULE_9__.TourNode]), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("fetchfunctions", [FetchFunctionsReferenceNode]), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("modalIE8", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("m", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("uf", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("forceNavigate", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("hideUnitsAdder", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("hasRegionalForms", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.UntypedUsage), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("controls"), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("import", [_SugarNodes_Nodes_ImportNode__WEBPACK_IMPORTED_MODULE_7__.ImportNode]), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("panel", [_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_12__.PanelNode]), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("page", [_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__.PageNode]), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("simple", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("schemaValidations", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("isReadOnly", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отобразить форму в режиме чтения - все редактирование будет отключено (включая интерактивные элементы - валидации, фокус, подсветки тултипы и тд)"), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("ieDeprecationWarningEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отображать окно с предупреждением, что некоторые функции в ie не работают, с предложением скачать другие браузеры. Не блокирует взаимодействие"), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("compactActionPanel", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отображать компактную плашку (без надписей) на панели действий слева"), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("ieSizeLimitation", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Это флаг включает отображение заглушки для IE, если фуф больше определенного размера`), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("templates", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Управляет влючение возможность создавать и применять шаблоны keweb-а (кнопка в меню)`), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("plain", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Форма без боковой панели, которая будет содержать один раздел`), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("requisite", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Есть подозрение что это свойство не используется`), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("cssWidth", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `Более преоритетный чем обычный width, задается как css`), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("buttonSettingsType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType["enum"](_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.Revise), `Разные настройки кнопок отправить и действий с формой. Сейчас есть только ${_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.Revise} который будет делать кнопки в плашке для simple form как у ИОН или Сверке ФСС`), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("padding", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("maxunitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `По дефолту 15. Если количество разделов превышает \`maxunitscount\`, начинает работать частичный рендеринг. Отрисовывается столько разделов вниз от текущего, сколько задано в настройке, а при скроллинге вниз рендерятся следующие. Используется для больших форм с множественными разделами (напр, ЕНВД, Прибыль), помогает облегчить загрузку редактора`), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("unitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("transferText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, `Текст в лайтбоксе, который появляется по кнопке "Перенести данные"`), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("navigationLimit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `Количество множественных разделов при котором навигация сворачивается (в левой колонке отображаются не все экземпляры), как выглядит можешь посмотреть в ЕНВД при количестве разделов 2 больше 15`), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadFufButtonEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Включает кнопку загрузить отчет в "Другие действия" в панели слева.`), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.markupAttr)("fufSizeTooLargeErrorText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `Описание ошибки для большого размера файла`), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadFufLightboxHideDemandNameButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Отключает кнопку "Показать имя требования" внутри лайтбокса Загрузки файла.`), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadInquiryButtonEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Включает кнопку загрузить справки в панели слева. (только для 6ндфл и РСВ)`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("type", [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_3__.TypeNode]), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("types", [_TypeListNode__WEBPACK_IMPORTED_MODULE_13__.TypeListNode]), _dec3(_class4 = (_class5 = class FormNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
137276
+ let ModalTitleNode = (_dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("modalheader", `Для форм, встроенных в модальное окно`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `Текст, который отобразится в хедере модалки`), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("withCloseButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Показывает крестик в правом верхнем углу. Listener - close.`), _dec3(_class4 = (_class5 = class ModalTitleNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
137277
+ constructor(...args) {
137278
+ super(...args);
137279
+
137280
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "text", _descriptor2, this);
137281
+
137282
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withCloseButton", _descriptor3, this);
137283
+ }
137284
+
137285
+ }, (_descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "text", [_dec4], {
137286
+ configurable: true,
137287
+ enumerable: true,
137288
+ writable: true,
137289
+ initializer: null
137290
+ }), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "withCloseButton", [_dec5], {
137291
+ configurable: true,
137292
+ enumerable: true,
137293
+ writable: true,
137294
+ initializer: null
137295
+ })), _class5)) || _class4);
137296
+ let FormNode = (_dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("form", `Корневой элемент формы.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form sync recursive .md$")), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("userpicklist", [_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_10__.UserPicklistNode]), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("tour", [_Tour_TourNode__WEBPACK_IMPORTED_MODULE_9__.TourNode]), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("fetchfunctions", [FetchFunctionsReferenceNode]), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("modalIE8", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("m", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("uf", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("forceNavigate", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("hideUnitsAdder", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("hasRegionalForms", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.UntypedUsage), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("controls"), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("modalheader", [ModalTitleNode]), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("import", [_SugarNodes_Nodes_ImportNode__WEBPACK_IMPORTED_MODULE_7__.ImportNode]), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("panel", [_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_12__.PanelNode]), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("page", [_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__.PageNode]), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("simple", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("schemaValidations", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("isReadOnly", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отобразить форму в режиме чтения - все редактирование будет отключено (включая интерактивные элементы - валидации, фокус, подсветки тултипы и тд)"), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("ieDeprecationWarningEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отображать окно с предупреждением, что некоторые функции в ie не работают, с предложением скачать другие браузеры. Не блокирует взаимодействие"), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("compactActionPanel", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отображать компактную плашку (без надписей) на панели действий слева"), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("ieSizeLimitation", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Это флаг включает отображение заглушки для IE, если фуф больше определенного размера`), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("templates", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Управляет влючение возможность создавать и применять шаблоны keweb-а (кнопка в меню)`), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("plain", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Форма без боковой панели, которая будет содержать один раздел`), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("requisite", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Есть подозрение что это свойство не используется`), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("cssWidth", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `Более преоритетный чем обычный width, задается как css`), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("buttonSettingsType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType["enum"](_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.Revise, _Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.DigitalWarrant), `Разные настройки кнопок отправить и действий с формой. Сейчас есть только ${_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.Revise} / ${_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.DigitalWarrant} который будет делать кнопки в плашке для simple form как у ИОН или Сверке ФСС`), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("validationBeforeSend", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Локальная проверка, которая не даст отправить форму, если есть невалидные поля.\n
137297
+ После проверки фокус падает на невалидное поле, если это возможно. Например на input`), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("padding", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("maxunitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `По дефолту 15. Если количество разделов превышает \`maxunitscount\`, начинает работать частичный рендеринг. Отрисовывается столько разделов вниз от текущего, сколько задано в настройке, а при скроллинге вниз рендерятся следующие. Используется для больших форм с множественными разделами (напр, ЕНВД, Прибыль), помогает облегчить загрузку редактора`), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("unitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("transferText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, `Текст в лайтбоксе, который появляется по кнопке "Перенести данные"`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("navigationLimit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `Количество множественных разделов при котором навигация сворачивается (в левой колонке отображаются не все экземпляры), как выглядит можешь посмотреть в ЕНВД при количестве разделов 2 больше 15`), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadFufButtonEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Включает кнопку загрузить отчет в "Другие действия" в панели слева.`), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.markupAttr)("fufSizeTooLargeErrorText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `Описание ошибки для большого размера файла`), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadFufLightboxHideDemandNameButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Отключает кнопку "Показать имя требования" внутри лайтбокса Загрузки файла.`), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadInquiryButtonEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Включает кнопку загрузить справки в панели слева. (только для 6ндфл и РСВ)`), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("defaultUnitsCountForPaging", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `Количество инстансов множественного раздела на котором включается паджинация раздела`), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("type", [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_3__.TypeNode]), _dec46 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("types", [_TypeListNode__WEBPACK_IMPORTED_MODULE_13__.TypeListNode]), _dec6(_class7 = (_class8 = class FormNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
137122
137298
  constructor(...args) {
137123
137299
  super(...args);
137124
137300
 
137125
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor2, this);
137301
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor4, this);
137126
137302
 
137127
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "userPicklists", _descriptor3, this);
137303
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "userPicklists", _descriptor5, this);
137128
137304
 
137129
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tour", _descriptor4, this);
137305
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tour", _descriptor6, this);
137130
137306
 
137131
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fetchFunctions", _descriptor5, this);
137307
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fetchFunctions", _descriptor7, this);
137132
137308
 
137133
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "modalIE8", _descriptor6, this);
137309
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "modalIE8", _descriptor8, this);
137134
137310
 
137135
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mProp", _descriptor7, this);
137311
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mProp", _descriptor9, this);
137136
137312
 
137137
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ufProp", _descriptor8, this);
137313
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ufProp", _descriptor10, this);
137138
137314
 
137139
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "forceNavigate", _descriptor9, this);
137315
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "forceNavigate", _descriptor11, this);
137140
137316
 
137141
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hideUnitsAdder", _descriptor10, this);
137317
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hideUnitsAdder", _descriptor12, this);
137142
137318
 
137143
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hasRegionalForms", _descriptor11, this);
137319
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hasRegionalForms", _descriptor13, this);
137144
137320
 
137145
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "controls", _descriptor12, this);
137321
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "controls", _descriptor14, this);
137146
137322
 
137147
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "imports", _descriptor13, this);
137323
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "modalheader", _descriptor15, this);
137148
137324
 
137149
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "panel", _descriptor14, this);
137325
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "imports", _descriptor16, this);
137150
137326
 
137151
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pages", _descriptor15, this);
137327
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "panel", _descriptor17, this);
137152
137328
 
137153
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "simple", _descriptor16, this);
137329
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pages", _descriptor18, this);
137154
137330
 
137155
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "schemaValidations", _descriptor17, this);
137331
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "simple", _descriptor19, this);
137156
137332
 
137157
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "isReadOnly", _descriptor18, this);
137333
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "schemaValidations", _descriptor20, this);
137158
137334
 
137159
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieDeprecationWarningEnabled", _descriptor19, this);
137335
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "isReadOnly", _descriptor21, this);
137160
137336
 
137161
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "compactActionPanel", _descriptor20, this);
137337
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieDeprecationWarningEnabled", _descriptor22, this);
137162
137338
 
137163
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieSizeLimitation", _descriptor21, this);
137339
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "compactActionPanel", _descriptor23, this);
137164
137340
 
137165
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "templates", _descriptor22, this);
137341
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieSizeLimitation", _descriptor24, this);
137166
137342
 
137167
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "plain", _descriptor23, this);
137343
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "templates", _descriptor25, this);
137168
137344
 
137169
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "requisite", _descriptor24, this);
137345
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "plain", _descriptor26, this);
137170
137346
 
137171
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor25, this);
137347
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "requisite", _descriptor27, this);
137172
137348
 
137173
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cssWidth", _descriptor26, this);
137349
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor28, this);
137350
+
137351
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cssWidth", _descriptor29, this);
137352
+
137353
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "buttonSettingsType", _descriptor30, this);
137354
+
137355
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationBeforeSend", _descriptor31, this);
137174
137356
 
137175
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "buttonSettingsType", _descriptor27, this);
137357
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "padding", _descriptor32, this);
137176
137358
 
137177
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "padding", _descriptor28, this);
137359
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxUnitsCount", _descriptor33, this);
137178
137360
 
137179
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxUnitsCount", _descriptor29, this);
137361
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "unitsCount", _descriptor34, this);
137180
137362
 
137181
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "unitsCount", _descriptor30, this);
137363
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "transferText", _descriptor35, this);
137182
137364
 
137183
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "transferText", _descriptor31, this);
137365
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor36, this);
137184
137366
 
137185
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor32, this);
137367
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufButtonEnabled", _descriptor37, this);
137186
137368
 
137187
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufButtonEnabled", _descriptor33, this);
137369
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fufSizeTooLargeErrorText", _descriptor38, this);
137188
137370
 
137189
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fufSizeTooLargeErrorText", _descriptor34, this);
137371
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufLightboxHideDemandNameButton", _descriptor39, this);
137190
137372
 
137191
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufLightboxHideDemandNameButton", _descriptor35, this);
137373
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadInquiryButtonEnabled", _descriptor40, this);
137192
137374
 
137193
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadInquiryButtonEnabled", _descriptor36, this);
137375
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "defaultUnitsCountForPaging", _descriptor41, this);
137194
137376
 
137195
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "types", _descriptor37, this);
137377
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "types", _descriptor42, this);
137196
137378
 
137197
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "typeLists", _descriptor38, this);
137379
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "typeLists", _descriptor43, this);
137198
137380
  }
137199
137381
 
137200
137382
  getOwnPath() {
@@ -137209,192 +137391,207 @@ let FormNode = (_dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
137209
137391
  return this.controls.controls;
137210
137392
  }
137211
137393
 
137212
- }, (_descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "dataScope", [_dec4], {
137394
+ }, (_descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "dataScope", [_dec7], {
137213
137395
  configurable: true,
137214
137396
  enumerable: true,
137215
137397
  writable: true,
137216
137398
  initializer: null
137217
- }), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "userPicklists", [_dec5], {
137399
+ }), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "userPicklists", [_dec8], {
137218
137400
  configurable: true,
137219
137401
  enumerable: true,
137220
137402
  writable: true,
137221
137403
  initializer: null
137222
- }), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "tour", [_dec6], {
137404
+ }), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "tour", [_dec9], {
137223
137405
  configurable: true,
137224
137406
  enumerable: true,
137225
137407
  writable: true,
137226
137408
  initializer: null
137227
- }), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "fetchFunctions", [_dec7], {
137409
+ }), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "fetchFunctions", [_dec10], {
137228
137410
  configurable: true,
137229
137411
  enumerable: true,
137230
137412
  writable: true,
137231
137413
  initializer: null
137232
- }), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "modalIE8", [_dec8], {
137414
+ }), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "modalIE8", [_dec11], {
137233
137415
  configurable: true,
137234
137416
  enumerable: true,
137235
137417
  writable: true,
137236
137418
  initializer: null
137237
- }), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "mProp", [_dec9], {
137419
+ }), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "mProp", [_dec12], {
137238
137420
  configurable: true,
137239
137421
  enumerable: true,
137240
137422
  writable: true,
137241
137423
  initializer: null
137242
- }), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "ufProp", [_dec10], {
137424
+ }), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "ufProp", [_dec13], {
137243
137425
  configurable: true,
137244
137426
  enumerable: true,
137245
137427
  writable: true,
137246
137428
  initializer: null
137247
- }), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "forceNavigate", [_dec11], {
137429
+ }), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "forceNavigate", [_dec14], {
137248
137430
  configurable: true,
137249
137431
  enumerable: true,
137250
137432
  writable: true,
137251
137433
  initializer: null
137252
- }), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "hideUnitsAdder", [_dec12], {
137434
+ }), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "hideUnitsAdder", [_dec15], {
137253
137435
  configurable: true,
137254
137436
  enumerable: true,
137255
137437
  writable: true,
137256
137438
  initializer: null
137257
- }), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "hasRegionalForms", [_dec13], {
137439
+ }), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "hasRegionalForms", [_dec16], {
137258
137440
  configurable: true,
137259
137441
  enumerable: true,
137260
137442
  writable: true,
137261
137443
  initializer: null
137262
- }), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "controls", [_dec14], {
137444
+ }), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "controls", [_dec17], {
137263
137445
  configurable: true,
137264
137446
  enumerable: true,
137265
137447
  writable: true,
137266
137448
  initializer: null
137267
- }), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "imports", [_dec15], {
137449
+ }), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "modalheader", [_dec18], {
137268
137450
  configurable: true,
137269
137451
  enumerable: true,
137270
137452
  writable: true,
137271
137453
  initializer: null
137272
- }), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "panel", [_dec16], {
137454
+ }), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "imports", [_dec19], {
137273
137455
  configurable: true,
137274
137456
  enumerable: true,
137275
137457
  writable: true,
137276
137458
  initializer: null
137277
- }), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "pages", [_dec17], {
137459
+ }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "panel", [_dec20], {
137278
137460
  configurable: true,
137279
137461
  enumerable: true,
137280
137462
  writable: true,
137281
137463
  initializer: null
137282
- }), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "simple", [_dec18], {
137464
+ }), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "pages", [_dec21], {
137283
137465
  configurable: true,
137284
137466
  enumerable: true,
137285
137467
  writable: true,
137286
137468
  initializer: null
137287
- }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "schemaValidations", [_dec19], {
137469
+ }), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "simple", [_dec22], {
137288
137470
  configurable: true,
137289
137471
  enumerable: true,
137290
137472
  writable: true,
137291
137473
  initializer: null
137292
- }), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "isReadOnly", [_dec20], {
137474
+ }), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "schemaValidations", [_dec23], {
137293
137475
  configurable: true,
137294
137476
  enumerable: true,
137295
137477
  writable: true,
137296
137478
  initializer: null
137297
- }), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "ieDeprecationWarningEnabled", [_dec21], {
137479
+ }), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "isReadOnly", [_dec24], {
137298
137480
  configurable: true,
137299
137481
  enumerable: true,
137300
137482
  writable: true,
137301
137483
  initializer: null
137302
- }), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "compactActionPanel", [_dec22], {
137484
+ }), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "ieDeprecationWarningEnabled", [_dec25], {
137303
137485
  configurable: true,
137304
137486
  enumerable: true,
137305
137487
  writable: true,
137306
137488
  initializer: null
137307
- }), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "ieSizeLimitation", [_dec23], {
137489
+ }), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "compactActionPanel", [_dec26], {
137308
137490
  configurable: true,
137309
137491
  enumerable: true,
137310
137492
  writable: true,
137311
137493
  initializer: null
137312
- }), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "templates", [_dec24], {
137494
+ }), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "ieSizeLimitation", [_dec27], {
137313
137495
  configurable: true,
137314
137496
  enumerable: true,
137315
137497
  writable: true,
137316
137498
  initializer: null
137317
- }), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "plain", [_dec25], {
137499
+ }), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "templates", [_dec28], {
137318
137500
  configurable: true,
137319
137501
  enumerable: true,
137320
137502
  writable: true,
137321
137503
  initializer: null
137322
- }), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "requisite", [_dec26], {
137504
+ }), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "plain", [_dec29], {
137323
137505
  configurable: true,
137324
137506
  enumerable: true,
137325
137507
  writable: true,
137326
137508
  initializer: null
137327
- }), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "width", [_dec27], {
137509
+ }), _descriptor27 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "requisite", [_dec30], {
137328
137510
  configurable: true,
137329
137511
  enumerable: true,
137330
137512
  writable: true,
137331
137513
  initializer: null
137332
- }), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "cssWidth", [_dec28], {
137514
+ }), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "width", [_dec31], {
137333
137515
  configurable: true,
137334
137516
  enumerable: true,
137335
137517
  writable: true,
137336
137518
  initializer: null
137337
- }), _descriptor27 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "buttonSettingsType", [_dec29], {
137519
+ }), _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "cssWidth", [_dec32], {
137338
137520
  configurable: true,
137339
137521
  enumerable: true,
137340
137522
  writable: true,
137341
137523
  initializer: null
137342
- }), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "padding", [_dec30], {
137524
+ }), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "buttonSettingsType", [_dec33], {
137343
137525
  configurable: true,
137344
137526
  enumerable: true,
137345
137527
  writable: true,
137346
137528
  initializer: null
137347
- }), _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "maxUnitsCount", [_dec31], {
137529
+ }), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "validationBeforeSend", [_dec34], {
137348
137530
  configurable: true,
137349
137531
  enumerable: true,
137350
137532
  writable: true,
137351
137533
  initializer: null
137352
- }), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "unitsCount", [_dec32], {
137534
+ }), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "padding", [_dec35], {
137353
137535
  configurable: true,
137354
137536
  enumerable: true,
137355
137537
  writable: true,
137356
137538
  initializer: null
137357
- }), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "transferText", [_dec33], {
137539
+ }), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "maxUnitsCount", [_dec36], {
137358
137540
  configurable: true,
137359
137541
  enumerable: true,
137360
137542
  writable: true,
137361
137543
  initializer: null
137362
- }), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "navigationLimit", [_dec34], {
137544
+ }), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "unitsCount", [_dec37], {
137363
137545
  configurable: true,
137364
137546
  enumerable: true,
137365
137547
  writable: true,
137366
137548
  initializer: null
137367
- }), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "uploadFufButtonEnabled", [_dec35], {
137549
+ }), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "transferText", [_dec38], {
137368
137550
  configurable: true,
137369
137551
  enumerable: true,
137370
137552
  writable: true,
137371
137553
  initializer: null
137372
- }), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "fufSizeTooLargeErrorText", [_dec36], {
137554
+ }), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "navigationLimit", [_dec39], {
137373
137555
  configurable: true,
137374
137556
  enumerable: true,
137375
137557
  writable: true,
137376
137558
  initializer: null
137377
- }), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "uploadFufLightboxHideDemandNameButton", [_dec37], {
137559
+ }), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadFufButtonEnabled", [_dec40], {
137378
137560
  configurable: true,
137379
137561
  enumerable: true,
137380
137562
  writable: true,
137381
137563
  initializer: null
137382
- }), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "uploadInquiryButtonEnabled", [_dec38], {
137564
+ }), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "fufSizeTooLargeErrorText", [_dec41], {
137383
137565
  configurable: true,
137384
137566
  enumerable: true,
137385
137567
  writable: true,
137386
137568
  initializer: null
137387
- }), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "types", [_dec39], {
137569
+ }), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadFufLightboxHideDemandNameButton", [_dec42], {
137388
137570
  configurable: true,
137389
137571
  enumerable: true,
137390
137572
  writable: true,
137391
137573
  initializer: null
137392
- }), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "typeLists", [_dec40], {
137574
+ }), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadInquiryButtonEnabled", [_dec43], {
137393
137575
  configurable: true,
137394
137576
  enumerable: true,
137395
137577
  writable: true,
137396
137578
  initializer: null
137397
- })), _class5)) || _class4);
137579
+ }), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "defaultUnitsCountForPaging", [_dec44], {
137580
+ configurable: true,
137581
+ enumerable: true,
137582
+ writable: true,
137583
+ initializer: null
137584
+ }), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "types", [_dec45], {
137585
+ configurable: true,
137586
+ enumerable: true,
137587
+ writable: true,
137588
+ initializer: null
137589
+ }), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "typeLists", [_dec46], {
137590
+ configurable: true,
137591
+ enumerable: true,
137592
+ writable: true,
137593
+ initializer: null
137594
+ })), _class8)) || _class7);
137398
137595
 
137399
137596
  /***/ }),
137400
137597
 
@@ -137897,7 +138094,7 @@ __webpack_require__.r(__webpack_exports__);
137897
138094
 
137898
138095
 
137899
138096
 
137900
- var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22;
138097
+ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23;
137901
138098
 
137902
138099
 
137903
138100
 
@@ -137905,7 +138102,7 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11
137905
138102
 
137906
138103
 
137907
138104
 
137908
- let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("page", `Страница (раздел)`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("id", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, `Уникальный идентификатор странцы. Все страницы в форме должны иметь уникальный идентификатор. 1111`), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("template", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("default", "title", "multiple", "diadoc"), 'Для множественных разделов необходимо указать `template="multiple"`, для обычных разделов `template="default"`'), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.bindingPathLink)} данного элемента`), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("headerpanel", [_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_3__.HeaderPanelNode]), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("title", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("formName", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("showOnDemand", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Раздел не будет отображаться на странице, пока не будет вызван явно. Например, через механизм отображения раздела в разделе.`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("onNavigateFromErrorLog", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется перед попыткой навигации в контрол внутри раздела"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("orientation", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("landscape"), `Ориентация страницы. При значении landscape станницы займёт всю доступную ширину экрана`), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("navigationName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, `Название Раздела в меню, если в сахаре есть отдельное описание навигации (unitList), то указывать не нужно`), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("height", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Начальная высота раздела`), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("minHeight", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Минимальная высота раздела`), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("multiple", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Обозначение множественного раздела`), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("multipleAppearance", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("nested", "flat"), "Представление множественных разделов: вложенное или плоское"), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Опциональный раздел`), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("pageActions", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.objectLiteral(), `Атрибут для кастомизации действий с разделом`), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("navigationLimit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Количество экземпляров множественного раздела после которого в левом меню будет включаться компактный режим отображения разделов. По умолчанию: 15. Используется только для множественных разделов`), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("addingHint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, `Подсказка на кнопке добавления раздела в боковом меню. Используется только для множественных разделов`), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("page"), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("title", [_PageTitleNode__WEBPACK_IMPORTED_MODULE_8__.PageTitleNode]), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("visible", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.javaScriptExpressionLink)} для условного скрытия раздела`), _dec(_class = (_class2 = class PageNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
138105
+ let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("page", `Страница (раздел)`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("id", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, `Уникальный идентификатор странцы. Все страницы в форме должны иметь уникальный идентификатор. 1111`), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("template", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("default", "title", "multiple", "diadoc"), 'Для множественных разделов необходимо указать `template="multiple"`, для обычных разделов `template="default"`'), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.bindingPathLink)} данного элемента`), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("headerpanel", [_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_3__.HeaderPanelNode]), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("title", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("formName", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("showOnDemand", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Раздел не будет отображаться на странице, пока не будет вызван явно. Например, через механизм отображения раздела в разделе.`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("onNavigateFromErrorLog", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется перед попыткой навигации в контрол внутри раздела"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("orientation", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("landscape"), `Ориентация страницы. При значении landscape станницы займёт всю доступную ширину экрана`), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("navigationName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, `Название Раздела в меню, если в сахаре есть отдельное описание навигации (unitList), то указывать не нужно`), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("height", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Начальная высота раздела`), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("minHeight", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Минимальная высота раздела`), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("multiple", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Обозначение множественного раздела`), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("unitsCountForPaging", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Количество инстансов множественного раздела на котором включается паджинация раздела`), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("multipleAppearance", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("nested", "flat"), "Представление множественных разделов: вложенное или плоское"), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Опциональный раздел`), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("pageActions", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.objectLiteral(), `Атрибут для кастомизации действий с разделом`), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("navigationLimit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Количество экземпляров множественного раздела после которого в левом меню будет включаться компактный режим отображения разделов. По умолчанию: 15. Используется только для множественных разделов`), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("addingHint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, `Подсказка на кнопке добавления раздела в боковом меню. Используется только для множественных разделов`), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("page"), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("title", [_PageTitleNode__WEBPACK_IMPORTED_MODULE_8__.PageTitleNode]), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("visible", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.javaScriptExpressionLink)} для условного скрытия раздела`), _dec(_class = (_class2 = class PageNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
137909
138106
  constructor(...args) {
137910
138107
  super(...args);
137911
138108
 
@@ -137935,23 +138132,25 @@ let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5
137935
138132
 
137936
138133
  _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multiple", _descriptor13, this);
137937
138134
 
137938
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multipleAppearance", _descriptor14, this);
138135
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "unitsCountForPaging", _descriptor14, this);
137939
138136
 
137940
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor15, this);
138137
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multipleAppearance", _descriptor15, this);
137941
138138
 
137942
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pageActions", _descriptor16, this);
138139
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor16, this);
137943
138140
 
137944
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor17, this);
138141
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pageActions", _descriptor17, this);
137945
138142
 
137946
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "addingHint", _descriptor18, this);
138143
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor18, this);
137947
138144
 
137948
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pages", _descriptor19, this);
138145
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "addingHint", _descriptor19, this);
137949
138146
 
137950
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor20, this);
138147
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pages", _descriptor20, this);
137951
138148
 
137952
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor21, this);
138149
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor21, this);
137953
138150
 
137954
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "visible", _descriptor22, this);
138151
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor22, this);
138152
+
138153
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "visible", _descriptor23, this);
137955
138154
  }
137956
138155
 
137957
138156
  getOwnPath() {
@@ -138029,47 +138228,52 @@ let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5
138029
138228
  enumerable: true,
138030
138229
  writable: true,
138031
138230
  initializer: null
138032
- }), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "multipleAppearance", [_dec15], {
138231
+ }), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "unitsCountForPaging", [_dec15], {
138232
+ configurable: true,
138233
+ enumerable: true,
138234
+ writable: true,
138235
+ initializer: null
138236
+ }), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "multipleAppearance", [_dec16], {
138033
138237
  configurable: true,
138034
138238
  enumerable: true,
138035
138239
  writable: true,
138036
138240
  initializer: null
138037
- }), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "optional", [_dec16], {
138241
+ }), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "optional", [_dec17], {
138038
138242
  configurable: true,
138039
138243
  enumerable: true,
138040
138244
  writable: true,
138041
138245
  initializer: null
138042
- }), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pageActions", [_dec17], {
138246
+ }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pageActions", [_dec18], {
138043
138247
  configurable: true,
138044
138248
  enumerable: true,
138045
138249
  writable: true,
138046
138250
  initializer: null
138047
- }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "navigationLimit", [_dec18], {
138251
+ }), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "navigationLimit", [_dec19], {
138048
138252
  configurable: true,
138049
138253
  enumerable: true,
138050
138254
  writable: true,
138051
138255
  initializer: null
138052
- }), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "addingHint", [_dec19], {
138256
+ }), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "addingHint", [_dec20], {
138053
138257
  configurable: true,
138054
138258
  enumerable: true,
138055
138259
  writable: true,
138056
138260
  initializer: null
138057
- }), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pages", [_dec20], {
138261
+ }), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pages", [_dec21], {
138058
138262
  configurable: true,
138059
138263
  enumerable: true,
138060
138264
  writable: true,
138061
138265
  initializer: null
138062
- }), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec21], {
138266
+ }), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec22], {
138063
138267
  configurable: true,
138064
138268
  enumerable: true,
138065
138269
  writable: true,
138066
138270
  initializer: null
138067
- }), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "title", [_dec22], {
138271
+ }), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "title", [_dec23], {
138068
138272
  configurable: true,
138069
138273
  enumerable: true,
138070
138274
  writable: true,
138071
138275
  initializer: null
138072
- }), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "visible", [_dec23], {
138276
+ }), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "visible", [_dec24], {
138073
138277
  configurable: true,
138074
138278
  enumerable: true,
138075
138279
  writable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kontur.candy/generator",
3
- "version": "4.269.0",
3
+ "version": "4.270.0-pribyl-copy-application5.2",
4
4
  "description": "Candy forms generator",
5
5
  "author": "SKBKontur Candy Team",
6
6
  "private": false,