@kontur.candy/generator 5.100.0-big-nds.0 → 5.100.0-cast-for-flang.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +593 -120
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1952,6 +1952,24 @@ module.exports = webpackEmptyContext;
1952
1952
 
1953
1953
  /***/ }),
1954
1954
 
1955
+ /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery sync recursive .md$":
1956
+ /*!**************************************************************************************************************!*\
1957
+ !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/ sync .md$ ***!
1958
+ \**************************************************************************************************************/
1959
+ /***/ ((module) => {
1960
+
1961
+ function webpackEmptyContext(req) {
1962
+ var e = new Error("Cannot find module '" + req + "'");
1963
+ e.code = 'MODULE_NOT_FOUND';
1964
+ throw e;
1965
+ }
1966
+ webpackEmptyContext.keys = () => ([]);
1967
+ webpackEmptyContext.resolve = webpackEmptyContext;
1968
+ webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery sync recursive .md$";
1969
+ module.exports = webpackEmptyContext;
1970
+
1971
+ /***/ }),
1972
+
1955
1973
  /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton sync recursive .md$":
1956
1974
  /*!************************************************************************************************************!*\
1957
1975
  !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ sync .md$ ***!
@@ -1970,6 +1988,24 @@ module.exports = webpackEmptyContext;
1970
1988
 
1971
1989
  /***/ }),
1972
1990
 
1991
+ /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar sync recursive .md$":
1992
+ /*!********************************************************************************************************!*\
1993
+ !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ sync .md$ ***!
1994
+ \********************************************************************************************************/
1995
+ /***/ ((module) => {
1996
+
1997
+ function webpackEmptyContext(req) {
1998
+ var e = new Error("Cannot find module '" + req + "'");
1999
+ e.code = 'MODULE_NOT_FOUND';
2000
+ throw e;
2001
+ }
2002
+ webpackEmptyContext.keys = () => ([]);
2003
+ webpackEmptyContext.resolve = webpackEmptyContext;
2004
+ webpackEmptyContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar sync recursive .md$";
2005
+ module.exports = webpackEmptyContext;
2006
+
2007
+ /***/ }),
2008
+
1973
2009
  /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable sync recursive .md$":
1974
2010
  /*!***********************************************************************************************************!*\
1975
2011
  !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/ sync .md$ ***!
@@ -45807,7 +45843,8 @@ __webpack_require__.r(__webpack_exports__);
45807
45843
  /* harmony export */ InvalidProgramStateError: () => (/* binding */ InvalidProgramStateError),
45808
45844
  /* harmony export */ NotImplementedError: () => (/* binding */ NotImplementedError),
45809
45845
  /* harmony export */ NotSupportedError: () => (/* binding */ NotSupportedError),
45810
- /* harmony export */ TypingError: () => (/* binding */ TypingError)
45846
+ /* harmony export */ TypingError: () => (/* binding */ TypingError),
45847
+ /* harmony export */ isAbortException: () => (/* binding */ isAbortException)
45811
45848
  /* harmony export */ });
45812
45849
  class ApplicationError extends Error {
45813
45850
  constructor(message) {
@@ -45840,6 +45877,9 @@ class TypingError extends ApplicationError {
45840
45877
  super("Invalid typing");
45841
45878
  }
45842
45879
  }
45880
+ function isAbortException(e) {
45881
+ return e instanceof DOMException && e.name === "AbortError";
45882
+ }
45843
45883
 
45844
45884
  /***/ }),
45845
45885
 
@@ -46448,7 +46488,7 @@ class KCLangRuntimeUtils {
46448
46488
  return date;
46449
46489
  }
46450
46490
  sum(left, right) {
46451
- if (!isBigOrNumber(left) && !isBigOrNumber(right)) {
46491
+ if (left == undefined && right == undefined) {
46452
46492
  return undefined;
46453
46493
  }
46454
46494
  if (isBigSource(left) && isBigSource(right)) {
@@ -48653,7 +48693,7 @@ class ValidationFunction extends _AutoCalculations_CalculationFunctionBase__WEBP
48653
48693
  var _evaluationContext$ge;
48654
48694
  if (expressionPath.startsWith("@")) {
48655
48695
  const state = form.store.getState();
48656
- return (0,_Helpers_StateAccessors_GetValueByPath__WEBPACK_IMPORTED_MODULE_4__.getValueByPath)(state, () => "", expressionPath, fieldName);
48696
+ return (0,_Helpers_StateAccessors_GetValueByPath__WEBPACK_IMPORTED_MODULE_4__.getValueByPath)(state, () => "", {}, expressionPath, fieldName);
48657
48697
  }
48658
48698
  const generatedAbsoluteModelPath = contextCurrentElement.joinWith((0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.createModelPath)(expressionPath, "auto")).normalize();
48659
48699
  if (fieldName === "children") {
@@ -48732,6 +48772,25 @@ function getKnownViewModelFieldNames() {
48732
48772
 
48733
48773
  /***/ }),
48734
48774
 
48775
+ /***/ "./Engine/src/Engine/Core/Filtering/IAggregationQueryStrategy.ts":
48776
+ /*!***********************************************************************!*\
48777
+ !*** ./Engine/src/Engine/Core/Filtering/IAggregationQueryStrategy.ts ***!
48778
+ \***********************************************************************/
48779
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
48780
+
48781
+ "use strict";
48782
+ __webpack_require__.r(__webpack_exports__);
48783
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
48784
+ /* harmony export */ AggregationType: () => (/* binding */ AggregationType)
48785
+ /* harmony export */ });
48786
+ let AggregationType = /*#__PURE__*/function (AggregationType) {
48787
+ AggregationType[AggregationType["Sum"] = 0] = "Sum";
48788
+ AggregationType[AggregationType["Count"] = 1] = "Count";
48789
+ return AggregationType;
48790
+ }({});
48791
+
48792
+ /***/ }),
48793
+
48735
48794
  /***/ "./Engine/src/Engine/Core/ModalManager/Modals/Utils/Types.ts":
48736
48795
  /*!*******************************************************************!*\
48737
48796
  !*** ./Engine/src/Engine/Core/ModalManager/Modals/Utils/Types.ts ***!
@@ -49672,6 +49731,97 @@ let FilterType = /*#__PURE__*/function (FilterType) {
49672
49731
 
49673
49732
  /***/ }),
49674
49733
 
49734
+ /***/ "./Engine/src/Helpers/FilterExpressions/FilterExpressionResolveBindingPaths.ts":
49735
+ /*!*************************************************************************************!*\
49736
+ !*** ./Engine/src/Helpers/FilterExpressions/FilterExpressionResolveBindingPaths.ts ***!
49737
+ \*************************************************************************************/
49738
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
49739
+
49740
+ "use strict";
49741
+ __webpack_require__.r(__webpack_exports__);
49742
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
49743
+ /* harmony export */ FilterExpressionResolveBindingPaths: () => (/* binding */ FilterExpressionResolveBindingPaths)
49744
+ /* harmony export */ });
49745
+ /* harmony import */ var _Common_Errors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../Common/Errors */ "./Common/Errors.ts");
49746
+ /* harmony import */ var _CompileFilterExpression__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CompileFilterExpression */ "./Engine/src/Helpers/FilterExpressions/CompileFilterExpression.ts");
49747
+
49748
+
49749
+ class FilterExpressionResolveBindingPaths extends _CompileFilterExpression__WEBPACK_IMPORTED_MODULE_1__.FilterExpressionTransduceVisitor {
49750
+ constructor(pathResolver) {
49751
+ super();
49752
+ this.pathResolver = void 0;
49753
+ this.pathResolver = pathResolver;
49754
+ }
49755
+ createDefaultResult() {
49756
+ throw new _Common_Errors__WEBPACK_IMPORTED_MODULE_0__.InvalidProgramStateError();
49757
+ }
49758
+ transformAndExpression(expression) {
49759
+ return {
49760
+ ...expression,
49761
+ conditions: expression.conditions.map(x => this.transformExpression(x))
49762
+ };
49763
+ }
49764
+ transformEndDateExpression(expression) {
49765
+ return {
49766
+ ...expression,
49767
+ condition: {
49768
+ ...expression.condition,
49769
+ dataPath: this.pathResolver(expression.condition.dataPath)
49770
+ }
49771
+ };
49772
+ }
49773
+ transformEqualExpression(expression) {
49774
+ return {
49775
+ ...expression,
49776
+ condition: {
49777
+ ...expression.condition,
49778
+ dataPath: this.pathResolver(expression.condition.dataPath)
49779
+ }
49780
+ };
49781
+ }
49782
+ transformOrExpression(expression) {
49783
+ return {
49784
+ ...expression,
49785
+ conditions: expression.conditions.map(x => this.transformExpression(x))
49786
+ };
49787
+ }
49788
+ transformStartDateExpression(expression) {
49789
+ return {
49790
+ ...expression,
49791
+ condition: {
49792
+ ...expression.condition,
49793
+ dataPath: this.pathResolver(expression.condition.dataPath)
49794
+ }
49795
+ };
49796
+ }
49797
+ transformSubstringExpression(expression) {
49798
+ return {
49799
+ ...expression,
49800
+ condition: {
49801
+ ...expression.condition,
49802
+ dataPath: this.pathResolver(expression.condition.dataPath)
49803
+ }
49804
+ };
49805
+ }
49806
+ transformByInstancesExpression(expression) {
49807
+ return {
49808
+ ...expression,
49809
+ condition: {
49810
+ ...expression.condition,
49811
+ dataPath: this.pathResolver(expression.condition.dataPath)
49812
+ }
49813
+ };
49814
+ }
49815
+ transformUnaryNotExpression(expression) {
49816
+ return {
49817
+ ...expression,
49818
+ condition: this.transformExpression(expression.condition)
49819
+ };
49820
+ }
49821
+ }
49822
+
49823
+ /***/ }),
49824
+
49675
49825
  /***/ "./Engine/src/Helpers/StateAccessors/GetValueByPath.ts":
