@kontur.candy/generator 4.249.1 → 4.250.0-cc-widget-update.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +103 -40
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -113468,6 +113468,7 @@ function assertIs(value) {// noop
113468
113468
  "use strict";
113469
113469
  __webpack_require__.r(__webpack_exports__);
113470
113470
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
113471
+ /* harmony export */ "unitWithoutInstance": () => (/* binding */ unitWithoutInstance),
113471
113472
  /* harmony export */ "isUnitIdEquals": () => (/* binding */ isUnitIdEquals),
113472
113473
  /* harmony export */ "sectionNameToUnitId": () => (/* binding */ sectionNameToUnitId),
113473
113474
  /* harmony export */ "unitIdToLegacyUnitId": () => (/* binding */ unitIdToLegacyUnitId),
@@ -113477,8 +113478,19 @@ __webpack_require__.r(__webpack_exports__);
113477
113478
  /* harmony import */ var fbjs_lib_areEqual__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fbjs/lib/areEqual */ "./node_modules/fbjs/lib/areEqual.js");
113478
113479
  /* harmony import */ var fbjs_lib_areEqual__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fbjs_lib_areEqual__WEBPACK_IMPORTED_MODULE_0__);
113479
113480
  /* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
113481
+ /* harmony import */ var _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../../Common/IterableUtils */ "./Common/IterableUtils.ts");
113480
113482
 
113481
113483
 
113484
+
113485
+ function unitWithoutInstance(unitId) {
113486
+ if (unitId.instance == undefined) {
113487
+ return unitId;
113488
+ }
113489
+
113490
+ return { ...unitId,
113491
+ instance: undefined
113492
+ };
113493
+ }
113482
113494
  function isUnitIdEquals(left, right) {
113483
113495
  var _left$instance, _right$instance, _left$parentInstances, _right$parentInstance;
113484
113496
 
@@ -113493,11 +113505,28 @@ function isUnitIdEquals(left, right) {
113493
113505
  return left.pageId === right.pageId && ((_left$instance = left.instance) !== null && _left$instance !== void 0 ? _left$instance : undefined) === ((_right$instance = right.instance) !== null && _right$instance !== void 0 ? _right$instance : undefined) && fbjs_lib_areEqual__WEBPACK_IMPORTED_MODULE_0___default()((_left$parentInstances = left.parentInstances) !== null && _left$parentInstances !== void 0 ? _left$parentInstances : [], (_right$parentInstance = right.parentInstances) !== null && _right$parentInstance !== void 0 ? _right$parentInstance : []);
113494
113506
  }
113495
113507
  function sectionNameToUnitId(sectionName) {
113496
- const [id, instance] = sectionName.split("-");
113497
- return {
113498
- pageId: id !== null && id !== void 0 ? id : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)(),
113499
- instance: instance
113500
- };
113508
+ const [id, ...instances] = sectionName.split("-");
113509
+
113510
+ if (instances.length === 0) {
113511
+ return {
113512
+ pageId: id !== null && id !== void 0 ? id : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)()
113513
+ };
113514
+ } else if (instances.length === 1) {
113515
+ var _instances$;
113516
+
113517
+ return {
113518
+ pageId: id !== null && id !== void 0 ? id : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)(),
113519
+ instance: (_instances$ = instances[0]) !== null && _instances$ !== void 0 ? _instances$ : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)()
113520
+ };
113521
+ } else {
113522
+ var _IterUtils$last;
113523
+
113524
+ return {
113525
+ pageId: id !== null && id !== void 0 ? id : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)(),
113526
+ parentInstances: instances.slice(0, -1),
113527
+ instance: (_IterUtils$last = _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_2__.IterUtils.last(instances)) !== null && _IterUtils$last !== void 0 ? _IterUtils$last : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)()
113528
+ };
113529
+ }
113501
113530
  }
113502
113531
  function unitIdToLegacyUnitId(unitId) {
113503
113532
  if (unitId == undefined) {
@@ -121302,7 +121331,7 @@ class FormSchemaRngTypeInfo {
121302
121331
  const builder = (0,_CodeGeneration_ClassInstanceBuilder__WEBPACK_IMPORTED_MODULE_3__.instanceBuilder)("Validators.EnumerationValueValidator");
121303
121332
  builder.set(0, this.enumeration);
121304
121333
  builder.set(1, "error");
121305
- builder.set(2, description !== null && description !== void 0 ? description : this.buildDefaultDescription());
121334
+ builder.set(2, description);
121306
121335
  yield builder;
121307
121336
  }
121308
121337
 
@@ -127319,6 +127348,8 @@ __webpack_require__.r(__webpack_exports__);
127319
127348
  /* harmony import */ var _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../../Common/ModelPath/ModelPath */ "./Common/ModelPath/ModelPath.ts");
127320
127349
  /* harmony import */ var _markupGenerator_getBindingPath__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../markupGenerator/getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
127321
127350
  /* harmony import */ var _markupGenerator_ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../markupGenerator/ElementProcessors/FormParts/Page/PageNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page/PageNode.ts");
127351
+ /* harmony import */ var _common_SchemaRng_FormSchemaRng__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../common/SchemaRng/FormSchemaRng */ "./Generator/src/common/SchemaRng/FormSchemaRng.ts");
127352
+
127322
127353
 
