@kontur.candy/generator 4.272.0-star.1 → 4.273.0-react-ui4.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 +91 -58
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -34469,7 +34469,7 @@ function highlight(code, options = {}) {
|
|
|
34469
34469
|
|
|
34470
34470
|
"use strict";
|
|
34471
34471
|
|
|
34472
|
-
const escapeStringRegexp = __webpack_require__(/*! escape-string-regexp */ "./node_modules/escape-string-regexp/index.js");
|
|
34472
|
+
const escapeStringRegexp = __webpack_require__(/*! escape-string-regexp */ "./node_modules/@babel/highlight/node_modules/escape-string-regexp/index.js");
|
|
34473
34473
|
const ansiStyles = __webpack_require__(/*! ansi-styles */ "./node_modules/ansi-styles/index.js");
|
|
34474
34474
|
const stdoutColor = (__webpack_require__(/*! supports-color */ "./node_modules/@babel/highlight/node_modules/supports-color/index.js").stdout);
|
|
34475
34475
|
|
|
@@ -34837,6 +34837,28 @@ module.exports = (chalk, tmp) => {
|
|
|
34837
34837
|
};
|
|
34838
34838
|
|
|
34839
34839
|
|
|
34840
|
+
/***/ }),
|
|
34841
|
+
|
|
34842
|
+
/***/ "./node_modules/@babel/highlight/node_modules/escape-string-regexp/index.js":
|
|
34843
|
+
/*!**********************************************************************************!*\
|
|
34844
|
+
!*** ./node_modules/@babel/highlight/node_modules/escape-string-regexp/index.js ***!
|
|
34845
|
+
\**********************************************************************************/
|
|
34846
|
+
/***/ ((module) => {
|
|
34847
|
+
|
|
34848
|
+
"use strict";
|
|
34849
|
+
|
|
34850
|
+
|
|
34851
|
+
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
|
|
34852
|
+
|
|
34853
|
+
module.exports = function (str) {
|
|
34854
|
+
if (typeof str !== 'string') {
|
|
34855
|
+
throw new TypeError('Expected a string');
|
|
34856
|
+
}
|
|
34857
|
+
|
|
34858
|
+
return str.replace(matchOperatorsRe, '\\$&');
|
|
34859
|
+
};
|
|
34860
|
+
|
|
34861
|
+
|
|
34840
34862
|
/***/ }),
|
|
34841
34863
|
|
|
34842
34864
|
/***/ "./node_modules/@babel/highlight/node_modules/has-flag/index.js":
|
|
@@ -151721,7 +151743,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151721
151743
|
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
151722
151744
|
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
151723
151745
|
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
151724
|
-
/* harmony import */ var
|
|
151746
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
151747
|
+
/* harmony import */ var _FiasNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./FiasNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Fias/FiasNode.ts");
|
|
151748
|
+
|
|
151725
151749
|
|
|
151726
151750
|
|
|
151727
151751
|
|
|
@@ -151729,26 +151753,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151729
151753
|
|
|
151730
151754
|
class FiasConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
151731
151755
|
static getAcceptNodeClass() {
|
|
151732
|
-
return
|
|
151756
|
+
return _FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode;
|
|
151733
151757
|
}
|
|
151734
151758
|
|
|
151735
151759
|
get nodePaths() {
|
|
151736
|
-
const node = this.getCurrentNodeAs(
|
|
151760
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151737
151761
|
const createPaths = node.fiasfield.map(field => (0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getNewBindingPathExpression)(node, field.path));
|
|
151738
151762
|
return createPaths;
|
|
151739
151763
|
}
|
|
151740
151764
|
|
|
151741
|
-
doBuildNodeValidations(validationGenerator) {
|
|
151765
|
+
doBuildNodeValidations(validationGenerator) {
|
|
151766
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151767
|
+
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
151742
151768
|
}
|
|
151743
151769
|
|
|
151744
151770
|
doBuildDataDeclaration(context) {
|
|
151745
|
-
const node = this.getCurrentNodeAs(
|
|
151771
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151746
151772
|
const PathDeclarations = [];
|
|
151747
151773
|
|
|
151748
151774
|
if (node.fiasfield && node.fiasfield.length > 0) {
|
|
151775
|
+
var _node$fiasfield$;
|
|
151776
|
+
|
|
151749
151777
|
node.fiasfield.forEach(field => {
|
|
151750
151778
|
PathDeclarations.push(context.addChildPathSectionDeclarationEntry(node, field.path, node.dataBinding.requisite));
|
|
151751
151779
|
});
|
|
151780
|
+
|
|
151781
|
+
if ((_node$fiasfield$ = node.fiasfield[0]) !== null && _node$fiasfield$ !== void 0 && _node$fiasfield$.path) {
|
|
151782
|
+
const declEntry = {};
|
|
151783
|
+
declEntry["value"] = context.initSequenceFactory.takeFromModelOrDefaultValue("");
|
|
151784
|
+
PathDeclarations.push({
|
|
151785
|
+
[(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getBindingPathWithSuffix)(node, node.fiasfield[0].path)]: declEntry
|
|
151786
|
+
});
|
|
151787
|
+
}
|
|
151752
151788
|
}
|
|
151753
151789
|
|
|
151754
151790
|
return context.mergeDataDeclaration(context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), ...PathDeclarations);
|
|
@@ -151764,7 +151800,7 @@ class FiasConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Sug
|
|
|
151764
151800
|
doConvert(context) {
|
|
151765
151801
|
var _node$title, _node$withSteads, _node$division, _node$searchToAddress;
|
|
151766
151802
|
|
|
151767
|
-
const node = this.getCurrentNodeAs(
|
|
151803
|
+
const node = this.getCurrentNodeAs(_FiasNode__WEBPACK_IMPORTED_MODULE_5__.FiasNode);
|
|
151768
151804
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("Fias");
|
|
151769
151805
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getNewBindingPathExpression)(node));
|
|
151770
151806
|
markupBuilder.prop(x => x.title).set((_node$title = node.title) !== null && _node$title !== void 0 ? _node$title : "Адрес регистрации");
|
|
@@ -151773,6 +151809,7 @@ class FiasConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Sug
|
|
|
151773
151809
|
markupBuilder.prop(x => x.searchToAddressLevel).set((_node$searchToAddress = node.searchToAddressLevel) !== null && _node$searchToAddress !== void 0 ? _node$searchToAddress : "room");
|
|
151774
151810
|
markupBuilder.prop(x => x.pathToFullAddress).set(node.pathToFullAddress);
|
|
151775
151811
|
markupBuilder.prop(x => x.onlyInput).set(node.onlyInput);
|
|
151812
|
+
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__.setTooltipSettingsProps)(markupBuilder, node.tooltipSettings);
|
|
151776
151813
|
const parsedExtendFields = this.parseExtendFields(node.fiasfield);
|
|
151777
151814
|
|
|
151778
151815
|
if (node.childrenoptions) {
|
|
@@ -151877,11 +151914,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151877
151914
|
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
151878
151915
|
/* harmony import */ var _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/DeprecationReason */ "./Generator/src/generators/markupGenerator/Serializer/DeprecationReason.ts");
|
|
151879
151916
|
/* 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");
|
|
151917
|
+
/* harmony import */ var _CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../CommonNodeProperties/ValidationInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/ValidationInfoNode.ts");
|
|
151918
|
+
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
151919
|
+
|
|
151880
151920
|
|
|
151881
151921
|
|
|
151882
151922
|
|
|
151923
|
+
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;
|
|
151924
|
+
|
|
151883
151925
|
|
|
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
151926
|
|
|
151886
151927
|
|
|
151887
151928
|
|
|
@@ -152119,40 +152160,44 @@ let FiasMvdOptions = (_dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
|
|
|
152119
152160
|
writable: true,
|
|
152120
152161
|
initializer: null
|
|
152121
152162
|
})), _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, "Земельные участки для формы"),
|
|
152163
|
+
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
152164
|
Пример: House - поиск до дома.
|
|
152124
152165
|
Конечный - room, поиск до квартиры.
|
|
152125
|
-
По умолчанию - room`),
|
|
152166
|
+
По умолчанию - 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
152167
|
constructor(...args) {
|
|
152127
152168
|
super(...args);
|
|
152128
152169
|
|
|
152129
152170
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor29, this);
|
|
152130
152171
|
|
|
152131
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152172
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor30, this);
|
|
152173
|
+
|
|
152174
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor31, this);
|
|
152132
152175
|
|
|
152133
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152176
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withSteads", _descriptor32, this);
|
|
152134
152177
|
|
|
152135
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152178
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor33, this);
|
|
152136
152179
|
|
|
152137
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152180
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToFullAddress", _descriptor34, this);
|
|
152138
152181
|
|
|
152139
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152182
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "searchToAddressLevel", _descriptor35, this);
|
|
152140
152183
|
|
|
152141
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152184
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "division", _descriptor36, this);
|
|
152142
152185
|
|
|
152143
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152186
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withForeignCountry", _descriptor37, this);
|
|
152144
152187
|
|
|
152145
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152188
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fiasfield", _descriptor38, this);
|
|
152146
152189
|
|
|
152147
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152190
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "childrenoptions", _descriptor39, this);
|
|
152148
152191
|
|
|
152149
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152192
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fnsoptions", _descriptor40, this);
|
|
152150
152193
|
|
|
152151
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152194
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mvdoptions", _descriptor41, this);
|
|
152152
152195
|
|
|
152153
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152196
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onlyInput", _descriptor42, this);
|
|
152154
152197
|
|
|
152155
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
152198
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optionalIndex", _descriptor43, this);
|
|
152199
|
+
|
|
152200
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "postalTransfer", _descriptor44, this);
|
|
152156
152201
|
}
|
|
152157
152202
|
|
|
152158
152203
|
getOwnPath() {
|
|
@@ -152164,67 +152209,77 @@ let FiasNode = (_dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE
|
|
|
152164
152209
|
enumerable: true,
|
|
152165
152210
|
writable: true,
|
|
152166
152211
|
initializer: null
|
|
152167
|
-
}), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "
|
|
152212
|
+
}), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "validationInfo", [_dec37], {
|
|
152213
|
+
configurable: true,
|
|
152214
|
+
enumerable: true,
|
|
152215
|
+
writable: true,
|
|
152216
|
+
initializer: null
|
|
152217
|
+
}), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "tooltipSettings", [_dec38], {
|
|
152218
|
+
configurable: true,
|
|
152219
|
+
enumerable: true,
|
|
152220
|
+
writable: true,
|
|
152221
|
+
initializer: null
|
|
152222
|
+
}), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "withSteads", [_dec39], {
|
|
152168
152223
|
configurable: true,
|
|
152169
152224
|
enumerable: true,
|
|
152170
152225
|
writable: true,
|
|
152171
152226
|
initializer: null
|
|
152172
|
-
}),
|
|
152227
|
+
}), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "title", [_dec40], {
|
|
152173
152228
|
configurable: true,
|
|
152174
152229
|
enumerable: true,
|
|
152175
152230
|
writable: true,
|
|
152176
152231
|
initializer: null
|
|
152177
|
-
}),
|
|
152232
|
+
}), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "pathToFullAddress", [_dec41], {
|
|
152178
152233
|
configurable: true,
|
|
152179
152234
|
enumerable: true,
|
|
152180
152235
|
writable: true,
|
|
152181
152236
|
initializer: null
|
|
152182
|
-
}),
|
|
152237
|
+
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "searchToAddressLevel", [_dec42], {
|
|
152183
152238
|
configurable: true,
|
|
152184
152239
|
enumerable: true,
|
|
152185
152240
|
writable: true,
|
|
152186
152241
|
initializer: null
|
|
152187
|
-
}),
|
|
152242
|
+
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "division", [_dec43], {
|
|
152188
152243
|
configurable: true,
|
|
152189
152244
|
enumerable: true,
|
|
152190
152245
|
writable: true,
|
|
152191
152246
|
initializer: null
|
|
152192
|
-
}),
|
|
152247
|
+
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "withForeignCountry", [_dec44], {
|
|
152193
152248
|
configurable: true,
|
|
152194
152249
|
enumerable: true,
|
|
152195
152250
|
writable: true,
|
|
152196
152251
|
initializer: null
|
|
152197
|
-
}),
|
|
152252
|
+
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "fiasfield", [_dec45], {
|
|
152198
152253
|
configurable: true,
|
|
152199
152254
|
enumerable: true,
|
|
152200
152255
|
writable: true,
|
|
152201
152256
|
initializer: null
|
|
152202
|
-
}),
|
|
152257
|
+
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "childrenoptions", [_dec46], {
|
|
152203
152258
|
configurable: true,
|
|
152204
152259
|
enumerable: true,
|
|
152205
152260
|
writable: true,
|
|
152206
152261
|
initializer: null
|
|
152207
|
-
}),
|
|
152262
|
+
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "fnsoptions", [_dec47], {
|
|
152208
152263
|
configurable: true,
|
|
152209
152264
|
enumerable: true,
|
|
152210
152265
|
writable: true,
|
|
152211
152266
|
initializer: null
|
|
152212
|
-
}),
|
|
152267
|
+
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "mvdoptions", [_dec48], {
|
|
152213
152268
|
configurable: true,
|
|
152214
152269
|
enumerable: true,
|
|
152215
152270
|
writable: true,
|
|
152216
152271
|
initializer: null
|
|
152217
|
-
}),
|
|
152272
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "onlyInput", [_dec49], {
|
|
152218
152273
|
configurable: true,
|
|
152219
152274
|
enumerable: true,
|
|
152220
152275
|
writable: true,
|
|
152221
152276
|
initializer: null
|
|
152222
|
-
}),
|
|
152277
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "optionalIndex", [_dec50], {
|
|
152223
152278
|
configurable: true,
|
|
152224
152279
|
enumerable: true,
|
|
152225
152280
|
writable: true,
|
|
152226
152281
|
initializer: null
|
|
152227
|
-
}),
|
|
152282
|
+
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "postalTransfer", [_dec51], {
|
|
152228
152283
|
configurable: true,
|
|
152229
152284
|
enumerable: true,
|
|
152230
152285
|
writable: true,
|
|
@@ -198279,28 +198334,6 @@ module.exports = {
|
|
|
198279
198334
|
"17.0": "96"
|
|
198280
198335
|
};
|
|
198281
198336
|
|
|
198282
|
-
/***/ }),
|
|
198283
|
-
|
|
198284
|
-
/***/ "./node_modules/escape-string-regexp/index.js":
|
|
198285
|
-
/*!****************************************************!*\
|
|
198286
|
-
!*** ./node_modules/escape-string-regexp/index.js ***!
|
|
198287
|
-
\****************************************************/
|
|
198288
|
-
/***/ ((module) => {
|
|
198289
|
-
|
|
198290
|
-
"use strict";
|
|
198291
|
-
|
|
198292
|
-
|
|
198293
|
-
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
|
|
198294
|
-
|
|
198295
|
-
module.exports = function (str) {
|
|
198296
|
-
if (typeof str !== 'string') {
|
|
198297
|
-
throw new TypeError('Expected a string');
|
|
198298
|
-
}
|
|
198299
|
-
|
|
198300
|
-
return str.replace(matchOperatorsRe, '\\$&');
|
|
198301
|
-
};
|
|
198302
|
-
|
|
198303
|
-
|
|
198304
198337
|
/***/ }),
|
|
198305
198338
|
|
|
198306
198339
|
/***/ "./node_modules/fbjs/lib/areEqual.js":
|