@kontur.candy/generator 4.272.0-star.1 → 4.272.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +68 -35
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -151721,7 +151721,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151721
151721
|
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
151722
151722
|
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
151723
151723
|
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
151724
|
-
/* harmony import */ var
|
|
151724
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
151725
|
+
/* harmony import */ var _FiasNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./FiasNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Fias/FiasNode.ts");
|
|
151726
|
+
|
|
151725
151727
|
|
|
151726
151728
|
|
|
151727
151729
|
|
|
@@ -151729,26 +151731,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151729
151731
|
|
|
151730
151732
|
class FiasConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
151731
151733
|
static getAcceptNodeClass() {
|
|
151732
|
-
return
|
|
151734
|
+
return _FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode;
|
|
151733
151735
|
}
|
|
151734
151736
|
|
|
151735
151737
|
get nodePaths() {
|
|
151736
|
-
const node = this.getCurrentNodeAs(
|
|
151738
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151737
151739
|
const createPaths = node.fiasfield.map(field => (0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getNewBindingPathExpression)(node, field.path));
|
|
151738
151740
|
return createPaths;
|
|
151739
151741
|
}
|
|
151740
151742
|
|
|
151741
|
-
doBuildNodeValidations(validationGenerator) {
|
|
151743
|
+
doBuildNodeValidations(validationGenerator) {
|
|
151744
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151745
|
+
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
151742
151746
|
}
|
|
151743
151747
|
|
|
151744
151748
|
doBuildDataDeclaration(context) {
|
|
151745
|
-
const node = this.getCurrentNodeAs(
|
|
151749
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151746
151750
|
const PathDeclarations = [];
|
|
151747
151751
|
|
|
151748
151752
|
if (node.fiasfield && node.fiasfield.length > 0) {
|
|
151753
|
+
var _node$fiasfield$;
|
|
151754
|
+
|
|
151749
151755
|
node.fiasfield.forEach(field => {
|
|
151750
151756
|
PathDeclarations.push(context.addChildPathSectionDeclarationEntry(node, field.path, node.dataBinding.requisite));
|
|
151751
151757
|
});
|
|
151758
|
+
|
|
151759
|
+
if ((_node$fiasfield$ = node.fiasfield[0]) !== null && _node$fiasfield$ !== void 0 && _node$fiasfield$.path) {
|
|
151760
|
+
const declEntry = {};
|
|
151761
|
+
declEntry["value"] = context.initSequenceFactory.takeFromModelOrDefaultValue("");
|
|
151762
|
+
PathDeclarations.push({
|
|
151763
|
+
[(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getBindingPathWithSuffix)(node, node.fiasfield[0].path)]: declEntry
|
|
151764
|
+
});
|
|
151765
|
+
}
|
|
151752
151766
|
}
|
|
151753
151767
|
|
|
151754
151768
|
return context.mergeDataDeclaration(context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), ...PathDeclarations);
|
|
@@ -151764,7 +151778,7 @@ class FiasConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Sug
|
|
|
151764
151778
|
doConvert(context) {
|
|
151765
151779
|
var _node$title, _node$withSteads, _node$division, _node$searchToAddress;
|
|
151766
151780
|
|
|
151767
|
-
const node = this.getCurrentNodeAs(
|
|
151781
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151768
151782
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("Fias");
|
|
151769
151783
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getNewBindingPathExpression)(node));
|
|
151770
151784
|
markupBuilder.prop(x => x.title).set((_node$title = node.title) !== null && _node$title !== void 0 ? _node$title : "Адрес регистрации");
|
|
@@ -151773,6 +151787,7 @@ class FiasConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Sug
|
|
|
151773
151787
|
markupBuilder.prop(x => x.searchToAddressLevel).set((_node$searchToAddress = node.searchToAddressLevel) !== null && _node$searchToAddress !== void 0 ? _node$searchToAddress : "room");
|
|
151774
151788
|
markupBuilder.prop(x => x.pathToFullAddress).set(node.pathToFullAddress);
|
|
151775
151789
|
markupBuilder.prop(x => x.onlyInput).set(node.onlyInput);
|
|
151790
|
+
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__.setTooltipSettingsProps)(markupBuilder, node.tooltipSettings);
|
|
151776
151791
|
const parsedExtendFields = this.parseExtendFields(node.fiasfield);
|
|
151777
151792
|
|
|
151778
151793
|
if (node.childrenoptions) {
|
|
@@ -151877,11 +151892,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151877
151892
|
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
151878
151893
|
/* harmony import */ var _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/DeprecationReason */ "./Generator/src/generators/markupGenerator/Serializer/DeprecationReason.ts");
|
|
151879
151894
|
/* harmony import */ var _Engine_src_Controls_ValueEditors_Fias_FiasInput_Utils_Convertations_Types__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../../../../../Engine/src/Controls/ValueEditors/Fias/FiasInput/Utils/Convertations/Types */ "./Engine/src/Controls/ValueEditors/Fias/FiasInput/Utils/Convertations/Types.ts");
|
|
151895
|
+
/* harmony import */ var _CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../CommonNodeProperties/ValidationInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/ValidationInfoNode.ts");
|
|
151896
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
151897
|
+
|
|
151880
151898
|
|
|
151881
151899
|
|
|
151882
151900
|
|
|
151901
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _dec9, _dec10, _dec11, _class4, _class5, _descriptor8, _descriptor9, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _class7, _class8, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _dec26, _dec27, _dec28, _class10, _class11, _descriptor23, _descriptor24, _dec29, _dec30, _dec31, _dec32, _class13, _class14, _descriptor25, _descriptor26, _descriptor27, _dec33, _dec34, _class16, _class17, _descriptor28, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _dec47, _dec48, _dec49, _dec50, _dec51, _class19, _class20, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _descriptor44;
|
|
151902
|
+
|
|
151883
151903
|
|
|
151884
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _dec9, _dec10, _dec11, _class4, _class5, _descriptor8, _descriptor9, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _class7, _class8, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _dec26, _dec27, _dec28, _class10, _class11, _descriptor23, _descriptor24, _dec29, _dec30, _dec31, _dec32, _class13, _class14, _descriptor25, _descriptor26, _descriptor27, _dec33, _dec34, _class16, _class17, _descriptor28, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _dec47, _dec48, _dec49, _class19, _class20, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42;
|
|
151885
151904
|
|
|
151886
151905
|
|
|
151887
151906
|
|
|
@@ -152119,40 +152138,44 @@ let FiasMvdOptions = (_dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
|
|
|
152119
152138
|
writable: true,
|
|
152120
152139
|
initializer: null
|
|
152121
152140
|
})), _class17)) || _class16);
|
|
152122
|
-
let FiasNode = (_dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("fias", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Fias sync recursive .md$")), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("withSteads", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Земельные участки для формы"),
|
|
152141
|
+
let FiasNode = (_dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("fias", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Fias sync recursive .md$")), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_7__.ValidationInfoNode), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_8__.TooltipSettingsNode), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("withSteads", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Земельные участки для формы"), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("title", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.localizedString, "Текст в титульнике лайтбокса"), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("pathToFullAddress", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.localizedString, "Путь, по которому будет засечен полный адрес"), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("searchToAddressLevel", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType["enum"]("region", "district", "city", "street", "garhouse", "room"), `До какого элемента будет осуществлятся поиск.
|
|
152123
152142
|
Пример: House - поиск до дома.
|
|
152124
152143
|
Конечный - room, поиск до квартиры.
|
|
152125
|
-
По умолчанию - room`),
|
|
152144
|
+
По умолчанию - room`), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("division", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType["enum"]("municipal", "administrative"), "Территориальное деление, по умолчанию - municipal"), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.deprecatedAttr)("withForeignCountry", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)("fiasfield", [FiasExtendedField]), _dec46 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.singleChild)("childrenoptions", [FiasChildren]), _dec47 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.singleChild)("fnsoptions", [FiasFnsOptions]), _dec48 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.singleChild)("mvdoptions", [FiasMvdOptions]), _dec49 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("onlyInput", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Временный костыль на то, чтобы показывать фиас в рамках багованного мультилайна"), _dec50 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.deprecatedAttr)("optionalIndex", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec51 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.deprecatedAttr)("postalTransfer", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec35(_class19 = (_class20 = class FiasNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
152126
152145
|
constructor(...args) {
|
|
152127
152146
|
super(...args);
|
|
152128
152147
|
|
|
152129
152148
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor29, this);
|
|
152130
152149
|
|
|
152131
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152150
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor30, this);
|
|
152151
|
+
|
|
152152
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor31, this);
|
|
152153
|
+
|
|
152154
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withSteads", _descriptor32, this);
|
|
152132
152155
|
|
|
152133
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title",
|
|
152156
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor33, this);
|
|
152134
152157
|
|
|
152135
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToFullAddress",
|
|
152158
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToFullAddress", _descriptor34, this);
|
|
152136
152159
|
|
|
152137
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "searchToAddressLevel",
|
|
152160
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "searchToAddressLevel", _descriptor35, this);
|
|
152138
152161
|
|
|
152139
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "division",
|
|
152162
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "division", _descriptor36, this);
|
|
152140
152163
|
|
|
152141
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withForeignCountry",
|
|
152164
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withForeignCountry", _descriptor37, this);
|
|
152142
152165
|
|
|
152143
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fiasfield",
|
|
152166
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fiasfield", _descriptor38, this);
|
|
152144
152167
|
|
|
152145
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "childrenoptions",
|
|
152168
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "childrenoptions", _descriptor39, this);
|
|
152146
152169
|
|
|
152147
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fnsoptions",
|
|
152170
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fnsoptions", _descriptor40, this);
|
|
152148
152171
|
|
|
152149
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mvdoptions",
|
|
152172
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mvdoptions", _descriptor41, this);
|
|
152150
152173
|
|
|
152151
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onlyInput",
|
|
152174
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onlyInput", _descriptor42, this);
|
|
152152
152175
|
|
|
152153
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optionalIndex",
|
|
152176
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optionalIndex", _descriptor43, this);
|
|
152154
152177
|
|
|
152155
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "postalTransfer",
|
|
152178
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "postalTransfer", _descriptor44, this);
|
|
152156
152179
|
}
|
|
152157
152180
|
|
|
152158
152181
|
getOwnPath() {
|
|
@@ -152164,67 +152187,77 @@ let FiasNode = (_dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE
|
|
|
152164
152187
|
enumerable: true,
|
|
152165
152188
|
writable: true,
|
|
152166
152189
|
initializer: null
|
|
152167
|
-
}), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "
|
|
152190
|
+
}), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "validationInfo", [_dec37], {
|
|
152191
|
+
configurable: true,
|
|
152192
|
+
enumerable: true,
|
|
152193
|
+
writable: true,
|
|
152194
|
+
initializer: null
|
|
152195
|
+
}), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "tooltipSettings", [_dec38], {
|
|
152196
|
+
configurable: true,
|
|
152197
|
+
enumerable: true,
|
|
152198
|
+
writable: true,
|
|
152199
|
+
initializer: null
|
|
152200
|
+
}), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "withSteads", [_dec39], {
|
|
152168
152201
|
configurable: true,
|
|
152169
152202
|
enumerable: true,
|
|
152170
152203
|
writable: true,
|
|
152171
152204
|
initializer: null
|
|
152172
|
-
}),
|
|
152205
|
+
}), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "title", [_dec40], {
|
|
152173
152206
|
configurable: true,
|
|
152174
152207
|
enumerable: true,
|
|
152175
152208
|
writable: true,
|
|
152176
152209
|
initializer: null
|
|
152177
|
-
}),
|
|
152210
|
+
}), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "pathToFullAddress", [_dec41], {
|
|
152178
152211
|
configurable: true,
|
|
152179
152212
|
enumerable: true,
|
|
152180
152213
|
writable: true,
|
|
152181
152214
|
initializer: null
|
|
152182
|
-
}),
|
|
152215
|
+
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "searchToAddressLevel", [_dec42], {
|
|
152183
152216
|
configurable: true,
|
|
152184
152217
|
enumerable: true,
|
|
152185
152218
|
writable: true,
|
|
152186
152219
|
initializer: null
|
|
152187
|
-
}),
|
|
152220
|
+
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "division", [_dec43], {
|
|
152188
152221
|
configurable: true,
|
|
152189
152222
|
enumerable: true,
|
|
152190
152223
|
writable: true,
|
|
152191
152224
|
initializer: null
|
|
152192
|
-
}),
|
|
152225
|
+
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "withForeignCountry", [_dec44], {
|
|
152193
152226
|
configurable: true,
|
|
152194
152227
|
enumerable: true,
|
|
152195
152228
|
writable: true,
|
|
152196
152229
|
initializer: null
|
|
152197
|
-
}),
|
|
152230
|
+
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "fiasfield", [_dec45], {
|
|
152198
152231
|
configurable: true,
|
|
152199
152232
|
enumerable: true,
|
|
152200
152233
|
writable: true,
|
|
152201
152234
|
initializer: null
|
|
152202
|
-
}),
|
|
152235
|
+
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "childrenoptions", [_dec46], {
|
|
152203
152236
|
configurable: true,
|
|
152204
152237
|
enumerable: true,
|
|
152205
152238
|
writable: true,
|
|
152206
152239
|
initializer: null
|
|
152207
|
-
}),
|
|
152240
|
+
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "fnsoptions", [_dec47], {
|
|
152208
152241
|
configurable: true,
|
|
152209
152242
|
enumerable: true,
|
|
152210
152243
|
writable: true,
|
|
152211
152244
|
initializer: null
|
|
152212
|
-
}),
|
|
152245
|
+
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "mvdoptions", [_dec48], {
|
|
152213
152246
|
configurable: true,
|
|
152214
152247
|
enumerable: true,
|
|
152215
152248
|
writable: true,
|
|
152216
152249
|
initializer: null
|
|
152217
|
-
}),
|
|
152250
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "onlyInput", [_dec49], {
|
|
152218
152251
|
configurable: true,
|
|
152219
152252
|
enumerable: true,
|
|
152220
152253
|
writable: true,
|
|
152221
152254
|
initializer: null
|
|
152222
|
-
}),
|
|
152255
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "optionalIndex", [_dec50], {
|
|
152223
152256
|
configurable: true,
|
|
152224
152257
|
enumerable: true,
|
|
152225
152258
|
writable: true,
|
|
152226
152259
|
initializer: null
|
|
152227
|
-
}),
|
|
152260
|
+
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "postalTransfer", [_dec51], {
|
|
152228
152261
|
configurable: true,
|
|
152229
152262
|
enumerable: true,
|
|
152230
152263
|
writable: true,
|