127323
127354
 
127324
127355
 
@@ -127338,8 +127369,10 @@ var RequisiteSectionMode;
127338
127369
 
127339
127370
  const emptyDataDeclarationCollection = {};
127340
127371
  class DataDeclarationGenerationContext {
127341
- constructor(initSequenceFactory, controlCustomizationContext, typesRegistry) {
127372
+ constructor(initSequenceFactory, controlCustomizationContext, typesRegistry, formSchemaRng, schemeValidations) {
127342
127373
  this.initSequenceFactory = void 0;
127374
+ this.formSchemaRng = void 0;
127375
+ this.schemeValidations = void 0;
127343
127376
  this.controlCustomizationContext = void 0;
127344
127377
  this.typesRegistry = void 0;
127345
127378
 
@@ -127369,11 +127402,29 @@ class DataDeclarationGenerationContext {
127369
127402
  return undefined;
127370
127403
  };
127371
127404
 
127405
+ this.formSchemaRng = formSchemaRng;
127406
+ this.schemeValidations = schemeValidations;
127372
127407
  this.initSequenceFactory = initSequenceFactory;
127373
127408
  this.controlCustomizationContext = controlCustomizationContext;
127374
127409
  this.typesRegistry = typesRegistry;
127375
127410
  }
127376
127411
 
127412
+ isMultipleNodeOptionalFromScheme(path) {
127413
+ if (!this.schemeValidations) {
127414
+ return undefined;
127415
+ }
127416
+
127417
+ const schemaNode = this.formSchemaRng.getElementByPath(path);
127418
+
127419
+ if (schemaNode instanceof _common_SchemaRng_FormSchemaRng__WEBPACK_IMPORTED_MODULE_9__.FormSchemaRngElement) {
127420
+ var _schemaNode$isOptiona;
127421
+
127422
+ return (_schemaNode$isOptiona = schemaNode.isOptionalOrNillable()) !== null && _schemaNode$isOptiona !== void 0 ? _schemaNode$isOptiona : false;
127423
+ }
127424
+
127425
+ return undefined;
127426
+ }
127427
+
127377
127428
  getTypeNode(node) {
127378
127429
  if (node.anonymousType != undefined) {
127379
127430
  return node.anonymousType;
@@ -127682,11 +127733,15 @@ __webpack_require__.r(__webpack_exports__);
127682
127733
 
127683
127734
 
127684
127735
  class DataDeclarationGenerator {
127685
- constructor(sugarRoot, initSequenceFactory, controlCustomizationContext, typesRegistry) {
127736
+ constructor(sugarRoot, initSequenceFactory, controlCustomizationContext, typesRegistry, formSchemaRng, schemeValidations) {
127686
127737
  this.sugarRoot = void 0;
127687
127738
  this.initSequenceFactory = void 0;
127739
+ this.formSchemaRng = void 0;
127740
+ this.schemeValidations = void 0;
127688
127741
  this.controlCustomizationContext = void 0;
127689
127742
  this.typesRegistry = void 0;
127743
+ this.formSchemaRng = formSchemaRng;
127744
+ this.schemeValidations = schemeValidations;
127690
127745
  this.sugarRoot = sugarRoot;
127691
127746
  this.initSequenceFactory = initSequenceFactory;
127692
127747
  this.controlCustomizationContext = controlCustomizationContext;
@@ -127698,7 +127753,7 @@ class DataDeclarationGenerator {
127698
127753
 
127699
127754
  const converterClass = (_getConverterByNodeCl = (0,_markupGenerator_AllConverters__WEBPACK_IMPORTED_MODULE_4__.getConverterByNodeClass)((0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.getNodeClass)(this.sugarRoot))) !== null && _getConverterByNodeCl !== void 0 ? _getConverterByNodeCl : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_5__.reject)();
127700
127755
  const converter = new converterClass(this.sugarRoot);
127701
- const context = new _DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_7__.DataDeclarationGenerationContext(this.initSequenceFactory, this.controlCustomizationContext, this.typesRegistry);
127756
+ const context = new _DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_7__.DataDeclarationGenerationContext(this.initSequenceFactory, this.controlCustomizationContext, this.typesRegistry, this.formSchemaRng, this.schemeValidations);
127702
127757
  const dataDeclaration = converter.buildDataDeclaration(context);
127703
127758
  const orderedDataDeclaration = this.sortDataDeclarationKeys(dataDeclaration);
127704
127759
  const result = this.replaceHolder(`
@@ -127732,7 +127787,7 @@ class DataDeclarationGenerator {
127732
127787
 
127733
127788
  const converterClass = (_getConverterByNodeCl2 = (0,_markupGenerator_AllConverters__WEBPACK_IMPORTED_MODULE_4__.getConverterByNodeClass)((0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.getNodeClass)(this.sugarRoot))) !== null && _getConverterByNodeCl2 !== void 0 ? _getConverterByNodeCl2 : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_5__.reject)();
127734
127789
  const converter = new converterClass(this.sugarRoot);
127735
- const context = new _DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_7__.DataDeclarationGenerationContext(this.initSequenceFactory, this.controlCustomizationContext, this.typesRegistry);
127790
+ const context = new _DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_7__.DataDeclarationGenerationContext(this.initSequenceFactory, this.controlCustomizationContext, this.typesRegistry, this.formSchemaRng, this.schemeValidations);
127736
127791
  const dataDeclaration = converter.buildDataDeclaration(context);
127737
127792
  const orderedDataDeclaration = this.sortDataDeclarationKeys(dataDeclaration);
127738
127793
  return `
@@ -128856,7 +128911,7 @@ __webpack_require__.r(__webpack_exports__);
128856
128911
 
128857
128912
  function processSugar(formSugarContent, additionalContent, generationOptions) {
128858
128913
  try {
128859
- var _generationOptions$in, _generationOptions$in2, _sugarRoot$schemaVali, _sugarRoot$schemaVali2, _generationOptions$re, _sugarRoot$schemaVali3, _additionalContent$fo, _additionalContent$fo2;
128914
+ var _generationOptions$in, _generationOptions$in2, _sugarRoot$schemaVali, _sugarRoot$schemaVali2, _sugarRoot$schemaVali3, _generationOptions$re, _sugarRoot$schemaVali4, _additionalContent$fo, _additionalContent$fo2;
128860
128915
 
128861
128916
  const sugarAst = (0,_common_SugarXmlParser_SugarParser__WEBPACK_IMPORTED_MODULE_4__.parseSugar)(formSugarContent, additionalContent.preprocessor || {});
128862
128917
  const serializer = (0,_markupGenerator_SugarNodes_DefaultSugarSerializer__WEBPACK_IMPORTED_MODULE_12__.createDefaultSugarSerializer)();
@@ -128871,17 +128926,17 @@ function processSugar(formSugarContent, additionalContent, generationOptions) {
128871
128926
  const fetchFunctions = new _common_FetchFunctions__WEBPACK_IMPORTED_MODULE_2__.FetchFunctions(referencedFetchFunctions); // tslint:disable-next-line no-unsafe-any
128872
128927
 
128873
128928
  const additionalSettings = typeof additionalContent.additionalSettings === "string" ? JSON.parse(additionalContent.additionalSettings || "{}") : additionalContent.additionalSettings;
128874
- const dataDeclarationGenerator = new _DataDeclarationGenerator_DataDeclarationGenerator__WEBPACK_IMPORTED_MODULE_18__.DataDeclarationGenerator(sugarRoot, new _DataDeclarationGenerator_DataDeclarationInitSourceSequenceFactory__WEBPACK_IMPORTED_MODULE_19__.DataDeclarationInitSourceSequenceFactory(fetchFunctions), controlCustomizationContext, typeRegistry);
128929
+ const dataDeclarationGenerator = new _DataDeclarationGenerator_DataDeclarationGenerator__WEBPACK_IMPORTED_MODULE_18__.DataDeclarationGenerator(sugarRoot, new _DataDeclarationGenerator_DataDeclarationInitSourceSequenceFactory__WEBPACK_IMPORTED_MODULE_19__.DataDeclarationInitSourceSequenceFactory(fetchFunctions), controlCustomizationContext, typeRegistry, formSchemaRng, (_sugarRoot$schemaVali = sugarRoot.schemaValidations) !== null && _sugarRoot$schemaVali !== void 0 ? _sugarRoot$schemaVali : false);
128875
128930
  const {
128876
128931
  dataDeclarationContent,
128877
128932
  dataDeclaration
128878
128933
  } = dataDeclarationGenerator.generate();
128879
128934
  const dataDeclarationHelper = new _DataDeclarationGenerator_DataDeclarationGenerationTimeHelper__WEBPACK_IMPORTED_MODULE_25__.DataDeclarationGenerationTimeHelper(dataDeclaration);
128880
- const validationGenerator = new _validationGenerator_ValidationGenerator__WEBPACK_IMPORTED_MODULE_15__.ValidationGenerator(sugarRoot, typeRegistry, controlCustomizationContext, formSchemaRng, (_sugarRoot$schemaVali = sugarRoot.schemaValidations) !== null && _sugarRoot$schemaVali !== void 0 ? _sugarRoot$schemaVali : false, additionalContent.validationsContent);
128881
- const normalizationRulesGenerator = new _ServerSideFLangNormalization_NormalizationRulesGenerator__WEBPACK_IMPORTED_MODULE_24__.NormalizationRulesGenerator(sugarRoot, dataDeclarationHelper, formSchemaRng, formulas, typeRegistry, (_sugarRoot$schemaVali2 = sugarRoot.schemaValidations) !== null && _sugarRoot$schemaVali2 !== void 0 ? _sugarRoot$schemaVali2 : false, controlCustomizationContext);
128935
+ const validationGenerator = new _validationGenerator_ValidationGenerator__WEBPACK_IMPORTED_MODULE_15__.ValidationGenerator(sugarRoot, typeRegistry, controlCustomizationContext, formSchemaRng, (_sugarRoot$schemaVali2 = sugarRoot.schemaValidations) !== null && _sugarRoot$schemaVali2 !== void 0 ? _sugarRoot$schemaVali2 : false, additionalContent.validationsContent);
128936
+ const normalizationRulesGenerator = new _ServerSideFLangNormalization_NormalizationRulesGenerator__WEBPACK_IMPORTED_MODULE_24__.NormalizationRulesGenerator(sugarRoot, dataDeclarationHelper, formSchemaRng, formulas, typeRegistry, (_sugarRoot$schemaVali3 = sugarRoot.schemaValidations) !== null && _sugarRoot$schemaVali3 !== void 0 ? _sugarRoot$schemaVali3 : false, controlCustomizationContext);
128882
128937
  const resourcesHash = (_generationOptions$re = generationOptions === null || generationOptions === void 0 ? void 0 : generationOptions.resourcesHash) !== null && _generationOptions$re !== void 0 ? _generationOptions$re : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_0__.reject)("Current generator version requires resources hash");
128883
128938
  const builder = new _FormSourcesBuilder_FormSourcesBuilder__WEBPACK_IMPORTED_MODULE_20__.FormSourcesBuilder(additionalContent.formSourcesPath);
128884
- const markupGenerator = new _markupGenerator_MarkupGenerator__WEBPACK_IMPORTED_MODULE_11__.MarkupGenerator(additionalContent.formSourcesPath, additionalContent.helpersContent, additionalContent.tourSteps, controlCustomizationContext, typeRegistry, formSchemaRng, dataDeclarationHelper, (_sugarRoot$schemaVali3 = sugarRoot.schemaValidations) !== null && _sugarRoot$schemaVali3 !== void 0 ? _sugarRoot$schemaVali3 : false);
128939
+ const markupGenerator = new _markupGenerator_MarkupGenerator__WEBPACK_IMPORTED_MODULE_11__.MarkupGenerator(additionalContent.formSourcesPath, additionalContent.helpersContent, additionalContent.tourSteps, controlCustomizationContext, typeRegistry, formSchemaRng, dataDeclarationHelper, (_sugarRoot$schemaVali4 = sugarRoot.schemaValidations) !== null && _sugarRoot$schemaVali4 !== void 0 ? _sugarRoot$schemaVali4 : false);
128885
128940
  markupGenerator.generate(sugarRoot, builder);
128886
128941
  builder.addResource("settings.js", (0,_markupGenerator_getSettings__WEBPACK_IMPORTED_MODULE_8__.getSettings)(sugarRoot, additionalContent.gfv, additionalSettings));
128887
128942
  builder.addResource("requisiteList.js", (0,_RequisiteLIst_requisiteList__WEBPACK_IMPORTED_MODULE_23__.getRequisiteList)(sugarRoot, fetchFunctions));
@@ -136015,7 +136070,7 @@ class UserPicklistConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE
136015
136070
  type: "Expression",
136016
136071
  expression: validationGenerator.generateValidationsFactory()
136017
136072
  });
136018
- const dataDeclarationGenerator = new _DataDeclarationGenerator_DataDeclarationGenerator__WEBPACK_IMPORTED_MODULE_10__.DataDeclarationGenerator((_findSugarNodeBases$2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_1__.findSugarNodeBases)(node.editor)[0]) !== null && _findSugarNodeBases$2 !== void 0 ? _findSugarNodeBases$2 : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_8__.reject)(), new _DataDeclarationGenerator_DataDeclarationInitSourceSequenceFactory__WEBPACK_IMPORTED_MODULE_11__.DataDeclarationInitSourceSequenceFactory(_common_FetchFunctions__WEBPACK_IMPORTED_MODULE_12__.FetchFunctions.empty()), context.controlCustomizationContext, context.typesRegistry);
136073
+ const dataDeclarationGenerator = new _DataDeclarationGenerator_DataDeclarationGenerator__WEBPACK_IMPORTED_MODULE_10__.DataDeclarationGenerator((_findSugarNodeBases$2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_1__.findSugarNodeBases)(node.editor)[0]) !== null && _findSugarNodeBases$2 !== void 0 ? _findSugarNodeBases$2 : (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_8__.reject)(), new _DataDeclarationGenerator_DataDeclarationInitSourceSequenceFactory__WEBPACK_IMPORTED_MODULE_11__.DataDeclarationInitSourceSequenceFactory(_common_FetchFunctions__WEBPACK_IMPORTED_MODULE_12__.FetchFunctions.empty()), context.controlCustomizationContext, context.typesRegistry, _common_SchemaRng_FormSchemaRng__WEBPACK_IMPORTED_MODULE_7__.FormSchemaRng.createEmpty(), false);
136019
136074
  userPicklistDeclarationBuilder.prop(x => x.editorDataDeclaration).set({
136020
136075
  type: "Expression",
136021
136076
  expression: dataDeclarationGenerator.generateDataDeclarationFactory()
@@ -140843,10 +140898,10 @@ class CrossfitTableConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODUL
140843
140898
  }
140844
140899
 
140845
140900
  if (rowNode instanceof _CrossfitTableNode__WEBPACK_IMPORTED_MODULE_11__.MultilineNode) {
140846
- var _rowNode$optional2;
140901
+ var _ref, _rowNode$optional2;
140847
140902
 
140848
140903
  this.ensurePathExists(rowNode, rowNode.dataScope.path);
140849
- return context.mergeDataDeclaration(context.addPathDeclEntry(rowNode, [["children", context.initSequenceFactory.children((_rowNode$optional2 = rowNode.optional) !== null && _rowNode$optional2 !== void 0 ? _rowNode$optional2 : false, rowNode.defaultChildren)]]), context.addSpecialFieldsEntry(rowNode, {
140904
+ return context.mergeDataDeclaration(context.addPathDeclEntry(rowNode, [["children", context.initSequenceFactory.children((_ref = (_rowNode$optional2 = rowNode.optional) !== null && _rowNode$optional2 !== void 0 ? _rowNode$optional2 : context.isMultipleNodeOptionalFromScheme(rowNode.getFullPath())) !== null && _ref !== void 0 ? _ref : false, rowNode.defaultChildren)]]), context.addSpecialFieldsEntry(rowNode, {
140850
140905
  optional: rowNode.optional
140851
140906
  }), context.addPathSectionDeclarationEntry(rowNode), context.addVisibilityPathDeclEntryNew(rowNode), context.processChildrenDataDeclaration(rowNode.rows, rowNode2 => {
140852
140907
  if (rowNode2 instanceof _CrossfitTableNode__WEBPACK_IMPORTED_MODULE_11__.CrossfitTableRowNode) {
@@ -142768,10 +142823,10 @@ class MultilineFieldConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODU
142768
142823
  }
142769
142824
 
142770
142825
  doBuildDataDeclaration(context) {
142771
- var _node$optional;
142826
+ var _ref, _node$optional;
142772
142827
 
142773
142828
  const node = this.getCurrentNodeAs(_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_3__.MultilineFieldNode);
142774
- return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : false)]]), context.addSpecialFieldsEntry(node, {
142829
+ return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_ref = (_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : context.isMultipleNodeOptionalFromScheme(node.getFullPath())) !== null && _ref !== void 0 ? _ref : false)]]), context.addSpecialFieldsEntry(node, {
142775
142830
  optional: node.optional
142776
142831
  }), context.addPathSectionDeclarationEntry(node), context.addVisibilityPathDeclEntryNew(node));
142777
142832
  }
@@ -142937,10 +142992,10 @@ class MultipleConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_0__
142937
142992
  }
142938
142993
 
142939
142994
  doBuildDataDeclaration(context) {
142940
- var _node$optional;
142995
+ var _ref, _node$optional;
142941
142996
 
142942
142997
  const node = this.getCurrentNodeAs(_MultipleNode__WEBPACK_IMPORTED_MODULE_3__.MultipleNode);
142943
- return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : false)]]), context.addSpecialFieldsEntry(node, {
142998
+ return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_ref = (_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : context.isMultipleNodeOptionalFromScheme(node.getFullPath())) !== null && _ref !== void 0 ? _ref : false)]]), context.addSpecialFieldsEntry(node, {
142944
142999
  optional: node.optional
142945
143000
  }), context.addPathSectionDeclarationEntry(node));