49676
49826
  /*!*************************************************************!*\
49677
49827
  !*** ./Engine/src/Helpers/StateAccessors/GetValueByPath.ts ***!
@@ -49687,10 +49837,20 @@ __webpack_require__.r(__webpack_exports__);
49687
49837
  function isPrimitiveValue(value) {
49688
49838
  return typeof value === "string" || typeof value === "number" || typeof value === "boolean";
49689
49839
  }
49840
+ const pathPrefixes = {
49841
+ featureFlags: "@featureFlags/",
49842
+ settings: "@settings/",
49843
+ contextVars: "@contextVars/",
49844
+ mergedPropertiesForBackendCompatibility: "@mergedPropertiesForBackendCompatibility/",
49845
+ all: "@"
49846
+ };
49847
+ function hasPrefix(path, prefix) {
49848
+ return path.startsWith(prefix);
49849
+ }
49690
49850
  function getFeatureFlagByPath(state, path) {
49691
49851
  var _state$featureFlags;
49692
49852
  let value = undefined;
49693
- const featureFlagValue = state === null || state === void 0 || (_state$featureFlags = state.featureFlags) === null || _state$featureFlags === void 0 ? void 0 : _state$featureFlags[path.replace("@featureFlags/", "")];
49853
+ const featureFlagValue = state === null || state === void 0 || (_state$featureFlags = state.featureFlags) === null || _state$featureFlags === void 0 ? void 0 : _state$featureFlags[path.replace(pathPrefixes.featureFlags, "")];
49694
49854
  if (featureFlagValue == undefined) {
49695
49855
  value = undefined;
49696
49856
  } else if (isPrimitiveValue(featureFlagValue)) {
@@ -49704,7 +49864,7 @@ function getFeatureFlagByPath(state, path) {
49704
49864
  function getSettingByPath(state, path) {
49705
49865
  var _state$settings;
49706
49866
  let value = undefined;
49707
- const settingValue = (_state$settings = state.settings) === null || _state$settings === void 0 ? void 0 : _state$settings[path.replace("@settings/", "")];
49867
+ const settingValue = (_state$settings = state.settings) === null || _state$settings === void 0 ? void 0 : _state$settings[path.replace(pathPrefixes.settings, "")];
49708
49868
  if (settingValue == undefined) {
49709
49869
  value = undefined;
49710
49870
  } else if (isPrimitiveValue(settingValue)) {
@@ -49715,31 +49875,43 @@ function getSettingByPath(state, path) {
49715
49875
  }
49716
49876
  return value;
49717
49877
  }
49718
- function getExternalPropertyValue(state, path) {
49878
+ function getContextVar(variableContext, path) {
49879
+ const varName = path.replace(/^\@contextVars\//, "");
49880
+ const variable = variableContext[varName];
49881
+ return variable === null || variable === void 0 ? void 0 : variable.toString();
49882
+ }
49883
+ function getExternalPropertyValue(state, variableContext, path) {
49719
49884
  if (path.startsWith("@mergedPropertiesForBackendCompatibility/")) {
49720
- var _ref, _ref2, _getFeatureFlagByPath, _state$requisites;
49885
+ var _ref, _ref2, _ref3, _getFeatureFlagByPath, _state$requisites;
49721
49886
  // Что это за история: на бекенде getProperty не принимает тип внешней переменной -- просто имя, они какбы
49722
49887
  // сливаются в одну кучу (ну или так было), поэтому для обраной совместимости может приходит такой префикс
49723
49888
  // когда мы потеряли контекс.
49724
- const name = path.replace("@mergedPropertiesForBackendCompatibility/", "");
49725
- return (_ref = (_ref2 = (_getFeatureFlagByPath = getFeatureFlagByPath(state, "@featureFlags/" + name)) !== null && _getFeatureFlagByPath !== void 0 ? _getFeatureFlagByPath : getSettingByPath(state, "@settings/" + name)) !== null && _ref2 !== void 0 ? _ref2 : state === null || state === void 0 || (_state$requisites = state.requisites) === null || _state$requisites === void 0 || (_state$requisites = _state$requisites["@" + name]) === null || _state$requisites === void 0 ? void 0 : _state$requisites.value) !== null && _ref !== void 0 ? _ref : "";
49726
- } else if (path.startsWith("@featureFlags/")) {
49889
+ const name = path.replace(pathPrefixes.mergedPropertiesForBackendCompatibility, "");
49890
+ return (_ref = (_ref2 = (_ref3 = (_getFeatureFlagByPath = getFeatureFlagByPath(state, pathPrefixes.featureFlags + name)) !== null && _getFeatureFlagByPath !== void 0 ? _getFeatureFlagByPath : getSettingByPath(state, pathPrefixes.settings + name)) !== null && _ref3 !== void 0 ? _ref3 : state === null || state === void 0 || (_state$requisites = state.requisites) === null || _state$requisites === void 0 || (_state$requisites = _state$requisites["@" + name]) === null || _state$requisites === void 0 ? void 0 : _state$requisites.value) !== null && _ref2 !== void 0 ? _ref2 : getContextVar(variableContext, pathPrefixes.contextVars + name)) !== null && _ref !== void 0 ? _ref : "";
49891
+ } else if (hasPrefix(path, pathPrefixes.featureFlags)) {
49727
49892
  var _getFeatureFlagByPath2;
49728
49893
  return (_getFeatureFlagByPath2 = getFeatureFlagByPath(state, path)) !== null && _getFeatureFlagByPath2 !== void 0 ? _getFeatureFlagByPath2 : "";
49729
- } else if (path.startsWith("@settings/")) {
49894
+ } else if (hasPrefix(path, pathPrefixes.settings)) {
49730
49895
  var _getSettingByPath;
49731
49896
  return (_getSettingByPath = getSettingByPath(state, path)) !== null && _getSettingByPath !== void 0 ? _getSettingByPath : "";
49732
- } else if (path.startsWith("@")) {
49897
+ } else if (hasPrefix(path, pathPrefixes.contextVars)) {
49898
+ var _getContextVar;
49899
+ return (_getContextVar = getContextVar(variableContext, path)) !== null && _getContextVar !== void 0 ? _getContextVar : "";
49900
+ } else if (hasPrefix(path, pathPrefixes.all)) {
49733
49901
  var _state$requisites$pat, _state$requisites2;
49734
49902
  return (_state$requisites$pat = state === null || state === void 0 || (_state$requisites2 = state.requisites) === null || _state$requisites2 === void 0 || (_state$requisites2 = _state$requisites2[path]) === null || _state$requisites2 === void 0 ? void 0 : _state$requisites2.value) !== null && _state$requisites$pat !== void 0 ? _state$requisites$pat : "";
49735
49903
  }
49736
49904
  return "";
49737
49905
  }
49738
- function getValueByPath(state, selector, path, name = "value") {
49906
+ function getValueByPath(state, selector, variableContext, path, name = "value") {
49739
49907
  var _value;
49740
49908
  let value;
49741
- if (typeof path === "string") {
49742
- value = getExternalPropertyValue(state, path);
49909
+ if (typeof path === "string" && path.startsWith(pathPrefixes.contextVars)) {
49910
+ const varName = path.replace(/^\@contextVars\//, "");
49911
+ const variable = variableContext[varName];
49912
+ value = variable === null || variable === void 0 ? void 0 : variable.toString();
49913
+ } else if (typeof path === "string") {
49914
+ value = getExternalPropertyValue(state, variableContext, path);
49743
49915
  } else {
49744
49916
  value = selector(state, path, name);
49745
49917
  }
@@ -71893,6 +72065,10 @@ class KCXmlGeneratorBase {
71893
72065
  if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaPropertyByNameExpression) {
71894
72066
  return gcf(x => x.getProperty, JSON.stringify(expression.name));
71895
72067
  }
72068
+ if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaCastExpression) {
72069
+ const compiledExpression = this.compileExpression(prefix, targetFullPath, expression.expression, deps);
72070
+ return compiledExpression;
72071
+ }
71896
72072
  // -- не работает в рантайм калькуляторе
71897
72073
  if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaFirstOrDefaultExpression) {
71898
72074
  return "null";
@@ -73154,9 +73330,11 @@ __webpack_require__.r(__webpack_exports__);
73154
73330
  /* harmony export */ });
