@kontur.candy/generator 5.86.0 → 5.87.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 +65 -47
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -61684,7 +61684,11 @@ function generateKCXmlExpression(expression, prefixPath = "") {
|
|
|
61684
61684
|
case "newline":
|
|
61685
61685
|
return `<m:newline />`;
|
|
61686
61686
|
case "regexMatch":
|
|
61687
|
-
|
|
61687
|
+
{
|
|
61688
|
+
const escapedPattern = escapeHtmlCharacters(expression.pattern);
|
|
61689
|
+
const pattern = escapedPattern.match(/[\^\$]/g) != undefined ? escapedPattern : `^(${escapedPattern})$`;
|
|
61690
|
+
return [`<m:regexMatch pattern="${pattern}">`, (0,_Common_IndentString__WEBPACK_IMPORTED_MODULE_2__.indent)(generateKCXmlExpression(expression.expression, prefixPath), 1), `</m:regexMatch>`].join("\n");
|
|
61691
|
+
}
|
|
61688
61692
|
case "choose":
|
|
61689
61693
|
return [`<m:choose>`, ` <m:if>`, (0,_Common_IndentString__WEBPACK_IMPORTED_MODULE_2__.indent)(generateKCXmlExpression(expression.if, prefixPath), 2), ` </m:if>`, ` <m:then>`, (0,_Common_IndentString__WEBPACK_IMPORTED_MODULE_2__.indent)(generateKCXmlExpression(expression.then, prefixPath), 2), ` </m:then>`, ` <m:else>`, (0,_Common_IndentString__WEBPACK_IMPORTED_MODULE_2__.indent)(generateKCXmlExpression(expression.else, prefixPath), 2), ` </m:else>`, `</m:choose>`].join("\n");
|
|
61690
61694
|
break;
|
|
@@ -81627,6 +81631,7 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
|
|
|
81627
81631
|
if (formNode.zeroreportoptions) {
|
|
81628
81632
|
formMarkupBuilder.prop(x => x.zeroReportOptions).set(this.getConverterResultFromAttributeWithMarkup(context, formNode.zeroreportoptions.children));
|
|
81629
81633
|
formMarkupBuilder.prop(x => x.zeroReportValidationPath).set(formNode.zeroreportoptions.dataScope.path);
|
|
81634
|
+
formMarkupBuilder.prop(x => x.zeroReportDescription).set(formNode.zeroreportoptions.description);
|
|
81630
81635
|
}
|
|
81631
81636
|
formMarkupBuilder.prop(x => x.unitInfos).set(pageNodes.map(pageNode => this.buildUnitInfo(context, pageNode, formNode)));
|
|
81632
81637
|
formMarkupBuilder.appendChild(formContent);
|
|
@@ -83922,14 +83927,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
83922
83927
|
|
|
83923
83928
|
|
|
83924
83929
|
|
|
83925
|
-
var _dec, _dec2, _dec3, _class, _class2, _descriptor, _descriptor2;
|
|
83930
|
+
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3;
|
|
83926
83931
|
|
|
83927
83932
|
|
|
83928
|
-
let ZeroReportOptionsNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("zeroreportoptions", `Используется для описания
|
|
83933
|
+
let ZeroReportOptionsNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("zeroreportoptions", `Используется для описания содержимого модальной формы создания нулевого отчёта`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/ZeroReportOptions sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.children)(), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("description", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, `Текст в модалке создания нулевого отчёта. Поддерживает markdown`), _dec(_class = (_class2 = class ZeroReportOptionsNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
83929
83934
|
constructor(...args) {
|
|
83930
83935
|
super(...args);
|
|
83931
83936
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor, this);
|
|
83932
83937
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor2, this);
|
|
83938
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "description", _descriptor3, this);
|
|
83933
83939
|
}
|
|
83934
83940
|
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dataScope", [_dec2], {
|
|
83935
83941
|
configurable: true,
|
|
@@ -83941,6 +83947,11 @@ let ZeroReportOptionsNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPO
|
|
|
83941
83947
|
enumerable: true,
|
|
83942
83948
|
writable: true,
|
|
83943
83949
|
initializer: null
|
|
83950
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "description", [_dec4], {
|
|
83951
|
+
configurable: true,
|
|
83952
|
+
enumerable: true,
|
|
83953
|
+
writable: true,
|
|
83954
|
+
initializer: null
|
|
83944
83955
|
}), _class2)) || _class);
|
|
83945
83956
|
|
|
83946
83957
|
/***/ }),
|
|
@@ -94470,7 +94481,7 @@ class CheckboxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__
|
|
|
94470
94481
|
var _node$dataBinding$def;
|
|
94471
94482
|
const defaultValue = (_node$dataBinding$def = node.dataBinding.defaultValue) !== null && _node$dataBinding$def !== void 0 ? _node$dataBinding$def : "";
|
|
94472
94483
|
if (defaultValue) {
|
|
94473
|
-
if (defaultValue === "checked") {
|
|
94484
|
+
if (defaultValue === "checked" || defaultValue === node.checkedValue) {
|
|
94474
94485
|
var _node$checkedValue;
|
|
94475
94486
|
return (_node$checkedValue = node.checkedValue) !== null && _node$checkedValue !== void 0 ? _node$checkedValue : true;
|
|
94476
94487
|
} else {
|
|
@@ -95875,11 +95886,12 @@ class FiasConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Sug
|
|
|
95875
95886
|
});
|
|
95876
95887
|
}
|
|
95877
95888
|
extractFnsOptions(options) {
|
|
95878
|
-
var _options$abbreviation, _options$withFederalT, _options$extendModal;
|
|
95889
|
+
var _options$abbreviation, _options$withFederalT, _options$extendModal, _options$hiddenFields;
|
|
95879
95890
|
return {
|
|
95880
95891
|
abbreviationSize: (_options$abbreviation = options.abbreviationSize) !== null && _options$abbreviation !== void 0 ? _options$abbreviation : "short",
|
|
95881
95892
|
withFederalTerritory: (_options$withFederalT = options.withFederalTerritory) !== null && _options$withFederalT !== void 0 ? _options$withFederalT : false,
|
|
95882
|
-
extendModal: (_options$extendModal = options.extendModal) !== null && _options$extendModal !== void 0 ? _options$extendModal : true
|
|
95893
|
+
extendModal: (_options$extendModal = options.extendModal) !== null && _options$extendModal !== void 0 ? _options$extendModal : true,
|
|
95894
|
+
hiddenFields: (_options$hiddenFields = options.hiddenFields) !== null && _options$hiddenFields !== void 0 ? _options$hiddenFields : []
|
|
95883
95895
|
};
|
|
95884
95896
|
}
|
|
95885
95897
|
extractMvdOptions(options) {
|
|
@@ -95924,7 +95936,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
95924
95936
|
|
|
95925
95937
|
|
|
95926
95938
|
|
|
95927
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _dec9, _dec10, _dec11, _class3, _class4, _descriptor8, _descriptor9, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _class5, _class6, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _dec26, _dec27, _dec28, _class7, _class8, _descriptor23, _descriptor24, _dec29, _dec30, _dec31, _dec32, _class9, _class10, _descriptor25, _descriptor26, _descriptor27,
|
|
95939
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _dec9, _dec10, _dec11, _class3, _class4, _descriptor8, _descriptor9, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _class5, _class6, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _dec26, _dec27, _dec28, _class7, _class8, _descriptor23, _descriptor24, _dec29, _dec30, _dec31, _dec32, _dec33, _class9, _class10, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _dec34, _dec35, _class11, _class12, _descriptor29, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _dec47, _dec48, _dec49, _dec50, _dec51, _dec52, _class13, _class14, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _descriptor44, _descriptor45;
|
|
95928
95940
|
|
|
95929
95941
|
|
|
95930
95942
|
|
|
@@ -96095,12 +96107,13 @@ let FiasChildren = (_dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MO
|
|
|
96095
96107
|
writable: true,
|
|
96096
96108
|
initializer: null
|
|
96097
96109
|
}), _class8)) || _class7);
|
|
96098
|
-
let FiasFnsOptions = (_dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("fnsoptions", "Фишки из фнс фиаса - только для ФНС форм!"), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("extendModal", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Расширенная модалка для фиаса. Только для ФНС форм, так как там одни пути."), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("withFederalTerritory", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Новый формат для обновленной фнс формы с новым муниципальным делением - федеральная территория. Пока как настройка - в дальнейшем если это станет обобщенным для всех фарматов, надо выпилить"), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("abbreviationSize", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.enum("long", "short"), "Полные или сокращенные аббревиатуры"), _dec29(_class9 = (_class10 = class FiasFnsOptions extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
96110
|
+
let FiasFnsOptions = (_dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("fnsoptions", "Фишки из фнс фиаса - только для ФНС форм!"), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("extendModal", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Расширенная модалка для фиаса. Только для ФНС форм, так как там одни пути."), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("withFederalTerritory", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Новый формат для обновленной фнс формы с новым муниципальным делением - федеральная территория. Пока как настройка - в дальнейшем если это станет обобщенным для всех фарматов, надо выпилить"), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("abbreviationSize", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.enum("long", "short"), "Полные или сокращенные аббревиатуры"), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("hiddenFields", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.array(_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.enum("Region", "District", "Settlement", "City", "Structure", "Street", "Stead", "House", "Housing", "Building", "Apartment", "Room", "Id")), "Какие поля не показывать"), _dec29(_class9 = (_class10 = class FiasFnsOptions extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
96099
96111
|
constructor(...args) {
|
|
96100
96112
|
super(...args);
|
|
96101
96113
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "extendModal", _descriptor25, this);
|
|
96102
96114
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withFederalTerritory", _descriptor26, this);
|
|
96103
96115
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "abbreviationSize", _descriptor27, this);
|
|
96116
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hiddenFields", _descriptor28, this);
|
|
96104
96117
|
}
|
|
96105
96118
|
}, _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "extendModal", [_dec30], {
|
|
96106
96119
|
configurable: true,
|
|
@@ -96117,120 +96130,125 @@ let FiasFnsOptions = (_dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
|
|
|
96117
96130
|
enumerable: true,
|
|
96118
96131
|
writable: true,
|
|
96119
96132
|
initializer: null
|
|
96133
|
+
}), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class10.prototype, "hiddenFields", [_dec33], {
|
|
96134
|
+
configurable: true,
|
|
96135
|
+
enumerable: true,
|
|
96136
|
+
writable: true,
|
|
96137
|
+
initializer: null
|
|
96120
96138
|
}), _class10)) || _class9);
|
|
96121
|
-
let FiasMvdOptions = (
|
|
96139
|
+
let FiasMvdOptions = (_dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("mvdoptions", "Фишки из мвд фиаса - только для МВД форм!"), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("extendModal", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Расширенная модалка для фиаса. Только для МВД форм, так как там одни пути."), _dec34(_class11 = (_class12 = class FiasMvdOptions extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
96122
96140
|
constructor(...args) {
|
|
96123
96141
|
super(...args);
|
|
96124
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "extendModal",
|
|
96142
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "extendModal", _descriptor29, this);
|
|
96125
96143
|
}
|
|
96126
|
-
},
|
|
96144
|
+
}, _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class12.prototype, "extendModal", [_dec35], {
|
|
96127
96145
|
configurable: true,
|
|
96128
96146
|
enumerable: true,
|
|
96129
96147
|
writable: true,
|
|
96130
96148
|
initializer: null
|
|
96131
96149
|
}), _class12)) || _class11);
|
|
96132
|
-
let FiasNode = (
|
|
96150
|
+
let FiasNode = (_dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("fias", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Fias sync recursive .md$")), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_7__.ValidationInfoNode), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_8__.TooltipSettingsNode), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("withSteads", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Земельные участки для формы"), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("title", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.localizedString, "Текст в титульнике лайтбокса"), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("pathToFullAddress", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.localizedString, "Путь, по которому будет засечен полный адрес"), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("searchToAddressLevel", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.enum("region", "district", "city", "street", "garhouse", "room"), `До какого элемента будет осуществлятся поиск.
|
|
96133
96151
|
Пример: House - поиск до дома.
|
|
96134
96152
|
Конечный - room, поиск до квартиры.
|
|
96135
|
-
По умолчанию - room`),
|
|
96153
|
+
По умолчанию - room`), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("division", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.enum("municipal", "administrative"), "Территориальное деление, по умолчанию - municipal"), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.deprecatedAttr)("withForeignCountry", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec46 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)("fiasfield", [FiasExtendedField]), _dec47 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.singleChild)("childrenoptions", [FiasChildren]), _dec48 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.singleChild)("fnsoptions", [FiasFnsOptions]), _dec49 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.singleChild)("mvdoptions", [FiasMvdOptions]), _dec50 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("onlyInput", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Временный костыль на то, чтобы показывать фиас в рамках багованного мультилайна"), _dec51 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.deprecatedAttr)("optionalIndex", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec52 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.deprecatedAttr)("postalTransfer", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec36(_class13 = (_class14 = class FiasNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
96136
96154
|
constructor(...args) {
|
|
96137
96155
|
super(...args);
|
|
96138
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding",
|
|
96139
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo",
|
|
96140
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings",
|
|
96141
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withSteads",
|
|
96142
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title",
|
|
96143
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToFullAddress",
|
|
96144
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "searchToAddressLevel",
|
|
96145
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "division",
|
|
96146
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withForeignCountry",
|
|
96147
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fiasfield",
|
|
96148
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "childrenoptions",
|
|
96149
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fnsoptions",
|
|
96150
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mvdoptions",
|
|
96151
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onlyInput",
|
|
96152
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optionalIndex",
|
|
96153
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "postalTransfer",
|
|
96156
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor30, this);
|
|
96157
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor31, this);
|
|
96158
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor32, this);
|
|
96159
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withSteads", _descriptor33, this);
|
|
96160
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor34, this);
|
|
96161
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pathToFullAddress", _descriptor35, this);
|
|
96162
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "searchToAddressLevel", _descriptor36, this);
|
|
96163
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "division", _descriptor37, this);
|
|
96164
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withForeignCountry", _descriptor38, this);
|
|
96165
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fiasfield", _descriptor39, this);
|
|
96166
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "childrenoptions", _descriptor40, this);
|
|
96167
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fnsoptions", _descriptor41, this);
|
|
96168
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mvdoptions", _descriptor42, this);
|
|
96169
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onlyInput", _descriptor43, this);
|
|
96170
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optionalIndex", _descriptor44, this);
|
|
96171
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "postalTransfer", _descriptor45, this);
|
|
96154
96172
|
}
|
|
96155
96173
|
getOwnPath() {
|
|
96156
96174
|
return this.dataBinding.getOwnPath();
|
|
96157
96175
|
}
|
|
96158
|
-
},
|
|
96176
|
+
}, _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "dataBinding", [_dec37], {
|
|
96159
96177
|
configurable: true,
|
|
96160
96178
|
enumerable: true,
|
|
96161
96179
|
writable: true,
|
|
96162
96180
|
initializer: null
|
|
96163
|
-
}),
|
|
96181
|
+
}), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "validationInfo", [_dec38], {
|
|
96164
96182
|
configurable: true,
|
|
96165
96183
|
enumerable: true,
|
|
96166
96184
|
writable: true,
|
|
96167
96185
|
initializer: null
|
|
96168
|
-
}),
|
|
96186
|
+
}), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "tooltipSettings", [_dec39], {
|
|
96169
96187
|
configurable: true,
|
|
96170
96188
|
enumerable: true,
|
|
96171
96189
|
writable: true,
|
|
96172
96190
|
initializer: null
|
|
96173
|
-
}),
|
|
96191
|
+
}), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "withSteads", [_dec40], {
|
|
96174
96192
|
configurable: true,
|
|
96175
96193
|
enumerable: true,
|
|
96176
96194
|
writable: true,
|
|
96177
96195
|
initializer: null
|
|
96178
|
-
}),
|
|
96196
|
+
}), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "title", [_dec41], {
|
|
96179
96197
|
configurable: true,
|
|
96180
96198
|
enumerable: true,
|
|
96181
96199
|
writable: true,
|
|
96182
96200
|
initializer: null
|
|
96183
|
-
}),
|
|
96201
|
+
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "pathToFullAddress", [_dec42], {
|
|
96184
96202
|
configurable: true,
|
|
96185
96203
|
enumerable: true,
|
|
96186
96204
|
writable: true,
|
|
96187
96205
|
initializer: null
|
|
96188
|
-
}),
|
|
96206
|
+
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "searchToAddressLevel", [_dec43], {
|
|
96189
96207
|
configurable: true,
|
|
96190
96208
|
enumerable: true,
|
|
96191
96209
|
writable: true,
|
|
96192
96210
|
initializer: null
|
|
96193
|
-
}),
|
|
96211
|
+
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "division", [_dec44], {
|
|
96194
96212
|
configurable: true,
|
|
96195
96213
|
enumerable: true,
|
|
96196
96214
|
writable: true,
|
|
96197
96215
|
initializer: null
|
|
96198
|
-
}),
|
|
96216
|
+
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "withForeignCountry", [_dec45], {
|
|
96199
96217
|
configurable: true,
|
|
96200
96218
|
enumerable: true,
|
|
96201
96219
|
writable: true,
|
|
96202
96220
|
initializer: null
|
|
96203
|
-
}),
|
|
96221
|
+
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "fiasfield", [_dec46], {
|
|
96204
96222
|
configurable: true,
|
|
96205
96223
|
enumerable: true,
|
|
96206
96224
|
writable: true,
|
|
96207
96225
|
initializer: null
|
|
96208
|
-
}),
|
|
96226
|
+
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "childrenoptions", [_dec47], {
|
|
96209
96227
|
configurable: true,
|
|
96210
96228
|
enumerable: true,
|
|
96211
96229
|
writable: true,
|
|
96212
96230
|
initializer: null
|
|
96213
|
-
}),
|
|
96231
|
+
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "fnsoptions", [_dec48], {
|
|
96214
96232
|
configurable: true,
|
|
96215
96233
|
enumerable: true,
|
|
96216
96234
|
writable: true,
|
|
96217
96235
|
initializer: null
|
|
96218
|
-
}),
|
|
96236
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "mvdoptions", [_dec49], {
|
|
96219
96237
|
configurable: true,
|
|
96220
96238
|
enumerable: true,
|
|
96221
96239
|
writable: true,
|
|
96222
96240
|
initializer: null
|
|
96223
|
-
}),
|
|
96241
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "onlyInput", [_dec50], {
|
|
96224
96242
|
configurable: true,
|
|
96225
96243
|
enumerable: true,
|
|
96226
96244
|
writable: true,
|
|
96227
96245
|
initializer: null
|
|
96228
|
-
}),
|
|
96246
|
+
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "optionalIndex", [_dec51], {
|
|
96229
96247
|
configurable: true,
|
|
96230
96248
|
enumerable: true,
|
|
96231
96249
|
writable: true,
|
|
96232
96250
|
initializer: null
|
|
96233
|
-
}),
|
|
96251
|
+
}), _descriptor45 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "postalTransfer", [_dec52], {
|
|
96234
96252
|
configurable: true,
|
|
96235
96253
|
enumerable: true,
|
|
96236
96254
|
writable: true,
|
|
@@ -99133,7 +99151,7 @@ class SelectCheckboxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODU
|
|
|
99133
99151
|
var _node$dataBinding$def;
|
|
99134
99152
|
const defaultValue = (_node$dataBinding$def = node.dataBinding.defaultValue) !== null && _node$dataBinding$def !== void 0 ? _node$dataBinding$def : "";
|
|
99135
99153
|
if (defaultValue) {
|
|
99136
|
-
if (defaultValue === "checked") {
|
|
99154
|
+
if (defaultValue === "checked" || defaultValue === node.checkedValue) {
|
|
99137
99155
|
var _node$checkedValue;
|
|
99138
99156
|
return (_node$checkedValue = node.checkedValue) !== null && _node$checkedValue !== void 0 ? _node$checkedValue : true;
|
|
99139
99157
|
} else {
|
|
@@ -100257,7 +100275,7 @@ class ToggleConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.S
|
|
|
100257
100275
|
var _node$dataBinding$def;
|
|
100258
100276
|
const defaultValue = (_node$dataBinding$def = node.dataBinding.defaultValue) !== null && _node$dataBinding$def !== void 0 ? _node$dataBinding$def : "";
|
|
100259
100277
|
if (defaultValue) {
|
|
100260
|
-
if (defaultValue === "checked") {
|
|
100278
|
+
if (defaultValue === "checked" || defaultValue === node.checkedValue) {
|
|
100261
100279
|
var _node$checkedValue;
|
|
100262
100280
|
return (_node$checkedValue = node.checkedValue) !== null && _node$checkedValue !== void 0 ? _node$checkedValue : true;
|
|
100263
100281
|
} else {
|