@kontur.candy/generator 4.269.1 → 4.270.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +294 -138
  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
  /***/ }),
@@ -129940,102 +129941,169 @@ require('./webEntry')
129940
129941
 
129941
129942
  /***/ }),
129942
129943
 
129943
- /***/ "./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts":
129944
- /*!***************************************************************************************!*\
129945
- !*** ./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts ***!
129946
- \***************************************************************************************/
129944
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts":
129945
+ /*!***********************************************************************************!*\
129946
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts ***!
129947
+ \***********************************************************************************/
129947
129948
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
129948
129949
 
129949
129950
  "use strict";
129950
129951
  __webpack_require__.r(__webpack_exports__);
129951
129952
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
129952
- /* harmony export */ "HelperFunctionsGenerator": () => (/* binding */ HelperFunctionsGenerator)
129953
+ /* harmony export */ "astToExportStatement": () => (/* binding */ astToExportStatement)
129953
129954
  /* 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__);
129955
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
129956
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_0__);
129958
129957
 
129958
+ const astToExportStatement = (filename, ast) => {
129959
+ 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
129960
 
129961
+ if (!_babel_types__WEBPACK_IMPORTED_MODULE_0__.isExportDefaultDeclaration(defaultExport) || !_babel_types__WEBPACK_IMPORTED_MODULE_0__.isFunctionDeclaration(defaultExport.declaration)) {
129962
+ throw new Error(`InvalidProgramState: default function export not found in ${filename}.js`);
129963
+ }
129960
129964
 
129961
- class HelperFunctionsGenerator {
129962
- generate(helpers) {
129963
- if (!helpers || helpers.length === 0) {
129965
+ 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));
129966
+ };
129967
+
129968
+ /***/ }),
129969
+
129970
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/CommonHelperFunctionsGenerator.ts":
129971
+ /*!*********************************************************************************************!*\
129972
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/CommonHelperFunctionsGenerator.ts ***!
129973
+ \*********************************************************************************************/
129974
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
129975
+
129976
+ "use strict";
129977
+ __webpack_require__.r(__webpack_exports__);
129978
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
129979
+ /* harmony export */ "CommonHelperFunctionsGenerator": () => (/* binding */ CommonHelperFunctionsGenerator)
129980
+ /* harmony export */ });
129981
+ /* harmony import */ var _babel_template__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/template */ "./node_modules/@babel/template/lib/index.js");
129982
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
129983
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_1__);
129984
+ /* harmony import */ var _FileContentToAst__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./FileContentToAst */ "./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts");
129985
+ /* harmony import */ var _AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AstToExportStatement */ "./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts");
129986
+ /* harmony import */ var _StatementsToCode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StatementsToCode */ "./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts");
129987
+
129988
+
129989
+
129990
+
129991
+
129992
+ class CommonHelperFunctionsGenerator {
129993
+ generate(commonHelpers) {
129994
+ if (commonHelpers.length === 0) {
129964
129995
  return "";
129965
129996
  }
129966
129997
 
129967
- const helperFunctionsList = helpers.map(helper => helper.filename).join(", ");
129968
- const buildExportDefault = (0,_babel_template__WEBPACK_IMPORTED_MODULE_1__["default"])(`export default { ${helperFunctionsList} }`, {
129998
+ const helperFunctionsList = commonHelpers.map(helper => helper.filename).join(", ");
129999
+ const buildExportDefault = (0,_babel_template__WEBPACK_IMPORTED_MODULE_0__["default"])(`export default { ${helperFunctionsList} }`, {
129969
130000
  sourceType: "module"
129970
130001
  });
129971
130002
  const exportDefault = buildExportDefault();
129972
130003
 
129973
130004
  if (Array.isArray(exportDefault)) {
129974
- throw new Error("InvalidProgramState");
130005
+ throw new Error("InvalidProgramState: default export build failed");
129975
130006
  }
129976
130007
 
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
- });
130008
+ const helpersStatements = [].concat(...commonHelpers.map(helper => {
130009
+ const ast = (0,_FileContentToAst__WEBPACK_IMPORTED_MODULE_2__.fileContentToAst)(helper);
130010
+ return this.transform(helper.filename, ast);
130011
+ }), exportDefault);
130012
+ return (0,_StatementsToCode__WEBPACK_IMPORTED_MODULE_4__.statementsToCode)(helpersStatements);
130013
+ }
129985
130014
 
129986
- if (ast == undefined || ast.type !== "File") {
129987
- throw new Error("InvalidProgramState");
129988
- }
130015
+ transform(filename, ast) {
130016
+ const result = (0,_AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__.astToExportStatement)(filename, ast);
130017
+ const imports = ast.program.body.filter(x => _babel_types__WEBPACK_IMPORTED_MODULE_1__.isImportDeclaration(x) && !x.source.value.startsWith("./"));
130018
+ return [...imports, result];
130019
+ }
129989
130020
 
129990
- return this.transform(helper.filename, ast);
129991
- }), exportDefault); // tslint:disable-next-line:no-null-keyword
130021
+ }
129992
130022
 
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
- });
130023
+ /***/ }),
129997
130024
 