73155
73331
  /* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
73156
73332
  /* harmony import */ var _Common_hashUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../../Common/hashUtils */ "./Common/hashUtils.ts");
73333
+ /* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
73157
73334
  var _BuildInTypeExpression;
73158
73335
 
73159
73336
 
73337
+
73160
73338
  class FLangNode {
73161
73339
  toString() {
73162
73340
  return this.convertToString();
@@ -73434,6 +73612,33 @@ class BuildInTypeExpression extends TypeReferenceExpression {
73434
73612
  convertToString() {
73435
73613
  return this.buildInTypeName;
73436
73614
  }
73615
+ static getByName(typeName) {
73616
+ switch (typeName) {
73617
+ case "string":
73618
+ return BuildInTypeExpression.string;
73619
+ case "decimal":
73620
+ return BuildInTypeExpression.decimal;
73621
+ case "dict":
73622
+ return BuildInTypeExpression.dict;
73623
+ case "bool":
73624
+ return BuildInTypeExpression.bool;
73625
+ case "null":
73626
+ return BuildInTypeExpression.null;
73627
+ case "dateTime":
73628
+ return BuildInTypeExpression.dateTime;
73629
+ case "int":
73630
+ return BuildInTypeExpression.int;
73631
+ case "array":
73632
+ return BuildInTypeExpression.array;
73633
+ case "hashSet":
73634
+ return BuildInTypeExpression.hashSet;
73635
+ case "object":
73636
+ return BuildInTypeExpression.object;
73637
+ default:
73638
+ (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.ensureNever)(typeName);
73639
+ return (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.reject)();
73640
+ }
73641
+ }
73437
73642
  }
73438
73643
  _BuildInTypeExpression = BuildInTypeExpression;
73439
73644
  BuildInTypeExpression.object = new _BuildInTypeExpression("object");
@@ -75296,6 +75501,11 @@ class FormulaExpressionToFlangExpressionConverter {
75296
75501
  if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_0__.FormulaPropertyByNameExpression) {
75297
75502
  return new _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_9__.StringLiteralExpression("");
75298
75503
  }
75504
+ if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_0__.FormulaCastExpression) {
75505
+ const targetType = _FLang_FLangCodeDom__WEBPACK_IMPORTED_MODULE_9__.BuildInTypeExpression.getByName(expression.type);
75506
+ const arg = (0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_8__.castOperandToStringIfNeed)(this.compileExpressionToFlangExpressionInternal(expression.expression, prefix, target, addPrecalculationRule));
75507
+ return (0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_8__.castOperandIfNeed)(arg, targetType);
75508
+ }
75299
75509
  throw new Error(`Unsupported type of node: ${expression.constructor.name}, ${expression.sourceXmlNode.name}`);
75300
75510
  }
75301
75511
  castOperandForComparisonExpression(formulaExpression, flangExpression) {
@@ -77428,6 +77638,10 @@ __webpack_require__.r(__webpack_exports__);
77428
77638
  /* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinBlockConverter__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/JoinBlock/JoinBlockConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinBlockConverter.ts");
77429
77639
  /* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinItemConverter__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/JoinBlock/JoinItemConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinItemConverter.ts");
77430
77640
  /* harmony import */ var _ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateConverter__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateConverter.ts");
77641
+ /* harmony import */ var _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryConverter__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/AggregationQuery/AggregationQueryConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryConverter.ts");
77642
+ /* harmony import */ var _ElementProcessors_MultiControls_ContextVar_ExprEvalConverter__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./ElementProcessors/MultiControls/ContextVar/ExprEvalConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalConverter.ts");
77643
+
77644
+
77431
77645
 
77432
77646
 
77433
77647
 
@@ -77559,7 +77773,7 @@ __webpack_require__.r(__webpack_exports__);
77559
77773
 
77560
77774
  let convertersFromNodeClassMap;