142946
143001
  }
@@ -144120,9 +144175,9 @@ class StickyTableWithMultilineConverter extends _SugarNodeConverter__WEBPACK_IMP
144120
144175
 
144121
144176
  processMultilineNode(context, rowNode) {
144122
144177
  if (rowNode instanceof _StickyTableNode__WEBPACK_IMPORTED_MODULE_14__.StickyTableMultilineNode) {
144123
- var _rowNode$optional;
144178
+ var _ref, _rowNode$optional;
144124
144179
 
144125
- return context.mergeDataDeclaration(context.addPathDeclEntry(rowNode, [["children", context.initSequenceFactory.children((_rowNode$optional = rowNode.optional) !== null && _rowNode$optional !== void 0 ? _rowNode$optional : false, rowNode.defaultChildren)]]), context.addSpecialFieldsEntry(rowNode, {
144180
+ return context.mergeDataDeclaration(context.addPathDeclEntry(rowNode, [["children", context.initSequenceFactory.children((_ref = (_rowNode$optional = rowNode.optional) !== null && _rowNode$optional !== void 0 ? _rowNode$optional : context.isMultipleNodeOptionalFromScheme(rowNode.getFullPath())) !== null && _ref !== void 0 ? _ref : false, rowNode.defaultChildren)]]), context.addSpecialFieldsEntry(rowNode, {
144126
144181
  optional: rowNode.optional
144127
144182
  }), context.addPathSectionDeclarationEntry(rowNode), context.addVisibilityPathDeclEntryNew(rowNode), context.processChildrenDataDeclaration(rowNode.rows, rowNode2 => this.processMultilineRowNode(context, rowNode2)));
144128
144183
  }
@@ -144195,11 +144250,11 @@ class StickyTableWithMultilineConverter extends _SugarNodeConverter__WEBPACK_IMP
144195
144250
  const sideSize = (_node$side2 = node.side) !== null && _node$side2 !== void 0 ? _node$side2 : 0;
144196
144251
 
144197
144252
  if (this.isSimpleForm()) {
144198
- var _ref, _node$deprecatedDiado;
144253
+ var _ref2, _node$deprecatedDiado;
144199
144254
 
144200
144255
  mb.prop(x => x.maxWidth).set(orientation === "landscape" ? maxWidth : undefined);
144201
144256
  mb.prop(x => x.sideSize).set(this.hasActionButton(node) && sideSize !== 0 ? sideSize + 1 : sideSize);
144202
- const width = (_ref = (_node$deprecatedDiado = node.deprecatedDiadocWidth) !== null && _node$deprecatedDiado !== void 0 ? _node$deprecatedDiado : node.width) !== null && _ref !== void 0 ? _ref : maxWidthSimpleForm;
144257
+ const width = (_ref2 = (_node$deprecatedDiado = node.deprecatedDiadocWidth) !== null && _node$deprecatedDiado !== void 0 ? _node$deprecatedDiado : node.width) !== null && _ref2 !== void 0 ? _ref2 : maxWidthSimpleForm;
144203
144258
  mb.prop(x => x.width).set(width);
144204
144259
  mb.prop(x => x.footerHeight).set(160);
144205
144260
  } else {
@@ -144482,10 +144537,10 @@ BindingPath: ${errorPath}`));
144482
144537
  if (this.isSimpleForm()) {
144483
144538
  mb.prop(x => x.buttonType).set(undefined);
144484
144539
  } else {
144485
- var _multiline$rowmenu, _ref2, _tableNode$removeButt;
144540
+ var _multiline$rowmenu, _ref3, _tableNode$removeButt;
144486
144541
 
144487
144542
  const rowMenu = (_multiline$rowmenu = multiline.rowmenu) !== null && _multiline$rowmenu !== void 0 ? _multiline$rowmenu : false;
144488
- const removebutton = (_ref2 = (_tableNode$removeButt = tableNode.removeButton) !== null && _tableNode$removeButt !== void 0 ? _tableNode$removeButt : multiline.removebutton) !== null && _ref2 !== void 0 ? _ref2 : true;
144543
+ const removebutton = (_ref3 = (_tableNode$removeButt = tableNode.removeButton) !== null && _tableNode$removeButt !== void 0 ? _tableNode$removeButt : multiline.removebutton) !== null && _ref3 !== void 0 ? _ref3 : true;
144489
144544
  mb.prop(x => x.buttonType).set(rowMenu ? "RowMenu" : removebutton ? "RemoveRowButton" : undefined);
144490
144545
  }
144491
144546
 
@@ -144498,7 +144553,7 @@ BindingPath: ${errorPath}`));
144498
144553
  }
144499
144554
 
144500
144555
  getMultiline(context, node, multiline, start, end = Infinity) {
144501
- var _ref3, _node$removeButton, _multiline$rowmenu2, _ref4, _node$removeButton2, _context$popPathsCont2;
144556
+ var _ref4, _node$removeButton, _multiline$rowmenu2, _ref5, _node$removeButton2, _context$popPathsCont2;
144502
144557
 
144503
144558
  const overrideInfo = multiline.override ? context.controlCustomizationContext.getControlCustomizationInfo("multiline", multiline.override) : undefined;
144504
144559
  const mb = overrideInfo == undefined ? (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)("MultiLine") : (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)(overrideInfo.dependencies, overrideInfo.controlName);
@@ -144511,7 +144566,7 @@ BindingPath: ${errorPath}`));
144511
144566
  mb.prop(x => x.isList).set(multiline.usepager === false ? true : undefined);
144512
144567
  mb.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_13__.getNewBindingPathExpression)(multiline));
144513
144568
  mb.prop(x => x.showRowBorder).set(multiline.showRowBorder);
144514
- const hasRemoveButton = ((_ref3 = (_node$removeButton = node.removeButton) !== null && _node$removeButton !== void 0 ? _node$removeButton : multiline.removebutton) !== null && _ref3 !== void 0 ? _ref3 : true) || ((_multiline$rowmenu2 = multiline.rowmenu) !== null && _multiline$rowmenu2 !== void 0 ? _multiline$rowmenu2 : false);
144569
+ const hasRemoveButton = ((_ref4 = (_node$removeButton = node.removeButton) !== null && _node$removeButton !== void 0 ? _node$removeButton : multiline.removebutton) !== null && _ref4 !== void 0 ? _ref4 : true) || ((_multiline$rowmenu2 = multiline.rowmenu) !== null && _multiline$rowmenu2 !== void 0 ? _multiline$rowmenu2 : false);
144515
144570
  const needAddButton = multiline.addbutton !== "false";
144516
144571
 
144517
144572
  if (this.isSimpleForm()) {
@@ -144524,7 +144579,7 @@ BindingPath: ${errorPath}`));
144524
144579
  mb.prop(x => x.removeButtonPosition).set(undefined);
144525
144580
  }
