@kontur.candy/generator 5.79.0-diadoc-title-1.0 → 5.79.0-support-server-filters.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +118 -146
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -46495,9 +46495,6 @@ class KCLangRuntimeUtils {
|
|
|
46495
46495
|
if (typeof argument === "number") {
|
|
46496
46496
|
return argument.toString();
|
|
46497
46497
|
}
|
|
46498
|
-
if (typeof argument === "boolean") {
|
|
46499
|
-
return argument.toString();
|
|
46500
|
-
}
|
|
46501
46498
|
if (argument instanceof big_js__WEBPACK_IMPORTED_MODULE_0__["default"]) {
|
|
46502
46499
|
return argument.toString();
|
|
46503
46500
|
}
|
|
@@ -47258,6 +47255,16 @@ class ModelPathImpl {
|
|
|
47258
47255
|
}
|
|
47259
47256
|
return this;
|
|
47260
47257
|
}
|
|
47258
|
+
trimFirstStarIfLastToken() {
|
|
47259
|
+
const firstItem = _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.first(this.tokens);
|
|
47260
|
+
if (firstItem != undefined && PathTokens.isMultiToken(firstItem)) {
|
|
47261
|
+
return new ModelPathImpl(this.tokens.slice(1), this.absolute);
|
|
47262
|
+
}
|
|
47263
|
+
return this;
|
|
47264
|
+
}
|
|
47265
|
+
getSuffixPathFrom(modelFieldPath) {
|
|
47266
|
+
return createRelativeFromTokens(modelFieldPath.matchFor(this).map(x => x.kind === _PathMatcher__WEBPACK_IMPORTED_MODULE_4__.MatchKind.DifferentSuffix ? x.source : undefined).filter(_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.isNotNullOrUndefined).flatMap(x => x.getPathPartsAsArray()));
|
|
47267
|
+
}
|
|
47261
47268
|
getParentPath() {
|
|
47262
47269
|
const result = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_3__.ModelPathBuilder(this.absolute);
|
|
47263
47270
|
for (const token of _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.skipLast(this.getPathParts(), 1)) {
|
|
@@ -48784,9 +48791,6 @@ function isDate(date) {
|
|
|
48784
48791
|
return date instanceof Date && !isNaN(date.getTime());
|
|
48785
48792
|
}
|
|
48786
48793
|
function convertDate(dateValue) {
|
|
48787
|
-
if (isDate(dateValue)) {
|
|
48788
|
-
return dateValue;
|
|
48789
|
-
}
|
|
48790
48794
|
// dd.MM.yyyy
|
|
48791
48795
|
if (_Engine_ValidationHelper__WEBPACK_IMPORTED_MODULE_0__.ValidationHelper.isDateFormat(dateValue)) {
|
|
48792
48796
|
var _v$, _v$2, _v$3;
|
|
@@ -61439,7 +61443,7 @@ class FormSchemaRngAttribute {
|
|
|
61439
61443
|
}
|
|
61440
61444
|
const RootParent = Symbol.for("__ROOT_ELEMENT_PARENT__");
|
|
61441
61445
|
class FormSchemaRngElement {
|
|
61442
|
-
constructor(name, parent, optional, multiple, nillable, maxOccurs, lazyLoadMode, lazyLoadAggregations, errorAndWarningCountRequired, lazyLoadingThreshold, disableValueAutoInit, editorOnly) {
|
|
61446
|
+
constructor(name, parent, optional, multiple, nillable, maxOccurs, lazyLoadMode, lazyLoadAggregations, errorAndWarningCountRequired, lazyLoadingThreshold, disableValueAutoInit, editorOnly, useServerFilters) {
|
|
61443
61447
|
this.name = void 0;
|
|
61444
61448
|
this.multiple = void 0;
|
|
61445
61449
|
this.lazyLoadMode = void 0;
|
|
@@ -61450,6 +61454,7 @@ class FormSchemaRngElement {
|
|
|
61450
61454
|
this.innerTextType = void 0;
|
|
61451
61455
|
this.children = new Map();
|
|
61452
61456
|
this.maxOccurs = void 0;
|
|
61457
|
+
this.useServerFilters = void 0;
|
|
61453
61458
|
this.attributes = new Map();
|
|
61454
61459
|
this.parent = void 0;
|
|
61455
61460
|
this.optional = void 0;
|
|
@@ -61467,6 +61472,7 @@ class FormSchemaRngElement {
|
|
|
61467
61472
|
this.lazyLoadingThreshold = lazyLoadingThreshold;
|
|
61468
61473
|
this.disableValueAutoInit = disableValueAutoInit;
|
|
61469
61474
|
this.editorOnly = editorOnly;
|
|
61475
|
+
this.useServerFilters = useServerFilters;
|
|
61470
61476
|
}
|
|
61471
61477
|
addElement(element) {
|
|
61472
61478
|
this.children.set(element.name, element);
|
|
@@ -61500,6 +61506,9 @@ class FormSchemaRngElement {
|
|
|
61500
61506
|
var _this$disableValueAut2;
|
|
61501
61507
|
return (_this$disableValueAut2 = this.disableValueAutoInit) !== null && _this$disableValueAut2 !== void 0 ? _this$disableValueAut2 : this.parent instanceof FormSchemaRngElement ? this.parent.isIgnoreForcedValueSet() : false;
|
|
61502
61508
|
}
|
|
61509
|
+
getUseServerFilters() {
|
|
61510
|
+
return this.useServerFilters;
|
|
61511
|
+
}
|
|
61503
61512
|
}
|
|
61504
61513
|
class FormSchemaRng {
|
|
61505
61514
|
constructor(rootElement) {
|
|
@@ -61515,7 +61524,7 @@ class FormSchemaRng {
|
|
|
61515
61524
|
return new FormSchemaRng(this.convertSchemaRngElement(schemaRngElement, RootParent));
|
|
61516
61525
|
}
|
|
61517
61526
|
static convertSchemaRngElement(schemaRngElement, parent) {
|
|
61518
|
-
const result = new FormSchemaRngElement(schemaRngElement.name, parent, schemaRngElement.optional, schemaRngElement.multiple, schemaRngElement.nillable, schemaRngElement.maxOccurs, schemaRngElement.lazyLoadMode, schemaRngElement.lazyLoadAggregations, schemaRngElement.errorAndWarningCountRequired, schemaRngElement.lazyLoadingThreshold, schemaRngElement.disableValueAutoInit, schemaRngElement.editorOnly);
|
|
61527
|
+
const result = new FormSchemaRngElement(schemaRngElement.name, parent, schemaRngElement.optional, schemaRngElement.multiple, schemaRngElement.nillable, schemaRngElement.maxOccurs, schemaRngElement.lazyLoadMode, schemaRngElement.lazyLoadAggregations, schemaRngElement.errorAndWarningCountRequired, schemaRngElement.lazyLoadingThreshold, schemaRngElement.disableValueAutoInit, schemaRngElement.editorOnly, schemaRngElement.useServerFilters);
|
|
61519
61528
|
if (schemaRngElement.innerText != undefined) {
|
|
61520
61529
|
if (schemaRngElement.innerText.type != undefined) {
|
|
61521
61530
|
result.setInnerTextType(this.buildTypeInfo(schemaRngElement.innerText.type));
|
|
@@ -61814,7 +61823,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
61814
61823
|
|
|
61815
61824
|
|
|
61816
61825
|
|
|
61817
|
-
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _dec4, _class3, _class4, _descriptor2, _dec5, _dec6, _class5, _class6, _descriptor3, _dec7, _dec8, _class7, _class8, _descriptor4, _dec9, _dec10, _class9, _class10, _descriptor5, _dec11, _dec12, _class11, _class12, _descriptor6, _dec13, _dec14, _class13, _class14, _descriptor7, _dec15, _dec16, _class15, _class16, _descriptor8, _dec17, _dec18, _class17, _class18, _descriptor9, _dec19, _dec20, _class19, _class20, _descriptor10, _dec21, _dec22, _dec23, _class21, _class22, _descriptor11, _descriptor12, _dec24, _dec25, _dec26, _dec27, _dec28, _class23, _class24, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _class25, _class26, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _dec39, _dec40, _class27, _class28, _descriptor26, _dec41, _dec42, _class29, _class30, _descriptor27, _dec43, _dec44, _dec45, _dec46, _dec47, _dec48, _dec49, _dec50, _dec51, _dec52, _dec53, _dec54, _dec55, _dec56, _dec57, _dec58, _dec59, _class31, _class32, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43;
|
|
61826
|
+
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _dec4, _class3, _class4, _descriptor2, _dec5, _dec6, _class5, _class6, _descriptor3, _dec7, _dec8, _class7, _class8, _descriptor4, _dec9, _dec10, _class9, _class10, _descriptor5, _dec11, _dec12, _class11, _class12, _descriptor6, _dec13, _dec14, _class13, _class14, _descriptor7, _dec15, _dec16, _class15, _class16, _descriptor8, _dec17, _dec18, _class17, _class18, _descriptor9, _dec19, _dec20, _class19, _class20, _descriptor10, _dec21, _dec22, _dec23, _class21, _class22, _descriptor11, _descriptor12, _dec24, _dec25, _dec26, _dec27, _dec28, _class23, _class24, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _class25, _class26, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _dec39, _dec40, _class27, _class28, _descriptor26, _dec41, _dec42, _class29, _class30, _descriptor27, _dec43, _dec44, _dec45, _dec46, _dec47, _dec48, _dec49, _dec50, _dec51, _dec52, _dec53, _dec54, _dec55, _dec56, _dec57, _dec58, _dec59, _dec60, _class31, _class32, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _descriptor44;
|
|
61818
61827
|
|
|
61819
61828
|
class SchemaRngTypeCheck extends _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {}
|
|
61820
61829
|
let PatternTypeCheck = (_dec = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("pattern", ``), _dec2 = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("value", _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string.required, ``), _dec(_class = (_class2 = class PatternTypeCheck extends SchemaRngTypeCheck {
|
|
@@ -62061,7 +62070,7 @@ let SchemaRngElement = (_dec43 = (0,_generators_markupGenerator_Serializer_Sugar
|
|
|
62061
62070
|
- deferred: ставится на коллекцию, которую хотим получать частями; например, в 6-НДФЛ при открытии одной справки, загрузятся все данные по ней
|
|
62062
62071
|
- initial: данные загружаются всегда; например, данные для фильтров
|
|
62063
62072
|
- request: загрузка по запросу с фронта; используется для постраничного отображения списков; например, видимые пользователю поля в таблице
|
|
62064
|
-
`), _dec57 = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("errorAndWarningCountRequired", _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `Подсчет количества ошибок и предупреждений по элементу в множественности`), _dec58 = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("lazyLoadingThreshold", _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number, `Количество элементов в множественности, начиная с которого включается частичная загрузка. Не поддерживается для вложенных множественностей, только для корневой с lazyLoadMode=deferred`),
|
|
62073
|
+
`), _dec57 = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("errorAndWarningCountRequired", _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `Подсчет количества ошибок и предупреждений по элементу в множественности`), _dec58 = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("useServerFilters", _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, "Включает режим серверной фильтрации для коллекции"), _dec59 = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("lazyLoadingThreshold", _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.number, `Количество элементов в множественности, начиная с которого включается частичная загрузка. Не поддерживается для вложенных множественностей, только для корневой с lazyLoadMode=deferred`), _dec60 = (0,_generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("disableValueAutoInit", _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `В значениии true запрещает при кастомной нормализации перезаписывать значение value,
|
|
62065
62074
|
полученное из ФУФа, даже если оно пустое`), _dec43(_class31 = (_class32 = class SchemaRngElement extends _generators_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
62066
62075
|
constructor(...args) {
|
|
62067
62076
|
super(...args);
|
|
@@ -62079,8 +62088,9 @@ let SchemaRngElement = (_dec43 = (0,_generators_markupGenerator_Serializer_Sugar
|
|
|
62079
62088
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "lazyLoadAggregations", _descriptor39, this);
|
|
62080
62089
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "lazyLoadMode", _descriptor40, this);
|
|
62081
62090
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "errorAndWarningCountRequired", _descriptor41, this);
|
|
62082
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
62083
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
62091
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "useServerFilters", _descriptor42, this);
|
|
62092
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "lazyLoadingThreshold", _descriptor43, this);
|
|
62093
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disableValueAutoInit", _descriptor44, this);
|
|
62084
62094
|
}
|
|
62085
62095
|
}, _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class32.prototype, "name", [_dec44], {
|
|
62086
62096
|
configurable: true,
|
|
@@ -62152,12 +62162,17 @@ let SchemaRngElement = (_dec43 = (0,_generators_markupGenerator_Serializer_Sugar
|
|
|
62152
62162
|
enumerable: true,
|
|
62153
62163
|
writable: true,
|
|
62154
62164
|
initializer: null
|
|
62155
|
-
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class32.prototype, "
|
|
62165
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class32.prototype, "useServerFilters", [_dec58], {
|
|
62166
|
+
configurable: true,
|
|
62167
|
+
enumerable: true,
|
|
62168
|
+
writable: true,
|
|
62169
|
+
initializer: null
|
|
62170
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class32.prototype, "lazyLoadingThreshold", [_dec59], {
|
|
62156
62171
|
configurable: true,
|
|
62157
62172
|
enumerable: true,
|
|
62158
62173
|
writable: true,
|
|
62159
62174
|
initializer: null
|
|
62160
|
-
}),
|
|
62175
|
+
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class32.prototype, "disableValueAutoInit", [_dec60], {
|
|
62161
62176
|
configurable: true,
|
|
62162
62177
|
enumerable: true,
|
|
62163
62178
|
writable: true,
|
|
@@ -69289,6 +69304,9 @@ class DataDeclarationGenerator {
|
|
|
69289
69304
|
if (entry instanceof _common_SchemaRng_FormSchemaRng__WEBPACK_IMPORTED_MODULE_6__.FormSchemaRngElement && entry.errorAndWarningCountRequired != undefined) {
|
|
69290
69305
|
declarationEntry.errorAndWarningCountRequired = [entry.errorAndWarningCountRequired];
|
|
69291
69306
|
}
|
|
69307
|
+
if (entry instanceof _common_SchemaRng_FormSchemaRng__WEBPACK_IMPORTED_MODULE_6__.FormSchemaRngElement && entry.useServerFilters != undefined) {
|
|
69308
|
+
declarationEntry.useServerFilters = entry.useServerFilters;
|
|
69309
|
+
}
|
|
69292
69310
|
if (entry.disableValueAutoInit != undefined) {
|
|
69293
69311
|
declarationEntry.disableValueAutoInit = entry.disableValueAutoInit;
|
|
69294
69312
|
}
|
|
@@ -71210,7 +71228,9 @@ class LazyLoadDeclarationGenerator {
|
|
|
71210
71228
|
}
|
|
71211
71229
|
}
|
|
71212
71230
|
*processElement(path, element) {
|
|
71213
|
-
|
|
71231
|
+
var _element$useServerFil;
|
|
71232
|
+
const useServerFilters = (_element$useServerFil = element.useServerFilters) !== null && _element$useServerFil !== void 0 ? _element$useServerFil : false;
|
|
71233
|
+
if (element.lazyLoadMode != undefined && (!useServerFilters || element.lazyLoadMode === "deferred")) {
|
|
71214
71234
|
const adjustedPath = this.formSchemaRng.adjustPathMultiplicity(path.joinWith(element.name));
|
|
71215
71235
|
const currentPaths = element.multiple ? [element.lazyLoadMode === "deferred" ? adjustedPath : adjustedPath.joinWith(_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_3__.PathTokens.each)] : [adjustedPath.joinWith(_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_3__.PathTokens.each), this.formSchemaRng.adjustPathMultiplicity(path).joinWith(element.name + ".value")];
|
|
71216
71236
|
const items = currentPaths.map(currentPath => {
|
|
@@ -71231,32 +71251,38 @@ class LazyLoadDeclarationGenerator {
|
|
|
71231
71251
|
lazyLoadMode: "initial"
|
|
71232
71252
|
}));
|
|
71233
71253
|
yield* additionalItems;
|
|
71234
|
-
|
|
71235
|
-
|
|
71236
|
-
|
|
71237
|
-
|
|
71238
|
-
|
|
71239
|
-
|
|
71240
|
-
|
|
71241
|
-
|
|
71254
|
+
if (!useServerFilters) {
|
|
71255
|
+
yield {
|
|
71256
|
+
path: this.formSchemaRng.adjustPathMultiplicity(path.joinWith(element.name).joinWith(".errorsCount")),
|
|
71257
|
+
lazyLoadMode: "initial"
|
|
71258
|
+
};
|
|
71259
|
+
yield {
|
|
71260
|
+
path: this.formSchemaRng.adjustPathMultiplicity(path.joinWith(element.name).joinWith(".warningsCount")),
|
|
71261
|
+
lazyLoadMode: "initial"
|
|
71262
|
+
};
|
|
71263
|
+
}
|
|
71242
71264
|
} else {
|
|
71243
|
-
|
|
71244
|
-
|
|
71245
|
-
|
|
71246
|
-
|
|
71247
|
-
|
|
71248
|
-
|
|
71249
|
-
|
|
71250
|
-
|
|
71265
|
+
if (!useServerFilters) {
|
|
71266
|
+
yield {
|
|
71267
|
+
path: this.formSchemaRng.adjustPathMultiplicity(path.joinWith(element.name + ".errorsCount")),
|
|
71268
|
+
lazyLoadMode: "request"
|
|
71269
|
+
};
|
|
71270
|
+
yield {
|
|
71271
|
+
path: this.formSchemaRng.adjustPathMultiplicity(path.joinWith(element.name + ".warningsCount")),
|
|
71272
|
+
lazyLoadMode: "request"
|
|
71273
|
+
};
|
|
71274
|
+
}
|
|
71251
71275
|
}
|
|
71252
71276
|
}
|
|
71253
71277
|
for (const attr of element.attributes.values()) {
|
|
71254
|
-
if (
|
|
71255
|
-
|
|
71256
|
-
|
|
71257
|
-
|
|
71258
|
-
|
|
71259
|
-
|
|
71278
|
+
if (!useServerFilters) {
|
|
71279
|
+
if (attr.lazyLoadMode != undefined) {
|
|
71280
|
+
const currentPath = path.joinWith(element.name, attr.name + ".value");
|
|
71281
|
+
yield {
|
|
71282
|
+
path: this.formSchemaRng.adjustPathMultiplicity(currentPath),
|
|
71283
|
+
lazyLoadMode: attr.lazyLoadMode
|
|
71284
|
+
};
|
|
71285
|
+
}
|
|
71260
71286
|
}
|
|
71261
71287
|
if (attr.lazyLoadMode != undefined && attr.lazyLoadAggregations) {
|
|
71262
71288
|
const baseAggregationPath = this.formSchemaRng.adjustPathMultiplicity(path.joinWith(element.name)).trimLastStarIfLastToken().joinWith(attr.name);
|
|
@@ -76067,11 +76093,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76067
76093
|
let convertersFromNodeClassMap;
|
|
76068
76094
|
function buildConvertersFromNodeClassMap() {
|
|
76069
76095
|
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _ElementProcessors_FormParts_AttachmentForm_AttachmentFormConverter__WEBPACK_IMPORTED_MODULE_117__.AttachmentFormConverter, _ElementProcessors_Layout_Block_BlockConverter__WEBPACK_IMPORTED_MODULE_10__.BlockConverter, _ElementProcessors_Layout_Minitour_MinitourConverter__WEBPACK_IMPORTED_MODULE_11__.MinitourConverter, _ElementProcessors_Typography_Bold_BoldConverter__WEBPACK_IMPORTED_MODULE_13__.BoldConverter, _ElementProcessors_Layout_Br_BrConverter__WEBPACK_IMPORTED_MODULE_14__.BrConverter, _ElementProcessors_FormParts_Caption_CaptionConverter__WEBPACK_IMPORTED_MODULE_18__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_19__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_20__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_85__.TableCellConverter, _ElementProcessors_ValueEditors_Toggle_ToggleConverter__WEBPACK_IMPORTED_MODULE_88__.ToggleConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_21__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_22__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_23__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_97__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_24__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_25__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxConverter, _ElementProcessors_ValueEditors_RelativesComboBox_RelativesComboBoxConverter__WEBPACK_IMPORTED_MODULE_119__.RelativesComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_27__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_29__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_30__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_31__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_32__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_33__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_34__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_36__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_37__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_38__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_39__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_40__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_41__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_42__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_43__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_44__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_45__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_46__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_47__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_110__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_111__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_112__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_48__.IfConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_49__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_50__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_51__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_52__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_53__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_54__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_55__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_56__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_57__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_61__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_62__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_63__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_65__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_66__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_67__.PicklistConverter, _ElementProcessors_ValueEditors_TreePicklist_TreePicklistConverter__WEBPACK_IMPORTED_MODULE_118__.TreePicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_68__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_69__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_70__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_71__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_72__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_73__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_74__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_75__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_76__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_77__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_86__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_87__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_96__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_92__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_93__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_94__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_64__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_95__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_91__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_90__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_35__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_60__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_Action_DownloadExcelButton_DownloadExcelButtonConverter__WEBPACK_IMPORTED_MODULE_16__.DownloadExcelButtonConverter, _ElementProcessors_Action_DropDownButtonLoadExcel_DropDownButtonLoadExcelConverter__WEBPACK_IMPORTED_MODULE_17__.DropDownButtonLoadExcelConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_89__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_78__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_83__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_80__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_82__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_84__.StickyTableWithMultilineConverter, _ElementProcessors_Layout_Stack_StackConverter__WEBPACK_IMPORTED_MODULE_2__.StackConverter, _ElementProcessors_Layout_Grid_GridConverter__WEBPACK_IMPORTED_MODULE_1__.GridConverter, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelConverter__WEBPACK_IMPORTED_MODULE_6__.HeaderPanelConverter, _ElementProcessors_MultiControls_Tabs_TabsConverter__WEBPACK_IMPORTED_MODULE_5__.TabsConverter, _ElementProcessors_Action_DropdownButton_DropdownButtonConverter__WEBPACK_IMPORTED_MODULE_101__.DropdownButtonConverter, _ElementProcessors_ValueEditors_Fias_FiasConverter__WEBPACK_IMPORTED_MODULE_0__.FiasConverter, _ElementProcessors_MultiControls_FilterSelect_FilterSelectConverter__WEBPACK_IMPORTED_MODULE_3__.FilterSelectConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2Converter, _ElementProcessors_MultiControls_Table2_Table2RowConverter__WEBPACK_IMPORTED_MODULE_100__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_99__.Table2MultirowConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2ColumnConverter, _ElementProcessors_MultiControls_Table2_Table2Converter__WEBPACK_IMPORTED_MODULE_4__.Table2VerticalColumnConverter, _ElementProcessors_Layout_FixedTabs_FixedTabsConverter__WEBPACK_IMPORTED_MODULE_103__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_102__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_104__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_105__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_106__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_107__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_108__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_109__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_113__.DateViewConverter, _ElementProcessors_Action_Kebab_KebabConverter__WEBPACK_IMPORTED_MODULE_114__.KebabConverter, _ElementProcessors_Helpers_Clue_InfoBlockConverter__WEBPACK_IMPORTED_MODULE_115__.InfoBlockConverter, _ElementProcessors_ValueEditors_SelectAllCheckbox_SelectAllCheckboxConverter__WEBPACK_IMPORTED_MODULE_116__.SelectAllCheckboxConverter, _ElementProcessors_ValueEditors_SelectCheckbox_SelectCheckboxConverter__WEBPACK_IMPORTED_MODULE_120__.SelectCheckboxConverter, _ElementProcessors_FormParts_ModalHeader_ModalHeaderConverter__WEBPACK_IMPORTED_MODULE_121__.ModalHeaderConverter];
|
|
76070
|
-
return new Map(converters.
|
|
76071
|
-
let classes = converterClass.getAcceptNodeClass();
|
|
76072
|
-
classes = Array.isArray(classes) ? classes : [classes];
|
|
76073
|
-
return classes.map(c => [c, converterClass]);
|
|
76074
|
-
}));
|
|
76096
|
+
return new Map(converters.map(converterClass => [converterClass.getAcceptNodeClass(), converterClass]));
|
|
76075
76097
|
}
|
|
76076
76098
|
function getConverterByNodeClass(nodeClass) {
|
|
76077
76099
|
var _convertersFromNodeCl;
|
|
@@ -85105,31 +85127,30 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85105
85127
|
|
|
85106
85128
|
class ListItemConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.SugarNodeConverterBase {
|
|
85107
85129
|
static getAcceptNodeClass() {
|
|
85108
|
-
return
|
|
85130
|
+
return _ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode;
|
|
85109
85131
|
}
|
|
85110
85132
|
doBuildDataDeclaration(context) {
|
|
85111
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85133
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode);
|
|
85112
85134
|
return context.mergeDataDeclaration(context.addPathSectionDeclarationEntry(node), context.addVisibilityPathDeclEntryNew(node));
|
|
85113
85135
|
}
|
|
85114
85136
|
buildChildrenDataDeclaration(context) {
|
|
85115
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85137
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode);
|
|
85116
85138
|
return context.processChildrenDataDeclaration(node.children);
|
|
85117
85139
|
}
|
|
85118
85140
|
*doTraverseChildren() {
|
|
85119
|
-
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85141
|
+
const node = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode);
|
|
85120
85142
|
yield* node.children;
|
|
85121
85143
|
}
|
|
85122
85144
|
doConvert(context) {
|
|
85123
|
-
var _itemNode$paddingTop, _itemNode$paddingBott;
|
|
85124
|
-
const listNode = this.
|
|
85125
|
-
const itemNode = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.
|
|
85126
|
-
const firstItem = listNode.items.find(x => x instanceof _ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNodeBase);
|
|
85145
|
+
var _listNode$items$, _itemNode$paddingTop, _itemNode$paddingBott;
|
|
85146
|
+
const listNode = this.getParentStrictAs(_List_ListNode__WEBPACK_IMPORTED_MODULE_2__.ListNode);
|
|
85147
|
+
const itemNode = this.getCurrentNodeAs(_ListItemNode__WEBPACK_IMPORTED_MODULE_3__.ListItemNode);
|
|
85127
85148
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("ListItem");
|
|
85128
85149
|
markupBuilder.prop(x => x.bullet).set(listNode.bullet);
|
|
85129
85150
|
markupBuilder.prop(x => x.dash).set(listNode.dash);
|
|
85130
85151
|
markupBuilder.prop(x => x.inline).set(listNode.inline);
|
|
85131
85152
|
markupBuilder.prop(x => x.width).set(listNode.width);
|
|
85132
|
-
markupBuilder.prop(x => x.labelWidth).set(
|
|
85153
|
+
markupBuilder.prop(x => x.labelWidth).set((_listNode$items$ = listNode.items[0]) === null || _listNode$items$ === void 0 ? void 0 : _listNode$items$.width);
|
|
85133
85154
|
markupBuilder.prop(x => x.label).set(itemNode.label);
|
|
85134
85155
|
markupBuilder.prop(x => x.alignLabel).set(itemNode.alignLabel);
|
|
85135
85156
|
markupBuilder.prop(x => x.noPaddings).set(itemNode.noPaddings);
|
|
@@ -85152,9 +85173,7 @@ class ListItemConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__
|
|
|
85152
85173
|
"use strict";
|
|
85153
85174
|
__webpack_require__.r(__webpack_exports__);
|
|
85154
85175
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
85155
|
-
/* harmony export */
|
|
85156
|
-
/* harmony export */ ListItemNode: () => (/* binding */ ListItemNode),
|
|
85157
|
-
/* harmony export */ ListItemNodeBase: () => (/* binding */ ListItemNodeBase)
|
|
85176
|
+
/* harmony export */ ListItemNode: () => (/* binding */ ListItemNode)
|
|
85158
85177
|
/* harmony export */ });
|
|
85159
85178
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
85160
85179
|
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -85168,11 +85187,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85168
85187
|
|
|
85169
85188
|
|
|
85170
85189
|
|
|
85171
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _class, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9
|
|
85190
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9;
|
|
85172
85191
|
|
|
85173
85192
|
|
|
85174
85193
|
|
|
85175
|
-
let
|
|
85194
|
+
let ListItemNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("item", `Элемент списка`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("optional", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_3__.DeprecationReason.Removed), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("label", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, ``), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("noPaddings", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, ``), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("indent", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("alignLabel", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.enum("top", "center", "bottom"), ``), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("paddingTop", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.lengthUnit, ``), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("paddingBottom", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.lengthUnit, ``), _dec(_class = (_class2 = class ListItemNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_4__.SugarNodeWithLegacyVisibility {
|
|
85176
85195
|
constructor(...args) {
|
|
85177
85196
|
super(...args);
|
|
85178
85197
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor, this);
|
|
@@ -85185,54 +85204,52 @@ let ListItemNodeBase = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
|
|
|
85185
85204
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "paddingTop", _descriptor8, this);
|
|
85186
85205
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "paddingBottom", _descriptor9, this);
|
|
85187
85206
|
}
|
|
85188
|
-
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85207
|
+
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "optional", [_dec2], {
|
|
85189
85208
|
configurable: true,
|
|
85190
85209
|
enumerable: true,
|
|
85191
85210
|
writable: true,
|
|
85192
85211
|
initializer: null
|
|
85193
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85212
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "label", [_dec3], {
|
|
85194
85213
|
configurable: true,
|
|
85195
85214
|
enumerable: true,
|
|
85196
85215
|
writable: true,
|
|
85197
85216
|
initializer: null
|
|
85198
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85217
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec4], {
|
|
85199
85218
|
configurable: true,
|
|
85200
85219
|
enumerable: true,
|
|
85201
85220
|
writable: true,
|
|
85202
85221
|
initializer: null
|
|
85203
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85222
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "noPaddings", [_dec5], {
|
|
85204
85223
|
configurable: true,
|
|
85205
85224
|
enumerable: true,
|
|
85206
85225
|
writable: true,
|
|
85207
85226
|
initializer: null
|
|
85208
|
-
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85227
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "indent", [_dec6], {
|
|
85209
85228
|
configurable: true,
|
|
85210
85229
|
enumerable: true,
|
|
85211
85230
|
writable: true,
|
|
85212
85231
|
initializer: null
|
|
85213
|
-
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85232
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "alignLabel", [_dec7], {
|
|
85214
85233
|
configurable: true,
|
|
85215
85234
|
enumerable: true,
|
|
85216
85235
|
writable: true,
|
|
85217
85236
|
initializer: null
|
|
85218
|
-
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85237
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec8], {
|
|
85219
85238
|
configurable: true,
|
|
85220
85239
|
enumerable: true,
|
|
85221
85240
|
writable: true,
|
|
85222
85241
|
initializer: null
|
|
85223
|
-
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85242
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "paddingTop", [_dec9], {
|
|
85224
85243
|
configurable: true,
|
|
85225
85244
|
enumerable: true,
|
|
85226
85245
|
writable: true,
|
|
85227
85246
|
initializer: null
|
|
85228
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(
|
|
85247
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "paddingBottom", [_dec10], {
|
|
85229
85248
|
configurable: true,
|
|
85230
85249
|
enumerable: true,
|
|
85231
85250
|
writable: true,
|
|
85232
85251
|
initializer: null
|
|
85233
|
-
}), _class);
|
|
85234
|
-
let ListItemLegacyNode = (_dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("item", `Элемент списка`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem sync recursive .md$")), _dec10(_class2 = class ListItemLegacyNode extends ListItemNodeBase {}) || _class2);
|
|
85235
|
-
let ListItemNode = (_dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("listitem", `Элемент списка`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem sync recursive .md$")), _dec11(_class3 = class ListItemNode extends ListItemNodeBase {}) || _class3);
|
|
85252
|
+
}), _class2)) || _class);
|
|
85236
85253
|
|
|
85237
85254
|
/***/ }),
|
|
85238
85255
|
|
|
@@ -85299,12 +85316,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
85299
85316
|
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
85300
85317
|
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
85301
85318
|
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
85302
|
-
/* harmony import */ var
|
|
85303
|
-
/* harmony import */ var
|
|
85304
|
-
/* harmony import */ var
|
|
85305
|
-
/* harmony import */ var
|
|
85306
|
-
/* harmony import */ var _ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../ControlFlow/Switch/SwitchNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Switch/SwitchNode.ts");
|
|
85307
|
-
/* harmony import */ var _ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../ListItem/ListItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem/ListItemNode.ts");
|
|
85319
|
+
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
85320
|
+
/* harmony import */ var _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Serializer/SugarNodeWithLegacyVisibility */ "./Generator/src/generators/markupGenerator/Serializer/SugarNodeWithLegacyVisibility.ts");
|
|
85321
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
85322
|
+
/* harmony import */ var _ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../ListItem/ListItemNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Layout/ListItem/ListItemNode.ts");
|
|
85308
85323
|
|
|
85309
85324
|
|
|
85310
85325
|
|
|
@@ -85313,9 +85328,7 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _class, _class
|
|
|
85313
85328
|
|
|
85314
85329
|
|
|
85315
85330
|
|
|
85316
|
-
|
|
85317
|
-
|
|
85318
|
-
let ListNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("list", `Список`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_5__.DataBindingScopeMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(["item", "listitem", "if", "switch"], [_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_8__.ListItemNode, _ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_8__.ListItemLegacyNode, _ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_6__.IfNode, _ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_7__.SwitchNode]), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("inline", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("bullet", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, ``), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("dash", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.number, ``), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("itemPaddingTop", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.lengthUnit, `Отступ сверху для каждого элемента списка`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("itemPaddingBottom", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.lengthUnit, `Отступ снизу для каждого элемента списка`), _dec(_class = (_class2 = class ListNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
|
|
85331
|
+
let ListNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("list", `Список`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Layout/List sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingScopeMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("item", [_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_6__.ListItemNode]), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("inline", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, ``), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("bullet", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, ``), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("dash", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, ``), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("itemPaddingTop", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.lengthUnit, `Отступ сверху для каждого элемента списка`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("itemPaddingBottom", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.lengthUnit, `Отступ снизу для каждого элемента списка`), _dec(_class = (_class2 = class ListNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_4__.SugarNodeWithLegacyVisibility {
|
|
85319
85332
|
constructor(...args) {
|
|
85320
85333
|
super(...args);
|
|
85321
85334
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor, this);
|
|
@@ -89837,7 +89850,6 @@ class RemoveRowButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MOD
|
|
|
89837
89850
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("RemoveRowButton");
|
|
89838
89851
|
markupBuilder.prop("data-tid").set(node.tid);
|
|
89839
89852
|
markupBuilder.prop(x => x.hint).set(node.hint);
|
|
89840
|
-
markupBuilder.prop(x => x.type).set(node.type);
|
|
89841
89853
|
markupBuilder.prop(x => x.clearLastInstance).set((_node$clearLastInstan = node.clearLastInstance) !== null && _node$clearLastInstan !== void 0 ? _node$clearLastInstan : false);
|
|
89842
89854
|
return markupBuilder.buildConverterResult();
|
|
89843
89855
|
}
|
|
@@ -89866,15 +89878,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
89866
89878
|
|
|
89867
89879
|
|
|
89868
89880
|
|
|
89869
|
-
var _dec, _dec2, _dec3, _dec4,
|
|
89881
|
+
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3;
|
|
89870
89882
|
|
|
89871
|
-
let RemoveRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("removerowbutton", `Кнопка удаления множественного элемента в виде креста`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("clearLastInstance", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `При удалении последнего элемента он будет очищаться, а не удаляться`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("hint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.localizedString, ``),
|
|
89883
|
+
let RemoveRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.sugarNode)("removerowbutton", `Кнопка удаления множественного элемента в виде креста`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/RemoveRowButton sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.string, "Возможность установки произвольных data-tid атрибутов, может пригодиться другим командам, или для идентификации элемента в тестах"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("clearLastInstance", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, `При удалении последнего элемента он будет очищаться, а не удаляться`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("hint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.localizedString, ``), _dec(_class = (_class2 = class RemoveRowButtonNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
89872
89884
|
constructor(...args) {
|
|
89873
89885
|
super(...args);
|
|
89874
89886
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid", _descriptor, this);
|
|
89875
89887
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "clearLastInstance", _descriptor2, this);
|
|
89876
89888
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hint", _descriptor3, this);
|
|
89877
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "type", _descriptor4, this);
|
|
89878
89889
|
}
|
|
89879
89890
|
}, _descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tid", [_dec2], {
|
|
89880
89891
|
configurable: true,
|
|
@@ -89891,11 +89902,6 @@ let RemoveRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORT
|
|
|
89891
89902
|
enumerable: true,
|
|
89892
89903
|
writable: true,
|
|
89893
89904
|
initializer: null
|
|
89894
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "type", [_dec5], {
|
|
89895
|
-
configurable: true,
|
|
89896
|
-
enumerable: true,
|
|
89897
|
-
writable: true,
|
|
89898
|
-
initializer: null
|
|
89899
89905
|
}), _class2)) || _class);
|
|
89900
89906
|
|
|
89901
89907
|
/***/ }),
|
|
@@ -94355,11 +94361,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94355
94361
|
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
94356
94362
|
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
94357
94363
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/SetTooltipSettingsProps.ts");
|
|
94358
|
-
/* harmony import */ var
|
|
94359
|
-
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
94360
|
-
/* harmony import */ var _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./DiadocSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxNode.ts");
|
|
94361
|
-
|
|
94362
|
-
|
|
94364
|
+
/* harmony import */ var _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./DiadocSuggestComboBoxNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox/DiadocSuggestComboBoxNode.ts");
|
|
94363
94365
|
|
|
94364
94366
|
|
|
94365
94367
|
|
|
@@ -94368,30 +94370,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94368
94370
|
|
|
94369
94371
|
class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
94370
94372
|
static getAcceptNodeClass() {
|
|
94371
|
-
return
|
|
94373
|
+
return _DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_5__.DiadocSuggestComboBoxNode;
|
|
94372
94374
|
}
|
|
94373
94375
|
doBuildNodeValidations(validationGenerator) {
|
|
94374
|
-
const node = this.getCurrentNodeAs(
|
|
94376
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_5__.DiadocSuggestComboBoxNode);
|
|
94375
94377
|
validationGenerator.processValidations(this.getResolvedBindingPath(node), node.validationInfo.optional, validationGenerator.getTypeNode(node.validationInfo), undefined, node.validationInfo.emptydescription, undefined);
|
|
94376
94378
|
}
|
|
94377
|
-
*doBuildKCLangValidations(buildContext, formSchemaRng) {
|
|
94378
|
-
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_7__.DiadocSuggestComboBoxNode);
|
|
94379
|
-
const element = formSchemaRng.getElementByPath(node.getFullPath());
|
|
94380
|
-
const targetPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.createAbsoluteFromMask)(this.getResolvedBindingPath(node), _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_5__.PathTokens.each);
|
|
94381
|
-
const typeNode = buildContext.getTypeNode(node.validationInfo);
|
|
94382
|
-
const schemaTypeNode = buildContext.getSchemaTypeInfo(targetPath);
|
|
94383
|
-
const ownPath = node.getOwnPathForKCLang();
|
|
94384
|
-
if (typeNode == undefined && schemaTypeNode == undefined || ownPath == undefined) {
|
|
94385
|
-
return;
|
|
94386
|
-
}
|
|
94387
|
-
yield* buildContext.buildBasicValidations(ownPath, targetPath, typeNode, schemaTypeNode, node.validationInfo.optional == undefined ? element === null || element === void 0 ? void 0 : element.isOptional() : node.validationInfo.optional);
|
|
94388
|
-
}
|
|
94389
94379
|
get nodePaths() {
|
|
94390
|
-
const node = this.getCurrentNodeAs(
|
|
94380
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_5__.DiadocSuggestComboBoxNode);
|
|
94391
94381
|
return [(0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node)];
|
|
94392
94382
|
}
|
|
94393
94383
|
doBuildDataDeclaration(context) {
|
|
94394
|
-
const node = this.getCurrentNodeAs(
|
|
94384
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_5__.DiadocSuggestComboBoxNode);
|
|
94395
94385
|
return context.mergeDataDeclaration(context.addPathDeclEntry(node, [["value", context.initSequenceFactory.dataValue(node.dataBinding, false)], ["disabled", context.initSequenceFactory.disabled()]]), context.addSpecialFieldsEntry(node, {
|
|
94396
94386
|
optional: node.dataBinding.optional
|
|
94397
94387
|
}), context.addPathSectionDeclarationEntry(node, node.dataBinding.requisite), context.addVisibilityPathDeclEntryNew(node, node.dataBinding.requisite));
|
|
@@ -94403,7 +94393,7 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
94403
94393
|
// no children
|
|
94404
94394
|
}
|
|
94405
94395
|
doConvert(context) {
|
|
94406
|
-
const node = this.getCurrentNodeAs(
|
|
94396
|
+
const node = this.getCurrentNodeAs(_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_5__.DiadocSuggestComboBoxNode);
|
|
94407
94397
|
this.ensurePathExists(node, node.dataBinding.path);
|
|
94408
94398
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("DiadocSuggestComboBox");
|
|
94409
94399
|
markupBuilder.prop(x => x.allowTextWrap).set(node.allowTextWrap);
|
|
@@ -94413,12 +94403,6 @@ class DiadocSuggestComboBoxConverter extends _SugarNodeConverter__WEBPACK_IMPORT
|
|
|
94413
94403
|
markupBuilder.prop(x => x.query).set(context.generateHelperFunctionExpressionWithoutContext(node, "query", node.query));
|
|
94414
94404
|
markupBuilder.prop(x => x.width).set(node.width);
|
|
94415
94405
|
markupBuilder.prop(x => x.placeholder).set(node.placeholder);
|
|
94416
|
-
if (node.disabled2 != undefined) {
|
|
94417
|
-
markupBuilder.prop(x => x.disabled2).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_6__.buildExpressionPropValue)(node.disabled2));
|
|
94418
|
-
if (this.getLegacyNode().getParent() != undefined) {
|
|
94419
|
-
markupBuilder.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
|
|
94420
|
-
}
|
|
94421
|
-
}
|
|
94422
94406
|
(0,_CommonNodeProperties_TooltipProperties_SetTooltipSettingsProps__WEBPACK_IMPORTED_MODULE_4__.setTooltipSettingsProps)(markupBuilder, node.tooltipSettings);
|
|
94423
94407
|
return markupBuilder.buildConverterResult();
|
|
94424
94408
|
}
|
|
@@ -94448,31 +94432,28 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94448
94432
|
/* harmony import */ var _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Serializer/SugarNodeWithLegacyVisibility */ "./Generator/src/generators/markupGenerator/Serializer/SugarNodeWithLegacyVisibility.ts");
|
|
94449
94433
|
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
94450
94434
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
94451
|
-
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
94452
|
-
|
|
94453
94435
|
|
|
94454
94436
|
|
|
94455
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11;
|
|
94456
94437
|
|
|
94438
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10;
|
|
94457
94439
|
|
|
94458
94440
|
|
|
94459
94441
|
|
|
94460
94442
|
|
|
94461
94443
|
|
|
94462
|
-
let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("diadocsuggestcombobox", `Волшебный комбобокс для Диадока`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.
|
|
94444
|
+
let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("diadocsuggestcombobox", `Волшебный комбобокс для Диадока`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/DiadocSuggestComboBox sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_7__.TooltipSettingsNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("allowTextWrap", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("disablePortal", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("keyColWidth", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("query", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string.required, ``), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("placeholder", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, ``), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("displayValueField", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, ``), _dec(_class = (_class2 = class DiadocSuggestComboBoxNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__.SugarNodeWithLegacyVisibility {
|
|
94463
94445
|
constructor(...args) {
|
|
94464
94446
|
super(...args);
|
|
94465
94447
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
94466
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94467
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94468
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94469
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94470
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94471
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94472
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94473
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94474
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
94475
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "displayValueField", _descriptor11, this);
|
|
94448
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor2, this);
|
|
94449
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor3, this);
|
|
94450
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "allowTextWrap", _descriptor4, this);
|
|
94451
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disablePortal", _descriptor5, this);
|
|
94452
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "keyColWidth", _descriptor6, this);
|
|
94453
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor7, this);
|
|
94454
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "query", _descriptor8, this);
|
|
94455
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "placeholder", _descriptor9, this);
|
|
94456
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "displayValueField", _descriptor10, this);
|
|
94476
94457
|
}
|
|
94477
94458
|
getOwnPath() {
|
|
94478
94459
|
return this.dataBinding.getOwnPath();
|
|
@@ -94482,52 +94463,47 @@ let DiadocSuggestComboBoxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_
|
|
|
94482
94463
|
enumerable: true,
|
|
94483
94464
|
writable: true,
|
|
94484
94465
|
initializer: null
|
|
94485
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
94486
|
-
configurable: true,
|
|
94487
|
-
enumerable: true,
|
|
94488
|
-
writable: true,
|
|
94489
|
-
initializer: null
|
|
94490
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec4], {
|
|
94466
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec3], {
|
|
94491
94467
|
configurable: true,
|
|
94492
94468
|
enumerable: true,
|
|
94493
94469
|
writable: true,
|
|
94494
94470
|
initializer: null
|
|
94495
|
-
}),
|
|
94471
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec4], {
|
|
94496
94472
|
configurable: true,
|
|
94497
94473
|
enumerable: true,
|
|
94498
94474
|
writable: true,
|
|
94499
94475
|
initializer: null
|
|
94500
|
-
}),
|
|
94476
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "allowTextWrap", [_dec5], {
|
|
94501
94477
|
configurable: true,
|
|
94502
94478
|
enumerable: true,
|
|
94503
94479
|
writable: true,
|
|
94504
94480
|
initializer: null
|
|
94505
|
-
}),
|
|
94481
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disablePortal", [_dec6], {
|
|
94506
94482
|
configurable: true,
|
|
94507
94483
|
enumerable: true,
|
|
94508
94484
|
writable: true,
|
|
94509
94485
|
initializer: null
|
|
94510
|
-
}),
|
|
94486
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "keyColWidth", [_dec7], {
|
|
94511
94487
|
configurable: true,
|
|
94512
94488
|
enumerable: true,
|
|
94513
94489
|
writable: true,
|
|
94514
94490
|
initializer: null
|
|
94515
|
-
}),
|
|
94491
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec8], {
|
|
94516
94492
|
configurable: true,
|
|
94517
94493
|
enumerable: true,
|
|
94518
94494
|
writable: true,
|
|
94519
94495
|
initializer: null
|
|
94520
|
-
}),
|
|
94496
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "query", [_dec9], {
|
|
94521
94497
|
configurable: true,
|
|
94522
94498
|
enumerable: true,
|
|
94523
94499
|
writable: true,
|
|
94524
94500
|
initializer: null
|
|
94525
|
-
}),
|
|
94501
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "placeholder", [_dec10], {
|
|
94526
94502
|
configurable: true,
|
|
94527
94503
|
enumerable: true,
|
|
94528
94504
|
writable: true,
|
|
94529
94505
|
initializer: null
|
|
94530
|
-
}),
|
|
94506
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "displayValueField", [_dec11], {
|
|
94531
94507
|
configurable: true,
|
|
94532
94508
|
enumerable: true,
|
|
94533
94509
|
writable: true,
|
|
@@ -103259,9 +103235,6 @@ class SugarNodeConverterBase {
|
|
|
103259
103235
|
const parent = node.getParentStrict();
|
|
103260
103236
|
return this.getNodeAs(nodeClass, parent);
|
|
103261
103237
|
}
|
|
103262
|
-
getNearestParentOfType(nodeClass) {
|
|
103263
|
-
return this.node.findParentOfTypeStrict(nodeClass);
|
|
103264
|
-
}
|
|
103265
103238
|
getRequisites(fetchFunctions) {
|
|
103266
103239
|
const result = this.getRequisitesFromFetchFunction(fetchFunctions);
|
|
103267
103240
|
for (const outerPath of this.doGetRequisites()) {
|
|
@@ -103818,7 +103791,6 @@ function registerDefaultSugarNodes(result) {
|
|
|
103818
103791
|
result.registerNode(_ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_90__.SupNode);
|
|
103819
103792
|
result.registerNode(_ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_88__.SubNode);
|
|
103820
103793
|
result.registerNode(_ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_70__.ListNode);
|
|
103821
|
-
result.registerNode(_ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_66__.ListItemNode);
|
|
103822
103794
|
result.registerNode(_ElementProcessors_FormParts_DefaultContent_DefaultContentNode__WEBPACK_IMPORTED_MODULE_28__.DefaultContentNode);
|
|
103823
103795
|
result.registerNode(_ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_67__.KladrNode);
|
|
103824
103796
|
result.registerNode(_ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_58__.HighlightNode);
|