77561
77775
  function buildConvertersFromNodeClassMap() {
77562
- const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_117__.AttachmentFormConverter, _ElementProcessors_Layout_Block_BlockConverter__WEBPACK_IMPORTED_MODULE_10__.BlockConverter, _ElementProcessors_Layout_Minitour_MinitourConverter__WEBPACK_IMPORTED_MODULE_11__.MinitourConverter, _ElementProcessors_Typography_Bold_BoldConverter__WEBPACK_IMPORTED_MODULE_13__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__.TableCellConverter, _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_88__.ToggleConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_97__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxConverter, _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxConverter__WEBPACK_IMPORTED_MODULE_119__.RelativesComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_110__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_111__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_112__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _ElementProcessors_ControlFlow_JoinBlock_JoinBlockConverter__WEBPACK_IMPORTED_MODULE_126__.JoinBlockConverter, _ElementProcessors_ControlFlow_JoinBlock_JoinItemConverter__WEBPACK_IMPORTED_MODULE_127__.JoinItemConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConverter, _ElementProcessors_Modal_ErrorBlock_ErrorBlockConverter__WEBPACK_IMPORTED_MODULE_125__.ErrorBlockConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_61__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_62__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_63__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_65__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_66__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_67__.PicklistConverter, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistConverter__WEBPACK_IMPORTED_MODULE_118__.TreePicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_96__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_92__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_93__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_94__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_95__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_91__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_90__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_89__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__.StickyTableWithMultilineConverter, _ElementProcessors_Layout_Stack_StackConverter__WEBPACK_IMPORTED_MODULE_2__.StackConverter, _ElementProcessors_Layout_Grid_GridConverter__WEBPACK_IMPORTED_MODULE_1__.GridConverter, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelConverter__WEBPACK_IMPORTED_MODULE_6__.HeaderPanelConverter, _ElementProcessors_MultiControls_Tabs_TabsConverter__WEBPACK_IMPORTED_MODULE_5__.TabsConverter, _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_101__.DropdownButtonConverter, _ElementProcessors_ValueEditors_Fias_FiasConverter__WEBPACK_IMPORTED_MODULE_0__.FiasConverter, _ElementProcessors_MultiControls_FilterSelect_FilterSelectConverter__WEBPACK_IMPORTED_MODULE_3__.FilterSelectConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2Converter, _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_100__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_99__.Table2MultirowConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2ColumnConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2VerticalColumnConverter, _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_103__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_102__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_104__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_105__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_106__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_107__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_108__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_109__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_113__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_114__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_115__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_116__.SelectAllCheckboxConverter, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_120__.SelectCheckboxConverter, _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_121__.ModalHeaderConverter, _ElementProcessors_FormParts_GlobalModal_GlobalModalsConverter__WEBPACK_IMPORTED_MODULE_122__.GlobalModalsConverter, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberConverter__WEBPACK_IMPORTED_MODULE_123__.InstanceNumberConverter, _ElementProcessors_Layout_OptionalBlock_OptionalBlockConverter__WEBPACK_IMPORTED_MODULE_124__.OptionalBlockConverter, _ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateConverter__WEBPACK_IMPORTED_MODULE_128__.EmptyTemplateConverter];
77776
+ const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_117__.AttachmentFormConverter, _ElementProcessors_Layout_Block_BlockConverter__WEBPACK_IMPORTED_MODULE_10__.BlockConverter, _ElementProcessors_Layout_Minitour_MinitourConverter__WEBPACK_IMPORTED_MODULE_11__.MinitourConverter, _ElementProcessors_Typography_Bold_BoldConverter__WEBPACK_IMPORTED_MODULE_13__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__.TableCellConverter, _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_88__.ToggleConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_97__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxConverter, _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxConverter__WEBPACK_IMPORTED_MODULE_119__.RelativesComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_110__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_111__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_112__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _ElementProcessors_ControlFlow_JoinBlock_JoinBlockConverter__WEBPACK_IMPORTED_MODULE_126__.JoinBlockConverter, _ElementProcessors_ControlFlow_JoinBlock_JoinItemConverter__WEBPACK_IMPORTED_MODULE_127__.JoinItemConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConverter, _ElementProcessors_Modal_ErrorBlock_ErrorBlockConverter__WEBPACK_IMPORTED_MODULE_125__.ErrorBlockConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_61__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_62__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_63__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_65__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_66__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_67__.PicklistConverter, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistConverter__WEBPACK_IMPORTED_MODULE_118__.TreePicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_96__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_92__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_93__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_94__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_95__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_91__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_90__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_89__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__.StickyTableWithMultilineConverter, _ElementProcessors_Layout_Stack_StackConverter__WEBPACK_IMPORTED_MODULE_2__.StackConverter, _ElementProcessors_Layout_Grid_GridConverter__WEBPACK_IMPORTED_MODULE_1__.GridConverter, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelConverter__WEBPACK_IMPORTED_MODULE_6__.HeaderPanelConverter, _ElementProcessors_MultiControls_Tabs_TabsConverter__WEBPACK_IMPORTED_MODULE_5__.TabsConverter, _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_101__.DropdownButtonConverter, _ElementProcessors_ValueEditors_Fias_FiasConverter__WEBPACK_IMPORTED_MODULE_0__.FiasConverter, _ElementProcessors_MultiControls_FilterSelect_FilterSelectConverter__WEBPACK_IMPORTED_MODULE_3__.FilterSelectConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2Converter, _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_100__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_99__.Table2MultirowConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2ColumnConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2VerticalColumnConverter, _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_103__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_102__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_104__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_105__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_106__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_107__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_108__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_109__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_113__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_114__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_115__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_116__.SelectAllCheckboxConverter, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_120__.SelectCheckboxConverter, _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_121__.ModalHeaderConverter, _ElementProcessors_FormParts_GlobalModal_GlobalModalsConverter__WEBPACK_IMPORTED_MODULE_122__.GlobalModalsConverter, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberConverter__WEBPACK_IMPORTED_MODULE_123__.InstanceNumberConverter, _ElementProcessors_Layout_OptionalBlock_OptionalBlockConverter__WEBPACK_IMPORTED_MODULE_124__.OptionalBlockConverter, _ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateConverter__WEBPACK_IMPORTED_MODULE_128__.EmptyTemplateConverter, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryConverter__WEBPACK_IMPORTED_MODULE_129__.AggregationQueryConverter, _ElementProcessors_MultiControls_ContextVar_ExprEvalConverter__WEBPACK_IMPORTED_MODULE_130__.ExprEvalConverter];
77563
77777
  return new Map(converters.flatMap(converterClass => {
77564
77778
  let classes = converterClass.getAcceptNodeClass();
77565
77779
  classes = Array.isArray(classes) ? classes : [classes];
@@ -81892,6 +82106,11 @@ class BannerConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__.S
81892
82106
  markupBuilder.prop(x => x.bannerTheme).set(node.bannerTheme);
81893
82107
  markupBuilder.prop(x => x.allowClose).set(node.allowClose);
81894
82108
  markupBuilder.prop(x => x.arrowInButton).set(node.arrowInButton);
82109
+ if (node.onClick && node.href) {
82110
+ throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_5__.SugarAttributeReadError("Нельзя использовать onClick и href одновременно", node, "onClick");
82111
+ } else {
82112
+ markupBuilder.prop(x => x.onClick).set(context.generateHelperFunctionExpression(node, "onClick", node.onClick));
82113
+ }
81895
82114
  if (node.isPortrait === true) {
81896
82115
  if (node.iconSrc === undefined) {
81897
82116
  throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_5__.SugarAttributeReadError("Для атрибута iconSrc не задано значение при атрибуте isPortrait равному true", node, "iconSrc");
@@ -81951,10 +82170,10 @@ __webpack_require__.r(__webpack_exports__);
81951
82170
 
81952
82171
 
81953
82172
 
81954
- var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17;
82173
+ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18;
81955
82174
 
81956
82175
 
81957
- let BannerNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("banner", `Баннер, позволяющий в виде рекламы рассказать о чем либо`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("name", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Имя баннера, обязательный параметр"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("customSugar", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если true - пишем сахар внутри баннера, если false передаем header, text и ссылку"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("header", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это заголовок в нем"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, `Если банер не кастомный, то это текст в нем. Поддерживает Markdown.`), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("icon", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это icon в base64 https://www.base64-image.de/ в нем"), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("clickableText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это текст на который нажимать в нем, стрелочку рисуем →, по умолчанию Открыть статью"), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("href", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это href в нем"), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("useButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если банер не кастомный, то это можно использовать кнопку вместо ссылки в нем"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("allowClose", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Разрешает закрывать баннер - появляется кнопка закрытия. можно использовать closeButtonColor"), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("closeButtonColor", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Цвет для расскраски кнопки закрытия в hex формате например #F2F2F2"), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("background", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Путь до изображения которое будет установлено на фоне. Изображение должно находиться в папке N. Поддерживаемые расширения png,jpg"), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("useFeatureFlag", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "При использовании свойства, баннер будет показан только под указанным в свойстве фича флагом, например @featureFlags/news6ndfl"), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("bannerTheme", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.enum("light", "dark"), "Тема баннера, по умолчанию белый фон черный текст"), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("arrowInButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если банер не кастомный, есть ли стрелка в кнопке"), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("isPortrait", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если в иконке баннера портрет, то true. Портрет по прототипам вылезет за пределы баннера сверху. Картинка будет сжиматься по высоте до 100px, по ширине может быть любая, но надо быть внимательным на текстовый контент."), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("iconSrc", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.pathToFile, "Если банер не кастомный, то иконка в формате *.png"), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(), _dec(_class = (_class2 = class BannerNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
82176
+ let BannerNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("banner", `Баннер, позволяющий в виде рекламы рассказать о чем либо`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("name", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Имя баннера, обязательный параметр"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("customSugar", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если true - пишем сахар внутри баннера, если false передаем header, text и ссылку"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("header", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это заголовок в нем"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, `Если банер не кастомный, то это текст в нем. Поддерживает Markdown.`), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("icon", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это icon в base64 https://www.base64-image.de/ в нем"), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("clickableText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это текст на который нажимать в нем, стрелочку рисуем →, по умолчанию Открыть статью"), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("href", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это href в нем"), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("useButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если банер не кастомный, то это можно использовать кнопку вместо ссылки в нем"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("allowClose", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Разрешает закрывать баннер - появляется кнопка закрытия. можно использовать closeButtonColor"), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("closeButtonColor", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Цвет для расскраски кнопки закрытия в hex формате например #F2F2F2"), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("background", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Путь до изображения которое будет установлено на фоне. Изображение должно находиться в папке N. Поддерживаемые расширения png,jpg"), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("useFeatureFlag", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "При использовании свойства, баннер будет показан только под указанным в свойстве фича флагом, например @featureFlags/news6ndfl"), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("bannerTheme", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.enum("light", "dark"), "Тема баннера, по умолчанию белый фон черный текст"), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("arrowInButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если банер не кастомный, есть ли стрелка в кнопке"), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("isPortrait", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если в иконке баннера портрет, то true. Портрет по прототипам вылезет за пределы баннера сверху. Картинка будет сжиматься по высоте до 100px, по ширине может быть любая, но надо быть внимательным на текстовый контент."), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("iconSrc", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.pathToFile, "Если банер не кастомный, то иконка в формате *.png"), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("onClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике"), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(), _dec(_class = (_class2 = class BannerNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
81958
82177
  constructor(...args) {
81959
82178
  super(...args);
81960
82179
  _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "name", _descriptor, this);
@@ -81973,7 +82192,8 @@ let BannerNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE
81973
82192
  _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "arrowInButton", _descriptor14, this);
81974
82193
  _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "isPortrait", _descriptor15, this);
81975
82194
  _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "iconSrc", _descriptor16, this);
81976
- _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor17, this);
82195
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onClick", _descriptor17, this);
82196
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor18, this);
81977
82197
  }
81978
82198
  }, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "name", [_dec2], {
81979
82199
  configurable: true,
@@ -82055,7 +82275,12 @@ let BannerNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE
82055
82275
  enumerable: true,
82056
82276
  writable: true,
82057
82277
  initializer: null
82058
- }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec18], {
82278
+ }), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "onClick", [_dec18], {
82279
+ configurable: true,
82280
+ enumerable: true,
82281
+ writable: true,
82282
+ initializer: null
82283
+ }), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec19], {
82059
82284
  configurable: true,
82060
82285
  enumerable: true,
82061
82286
  writable: true,
@@ -89794,6 +90019,232 @@ let AddRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
89794
90019
 
89795
90020
  /***/ }),
89796
90021
 