129998
- if (transformResult == undefined || transformResult.code == undefined) {
129999
- throw new Error("InvalidProgramState");
130000
- }
130025
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts":
130026
+ /*!*******************************************************************************!*\
130027
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts ***!
130028
+ \*******************************************************************************/
130029
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
130001
130030
 
130002
- const {
130003
- code
130004
- } = transformResult;
130005
- return unescape(code.replace(/(\\)(u[\dA-Fa-f]{4})/g, "%$2"));
130031
+ "use strict";
130032
+ __webpack_require__.r(__webpack_exports__);
130033
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
130034
+ /* harmony export */ "fileContentToAst": () => (/* binding */ fileContentToAst)
130035
+ /* harmony export */ });
130036
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
130037
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_0__);
130038
+ /* harmony import */ var _babel_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/core */ "./node_modules/@babel/core/lib/index.js");
130039
+
130040
+
130041
+ const fileContentToAst = helper => {
130042
+ const ast = (0,_babel_core__WEBPACK_IMPORTED_MODULE_1__.parse)(helper.content, {
130043
+ sourceType: "module",
130044
+ filename: "fake-file-name.js",
130045
+ configFile: false,
130046
+ babelrc: false,
130047
+ plugins: [__webpack_require__(/*! @babel/plugin-syntax-jsx */ "./node_modules/@babel/plugin-syntax-jsx/lib/index.js")]
130048
+ });
130049
+
130050
+ if (!_babel_types__WEBPACK_IMPORTED_MODULE_0__.isFile(ast)) {
130051
+ throw new Error(`InvalidProgramState: incorrect helper ${helper.filename}.js`);
130006
130052
  }
130007
130053
 
130008
- transform(filename, ast) {
130009
- const defaultExport = ast.program.body.find(x => x.type === "ExportDefaultDeclaration" && x.declaration.type === "FunctionDeclaration");
130054
+ return ast;
130055
+ };
130010
130056
 
130011
- if (defaultExport == undefined || !_babel_types__WEBPACK_IMPORTED_MODULE_2__.isExportDefaultDeclaration(defaultExport)) {
130012
- throw new Error("InvalidProgramState");
130013
- }
130057
+ /***/ }),
130014
130058
 
130015
- const declaration = defaultExport.declaration;
130059
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts":
130060
+ /*!***************************************************************************************!*\
130061
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/HelperFunctionsGenerator.ts ***!
130062
+ \***************************************************************************************/
130063
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
130016
130064
 