144526
144581
 
144527
- mb.prop(x => x.disableScroll).set(needAddButton || ((_ref4 = (_node$removeButton2 = node.removeButton) !== null && _node$removeButton2 !== void 0 ? _node$removeButton2 : multiline.removebutton) !== null && _ref4 !== void 0 ? _ref4 : true) ? undefined : true);
144582
+ mb.prop(x => x.disableScroll).set(needAddButton || ((_ref5 = (_node$removeButton2 = node.removeButton) !== null && _node$removeButton2 !== void 0 ? _node$removeButton2 : multiline.removebutton) !== null && _ref5 !== void 0 ? _ref5 : true) ? undefined : true);
144528
144583
  context.pushPathsContext();
144529
144584
 
144530
144585
  if ((0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.arrayHasLength)(multiline.rows, 1)) {
@@ -144550,9 +144605,9 @@ BindingPath: ${errorPath}`));
144550
144605
  hasActionButton(node) {
144551
144606
  const multilines = node.rows.map(child => (0,_StickyTableNode__WEBPACK_IMPORTED_MODULE_14__.isMultilineNode)(child) ? child : child.columns.find(_StickyTableNode__WEBPACK_IMPORTED_MODULE_14__.isMultilineNode)).filter(_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_3__.isNotNullOrUndefined);
144552
144607
  return multilines.some(multiline => {
144553
- var _ref5, _node$removeButton3;
144608
+ var _ref6, _node$removeButton3;
144554
144609
 
144555
- return ((_ref5 = (_node$removeButton3 = node.removeButton) !== null && _node$removeButton3 !== void 0 ? _node$removeButton3 : multiline.removebutton) !== null && _ref5 !== void 0 ? _ref5 : true) || multiline.rowmenu;
144610
+ return ((_ref6 = (_node$removeButton3 = node.removeButton) !== null && _node$removeButton3 !== void 0 ? _node$removeButton3 : multiline.removebutton) !== null && _ref6 !== void 0 ? _ref6 : true) || multiline.rowmenu;
144556
144611
  });
144557
144612
  }
144558
144613
 
@@ -144778,10 +144833,10 @@ class Table2MultirowConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODU
144778
144833
  }
144779
144834
 
144780
144835
  doBuildDataDeclaration(context) {
144781
- var _node$optional;
144836
+ var _ref, _node$optional;
144782
144837
 
144783
144838
  const node = this.getCurrentNodeAs(_Table2Node__WEBPACK_IMPORTED_MODULE_3__.Table2MultirowNode);
144784
- return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : false)]]), context.addPathSectionDeclarationEntry(node));
144839
+ return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_ref = (_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : context.isMultipleNodeOptionalFromScheme(node.getFullPath())) !== null && _ref !== void 0 ? _ref : false)]]), context.addPathSectionDeclarationEntry(node));
144785
144840
  }
144786
144841
 
144787
144842
  buildChildrenDataDeclaration(context) {
@@ -145600,10 +145655,10 @@ class TabsConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Sug
145600
145655
  }
145601
145656
 
145602
145657
  doBuildDataDeclaration(context) {
145603
- var _node$optional;
145658
+ var _ref, _node$optional;
145604
145659
 
145605
145660
  const node = this.getCurrentNodeAs(_TabsNode__WEBPACK_IMPORTED_MODULE_4__.TabsNode);
145606
- return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : false)]]), context.addPathSectionDeclarationEntry(node));
145661
+ return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["children", context.initSequenceFactory.children((_ref = (_node$optional = node.optional) !== null && _node$optional !== void 0 ? _node$optional : context.isMultipleNodeOptionalFromScheme(node.getFullPath())) !== null && _ref !== void 0 ? _ref : false)]]), context.addPathSectionDeclarationEntry(node));
145607
145662
  }
145608
145663
 
145609
145664
  buildChildrenDataDeclaration(context) {
@@ -148384,6 +148439,7 @@ class FiasFssConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.
148384
148439
  const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("FiasFss");
148385
148440
  markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getNewBindingPathExpression)(node));
148386
148441
  markupBuilder.prop(x => x.postalTransfer).set(node.postalTransfer || false);
148442
+ markupBuilder.prop(x => x.optionalIndex).set(node.optionalIndex || false);
148387
148443
  return markupBuilder.buildConverterResult();
148388
148444
  }
148389
148445
 
@@ -148414,17 +148470,19 @@ __webpack_require__.r(__webpack_exports__);
148414
148470
 
148415
148471
 
148416
148472
 
148417
- var _dec, _dec2, _dec3, _class, _class2, _descriptor, _descriptor2;
148473
+ var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3;
148418
148474
 
148419
148475
 
148420
148476
 
148421
- let FiasFssNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("fiasfss", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FiasFss sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("postalTransfer", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Адрес для перевода выплаты по почте"), _dec(_class = (_class2 = class FiasFssNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
148477
+ let FiasFssNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("fiasfss", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/FiasFss sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("postalTransfer", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Адрес для перевода выплаты по почте"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("optionalIndex", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Опциональный индекс. По умолчание - false (не опциональный)"), _dec(_class = (_class2 = class FiasFssNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
148422
148478
  constructor(...args) {
148423
148479
  super(...args);
148424
148480
 
148425
148481
  _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
148426
148482
 
148427
148483
  _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "postalTransfer", _descriptor2, this);
148484
+
148485
+ _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optionalIndex", _descriptor3, this);
148428
148486
  }
148429
148487
 
148430
148488
  getOwnPath() {
@@ -148441,6 +148499,11 @@ let FiasFssNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODUL
148441
148499
  enumerable: true,
148442
148500
  writable: true,
148443
148501
  initializer: null
148502
+ }), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "optionalIndex", [_dec4], {
148503
+ configurable: true,
148504
+ enumerable: true,
148505
+ writable: true,
148506
+ initializer: null
148444
148507
  })), _class2)) || _class);
148445
148508
 
148446
148509
  /***/ }),
@@ -148585,7 +148648,7 @@ class FiasPfrConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.
148585
148648
 
148586
148649
  doBuildDataDeclaration(context) {
148587
148650
  const node = this.getCurrentNodeAs(_FiasPfrNode__WEBPACK_IMPORTED_MODULE_4__.FiasPfrNode);
148588
- return context.mergeDataDeclaration(context.addPathSectionDeclarationEntry(node), context.addChildPathSectionDeclarationEntry(node, "InternalFiasId", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ТипАдреса", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "Индекс", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Регион/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Регион/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Район/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Район/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Город/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Город/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/НаселенныйПункт/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/НаселенныйПункт/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Улица/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Улица/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Дом/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Дом/Номер", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Корпус/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Корпус/Номер", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Квартира/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Квартира/Номер", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ИностранныйАдрес/КодСтраны", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ИностранныйАдрес/НазваниеСтраны", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ИностранныйАдрес/Адрес", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "НеструктурированныйАдрес/Адрес", node.dataBinding.requisite));
148651
+ return context.mergeDataDeclaration(context.addPathSectionDeclarationEntry(node), context.addChildPathSectionDeclarationEntry(node, "InternalFiasId", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ТипАдреса", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "Индекс", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Регион/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Регион/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Район/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Район/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Город/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Город/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/НаселенныйПункт/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/НаселенныйПункт/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Улица/ГеографическоеНазвание", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Улица/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Дом/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Дом/Номер", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Корпус/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Корпус/Номер", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Квартира/Сокращение", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "РоссийскийАдрес/Квартира/Номер", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ИностранныйАдрес/КодСтраны", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ИностранныйАдрес/НазваниеСтраны", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "ИностранныйАдрес/Адрес", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "НеструктурированныйАдрес/Адрес", node.dataBinding.requisite), context.addChildPathSectionDeclarationEntry(node, "fullAddress", node.dataBinding.requisite));
148589
148652
  }
148590
148653
 
148591
148654
  buildChildrenDataDeclaration(context) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kontur.candy/generator",
3
- "version": "4.249.1",
3
+ "version": "4.250.0-cc-widget-update.2",
4
4
  "description": "Candy forms generator",
5
5
  "author": "SKBKontur Candy Team",
6
6
  "private": false,