90022
+ /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryConverter.ts":
90023
+ /*!********************************************************************************************************************************!*\
90024
+ !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryConverter.ts ***!
90025
+ \********************************************************************************************************************************/
90026
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
90027
+
90028
+ "use strict";
90029
+ __webpack_require__.r(__webpack_exports__);
90030
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
90031
+ /* harmony export */ AggregationQueryConverter: () => (/* binding */ AggregationQueryConverter)
90032
+ /* harmony export */ });
90033
+ /* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
90034
+ /* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
90035
+ /* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
90036
+ /* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
90037
+ /* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
90038
+ /* harmony import */ var _Engine_src_Engine_Core_Filtering_IAggregationQueryStrategy__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../../../../../Engine/src/Engine/Core/Filtering/IAggregationQueryStrategy */ "./Engine/src/Engine/Core/Filtering/IAggregationQueryStrategy.ts");
90039
+ /* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
90040
+ /* harmony import */ var _Engine_src_Helpers_FilterExpressions_FilterExpressionResolveBindingPaths__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../../../../../Engine/src/Helpers/FilterExpressions/FilterExpressionResolveBindingPaths */ "./Engine/src/Helpers/FilterExpressions/FilterExpressionResolveBindingPaths.ts");
90041
+ /* harmony import */ var _ConverterResults_ModuleDescriptor__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../ConverterResults/ModuleDescriptor */ "./Generator/src/generators/markupGenerator/ConverterResults/ModuleDescriptor.ts");
90042
+ /* harmony import */ var _AggregationQueryNode__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./AggregationQueryNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryNode.ts");
90043
+
90044
+
90045
+
90046
+
90047
+
90048
+
90049
+
90050
+
90051
+
90052
+
90053
+ class AggregationQueryConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_0__.SugarNodeConverterBase {
90054
+ static getAcceptNodeClass() {
90055
+ return _AggregationQueryNode__WEBPACK_IMPORTED_MODULE_9__.AggregationQueryNode;
90056
+ }
90057
+ doBuildDataDeclaration(_context) {
90058
+ return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__.emptyDataDeclarationCollection;
90059
+ }
90060
+ buildChildrenDataDeclaration(context) {
90061
+ const node = this.getCurrentNodeAs(_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_9__.AggregationQueryNode);
90062
+ return context.processChildrenDataDeclaration(node.content.children);
90063
+ }
90064
+ *doTraverseChildren() {
90065
+ const node = this.getCurrentNodeAs(_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_9__.AggregationQueryNode);
90066
+ for (const child of node.content.children) {
90067
+ yield child;
90068
+ }
90069
+ }
90070
+ doConvert(context) {
90071
+ var _node$includeMultilin;
90072
+ const node = this.getCurrentNodeAs(_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_9__.AggregationQueryNode);
90073
+ const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__.componentMarkupBuilder)("AggregationQuery");
90074
+ if (node.multilinePath != undefined) {
90075
+ markupBuilder.prop(x => x.multilinePath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node, node.multilinePath));
90076
+ }
90077
+ markupBuilder.prop(x => x.filterUniqueKey).set(node.filteredUniqKey);
90078
+ markupBuilder.prop(x => x.variablesPrefix).set(node.variablesPrefix);
90079
+ markupBuilder.prop(x => x.includeMultilineFilters).set((_node$includeMultilin = node.includeMultilineFilters) !== null && _node$includeMultilin !== void 0 ? _node$includeMultilin : true);
90080
+ const pathResolver = new _Engine_src_Helpers_FilterExpressions_FilterExpressionResolveBindingPaths__WEBPACK_IMPORTED_MODULE_7__.FilterExpressionResolveBindingPaths(path => (0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node, path).toLegacyPath());
90081
+ if (node.filter != undefined) {
90082
+ markupBuilder.prop(x => x.filter).set(pathResolver.transformExpression(node.filter));
90083
+ }
90084
+ const selects = node.selects.children.map(x => {
90085
+ var _x$pathToField, _x$fieldName;
90086
+ return x.aggregationType === "Sum" ? {
90087
+ targetVariableName: x.variableName,
90088
+ select: {
90089
+ type: _Engine_src_Engine_Core_Filtering_IAggregationQueryStrategy__WEBPACK_IMPORTED_MODULE_5__.AggregationType.Sum,
90090
+ relativeFieldPath: (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_4__.createRelativeResolvedModelPath)((_x$pathToField = x.pathToField) !== null && _x$pathToField !== void 0 ? _x$pathToField : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_6__.reject)("Sum requires pathToField!")),
90091
+ name: x.variableName,
90092
+ customFieldName: (_x$fieldName = x.fieldName) !== null && _x$fieldName !== void 0 ? _x$fieldName : "value",
90093
+ filter: x.filter != undefined ? pathResolver.transformExpression(x.filter) : undefined
90094
+ }
90095
+ } : x.aggregationType === "Count" ? {
90096
+ targetVariableName: x.variableName,
90097
+ select: {
90098
+ type: _Engine_src_Engine_Core_Filtering_IAggregationQueryStrategy__WEBPACK_IMPORTED_MODULE_5__.AggregationType.Count,
90099
+ name: x.variableName,
90100
+ filter: x.filter != undefined ? pathResolver.transformExpression(x.filter) : undefined
90101
+ }
90102
+ } : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_6__.reject)(`Unsupported query type [${x.aggregationType}]`);
90103
+ });
90104
+ markupBuilder.prop(x => x.selects).set(selects);
90105
+ markupBuilder.appendChild(context.convertChildNodes(node.content.children));
90106
+ const result = markupBuilder.buildConverterResult();
90107
+ result.addDependencies(new _ConverterResults_ModuleDescriptor__WEBPACK_IMPORTED_MODULE_8__.ModuleDescriptor("mp", "mp"));
90108
+ return result;
90109
+ }
90110
+ }
90111
+
90112
+ /***/ }),
90113
+
90114
+ /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryNode.ts":
90115
+ /*!***************************************************************************************************************************!*\
90116
+ !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryNode.ts ***!
90117
+ \***************************************************************************************************************************/
90118
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
90119
+
90120
+ "use strict";
90121
+ __webpack_require__.r(__webpack_exports__);
90122
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
90123
+ /* harmony export */ AggregationQueryContentNode: () => (/* binding */ AggregationQueryContentNode),
90124
+ /* harmony export */ AggregationQueryNode: () => (/* binding */ AggregationQueryNode),
90125
+ /* harmony export */ AggregationQuerySelectNode: () => (/* binding */ AggregationQuerySelectNode),
90126
+ /* harmony export */ AggregationQuerySelectsNode: () => (/* binding */ AggregationQuerySelectsNode)
90127
+ /* harmony export */ });
90128
+ /* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
90129
+ /* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
90130
+ /* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
90131
+ /* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
90132
+ /* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
90133
+ /* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
90134
+ /* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
90135
+
90136
+
90137
+
90138
+ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _dec7, _dec8, _class3, _class4, _descriptor6, _dec9, _dec10, _class5, _class6, _descriptor7, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _class7, _class8, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14;
90139
+
90140
+ let AggregationQuerySelectNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("aggregationqueryselect", `Запрос на получение агрегата`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("aggregationType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.enum("Sum", "Count").required, `Необходимо ли включать в фильтр агрегации фильтры из мультилайна`), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("variableName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string.required, `Префикс для названия переменных, которые доступны через обращение к @contextVars/`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("pathToField", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Относительный путь от множественности до поля по которому считаем суммы`), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("pathToField", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Название поля для получения агрегата (value, autoValue, errorsCount и тп)`), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("filter", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.objectLiteral(), ``), _dec(_class = (_class2 = class AggregationQuerySelectNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
90141
+ constructor(...args) {
90142
+ super(...args);
90143
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "aggregationType", _descriptor, this);
90144
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "variableName", _descriptor2, this);
90145
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToField", _descriptor3, this);
90146
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fieldName", _descriptor4, this);
90147
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filter", _descriptor5, this);
90148
+ }
90149
+ }, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "aggregationType", [_dec2], {
90150
+ configurable: true,
90151
+ enumerable: true,
90152
+ writable: true,
90153
+ initializer: null
90154
+ }), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "variableName", [_dec3], {
90155
+ configurable: true,
90156
+ enumerable: true,
90157
+ writable: true,
90158
+ initializer: null
90159
+ }), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pathToField", [_dec4], {
90160
+ configurable: true,
90161
+ enumerable: true,
90162
+ writable: true,
90163
+ initializer: null
90164
+ }), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "fieldName", [_dec5], {
90165
+ configurable: true,
90166
+ enumerable: true,
90167
+ writable: true,
90168
+ initializer: null
90169
+ }), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "filter", [_dec6], {
90170
+ configurable: true,
90171
+ enumerable: true,
90172
+ writable: true,
90173
+ initializer: null
90174
+ }), _class2)) || _class);
90175
+ let AggregationQuerySelectsNode = (_dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("selects", `Запросы на получение агрегата`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery sync recursive .md$")), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(), _dec7(_class3 = (_class4 = class AggregationQuerySelectsNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
90176
+ constructor(...args) {
90177
+ super(...args);
90178
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor6, this);
90179
+ }
90180
+ }, _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class4.prototype, "children", [_dec8], {
90181
+ configurable: true,
90182
+ enumerable: true,
90183
+ writable: true,
90184
+ initializer: null
90185
+ }), _class4)) || _class3);
90186
+ let AggregationQueryContentNode = (_dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("content", `Дочерние элементы`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery sync recursive .md$")), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(), _dec9(_class5 = (_class6 = class AggregationQueryContentNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
90187
+ constructor(...args) {
90188
+ super(...args);
90189
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor7, this);
90190
+ }
90191
+ }, _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class6.prototype, "children", [_dec10], {
90192
+ configurable: true,
90193
+ enumerable: true,
90194
+ writable: true,
90195
+ initializer: null
90196
+ }), _class6)) || _class5);
90197
+ let AggregationQueryNode = (_dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("aggregationquery", `Запрос на получение агрегированных данных`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery sync recursive .md$")), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("multilinePath", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.bindingPath, ``), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("filteredUniqKey", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Уникальный ключ фильтрации multiline, используется, для фильтраций одних и тех же путей иннера
90198
+ разными фильтрами. Задается произвольной строкой. Фильтры с одинаковым ключем фильтрации получают одинаковый результат фильтрации`), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("filter", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.objectLiteral(), ``), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("includeMultilineFilters", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `Необходимо ли включать в фильтр агрегации фильтры из мультилайна`), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("variablesPrefix", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string.required, `Префикс для названия переменных, которые доступны через обращение к @contextVars/`), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.singleChild)("selects", [AggregationQuerySelectsNode]), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.singleChild)("content", [AggregationQueryContentNode]), _dec11(_class7 = (_class8 = class AggregationQueryNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
90199
+ constructor(...args) {
90200
+ super(...args);
90201
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multilinePath", _descriptor8, this);
90202
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filteredUniqKey", _descriptor9, this);
90203
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filter", _descriptor10, this);
90204
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "includeMultilineFilters", _descriptor11, this);
90205
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "variablesPrefix", _descriptor12, this);
90206
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "selects", _descriptor13, this);
90207
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "content", _descriptor14, this);
90208
+ }
90209
+ }, _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "multilinePath", [_dec12], {
90210
+ configurable: true,
90211
+ enumerable: true,
90212
+ writable: true,
90213
+ initializer: null
90214
+ }), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "filteredUniqKey", [_dec13], {
90215
+ configurable: true,
90216
+ enumerable: true,
90217
+ writable: true,
90218
+ initializer: null
90219
+ }), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "filter", [_dec14], {
90220
+ configurable: true,
90221
+ enumerable: true,
90222
+ writable: true,
90223
+ initializer: null
90224
+ }), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "includeMultilineFilters", [_dec15], {
90225
+ configurable: true,
90226
+ enumerable: true,
90227
+ writable: true,
90228
+ initializer: null
90229
+ }), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "variablesPrefix", [_dec16], {
90230
+ configurable: true,
90231
+ enumerable: true,
90232
+ writable: true,
90233
+ initializer: null
90234
+ }), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "selects", [_dec17], {
90235
+ configurable: true,
90236
+ enumerable: true,
90237
+ writable: true,
90238
+ initializer: null
90239
+ }), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "content", [_dec18], {
90240
+ configurable: true,
90241
+ enumerable: true,
90242
+ writable: true,
90243
+ initializer: null
90244
+ }), _class8)) || _class7);
90245
+
90246
+ /***/ }),
90247
+
89797
90248
  /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter.ts":