130017
- if (!_babel_types__WEBPACK_IMPORTED_MODULE_2__.isFunctionDeclaration(declaration)) {
130018
- throw new Error("InvalidProgramState");
130065
+ "use strict";
130066
+ __webpack_require__.r(__webpack_exports__);
130067
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
130068
+ /* harmony export */ "HelperFunctionsGenerator": () => (/* binding */ HelperFunctionsGenerator)
130069
+ /* harmony export */ });
130070
+ /* harmony import */ var _babel_template__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/template */ "./node_modules/@babel/template/lib/index.js");
130071
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
130072
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_1__);
130073
+ /* harmony import */ var _FileContentToAst__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./FileContentToAst */ "./Generator/src/generators/HelperFunctionsGenerator/FileContentToAst.ts");
130074
+ /* harmony import */ var _AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AstToExportStatement */ "./Generator/src/generators/HelperFunctionsGenerator/AstToExportStatement.ts");
130075
+ /* harmony import */ var _StatementsToCode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StatementsToCode */ "./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts");
130076
+
130077
+
130078
+
130079
+
130080
+
130081
+ class HelperFunctionsGenerator {
130082
+ generate(helpers) {
130083
+ if (helpers.length === 0) {
130084
+ return "";
130019
130085
  }
130020
130086
 
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 }`, {
130087
+ const helperFunctionsList = helpers.map(helper => helper.filename).join(", ");
130088
+ const buildExportDefault = (0,_babel_template__WEBPACK_IMPORTED_MODULE_0__["default"])(`export default { ${helperFunctionsList} }`, {
130026
130089
  sourceType: "module"
130027
130090
  });
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");
130091
+ const exportDefault = buildExportDefault();
130034
130092
 
130035
- if (Array.isArray(result)) {
130036
- throw new Error("InvalidProgramState");
130093
+ if (Array.isArray(exportDefault)) {
130094
+ throw new Error("InvalidProgramState: default export build failed");
130037
130095
  }
130038
130096
 
130097
+ const helpersStatements = [].concat(...helpers.map(helper => {
130098
+ const ast = (0,_FileContentToAst__WEBPACK_IMPORTED_MODULE_2__.fileContentToAst)(helper);
130099
+ return this.transform(helper.filename, ast);
130100
+ }), exportDefault);
130101
+ return (0,_StatementsToCode__WEBPACK_IMPORTED_MODULE_4__.statementsToCode)(helpersStatements);
130102
+ }
130103
+
130104
+ transform(filename, ast) {
130105
+ const result = (0,_AstToExportStatement__WEBPACK_IMPORTED_MODULE_3__.astToExportStatement)(filename, ast);
130106
+ 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
130107
  return [...imports, result];
130040
130108
  }
130041
130109
 
@@ -130043,6 +130111,40 @@ class HelperFunctionsGenerator {
130043
130111
 
130044
130112
  /***/ }),
130045
130113
 
130114
+ /***/ "./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts":
130115
+ /*!*******************************************************************************!*\
130116
+ !*** ./Generator/src/generators/HelperFunctionsGenerator/StatementsToCode.ts ***!
130117
+ \*******************************************************************************/
130118
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
130119
+
130120
+ "use strict";
130121
+ __webpack_require__.r(__webpack_exports__);
130122
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
130123
+ /* harmony export */ "statementsToCode": () => (/* binding */ statementsToCode)
130124
+ /* harmony export */ });
130125
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/types */ "./node_modules/@babel/types/lib/index.js");
130126
+ /* harmony import */ var _babel_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_types__WEBPACK_IMPORTED_MODULE_0__);
130127
+ /* harmony import */ var _babel_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/core */ "./node_modules/@babel/core/lib/index.js");
130128
+
130129
+
130130
+ const statementsToCode = statements => {
130131
+ const transformResult = (0,_babel_core__WEBPACK_IMPORTED_MODULE_1__.transformFromAstSync)(_babel_types__WEBPACK_IMPORTED_MODULE_0__.program(statements), undefined, {
130132
+ configFile: false,
130133
+ sourceType: "module"
130134
+ });
130135
+
130136
+ if (transformResult == undefined || transformResult.code == undefined) {
130137
+ throw new Error("InvalidProgramState: statements transform failed");
130138
+ }
130139
+
130140
+ const {
130141
+ code
130142
+ } = transformResult;
130143
+ return unescape(code.replace(/(\\)(u[\dA-Fa-f]{4})/g, "%$2"));
130144
+ };
130145
+
130146
+ /***/ }),
130147
+
130046
130148
  /***/ "./Generator/src/generators/KCXmlGenerator/KCXmlGeneratorBase.ts":
130047
130149
  /*!***********************************************************************!*\
130048
130150
  !*** ./Generator/src/generators/KCXmlGenerator/KCXmlGeneratorBase.ts ***!
@@ -130600,6 +130702,8 @@ __webpack_require__.r(__webpack_exports__);
130600
130702
  /* 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
130703
  /* harmony import */ var _LazyLoadDeclarationGenerator_LazyLoadDeclarationGenerator__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./LazyLoadDeclarationGenerator/LazyLoadDeclarationGenerator */ "./Generator/src/generators/LazyLoadDeclarationGenerator/LazyLoadDeclarationGenerator.ts");
130602
130704
  /* harmony import */ var _ServerSideFLangNormalization_FormulaOnlyNormalizationRuleGenerator__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./ServerSideFLangNormalization/FormulaOnlyNormalizationRuleGenerator */ "./Generator/src/generators/ServerSideFLangNormalization/FormulaOnlyNormalizationRuleGenerator.ts");
130705
+ /* harmony import */ var _HelperFunctionsGenerator_CommonHelperFunctionsGenerator__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./HelperFunctionsGenerator/CommonHelperFunctionsGenerator */ "./Generator/src/generators/HelperFunctionsGenerator/CommonHelperFunctionsGenerator.ts");
130706
+
130603
130707
 
130604
130708
 
130605
130709
 
@@ -130719,6 +130823,11 @@ function processSugar(formSugarContent, additionalContent, generationOptions) {
130719
130823
 
130720
130824
  if (helperFunctionsContent) {
130721
130825
  builder.addResource("helperFunctions.js", helperFunctionsContent);
130826
+ const commonHelperFunctionsContent = new _HelperFunctionsGenerator_CommonHelperFunctionsGenerator__WEBPACK_IMPORTED_MODULE_31__.CommonHelperFunctionsGenerator().generate(additionalContent.commonHelpersContent);
130827
+
130828
+ if (commonHelperFunctionsContent) {
130829
+ builder.addResource("commonHelperFunctions.js", commonHelperFunctionsContent);
130830
+ }
130722
130831
  }
130723
130832
 
130724
130833
  if (additionalContent.hooksContent) {
@@ -130854,6 +130963,7 @@ async function readFormSources(formSourcesPath, farmDirectory) {
130854
130963
  additionalSettings: await readFileSource(formSourcesPath, "settings.json", "{}"),
130855
130964
  autocalcsContent: await readAutoCalcFiles(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "autocalc")),
130856
130965
  helpersContent: await readJavaScriptFilesWithNames(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "helpers")),
130966
+ commonHelpersContent: await readJavaScriptFilesWithNames(path__WEBPACK_IMPORTED_MODULE_1___default().join(farmDirectory, "jsHelpers")),
130857
130967
  validationsContent: await readJavaScriptFilesWithNames(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "validations")),
130858
130968
  schemaRngContent: await readSchemaRngFile(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "schemas"), formName),
130859
130969
  kcJsXmlContent: (await readFileSource(path__WEBPACK_IMPORTED_MODULE_1___default().join(formSourcesPath, "autocalc"), `${formName}.КС.candy.js.xml`, "<dummy/>")) || "",
@@ -130959,7 +131069,7 @@ async function getAllDependencies(formSourcesPath, farmDirectory) {
130959
131069
  sugarReferences.fetchFunctionFiles = (await readdirAsync(legacyfetchfunctionsDirectory)).map(x => path__WEBPACK_IMPORTED_MODULE_1___default().resolve(legacyfetchfunctionsDirectory, x));
130960
131070
  }
130961
131071
 
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")))];
131072
+ 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
131073
  }
130964
131074
 
130965
131075
  function normalizeLineEndings(content) {
@@ -136962,7 +137072,18 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
136962
137072
  simpleFormBuilder.prop(x => x.maxWidth).set(node.width);
136963
137073
  simpleFormBuilder.prop(x => x.cssWidth).set(node.cssWidth);
136964
137074
  simpleFormBuilder.prop(x => x.buttonSettingsType).set(node.buttonSettingsType);
137075
+
137076
+ if (node.modalheader) {
137077
+ var _node$modalheader$wit, _node$modalheader, _node$modalheader$tex, _node$modalheader2;
137078
+
137079
+ simpleFormBuilder.prop(x => x.header).set({
137080
+ 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,
137081
+ 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 : ""
137082
+ });
137083
+ }
137084
+
136965
137085
  simpleFormBuilder.prop(x => x.padding).set(node.padding);
137086
+ simpleFormBuilder.prop(x => x.validationBeforeSend).set(node.validationBeforeSend);
136966
137087
 
136967
137088
  for (const pageNode of node.pages.filter(x => !x.showOnDemand)) {
136968
137089
  const unitBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)("SimpleFormUnit");
@@ -137092,7 +137213,7 @@ __webpack_require__.r(__webpack_exports__);
137092
137213
 
137093
137214
 
137094
137215
 
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;
137216
+ 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, _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;
137096
137217
 
137097
137218
 
137098
137219
 
@@ -137118,83 +137239,108 @@ let FetchFunctionsReferenceNode = (_dec = (0,_Serializer_SugarSerializer__WEBPAC
137118
137239
  writable: true,
137119
137240
  initializer: null
137120
137241
  })), _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 {
137242
+ 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 {
137243
+ constructor(...args) {
137244
+ super(...args);
137245
+
137246
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "text", _descriptor2, this);
137247
+
137248
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withCloseButton", _descriptor3, this);
137249
+ }
137250
+
137251
+ }, (_descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "text", [_dec4], {
137252
+ configurable: true,
137253
+ enumerable: true,
137254
+ writable: true,
137255
+ initializer: null
137256
+ }), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "withCloseButton", [_dec5], {
137257
+ configurable: true,
137258
+ enumerable: true,
137259
+ writable: true,
137260
+ initializer: null
137261
+ })), _class5)) || _class4);
137262
+ 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
137263
+ После проверки фокус падает на невалидное поле, если это возможно. Например на 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__.children)("type", [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_3__.TypeNode]), _dec45 = (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
137264
  constructor(...args) {
137123
137265
  super(...args);
137124
137266
 
137125
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor2, this);
137267
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor4, this);
137268
+
137269
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "userPicklists", _descriptor5, this);
137126
137270
 
137127
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "userPicklists", _descriptor3, this);
137271
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tour", _descriptor6, this);
137128
137272
 
137129
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tour", _descriptor4, this);
137273
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fetchFunctions", _descriptor7, this);
137130
137274
 
137131
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fetchFunctions", _descriptor5, this);
137275
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "modalIE8", _descriptor8, this);
137132
137276
 
137133
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "modalIE8", _descriptor6, this);
137277
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mProp", _descriptor9, this);
137134
137278
 
137135
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mProp", _descriptor7, this);
137279
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ufProp", _descriptor10, this);
137136
137280
 
137137
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ufProp", _descriptor8, this);
137281
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "forceNavigate", _descriptor11, this);
137138
137282
 
137139
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "forceNavigate", _descriptor9, this);
137283
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hideUnitsAdder", _descriptor12, this);
137140
137284
 
137141
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hideUnitsAdder", _descriptor10, this);
137285
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hasRegionalForms", _descriptor13, this);
137142
137286
 
137143
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hasRegionalForms", _descriptor11, this);
137287
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "controls", _descriptor14, this);
137144
137288
 
137145
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "controls", _descriptor12, this);
137289
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "modalheader", _descriptor15, this);
137146
137290
 
137147
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "imports", _descriptor13, this);
137291
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "imports", _descriptor16, this);
137148
137292
 
137149
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "panel", _descriptor14, this);
137293
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "panel", _descriptor17, this);
137150
137294
 
137151
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pages", _descriptor15, this);
137295
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pages", _descriptor18, this);
137152
137296
 
137153
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "simple", _descriptor16, this);
137297
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "simple", _descriptor19, this);
137154
137298
 
137155
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "schemaValidations", _descriptor17, this);
137299
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "schemaValidations", _descriptor20, this);
137156
137300
 
137157
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "isReadOnly", _descriptor18, this);
137301
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "isReadOnly", _descriptor21, this);
137158
137302
 
137159
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieDeprecationWarningEnabled", _descriptor19, this);
137303
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieDeprecationWarningEnabled", _descriptor22, this);
137160
137304
 
137161
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "compactActionPanel", _descriptor20, this);
137305
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "compactActionPanel", _descriptor23, this);
137162
137306
 
137163
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieSizeLimitation", _descriptor21, this);
137307
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "ieSizeLimitation", _descriptor24, this);
137164
137308
 
137165
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "templates", _descriptor22, this);
137309
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "templates", _descriptor25, this);
137166
137310
 
137167
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "plain", _descriptor23, this);
137311
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "plain", _descriptor26, this);
137168
137312
 
137169
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "requisite", _descriptor24, this);
137313
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "requisite", _descriptor27, this);
137314
+
137315
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor28, this);
137170
137316
 
137171
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor25, this);
137317
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cssWidth", _descriptor29, this);
137172
137318
 
137173
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cssWidth", _descriptor26, this);
137319
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "buttonSettingsType", _descriptor30, this);
137174
137320
 
137175
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "buttonSettingsType", _descriptor27, this);
137321
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationBeforeSend", _descriptor31, this);
137176
137322
 
137177
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "padding", _descriptor28, this);
137323
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "padding", _descriptor32, this);
137178
137324
 
137179
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxUnitsCount", _descriptor29, this);
137325
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxUnitsCount", _descriptor33, this);
137180
137326
 
137181
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "unitsCount", _descriptor30, this);
137327
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "unitsCount", _descriptor34, this);
137182
137328
 
137183
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "transferText", _descriptor31, this);
137329
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "transferText", _descriptor35, this);
137184
137330
 
137185
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor32, this);
137331
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor36, this);
137186
137332
 
137187
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufButtonEnabled", _descriptor33, this);
137333
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufButtonEnabled", _descriptor37, this);
137188
137334
 
137189
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fufSizeTooLargeErrorText", _descriptor34, this);
137335
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fufSizeTooLargeErrorText", _descriptor38, this);
137190
137336
 
137191
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufLightboxHideDemandNameButton", _descriptor35, this);
137337
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufLightboxHideDemandNameButton", _descriptor39, this);
137192
137338
 
137193
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadInquiryButtonEnabled", _descriptor36, this);
137339
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadInquiryButtonEnabled", _descriptor40, this);
137194
137340
 
137195
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "types", _descriptor37, this);
137341
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "types", _descriptor41, this);
137196
137342
 
137197
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "typeLists", _descriptor38, this);
137343
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "typeLists", _descriptor42, this);
137198
137344
  }
137199
137345
 
137200
137346
  getOwnPath() {
@@ -137209,192 +137355,202 @@ let FormNode = (_dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
137209
137355
  return this.controls.controls;
137210
137356
  }
137211
137357
 
137212
- }, (_descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "dataScope", [_dec4], {
137358
+ }, (_descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "dataScope", [_dec7], {
137213
137359
  configurable: true,
137214
137360
  enumerable: true,
137215
137361
  writable: true,
137216
137362
  initializer: null
137217
- }), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "userPicklists", [_dec5], {
137363
+ }), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "userPicklists", [_dec8], {
137218
137364
  configurable: true,
137219
137365
  enumerable: true,
137220
137366
  writable: true,
137221
137367
  initializer: null
137222
- }), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "tour", [_dec6], {
137368
+ }), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "tour", [_dec9], {
137223
137369
  configurable: true,
137224
137370
  enumerable: true,
137225
137371
  writable: true,
137226
137372
  initializer: null
137227
- }), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "fetchFunctions", [_dec7], {
137373
+ }), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "fetchFunctions", [_dec10], {
137228
137374
  configurable: true,
137229
137375
  enumerable: true,
137230
137376
  writable: true,
137231
137377
  initializer: null
137232
- }), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "modalIE8", [_dec8], {
137378
+ }), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "modalIE8", [_dec11], {
137233
137379
  configurable: true,
137234
137380
  enumerable: true,
137235
137381
  writable: true,
137236
137382
  initializer: null
137237
- }), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "mProp", [_dec9], {
137383
+ }), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "mProp", [_dec12], {
137238
137384
  configurable: true,
137239
137385
  enumerable: true,
137240
137386
  writable: true,
137241
137387
  initializer: null
137242
- }), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "ufProp", [_dec10], {
137388
+ }), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "ufProp", [_dec13], {
137243
137389
  configurable: true,
137244
137390
  enumerable: true,
137245
137391
  writable: true,
137246
137392
  initializer: null
137247
- }), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "forceNavigate", [_dec11], {
137393
+ }), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "forceNavigate", [_dec14], {
137248
137394
  configurable: true,
137249
137395
  enumerable: true,
137250
137396
  writable: true,
137251
137397
  initializer: null
137252
- }), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "hideUnitsAdder", [_dec12], {
137398
+ }), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "hideUnitsAdder", [_dec15], {
137253
137399
  configurable: true,
137254
137400
  enumerable: true,
137255
137401
  writable: true,
137256
137402
  initializer: null
137257
- }), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "hasRegionalForms", [_dec13], {
137403
+ }), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "hasRegionalForms", [_dec16], {
137258
137404
  configurable: true,
137259
137405
  enumerable: true,
137260
137406
  writable: true,
137261
137407
  initializer: null
137262
- }), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "controls", [_dec14], {
137408
+ }), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "controls", [_dec17], {
137263
137409
  configurable: true,
137264
137410
  enumerable: true,
137265
137411
  writable: true,
137266
137412
  initializer: null
137267
- }), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "imports", [_dec15], {
137413
+ }), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "modalheader", [_dec18], {
137268
137414
  configurable: true,
137269
137415
  enumerable: true,
137270
137416
  writable: true,
137271
137417
  initializer: null
137272
- }), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "panel", [_dec16], {
137418
+ }), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "imports", [_dec19], {
137273
137419
  configurable: true,
137274
137420
  enumerable: true,
137275
137421
  writable: true,
137276
137422
  initializer: null
137277
- }), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "pages", [_dec17], {
137423
+ }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "panel", [_dec20], {
137278
137424
  configurable: true,
137279
137425
  enumerable: true,
137280
137426
  writable: true,
137281
137427
  initializer: null
137282
- }), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "simple", [_dec18], {
137428
+ }), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "pages", [_dec21], {
137283
137429
  configurable: true,
137284
137430
  enumerable: true,
137285
137431
  writable: true,
137286
137432
  initializer: null
137287
- }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "schemaValidations", [_dec19], {
137433
+ }), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "simple", [_dec22], {
137288
137434
  configurable: true,
137289
137435
  enumerable: true,
137290
137436
  writable: true,
137291
137437
  initializer: null
137292
- }), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "isReadOnly", [_dec20], {
137438
+ }), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "schemaValidations", [_dec23], {
137293
137439
  configurable: true,
137294
137440
  enumerable: true,
137295
137441
  writable: true,
137296
137442
  initializer: null
137297
- }), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "ieDeprecationWarningEnabled", [_dec21], {
137443
+ }), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "isReadOnly", [_dec24], {
137298
137444
  configurable: true,
137299
137445
  enumerable: true,
137300
137446
  writable: true,
137301
137447
  initializer: null
137302
- }), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "compactActionPanel", [_dec22], {
137448
+ }), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "ieDeprecationWarningEnabled", [_dec25], {
137303
137449
  configurable: true,
137304
137450
  enumerable: true,
137305
137451
  writable: true,
137306
137452
  initializer: null
137307
- }), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "ieSizeLimitation", [_dec23], {
137453
+ }), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "compactActionPanel", [_dec26], {
137308
137454
  configurable: true,
137309
137455
  enumerable: true,
137310
137456
  writable: true,
137311
137457
  initializer: null
137312
- }), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "templates", [_dec24], {
137458
+ }), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "ieSizeLimitation", [_dec27], {
137313
137459
  configurable: true,
137314
137460
  enumerable: true,
137315
137461
  writable: true,
137316
137462
  initializer: null
137317
- }), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "plain", [_dec25], {
137463
+ }), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "templates", [_dec28], {
137318
137464
  configurable: true,
137319
137465
  enumerable: true,
137320
137466
  writable: true,
137321
137467
  initializer: null
137322
- }), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "requisite", [_dec26], {
137468
+ }), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "plain", [_dec29], {
137323
137469
  configurable: true,
137324
137470
  enumerable: true,
137325
137471
  writable: true,
137326
137472
  initializer: null
137327
- }), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "width", [_dec27], {
137473
+ }), _descriptor27 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "requisite", [_dec30], {
137328
137474
  configurable: true,
137329
137475
  enumerable: true,
137330
137476
  writable: true,
137331
137477
  initializer: null
137332
- }), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "cssWidth", [_dec28], {
137478
+ }), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "width", [_dec31], {
137333
137479
  configurable: true,
137334
137480
  enumerable: true,
137335
137481
  writable: true,
137336
137482
  initializer: null
137337
- }), _descriptor27 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "buttonSettingsType", [_dec29], {
137483
+ }), _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "cssWidth", [_dec32], {
137338
137484
  configurable: true,
137339
137485
  enumerable: true,
137340
137486
  writable: true,
137341
137487
  initializer: null
137342
- }), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "padding", [_dec30], {
137488
+ }), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "buttonSettingsType", [_dec33], {
137343
137489
  configurable: true,
137344
137490
  enumerable: true,
137345
137491
  writable: true,
137346
137492
  initializer: null
137347
- }), _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "maxUnitsCount", [_dec31], {
137493
+ }), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "validationBeforeSend", [_dec34], {
137348
137494
  configurable: true,
137349
137495
  enumerable: true,
137350
137496
  writable: true,
137351
137497
  initializer: null
137352
- }), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "unitsCount", [_dec32], {
137498
+ }), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "padding", [_dec35], {
137353
137499
  configurable: true,
137354
137500
  enumerable: true,
137355
137501
  writable: true,
137356
137502
  initializer: null
137357
- }), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "transferText", [_dec33], {
137503
+ }), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "maxUnitsCount", [_dec36], {
137358
137504
  configurable: true,
137359
137505
  enumerable: true,
137360
137506
  writable: true,
137361
137507
  initializer: null
137362
- }), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "navigationLimit", [_dec34], {
137508
+ }), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "unitsCount", [_dec37], {
137363
137509
  configurable: true,
137364
137510
  enumerable: true,
137365
137511
  writable: true,
137366
137512
  initializer: null
137367
- }), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "uploadFufButtonEnabled", [_dec35], {
137513
+ }), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "transferText", [_dec38], {
137368
137514
  configurable: true,
137369
137515
  enumerable: true,
137370
137516
  writable: true,
137371
137517
  initializer: null
137372
- }), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "fufSizeTooLargeErrorText", [_dec36], {
137518
+ }), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "navigationLimit", [_dec39], {
137373
137519
  configurable: true,
137374
137520
  enumerable: true,
137375
137521
  writable: true,
137376
137522
  initializer: null
137377
- }), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "uploadFufLightboxHideDemandNameButton", [_dec37], {
137523
+ }), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadFufButtonEnabled", [_dec40], {
137378
137524
  configurable: true,
137379
137525
  enumerable: true,
137380
137526
  writable: true,
137381
137527
  initializer: null
137382
- }), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "uploadInquiryButtonEnabled", [_dec38], {
137528
+ }), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "fufSizeTooLargeErrorText", [_dec41], {
137383
137529
  configurable: true,
137384
137530
  enumerable: true,
137385
137531
  writable: true,
137386
137532
  initializer: null
137387
- }), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "types", [_dec39], {
137533
+ }), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadFufLightboxHideDemandNameButton", [_dec42], {
137388
137534
  configurable: true,
137389
137535
  enumerable: true,
137390
137536
  writable: true,
137391
137537
  initializer: null
137392
- }), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "typeLists", [_dec40], {
137538
+ }), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadInquiryButtonEnabled", [_dec43], {
137393
137539
  configurable: true,
137394
137540
  enumerable: true,
137395
137541
  writable: true,
137396
137542
  initializer: null
137397
- })), _class5)) || _class4);
137543
+ }), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "types", [_dec44], {
137544
+ configurable: true,
137545
+ enumerable: true,
137546
+ writable: true,
137547
+ initializer: null
137548
+ }), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "typeLists", [_dec45], {
137549
+ configurable: true,
137550
+ enumerable: true,
137551
+ writable: true,
137552
+ initializer: null
137553
+ })), _class8)) || _class7);
137398
137554
 
137399
137555
  /***/ }),
137400
137556
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kontur.candy/generator",
3
- "version": "4.269.1",
3
+ "version": "4.270.0",
4
4
  "description": "Candy forms generator",
5
5
  "author": "SKBKontur Candy Team",
6
6
  "private": false,