89798
90249
  /*!****************************************************************************************************************************!*\
89799
90250
  !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ColgroupButton/ColgroupButtonConverter.ts ***!
@@ -89973,6 +90424,96 @@ class ColumnConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.S
89973
90424
 
89974
90425
  /***/ }),
89975
90426
 
90427
+ /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalConverter.ts":
90428
+ /*!******************************************************************************************************************!*\
90429
+ !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalConverter.ts ***!
90430
+ \******************************************************************************************************************/
90431
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
90432
+
90433
+ "use strict";
90434
+ __webpack_require__.r(__webpack_exports__);
90435
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
90436
+ /* harmony export */ ExprEvalConverter: () => (/* binding */ ExprEvalConverter)
90437
+ /* harmony export */ });
90438
+ /* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
90439
+ /* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
90440
+ /* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
90441
+ /* harmony import */ var _common_ConditionUtils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../common/ConditionUtils */ "./Generator/src/common/ConditionUtils.ts");
90442
+ /* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
90443
+ /* harmony import */ var _Common_KCLangRuntimeUtils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../../../../../Common/KCLangRuntimeUtils */ "./Common/KCLangRuntimeUtils.ts");
90444
+ /* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
90445
+ /* harmony import */ var _ExprEvalNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ExprEvalNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalNode.ts");
90446
+
90447
+
90448
+
90449
+
90450
+
90451
+
90452
+
90453
+
90454
+ class ExprEvalConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_0__.SugarNodeConverterBase {
90455
+ static getAcceptNodeClass() {
90456
+ return _ExprEvalNode__WEBPACK_IMPORTED_MODULE_7__.ExprEvalNode;
90457
+ }
90458
+ doBuildDataDeclaration() {
90459
+ return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__.emptyDataDeclarationCollection;
90460
+ }
90461
+ buildChildrenDataDeclaration() {
90462
+ return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__.emptyDataDeclarationCollection;
90463
+ }
90464
+ *doTraverseChildren() {
90465
+ // no children
90466
+ }
90467
+ doConvert(_context) {
90468
+ var _node$expression;
90469
+ const node = this.getCurrentNodeAs(_ExprEvalNode__WEBPACK_IMPORTED_MODULE_7__.ExprEvalNode);
90470
+ const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__.componentMarkupBuilder)("ExprEval");
90471
+ markupBuilder.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
90472
+ const expressionWithDependencies = (0,_common_ConditionUtils__WEBPACK_IMPORTED_MODULE_3__.convertConditionToJsOrFailWithFriendlySugarError)((_node$expression = node.expression) !== null && _node$expression !== void 0 ? _node$expression : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_4__.reject)(), "path", "count", _Common_KCLangRuntimeUtils__WEBPACK_IMPORTED_MODULE_5__.KCLangRuntimeUtils.kcLangUtilsName, node, "expression");
90473
+ markupBuilder.prop(x => x.expression).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__.buildExpressionPropValue)(expressionWithDependencies.condition, expressionWithDependencies.dependencies));
90474
+ return markupBuilder.buildConverterResult();
90475
+ }
90476
+ }
90477
+
90478
+ /***/ }),
90479
+
90480
+ /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalNode.ts":
90481
+ /*!*************************************************************************************************************!*\
90482
+ !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalNode.ts ***!
90483
+ \*************************************************************************************************************/
90484
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
90485
+
90486
+ "use strict";
90487
+ __webpack_require__.r(__webpack_exports__);
90488
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
90489
+ /* harmony export */ ExprEvalNode: () => (/* binding */ ExprEvalNode)
90490
+ /* harmony export */ });
90491
+ /* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
90492
+ /* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
90493
+ /* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
90494
+ /* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
90495
+ /* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
90496
+ /* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
90497
+ /* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
90498
+
90499
+
90500
+
90501
+ var _dec, _dec2, _class, _class2, _descriptor;
90502
+
90503
+ let ExprEvalNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("expreval", `Получение значения контекстной переменной`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("expression", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.javascriptExpression, "Выражение, которое необходимо высчитать для отображения"), _dec(_class = (_class2 = class ExprEvalNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
90504
+ constructor(...args) {
90505
+ super(...args);
90506
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor, this);
90507
+ }
90508
+ }, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "expression", [_dec2], {
90509
+ configurable: true,
90510
+ enumerable: true,
90511
+ writable: true,
90512
+ initializer: null
90513
+ }), _class2)) || _class);
90514
+
90515
+ /***/ }),
90516
+
89976
90517
  /***/ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableColumnConverter.ts":
89977
90518
  /*!********************************************************************************************************************************!*\
89978
90519
  !*** ./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable/CrossfitTableColumnConverter.ts ***!
@@ -90370,7 +90911,6 @@ class CrossfitTableConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODUL
90370
90911
  sideControlsBuilder.appendChild(rowMenuBuilder);
90371
90912
  } else if (removeButton) {
90372
90913
  const removeButtonBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__.componentMarkupBuilder)("RemoveRowButton");
90373
- multilineSidebarRow.prop(x => x.addTopMargin).set(true);
90374
90914
  removeButtonBuilder.prop(x => x.optional).set(optional);
90375
90915
  removeButtonBuilder.prop(x => x.filteredUniqKey).set(multilineNode.filteredUniqKey);
90376
90916
  sideControlsBuilder.appendChild(removeButtonBuilder);
@@ -91532,17 +92072,15 @@ __webpack_require__.r(__webpack_exports__);
91532
92072
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
91533
92073
  /* harmony export */ FilterSelectConverter: () => (/* binding */ FilterSelectConverter)
91534
92074
  /* harmony export */ });
91535
- /* harmony import */ var _Common_Errors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../../../../Common/Errors */ "./Common/Errors.ts");
91536
- /* harmony import */ var _Engine_src_Helpers_FilterExpressions_CompileFilterExpression__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../../../../Engine/src/Helpers/FilterExpressions/CompileFilterExpression */ "./Engine/src/Helpers/FilterExpressions/CompileFilterExpression.ts");
91537
- /* harmony import */ var _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../common/XmlParser/XmlNode */ "./Generator/src/common/XmlParser/XmlNode.ts");
91538
- /* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
91539
- /* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
91540
- /* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
91541
- /* harmony import */ var _Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../Layout/InnerText/InnertextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/InnerText/InnertextNode.ts");
91542
- /* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
91543
- /* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
91544
- /* harmony import */ var _FilterSelectNode__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./FilterSelectNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterSelect/FilterSelectNode.ts");
91545
-
92075
+ /* harmony import */ var _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../../common/XmlParser/XmlNode */ "./Generator/src/common/XmlParser/XmlNode.ts");
92076
+ /* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
92077
+ /* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
92078
+ /* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
92079
+ /* harmony import */ var _Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../Layout/InnerText/InnertextNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/InnerText/InnertextNode.ts");
92080
+ /* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
92081
+ /* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
92082
+ /* harmony import */ var _Engine_src_Helpers_FilterExpressions_FilterExpressionResolveBindingPaths__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../../../../../Engine/src/Helpers/FilterExpressions/FilterExpressionResolveBindingPaths */ "./Engine/src/Helpers/FilterExpressions/FilterExpressionResolveBindingPaths.ts");
92083
+ /* harmony import */ var _FilterSelectNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./FilterSelectNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/FilterSelect/FilterSelectNode.ts");
91546
92084
 
91547
92085
 
91548
92086
 
@@ -91552,30 +92090,30 @@ __webpack_require__.r(__webpack_exports__);
91552
92090
 
91553
92091
 
91554
92092
 
91555
- class FilterSelectConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.SugarNodeConverterBase {
92093
+ class FilterSelectConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_5__.SugarNodeConverterBase {
91556
92094
  static getAcceptNodeClass() {
91557
- return _FilterSelectNode__WEBPACK_IMPORTED_MODULE_9__.FilterSelectNode;
92095
+ return _FilterSelectNode__WEBPACK_IMPORTED_MODULE_8__.FilterSelectNode;
91558
92096
  }
91559
92097
  doBuildDataDeclaration() {
91560
- return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__.emptyDataDeclarationCollection;
92098
+ return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__.emptyDataDeclarationCollection;
91561
92099
  }
91562
92100
  buildChildrenDataDeclaration() {
91563
- return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__.emptyDataDeclarationCollection;
92101
+ return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__.emptyDataDeclarationCollection;
91564
92102
  }
91565
92103
  *doTraverseChildren() {
91566
92104
  // noop
91567
92105
  }
91568
92106
  doConvert() {
91569
- const node = this.getCurrentNodeAs(_FilterSelectNode__WEBPACK_IMPORTED_MODULE_9__.FilterSelectNode);
91570
- const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)("FilterSelect");
92107
+ const node = this.getCurrentNodeAs(_FilterSelectNode__WEBPACK_IMPORTED_MODULE_8__.FilterSelectNode);
92108
+ const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_3__.componentMarkupBuilder)("FilterSelect");
91571
92109
  if (node.multilinePath != undefined) {
91572
- markupBuilder.prop(x => x.multilinePath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_4__.getNewBindingPathExpression)(node, node.multilinePath));
92110
+ markupBuilder.prop(x => x.multilinePath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node, node.multilinePath));
91573
92111
  }
91574
92112
  markupBuilder.prop(x => x.id).set(node.id);
91575
92113
  markupBuilder.prop(x => x.width).set(node.width);
91576
92114
  markupBuilder.prop(x => x.emptyItemName).set(node.emptyItemName);
91577
92115
  if (node.tableId == undefined) {
91578
- throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_2__.SugarAttributeReadError("TableId для этого контрола обязательно. При необходимости обратитесь к разработчикам", node, "tableId");
92116
+ throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_0__.SugarAttributeReadError("TableId для этого контрола обязательно. При необходимости обратитесь к разработчикам", node, "tableId");
91579
92117
  }
91580
92118
  markupBuilder.prop(x => x.tableId).set(node.tableId);
91581
92119
  markupBuilder.prop(x => x.filteredUniqKey).set(node.filteredUniqKey);
@@ -91591,18 +92129,18 @@ class FilterSelectConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE
91591
92129
  };
91592
92130
  }
91593
92131
  extractFilterExpression(filterExpression) {
91594
- const node = this.getCurrentNodeAs(_FilterSelectNode__WEBPACK_IMPORTED_MODULE_9__.FilterSelectNode);
91595
- const pathResolver = new FilterExpressionResolveBindingPaths(path => (0,_getBindingPath__WEBPACK_IMPORTED_MODULE_4__.getNewBindingPathExpression)(node, path).toLegacyPath());
92132
+ const node = this.getCurrentNodeAs(_FilterSelectNode__WEBPACK_IMPORTED_MODULE_8__.FilterSelectNode);
92133
+ const pathResolver = new _Engine_src_Helpers_FilterExpressions_FilterExpressionResolveBindingPaths__WEBPACK_IMPORTED_MODULE_7__.FilterExpressionResolveBindingPaths(path => (0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node, path).toLegacyPath());
91596
92134
  return pathResolver.transformExpression(filterExpression);
91597
92135
  }
91598
92136
  forceSingleTextNode(children) {
91599
92137
  var _children$;
91600
- if (!(0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_8__.arrayHasAtLeastOneItem)(children)) {
92138
+ if (!(0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_6__.arrayHasAtLeastOneItem)(children)) {
91601
92139
  return "";
91602
92140
  }
91603
- if ((0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_8__.arrayHasLength)(children, 1)) {
92141
+ if ((0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_6__.arrayHasLength)(children, 1)) {
91604
92142
  const node = children[0];
91605
- if (node instanceof _Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_6__.InnertextNode) {
92143
+ if (node instanceof _Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_4__.InnertextNode) {
91606
92144
  if (node.innertext == undefined) {
91607
92145
  return "";
91608
92146
  } else if (typeof node.innertext === "string") {
@@ -91618,80 +92156,7 @@ class FilterSelectConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE
91618
92156
  }
91619
92157
  }
91620
92158
  }
91621
- throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_2__.SugarNodeReadingError("Item children must be a single string", (_children$ = children[1]) !== null && _children$ !== void 0 ? _children$ : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_8__.reject)());
91622
- }
91623
- }
91624
- class FilterExpressionResolveBindingPaths extends _Engine_src_Helpers_FilterExpressions_CompileFilterExpression__WEBPACK_IMPORTED_MODULE_1__.FilterExpressionTransduceVisitor {
91625
- constructor(pathResolver) {
91626
- super();
91627
- this.pathResolver = void 0;
91628
- this.pathResolver = pathResolver;
91629
- }
91630
- createDefaultResult() {
91631
- throw new _Common_Errors__WEBPACK_IMPORTED_MODULE_0__.InvalidProgramStateError();
91632
- }
91633
- transformAndExpression(expression) {
91634
- return {
91635
- ...expression,
91636
- conditions: expression.conditions.map(x => this.transformExpression(x))
91637
- };
91638
- }
91639
- transformEndDateExpression(expression) {
91640
- return {
91641
- ...expression,
91642
- condition: {
91643
- ...expression.condition,
91644
- dataPath: this.pathResolver(expression.condition.dataPath)
91645
- }
91646
- };
91647
- }
91648
- transformEqualExpression(expression) {
91649
- return {
91650
- ...expression,
91651
- condition: {
91652
- ...expression.condition,
91653
- dataPath: this.pathResolver(expression.condition.dataPath)
91654
- }
91655
- };
91656
- }
91657
- transformOrExpression(expression) {
91658
- return {
91659
- ...expression,
91660
- conditions: expression.conditions.map(x => this.transformExpression(x))
91661
- };
91662
- }
91663
- transformStartDateExpression(expression) {
91664
- return {
91665
- ...expression,
91666
- condition: {
91667
- ...expression.condition,
91668
- dataPath: this.pathResolver(expression.condition.dataPath)
91669
- }
91670
- };
91671
- }
91672
- transformSubstringExpression(expression) {
91673
- return {
91674
- ...expression,
91675
- condition: {
91676
- ...expression.condition,
91677
- dataPath: this.pathResolver(expression.condition.dataPath)
91678
- }
91679
- };
91680
- }
91681
- transformByInstancesExpression(expression) {
91682
- return {
91683
- ...expression,
91684
- condition: {
91685
- ...expression.condition,
91686
- dataPath: this.pathResolver(expression.condition.dataPath)
91687
- }
91688
- };
91689
- }
91690
- transformUnaryNotExpression(expression) {
91691
- return {
91692
- ...expression,
91693
- condition: this.transformExpression(expression.condition)
91694
- };
92159
+ throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_0__.SugarNodeReadingError("Item children must be a single string", (_children$ = children[1]) !== null && _children$ !== void 0 ? _children$ : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_6__.reject)());
91695
92160
  }
91696
92161
  }
91697
92162
 
@@ -106397,6 +106862,10 @@ __webpack_require__.r(__webpack_exports__);
106397
106862
  /* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinBlockNode__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/JoinBlock/JoinBlockNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinBlockNode.ts");
106398
106863
  /* harmony import */ var _ElementProcessors_ControlFlow_JoinBlock_JoinItemNode__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/JoinBlock/JoinItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/JoinBlock/JoinItemNode.ts");
106399
106864
  /* harmony import */ var _ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateNode__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ../ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/EmptyTemplate/EmptyTemplateNode.ts");
106865
+ /* harmony import */ var _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/AggregationQuery/AggregationQueryNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AggregationQuery/AggregationQueryNode.ts");
106866
+ /* harmony import */ var _ElementProcessors_MultiControls_ContextVar_ExprEvalNode__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ../ElementProcessors/MultiControls/ContextVar/ExprEvalNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/ContextVar/ExprEvalNode.ts");
106867
+
106868
+
106400
106869
 
106401
106870
 
106402
106871
 
@@ -106651,6 +107120,10 @@ function registerDefaultSugarNodes(result) {
106651
107120
  result.registerNode(_ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_127__.InstanceNumberNode);
106652
107121
  result.registerNode(_ElementProcessors_Layout_OptionalBlock_OptionalBlockNode__WEBPACK_IMPORTED_MODULE_128__.OptionalBlockNode);
106653
107122
  result.registerNode(_ElementProcessors_FormParts_EmptyTemplate_EmptyTemplateNode__WEBPACK_IMPORTED_MODULE_131__.EmptyTemplateNode);
107123
+ result.registerNode(_ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_132__.AggregationQueryNode);
107124
+ result.registerNode(_ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_132__.AggregationQuerySelectNode);
107125
+ result.registerNode(_ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_132__.AggregationQueryContentNode);
107126
+ result.registerNode(_ElementProcessors_MultiControls_ContextVar_ExprEvalNode__WEBPACK_IMPORTED_MODULE_133__.ExprEvalNode);
106654
107127
  }
106655
107128
  function createDefaultSugarSerializer() {
106656
107129
  const result = new _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_107__.SugarSerializer({
@@ -106663,7 +107136,7 @@ function getAllSugarValidationNodeClasses() {
106663
107136
  return [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TypeNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.CustomValidationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.PatternTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.EnumerationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.AttachmentsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.LengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MinlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TotaldigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.IntegerdigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.FractiondigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ValueEqlAutoValueTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.DigestcheckTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MininclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxinclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MinExclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxExclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ForcedTypeChecksNode];
106664
107137
  }
106665
107138
  function getAllSugarNodeClasses() {
106666
- return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_97__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_32__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_33__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode, _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode, _ElementProcessors_ControlFlow_JoinBlock_JoinBlockNode__WEBPACK_IMPORTED_MODULE_129__.JoinBlockNode, _ElementProcessors_ControlFlow_JoinBlock_JoinItemNode__WEBPACK_IMPORTED_MODULE_130__.JoinItemNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_93__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_39__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_52__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_34__.MenuNode, _ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__.ErrorBlockNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_75__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_76__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_77__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_78__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_79__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_80__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_81__.PicklistNode, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_124__.TreePicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_82__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_35__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_84__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_36__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_37__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_85__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_86__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_83__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_87__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_95__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_88__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_90__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_89__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_91__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_98__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_105__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_99__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_100__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_101__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_38__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_102__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_103__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_104__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_116__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_115__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_117__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableColumnNode, _ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode, _ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_95__.StickyTableMultilineNode, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_8__.HeaderPanelNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonNode, _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_119__.ActionNode, _ElementProcessors_MultiControls_Tabs_TabsNode__WEBPACK_IMPORTED_MODULE_7__.TabsNode, _ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode, _ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode, _ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_109__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_110__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_111__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_112__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_113__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_114__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_118__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_120__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_121__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_122__.SelectAllCheckboxNode, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_126__.SelectCheckboxNode, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_127__.InstanceNumberNode, _ElementProcessors_Layout_OptionalBlock_OptionalBlockNode__WEBPACK_IMPORTED_MODULE_128__.OptionalBlockNode];
107139
+ return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_97__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_92__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_32__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_33__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonNode__WEBPACK_IMPORTED_MODULE_18__.DownloadExcelButtonNode, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelNode__WEBPACK_IMPORTED_MODULE_19__.DropDownButtonLoadExcelNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_20__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_21__.CheckboxNode, _ElementProcessors_ValueEditors_Toggle_ToggleNode__WEBPACK_IMPORTED_MODULE_22__.ToggleNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_23__.ChoiceNode, _ElementProcessors_ControlFlow_JoinBlock_JoinBlockNode__WEBPACK_IMPORTED_MODULE_129__.JoinBlockNode, _ElementProcessors_ControlFlow_JoinBlock_JoinItemNode__WEBPACK_IMPORTED_MODULE_130__.JoinItemNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_24__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_25__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_93__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_26__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_27__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_29__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_30__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_39__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_40__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_41__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_42__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_43__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_44__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_45__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_50__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_46__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_51__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_52__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_53__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_55__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_54__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_57__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_56__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_59__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_60__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_62__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_63__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_64__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_65__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_34__.MenuNode, _ElementProcessors_Modal_ErrorBlock_ErrorBlockNode__WEBPACK_IMPORTED_MODULE_72__.ErrorBlockNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_73__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_74__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_75__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_76__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_77__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_78__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_79__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_49__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_80__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_81__.PicklistNode, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistNode__WEBPACK_IMPORTED_MODULE_124__.TreePicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_82__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_35__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_84__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_36__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_37__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_85__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_86__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_83__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_87__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_95__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_88__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_90__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_89__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_91__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_98__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_105__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_99__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_100__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_101__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_38__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_102__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_103__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_104__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_69__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_31__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_68__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_116__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_115__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_117__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_61__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_94__.SimpleTableColumnNode, _ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode, _ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_95__.StickyTableMultilineNode, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_8__.HeaderPanelNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonNode, _ElementProcessors_Action_Common_ActionNode__WEBPACK_IMPORTED_MODULE_119__.ActionNode, _ElementProcessors_MultiControls_Tabs_TabsNode__WEBPACK_IMPORTED_MODULE_7__.TabsNode, _ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode, _ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode, _ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_108__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_109__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_110__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_111__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_112__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_113__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_114__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_118__.DateViewNode, _ElementProcessors_Action_Kebab_KebabNode__WEBPACK_IMPORTED_MODULE_120__.KebabNode, _ElementProcessors_Helpers_Clue_InfoBlockNode__WEBPACK_IMPORTED_MODULE_121__.InfoBlockNode, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxNode__WEBPACK_IMPORTED_MODULE_122__.SelectAllCheckboxNode, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxNode__WEBPACK_IMPORTED_MODULE_126__.SelectCheckboxNode, _ElementProcessors_MultiControls_InstanceNumber_InstanceNumberNode__WEBPACK_IMPORTED_MODULE_127__.InstanceNumberNode, _ElementProcessors_Layout_OptionalBlock_OptionalBlockNode__WEBPACK_IMPORTED_MODULE_128__.OptionalBlockNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_132__.AggregationQueryNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_132__.AggregationQuerySelectNode, _ElementProcessors_MultiControls_AggregationQuery_AggregationQueryNode__WEBPACK_IMPORTED_MODULE_132__.AggregationQueryContentNode, _ElementProcessors_MultiControls_ContextVar_ExprEvalNode__WEBPACK_IMPORTED_MODULE_133__.ExprEvalNode];
106667
107140
  }
106668
107141
  function getAllSchemaRngNodeClasses() {
106669
107142
  return [_common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngElementChoiceElement, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngInnerText, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngAttribute, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.SchemaRngType, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MaxinclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MininclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MaxExclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MinExclusiveTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.FractiondigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.IntegerdigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.TotaldigitsTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MaxlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.MinlengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.LengthTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.EnumerationTypeCheck, _common_SchemaRng_Nodes_SchemaRngRoot__WEBPACK_IMPORTED_MODULE_123__.PatternTypeCheck];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kontur.candy/generator",
3
- "version": "5.100.0-big-nds.0",
3
+ "version": "5.100.0-cast-for-flang.1",
4
4
  "description": "Candy forms generator",
5
5
  "author": "SKBKontur Candy Team",
6
6
  "private": false,