@kontur.candy/generator 4.281.0-fs-6809.0 → 4.281.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 +978 -490
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2749,6 +2749,38 @@ webpackContext.id = "./Generator/src/generators/markupGenerator/ElementProcessor
|
|
|
2749
2749
|
|
|
2750
2750
|
/***/ }),
|
|
2751
2751
|
|
|
2752
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView sync recursive .md$":
|
|
2753
|
+
/*!*****************************************************************************************************!*\
|
|
2754
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/ sync .md$ ***!
|
|
2755
|
+
\*****************************************************************************************************/
|
|
2756
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2757
|
+
|
|
2758
|
+
var map = {
|
|
2759
|
+
"./description.md": "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/description.md"
|
|
2760
|
+
};
|
|
2761
|
+
|
|
2762
|
+
|
|
2763
|
+
function webpackContext(req) {
|
|
2764
|
+
var id = webpackContextResolve(req);
|
|
2765
|
+
return __webpack_require__(id);
|
|
2766
|
+
}
|
|
2767
|
+
function webpackContextResolve(req) {
|
|
2768
|
+
if(!__webpack_require__.o(map, req)) {
|
|
2769
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
2770
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
2771
|
+
throw e;
|
|
2772
|
+
}
|
|
2773
|
+
return map[req];
|
|
2774
|
+
}
|
|
2775
|
+
webpackContext.keys = function webpackContextKeys() {
|
|
2776
|
+
return Object.keys(map);
|
|
2777
|
+
};
|
|
2778
|
+
webpackContext.resolve = webpackContextResolve;
|
|
2779
|
+
module.exports = webpackContext;
|
|
2780
|
+
webpackContext.id = "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView sync recursive .md$";
|
|
2781
|
+
|
|
2782
|
+
/***/ }),
|
|
2783
|
+
|
|
2752
2784
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO sync recursive .md$":
|
|
2753
2785
|
/*!************************************************************************************************!*\
|
|
2754
2786
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/ sync .md$ ***!
|
|
@@ -34523,7 +34555,7 @@ function highlight(code, options = {}) {
|
|
|
34523
34555
|
|
|
34524
34556
|
"use strict";
|
|
34525
34557
|
|
|
34526
|
-
const escapeStringRegexp = __webpack_require__(/*! escape-string-regexp */ "./node_modules/escape-string-regexp/index.js");
|
|
34558
|
+
const escapeStringRegexp = __webpack_require__(/*! escape-string-regexp */ "./node_modules/@babel/highlight/node_modules/escape-string-regexp/index.js");
|
|
34527
34559
|
const ansiStyles = __webpack_require__(/*! ansi-styles */ "./node_modules/ansi-styles/index.js");
|
|
34528
34560
|
const stdoutColor = (__webpack_require__(/*! supports-color */ "./node_modules/@babel/highlight/node_modules/supports-color/index.js").stdout);
|
|
34529
34561
|
|
|
@@ -34891,6 +34923,28 @@ module.exports = (chalk, tmp) => {
|
|
|
34891
34923
|
};
|
|
34892
34924
|
|
|
34893
34925
|
|
|
34926
|
+
/***/ }),
|
|
34927
|
+
|
|
34928
|
+
/***/ "./node_modules/@babel/highlight/node_modules/escape-string-regexp/index.js":
|
|
34929
|
+
/*!**********************************************************************************!*\
|
|
34930
|
+
!*** ./node_modules/@babel/highlight/node_modules/escape-string-regexp/index.js ***!
|
|
34931
|
+
\**********************************************************************************/
|
|
34932
|
+
/***/ ((module) => {
|
|
34933
|
+
|
|
34934
|
+
"use strict";
|
|
34935
|
+
|
|
34936
|
+
|
|
34937
|
+
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
|
|
34938
|
+
|
|
34939
|
+
module.exports = function (str) {
|
|
34940
|
+
if (typeof str !== 'string') {
|
|
34941
|
+
throw new TypeError('Expected a string');
|
|
34942
|
+
}
|
|
34943
|
+
|
|
34944
|
+
return str.replace(matchOperatorsRe, '\\$&');
|
|
34945
|
+
};
|
|
34946
|
+
|
|
34947
|
+
|
|
34894
34948
|
/***/ }),
|
|
34895
34949
|
|
|
34896
34950
|
/***/ "./node_modules/@babel/highlight/node_modules/has-flag/index.js":
|
|
@@ -112866,7 +112920,6 @@ class ModelPathImpl {
|
|
|
112866
112920
|
|
|
112867
112921
|
isResolved() {
|
|
112868
112922
|
return isAllTokensResolved(this.tokens);
|
|
112869
|
-
return this.tokens.every(PathTokens.isSimpleToken);
|
|
112870
112923
|
}
|
|
112871
112924
|
|
|
112872
112925
|
resolveAll(instance) {
|
|
@@ -112899,6 +112952,11 @@ class ModelPathImpl {
|
|
|
112899
112952
|
return this.tokens.slice(0, lastIterationIndex);
|
|
112900
112953
|
}
|
|
112901
112954
|
|
|
112955
|
+
isEndsWithIteration() {
|
|
112956
|
+
const lastItem = _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.last(this.tokens);
|
|
112957
|
+
return lastItem == PathTokens.each;
|
|
112958
|
+
}
|
|
112959
|
+
|
|
112902
112960
|
isAbsolute() {
|
|
112903
112961
|
return this.absolute;
|
|
112904
112962
|
}
|
|
@@ -127816,7 +127874,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
127816
127874
|
|
|
127817
127875
|
|
|
127818
127876
|
|
|
127819
|
-
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _class4, _dec4, _dec5, _class5, _class6, _descriptor2, _dec6, _dec7, _dec8, _dec9, _class8, _class9, _descriptor3, _descriptor4, _descriptor5, _dec10, _dec11, _class11, _class12, _descriptor6, _dec12, _dec13, _class14, _class15, _descriptor7, _dec14, _dec15, _class17, _class18, _descriptor8, _dec16, _dec17, _dec18, _class20, _class21, _descriptor9, _descriptor10, _dec19, _dec20, _class23, _class24, _descriptor11, _dec21, _dec22, _class26, _class27, _descriptor12, _dec23, _dec24, _class29, _class30, _descriptor13, _dec25, _dec26, _class32, _class33, _descriptor14, _dec27, _dec28, _class35, _class36, _descriptor15, _dec29, _dec30, _class38, _class39, _descriptor16, _dec31, _dec32, _class41, _class42, _descriptor17, _dec33, _dec34, _class44, _class45, _descriptor18, _dec35, _dec36, _class47, _class48, _descriptor19, _dec37, _dec38, _dec39, _dec40, _class50, _class51, _descriptor20, _descriptor21, _descriptor22, _dec41, _dec42, _class53, _class54, _descriptor23, _dec43, _dec44, _class56, _class57, _descriptor24, _dec45, _dec46, _dec47, _class59, _class60, _descriptor25, _descriptor26, _dec48, _dec49, _class62, _class63, _descriptor27, _dec50, _dec51, _class65, _class66, _descriptor28, _dec52, _dec53, _class68, _class69, _descriptor29, _dec54, _dec55, _class71, _class72, _descriptor30, _dec56, _dec57, _dec58, _class74, _class75, _descriptor31, _descriptor32, _dec59, _dec60, _dec61, _dec62, _class77, _class78, _descriptor33, _descriptor34, _descriptor35, _dec63, _dec64, _dec65, _class80, _class81, _descriptor36, _descriptor37, _dec66, _class83, _dec67, _dec68, _dec69, _class84, _class85, _descriptor38, _descriptor39, _dec70, _dec71, _class87, _class88, _descriptor40, _dec72, _dec73, _class90, _class91, _descriptor41, _dec74, _dec75, _class93, _class94, _descriptor42,
|
|
127877
|
+
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _class4, _dec4, _dec5, _class5, _class6, _descriptor2, _dec6, _dec7, _dec8, _dec9, _class8, _class9, _descriptor3, _descriptor4, _descriptor5, _dec10, _dec11, _class11, _class12, _descriptor6, _dec12, _dec13, _class14, _class15, _descriptor7, _dec14, _dec15, _class17, _class18, _descriptor8, _dec16, _dec17, _dec18, _class20, _class21, _descriptor9, _descriptor10, _dec19, _dec20, _class23, _class24, _descriptor11, _dec21, _dec22, _class26, _class27, _descriptor12, _dec23, _dec24, _class29, _class30, _descriptor13, _dec25, _dec26, _class32, _class33, _descriptor14, _dec27, _dec28, _class35, _class36, _descriptor15, _dec29, _dec30, _class38, _class39, _descriptor16, _dec31, _dec32, _class41, _class42, _descriptor17, _dec33, _dec34, _class44, _class45, _descriptor18, _dec35, _dec36, _class47, _class48, _descriptor19, _dec37, _dec38, _dec39, _dec40, _class50, _class51, _descriptor20, _descriptor21, _descriptor22, _dec41, _dec42, _class53, _class54, _descriptor23, _dec43, _dec44, _class56, _class57, _descriptor24, _dec45, _dec46, _dec47, _class59, _class60, _descriptor25, _descriptor26, _dec48, _dec49, _class62, _class63, _descriptor27, _dec50, _dec51, _class65, _class66, _descriptor28, _dec52, _dec53, _class68, _class69, _descriptor29, _dec54, _dec55, _class71, _class72, _descriptor30, _dec56, _dec57, _dec58, _class74, _class75, _descriptor31, _descriptor32, _dec59, _dec60, _dec61, _dec62, _class77, _class78, _descriptor33, _descriptor34, _descriptor35, _dec63, _dec64, _dec65, _class80, _class81, _descriptor36, _descriptor37, _dec66, _class83, _dec67, _dec68, _dec69, _class84, _class85, _descriptor38, _descriptor39, _dec70, _dec71, _class87, _class88, _descriptor40, _dec72, _dec73, _class90, _class91, _descriptor41, _dec74, _dec75, _dec76, _class93, _class94, _descriptor42, _descriptor43, _dec77, _dec78, _class96, _class97, _descriptor44, _dec79, _class99, _dec80, _dec81, _dec82, _dec83, _class100, _class101, _descriptor45, _descriptor46, _descriptor47, _dec84, _dec85, _class103, _class104, _descriptor48, _dec86, _dec87, _dec88, _dec89, _dec90, _dec91, _class106, _class107, _descriptor49, _descriptor50, _descriptor51, _descriptor52, _descriptor53, _dec92, _dec93, _class109, _class110, _descriptor54, _dec94, _dec95, _dec96, _class112, _class113, _descriptor55, _descriptor56;
|
|
127820
127878
|
|
|
127821
127879
|
|
|
127822
127880
|
|
|
@@ -128383,11 +128441,13 @@ let FormulaMultySumExpression = (_dec72 = (0,_markupGenerator_Serializer_SugarSe
|
|
|
128383
128441
|
writable: true,
|
|
128384
128442
|
initializer: null
|
|
128385
128443
|
})), _class91)) || _class90);
|
|
128386
|
-
let FormulaCountExpression = (_dec74 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("count", `TODO`), _dec75 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec74(_class93 = (_class94 = class FormulaCountExpression extends FormulaExpression {
|
|
128444
|
+
let FormulaCountExpression = (_dec74 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("count", `TODO`), _dec75 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("select", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec76 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("withNullOrEmptyValues", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `брать в расчет незаполненные экземпляры`), _dec74(_class93 = (_class94 = class FormulaCountExpression extends FormulaExpression {
|
|
128387
128445
|
constructor(...args) {
|
|
128388
128446
|
super(...args);
|
|
128389
128447
|
|
|
128390
128448
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "select", _descriptor42, this);
|
|
128449
|
+
|
|
128450
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withNullOrEmptyValues", _descriptor43, this);
|
|
128391
128451
|
}
|
|
128392
128452
|
|
|
128393
128453
|
}, (_descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class94.prototype, "select", [_dec75], {
|
|
@@ -128395,130 +128455,135 @@ let FormulaCountExpression = (_dec74 = (0,_markupGenerator_Serializer_SugarSeria
|
|
|
128395
128455
|
enumerable: true,
|
|
128396
128456
|
writable: true,
|
|
128397
128457
|
initializer: null
|
|
128458
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class94.prototype, "withNullOrEmptyValues", [_dec76], {
|
|
128459
|
+
configurable: true,
|
|
128460
|
+
enumerable: true,
|
|
128461
|
+
writable: true,
|
|
128462
|
+
initializer: null
|
|
128398
128463
|
})), _class94)) || _class93);
|
|
128399
|
-
let FormulaConcatExpression = (
|
|
128464
|
+
let FormulaConcatExpression = (_dec77 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("concat", `Конкатенация строк`), _dec78 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec77(_class96 = (_class97 = class FormulaConcatExpression extends FormulaExpression {
|
|
128400
128465
|
constructor(...args) {
|
|
128401
128466
|
super(...args);
|
|
128402
128467
|
|
|
128403
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "arguments",
|
|
128468
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "arguments", _descriptor44, this);
|
|
128404
128469
|
}
|
|
128405
128470
|
|
|
128406
|
-
}, (
|
|
128471
|
+
}, (_descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class97.prototype, "arguments", [_dec78], {
|
|
128407
128472
|
configurable: true,
|
|
128408
128473
|
enumerable: true,
|
|
128409
128474
|
writable: true,
|
|
128410
128475
|
initializer: null
|
|
128411
128476
|
})), _class97)) || _class96);
|
|
128412
|
-
let FormulaNewLineExpression = (
|
|
128413
|
-
let Formula = (
|
|
128477
|
+
let FormulaNewLineExpression = (_dec79 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("newline", `Перевод на новую строку`), _dec79(_class99 = class FormulaNewLineExpression extends FormulaExpression {}) || _class99);
|
|
128478
|
+
let Formula = (_dec80 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("formula", `TODO`), _dec81 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("match", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec82 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("target", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec83 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec80(_class100 = (_class101 = class Formula extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
128414
128479
|
constructor(...args) {
|
|
128415
128480
|
super(...args);
|
|
128416
128481
|
|
|
128417
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match",
|
|
128482
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match", _descriptor45, this);
|
|
128418
128483
|
|
|
128419
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target",
|
|
128484
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target", _descriptor46, this);
|
|
128420
128485
|
|
|
128421
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression",
|
|
128486
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor47, this);
|
|
128422
128487
|
}
|
|
128423
128488
|
|
|
128424
|
-
}, (
|
|
128489
|
+
}, (_descriptor45 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class101.prototype, "match", [_dec81], {
|
|
128425
128490
|
configurable: true,
|
|
128426
128491
|
enumerable: true,
|
|
128427
128492
|
writable: true,
|
|
128428
128493
|
initializer: null
|
|
128429
|
-
}),
|
|
128494
|
+
}), _descriptor46 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class101.prototype, "target", [_dec82], {
|
|
128430
128495
|
configurable: true,
|
|
128431
128496
|
enumerable: true,
|
|
128432
128497
|
writable: true,
|
|
128433
128498
|
initializer: null
|
|
128434
|
-
}),
|
|
128499
|
+
}), _descriptor47 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class101.prototype, "expression", [_dec83], {
|
|
128435
128500
|
configurable: true,
|
|
128436
128501
|
enumerable: true,
|
|
128437
128502
|
writable: true,
|
|
128438
128503
|
initializer: null
|
|
128439
128504
|
})), _class101)) || _class100);
|
|
128440
|
-
let Formulas = (
|
|
128505
|
+
let Formulas = (_dec84 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("formulas", `TODO`), _dec85 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("formula", [Formula]), _dec84(_class103 = (_class104 = class Formulas extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
128441
128506
|
constructor(...args) {
|
|
128442
128507
|
super(...args);
|
|
128443
128508
|
|
|
128444
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items",
|
|
128509
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items", _descriptor48, this);
|
|
128445
128510
|
}
|
|
128446
128511
|
|
|
128447
|
-
}, (
|
|
128512
|
+
}, (_descriptor48 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class104.prototype, "items", [_dec85], {
|
|
128448
128513
|
configurable: true,
|
|
128449
128514
|
enumerable: true,
|
|
128450
128515
|
writable: true,
|
|
128451
128516
|
initializer: null
|
|
128452
128517
|
})), _class104)) || _class103);
|
|
128453
|
-
let ConditionNode = (
|
|
128518
|
+
let ConditionNode = (_dec86 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("condition", `TODO`), _dec87 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("match", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec88 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("target", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec89 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("description", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, ``), _dec90 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("errorLevel", _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("Error", "Warning"), `Уровень ошибки может быть Error или Warning - параметр влияет на подсветку. Красную или Оранжевую соотвественно`), _dec91 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)(), _dec86(_class106 = (_class107 = class ConditionNode extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
128454
128519
|
constructor(...args) {
|
|
128455
128520
|
super(...args);
|
|
128456
128521
|
|
|
128457
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match",
|
|
128522
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "match", _descriptor49, this);
|
|
128458
128523
|
|
|
128459
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target",
|
|
128524
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "target", _descriptor50, this);
|
|
128460
128525
|
|
|
128461
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "description",
|
|
128526
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "description", _descriptor51, this);
|
|
128462
128527
|
|
|
128463
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "errorLevel",
|
|
128528
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "errorLevel", _descriptor52, this);
|
|
128464
128529
|
|
|
128465
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression",
|
|
128530
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "expression", _descriptor53, this);
|
|
128466
128531
|
}
|
|
128467
128532
|
|
|
128468
|
-
}, (
|
|
128533
|
+
}, (_descriptor49 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class107.prototype, "match", [_dec87], {
|
|
128469
128534
|
configurable: true,
|
|
128470
128535
|
enumerable: true,
|
|
128471
128536
|
writable: true,
|
|
128472
128537
|
initializer: null
|
|
128473
|
-
}),
|
|
128538
|
+
}), _descriptor50 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class107.prototype, "target", [_dec88], {
|
|
128474
128539
|
configurable: true,
|
|
128475
128540
|
enumerable: true,
|
|
128476
128541
|
writable: true,
|
|
128477
128542
|
initializer: null
|
|
128478
|
-
}),
|
|
128543
|
+
}), _descriptor51 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class107.prototype, "description", [_dec89], {
|
|
128479
128544
|
configurable: true,
|
|
128480
128545
|
enumerable: true,
|
|
128481
128546
|
writable: true,
|
|
128482
128547
|
initializer: null
|
|
128483
|
-
}),
|
|
128548
|
+
}), _descriptor52 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class107.prototype, "errorLevel", [_dec90], {
|
|
128484
128549
|
configurable: true,
|
|
128485
128550
|
enumerable: true,
|
|
128486
128551
|
writable: true,
|
|
128487
128552
|
initializer: null
|
|
128488
|
-
}),
|
|
128553
|
+
}), _descriptor53 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class107.prototype, "expression", [_dec91], {
|
|
128489
128554
|
configurable: true,
|
|
128490
128555
|
enumerable: true,
|
|
128491
128556
|
writable: true,
|
|
128492
128557
|
initializer: null
|
|
128493
128558
|
})), _class107)) || _class106);
|
|
128494
|
-
let ConditionsNode = (
|
|
128559
|
+
let ConditionsNode = (_dec92 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("conditions", `TODO`), _dec93 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("condition", [ConditionNode]), _dec92(_class109 = (_class110 = class ConditionsNode extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
128495
128560
|
constructor(...args) {
|
|
128496
128561
|
super(...args);
|
|
128497
128562
|
|
|
128498
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items",
|
|
128563
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items", _descriptor54, this);
|
|
128499
128564
|
}
|
|
128500
128565
|
|
|
128501
|
-
}, (
|
|
128566
|
+
}, (_descriptor54 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class110.prototype, "items", [_dec93], {
|
|
128502
128567
|
configurable: true,
|
|
128503
128568
|
enumerable: true,
|
|
128504
128569
|
writable: true,
|
|
128505
128570
|
initializer: null
|
|
128506
128571
|
})), _class110)) || _class109);
|
|
128507
|
-
let MathContainer = (
|
|
128572
|
+
let MathContainer = (_dec94 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("math", `TODO`), _dec95 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("formulas", [Formulas]), _dec96 = (0,_markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("conditions", [ConditionsNode]), _dec94(_class112 = (_class113 = class MathContainer extends _markupGenerator_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
128508
128573
|
constructor(...args) {
|
|
128509
128574
|
super(...args);
|
|
128510
128575
|
|
|
128511
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "formulas",
|
|
128576
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "formulas", _descriptor55, this);
|
|
128512
128577
|
|
|
128513
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "conditions",
|
|
128578
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "conditions", _descriptor56, this);
|
|
128514
128579
|
}
|
|
128515
128580
|
|
|
128516
|
-
}, (
|
|
128581
|
+
}, (_descriptor55 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class113.prototype, "formulas", [_dec95], {
|
|
128517
128582
|
configurable: true,
|
|
128518
128583
|
enumerable: true,
|
|
128519
128584
|
writable: true,
|
|
128520
128585
|
initializer: null
|
|
128521
|
-
}),
|
|
128586
|
+
}), _descriptor56 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class113.prototype, "conditions", [_dec96], {
|
|
128522
128587
|
configurable: true,
|
|
128523
128588
|
enumerable: true,
|
|
128524
128589
|
writable: true,
|
|
@@ -130638,11 +130703,20 @@ class KCXmlGeneratorBase {
|
|
|
130638
130703
|
}
|
|
130639
130704
|
|
|
130640
130705
|
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaCountExpression) {
|
|
130706
|
+
var _expression$withNullO;
|
|
130707
|
+
|
|
130641
130708
|
const modelPath = this.schema.adjustPathMultiplicity(prefix.joinWith((0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.createFromMask)(this.removeAttributePrefix(this.removeMultiplicity(expression.select)), false, _Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.PathTokens.each)).normalize());
|
|
130642
|
-
|
|
130643
|
-
|
|
130644
|
-
|
|
130645
|
-
|
|
130709
|
+
let finalPath = modelPath;
|
|
130710
|
+
|
|
130711
|
+
if (targetFullPath.isContainIteration()) {
|
|
130712
|
+
const argumentDependency = this.getArgumentDeps(targetFullPath, modelPath, "Count");
|
|
130713
|
+
deps.push(argumentDependency);
|
|
130714
|
+
finalPath = (0,_Common_ModelPath_ModelPath__WEBPACK_IMPORTED_MODULE_0__.isModelPath)(argumentDependency) ? argumentDependency : argumentDependency.modelPath;
|
|
130715
|
+
} else {
|
|
130716
|
+
deps.push(modelPath);
|
|
130717
|
+
}
|
|
130718
|
+
|
|
130719
|
+
return gcf(x => x.count, `"${finalPath.toLegacyPath()}"`, `"${(_expression$withNullO = expression.withNullOrEmptyValues) !== null && _expression$withNullO !== void 0 ? _expression$withNullO : false}"`);
|
|
130646
130720
|
}
|
|
130647
130721
|
|
|
130648
130722
|
if (expression instanceof _AutoCalculationsGenerator_AutoCalculationsFromFormulas_KCXmlContract_Formula__WEBPACK_IMPORTED_MODULE_1__.FormulaWhenExpression) {
|
|
@@ -133438,6 +133512,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
133438
133512
|
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Short/ShortConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortConverter.ts");
|
|
133439
133513
|
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/Long/LongConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongConverter.ts");
|
|
133440
133514
|
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintConverter.ts");
|
|
133515
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./ElementProcessors/ValueViewers/DateView/DateViewConverter */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewConverter.ts");
|
|
133516
|
+
|
|
133441
133517
|
|
|
133442
133518
|
|
|
133443
133519
|
|
|
@@ -133551,7 +133627,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
133551
133627
|
let convertersFromNodeClassMap;
|
|
133552
133628
|
|
|
133553
133629
|
function buildConvertersFromNodeClassMap() {
|
|
133554
|
-
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _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_16__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_17__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_18__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_83__.TableCellConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_19__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_20__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_21__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_94__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_22__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_23__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_24__.DiadocSuggestComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_25__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_26__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_27__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_28__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_29__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_30__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_31__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_32__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_34__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_35__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_36__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_37__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_38__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_39__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_40__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_41__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_42__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_43__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_44__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_45__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_107__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_108__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_109__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_46__.IfConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_47__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_48__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_49__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_50__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_51__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_52__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_53__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_54__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_55__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_56__.ModalFormConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_60__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_61__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_63__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_64__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_65__.PicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_66__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_67__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_68__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_69__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_70__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_71__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_72__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_73__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_74__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_75__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_84__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_85__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_93__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_89__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_90__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_91__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_62__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_92__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_88__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_87__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_33__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_57__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_86__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_76__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_77__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_78__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_80__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_82__.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_98__.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_97__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_96__.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_100__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_99__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_101__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_102__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_103__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_104__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_105__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_106__.BannerConverter];
|
|
133630
|
+
const converters = [_ElementProcessors_FormParts_AddPageButton_AddPageButtonConverter__WEBPACK_IMPORTED_MODULE_8__.AddPageButtonConverter, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonConverter__WEBPACK_IMPORTED_MODULE_9__.AddRowButtonConverter, _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_16__.CaptionConverter, _ElementProcessors_ValueEditors_Checkbox_CheckboxConverter__WEBPACK_IMPORTED_MODULE_17__.CheckboxConverter, _ElementProcessors_ControlFlow_Choice_ChoiceConverter__WEBPACK_IMPORTED_MODULE_18__.ChoiceConverter, _ElementProcessors_MultiControls_TableCell_TableCellConverter__WEBPACK_IMPORTED_MODULE_83__.TableCellConverter, _ElementProcessors_ValueEditors_Combobox_ComboBoxConverter__WEBPACK_IMPORTED_MODULE_19__.ComboBoxConverter, _ElementProcessors_FormParts_Content_ContentConverter__WEBPACK_IMPORTED_MODULE_20__.ContentConverter, _ElementProcessors_FormParts_Cross_CrossConverter__WEBPACK_IMPORTED_MODULE_21__.CrossConverter, _ElementProcessors_MultiControls_ColgroupButton_ColgroupButtonConverter__WEBPACK_IMPORTED_MODULE_94__.ColgroupButtonConverter, _ElementProcessors_ValueEditors_Date_DateConverter__WEBPACK_IMPORTED_MODULE_22__.DateConverter, _ElementProcessors_FormParts_DefaultContent_DefaultContentConverter__WEBPACK_IMPORTED_MODULE_23__.DefaultContentConverter, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxConverter__WEBPACK_IMPORTED_MODULE_24__.DiadocSuggestComboBoxConverter, _ElementProcessors_Typography_Entity_EntityConverter__WEBPACK_IMPORTED_MODULE_25__.EntityConverter, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteConverter__WEBPACK_IMPORTED_MODULE_26__.ExpertNoteConverter, _ElementProcessors_ValueEditors_FileLoader_FileLoaderConverter__WEBPACK_IMPORTED_MODULE_27__.FileLoaderConverter, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeConverter__WEBPACK_IMPORTED_MODULE_28__.FilterDateRangeConverter, _ElementProcessors_MultiControls_FilterInput_FilterInputConverter__WEBPACK_IMPORTED_MODULE_29__.FilterInputConverter, _ElementProcessors_MultiControls_FilterList_FilterListConverter__WEBPACK_IMPORTED_MODULE_30__.FilterListConverter, _ElementProcessors_ValueViewers_FIO_FIOConverter__WEBPACK_IMPORTED_MODULE_31__.FIOConverter, _ElementProcessors_Layout_Flexbox_FlexboxConverter__WEBPACK_IMPORTED_MODULE_32__.FlexboxConverter, _ElementProcessors_FormParts_Form_FormConverter__WEBPACK_IMPORTED_MODULE_34__.FormConverter, _ElementProcessors_FormParts_FormInfo_FormInfoConverter__WEBPACK_IMPORTED_MODULE_35__.FormInfoConverter, _ElementProcessors_Typography_Gray_GrayConverter__WEBPACK_IMPORTED_MODULE_36__.GrayConverter, _ElementProcessors_Layout_GridCol_GridColConverter__WEBPACK_IMPORTED_MODULE_37__.GridColConverter, _ElementProcessors_Layout_GridRow_GridRowConverter__WEBPACK_IMPORTED_MODULE_38__.GridRowConverter, _ElementProcessors_FormParts_Header_HeaderConverter__WEBPACK_IMPORTED_MODULE_39__.HeaderConverter, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuConverter__WEBPACK_IMPORTED_MODULE_40__.HeaderMenuConverter, _ElementProcessors_Helpers_Help_HelpConverter__WEBPACK_IMPORTED_MODULE_41__.HelpConverter, _ElementProcessors_Helpers_Helpinfo_HelpInfoConverter__WEBPACK_IMPORTED_MODULE_42__.HelpInfoConverter, _ElementProcessors_Typography_Highlight_HighlightConverter__WEBPACK_IMPORTED_MODULE_43__.HighlightConverter, _ElementProcessors_Layout_Hr_HrConverter__WEBPACK_IMPORTED_MODULE_44__.HrConverter, _ElementProcessors_Typography_Icon_IconConverter__WEBPACK_IMPORTED_MODULE_45__.IconConverter, _ElementProcessors_ControlFlow_Captions_Short_ShortConverter__WEBPACK_IMPORTED_MODULE_107__.ShortConverter, _ElementProcessors_ControlFlow_Captions_Long_LongConverter__WEBPACK_IMPORTED_MODULE_108__.LongConverter, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintConverter__WEBPACK_IMPORTED_MODULE_109__.FillHintConverter, _ElementProcessors_ControlFlow_If_IfConverter__WEBPACK_IMPORTED_MODULE_46__.IfConverter, _ElementProcessors_Layout_Img_ImgConverter__WEBPACK_IMPORTED_MODULE_47__.ImgConverter, _ElementProcessors_ValueEditors_INN_INNConverter__WEBPACK_IMPORTED_MODULE_48__.INNConverter, _ElementProcessors_ValueEditors_Input_InputConverter__WEBPACK_IMPORTED_MODULE_49__.InputConverter, _ElementProcessors_Typography_Italic_ItalicConverter__WEBPACK_IMPORTED_MODULE_50__.ItalicConverter, _ElementProcessors_Layout_ListItem_ListItemConverter__WEBPACK_IMPORTED_MODULE_51__.ListItemConverter, _ElementProcessors_ValueEditors_Kladr_KladrConverter__WEBPACK_IMPORTED_MODULE_52__.KladrConverter, _ElementProcessors_ValueViewers_Linetext_LinetextConverter__WEBPACK_IMPORTED_MODULE_53__.LinetextConverter, _ElementProcessors_Action_Link_LinkConverter__WEBPACK_IMPORTED_MODULE_54__.LinkConverter, _ElementProcessors_Layout_List_ListConverter__WEBPACK_IMPORTED_MODULE_55__.ListConverter, _ElementProcessors_Modal_ModalForm_ModalFormConverter__WEBPACK_IMPORTED_MODULE_56__.ModalFormConverter, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelConverter__WEBPACK_IMPORTED_MODULE_59__.ModalFormLabelConverter, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldConverter__WEBPACK_IMPORTED_MODULE_60__.MultilineFieldConverter, _ElementProcessors_Helpers_Normativehelp_NormativeHelpConverter__WEBPACK_IMPORTED_MODULE_61__.NormativeHelpConverter, _ElementProcessors_FormParts_Page_PageConverter__WEBPACK_IMPORTED_MODULE_63__.PageConverter, _ElementProcessors_Layout_Pencil_PencilConverter__WEBPACK_IMPORTED_MODULE_64__.PencilConverter, _ElementProcessors_ValueEditors_Picklist_PicklistConverter__WEBPACK_IMPORTED_MODULE_65__.PicklistConverter, _ElementProcessors_ValueEditors_radio_RadioConverter__WEBPACK_IMPORTED_MODULE_66__.RadioConverter, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupConverter__WEBPACK_IMPORTED_MODULE_67__.RadioGroupConverter, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonConverter__WEBPACK_IMPORTED_MODULE_68__.RemoveRowButtonConverter, _ElementProcessors_ValueEditors_Select_SelectConverter__WEBPACK_IMPORTED_MODULE_69__.SelectConverter, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupConverter__WEBPACK_IMPORTED_MODULE_70__.SortRadioGroupConverter, _ElementProcessors_Layout_Spoiler_SpoilerConverter__WEBPACK_IMPORTED_MODULE_71__.SpoilerConverter, _ElementProcessors_Typography_Strong_StrongConverter__WEBPACK_IMPORTED_MODULE_72__.StrongConverter, _ElementProcessors_Typography_Sub_SubConverter__WEBPACK_IMPORTED_MODULE_73__.SubConverter, _ElementProcessors_Layout_Subheader_SubheaderConverter__WEBPACK_IMPORTED_MODULE_74__.SubheaderConverter, _ElementProcessors_Typography_Sup_SupConverter__WEBPACK_IMPORTED_MODULE_75__.SupConverter, _ElementProcessors_ValueViewers_Text_TextConverter__WEBPACK_IMPORTED_MODULE_84__.TextConverter, _ElementProcessors_ValueEditors_Textarea_TextAreaConverter__WEBPACK_IMPORTED_MODULE_85__.TextAreaConverter, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaConverter__WEBPACK_IMPORTED_MODULE_93__.PopupTextAreaConverter, _ElementProcessors_ValueViewers_ValueLength_ValueLengthConverter__WEBPACK_IMPORTED_MODULE_89__.ValueLengthConverter, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockConverter__WEBPACK_IMPORTED_MODULE_90__.VisibilityBlockConverter, _ElementProcessors_Layout_Warning_WarningConverter__WEBPACK_IMPORTED_MODULE_91__.WarningConverter, _ElementProcessors_Layout_InnerText_InnertextConverter__WEBPACK_IMPORTED_MODULE_7__.InnertextConverter, _ElementProcessors_ControlFlow_Otherwise_OtherwiseConverter__WEBPACK_IMPORTED_MODULE_62__.OtherwiseConverter, _ElementProcessors_ControlFlow_When_WhenConverter__WEBPACK_IMPORTED_MODULE_92__.WhenConverter, _ElementProcessors_FormParts_UnitList_UnitListConverter__WEBPACK_IMPORTED_MODULE_88__.UnitListConverter, _ElementProcessors_FormParts_UnitItem_UnitItemConverter__WEBPACK_IMPORTED_MODULE_87__.UnitItemConverter, _ElementProcessors_Modal_Body_BodyConverter__WEBPACK_IMPORTED_MODULE_12__.BodyConverter, _ElementProcessors_Modal_Footer_FooterConverter__WEBPACK_IMPORTED_MODULE_33__.FooterConverter, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmConverter__WEBPACK_IMPORTED_MODULE_58__.ModalFormConfirmConverter, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelConverter__WEBPACK_IMPORTED_MODULE_57__.ModalFormCancelConverter, _ElementProcessors_Action_Button_ButtonConverter__WEBPACK_IMPORTED_MODULE_15__.ButtonConverter, _ElementProcessors_FormParts_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_86__.TourConverter, _ElementProcessors_ControlFlow_Switch_SwitchConverter__WEBPACK_IMPORTED_MODULE_76__.SwitchConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableColumnConverter__WEBPACK_IMPORTED_MODULE_81__.StickyTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableColumnConverter__WEBPACK_IMPORTED_MODULE_77__.CrossfitTableColumnConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableColumnConverter__WEBPACK_IMPORTED_MODULE_79__.SimpleTableColumnConverter, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableConverter__WEBPACK_IMPORTED_MODULE_78__.CrossfitTableConverter, _ElementProcessors_Layout_SimpleTable_SimpleTableConverter__WEBPACK_IMPORTED_MODULE_80__.SimpleTableConverter, _ElementProcessors_MultiControls_StickyTable_StickyTableWithMultilineConverter__WEBPACK_IMPORTED_MODULE_82__.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_98__.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_97__.Table2RowConverter, _ElementProcessors_MultiControls_Table2_Table2MultirowConverter__WEBPACK_IMPORTED_MODULE_96__.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_100__.FixedTabsConverter, _ElementProcessors_Layout_FixedTabs_FixedTabConverter__WEBPACK_IMPORTED_MODULE_99__.FixedTabConverter, _ElementProcessors_MultiControls_Multiple_MultipleConverter__WEBPACK_IMPORTED_MODULE_101__.MultipleConverter, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelConverter__WEBPACK_IMPORTED_MODULE_102__.ExcelPastePanelConverter, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsConverter__WEBPACK_IMPORTED_MODULE_103__.ReferencedFieldsConverter, _ElementProcessors_FormParts_UserPicklist_UserPicklistConverter__WEBPACK_IMPORTED_MODULE_104__.UserPicklistConverter, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateConverter__WEBPACK_IMPORTED_MODULE_105__.TaxRebateConverter, _ElementProcessors_FormParts_Banner_BannerConverter__WEBPACK_IMPORTED_MODULE_106__.BannerConverter, _ElementProcessors_ValueViewers_DateView_DateViewConverter__WEBPACK_IMPORTED_MODULE_110__.DateViewConverter];
|
|
133555
133631
|
return new Map(converters.map(converterClass => [converterClass.getAcceptNodeClass(), converterClass]));
|
|
133556
133632
|
}
|
|
133557
133633
|
|
|
@@ -134514,7 +134590,9 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11
|
|
|
134514
134590
|
|
|
134515
134591
|
|
|
134516
134592
|
|
|
134517
|
-
let ButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("button",
|
|
134593
|
+
let ButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("button", `Кнопка
|
|
134594
|
+
|
|
134595
|
+
В приоритете в качестве текста будет взят value из модели по path. Даже если в сахаре указать текст вручную.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Action/Button sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataReferenceMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("align", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("center", "end", "justify", "left", "match-parent", "right", "start"), "Выравнивание"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("arrow", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string, "Кнопка со стрелкой"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.markupAttr)("hint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string, "Всплывающая подсказка при наведении"), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("disabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, "Disabled"), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("size", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("small", "medium", "large"), "Размер кнопки. По умолчанинию small"), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("type", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("button", "submit", "reset"), "Тип, влияет на цвет. см. в retail-ui"), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("use", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("default", "primary", "success", "danger", "pay", "link"), "Вариант использования, влияет на цвет. см. в retail-ui"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.lengthUnit, "Ширина"), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("onClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике"), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec(_class = (_class2 = class ButtonNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_4__.SugarNodeWithLegacyVisibility {
|
|
134518
134596
|
constructor(...args) {
|
|
134519
134597
|
super(...args);
|
|
134520
134598
|
|
|
@@ -135259,6 +135337,47 @@ let DataReferenceMixinNode = (_dec10 = (0,_Serializer_SugarSerializer__WEBPACK_I
|
|
|
135259
135337
|
|
|
135260
135338
|
/***/ }),
|
|
135261
135339
|
|
|
135340
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FocusManagementNode.ts":
|
|
135341
|
+
/*!****************************************************************************************************************!*\
|
|
135342
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FocusManagementNode.ts ***!
|
|
135343
|
+
\****************************************************************************************************************/
|
|
135344
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
135345
|
+
|
|
135346
|
+
"use strict";
|
|
135347
|
+
__webpack_require__.r(__webpack_exports__);
|
|
135348
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
135349
|
+
/* harmony export */ "FocusManagementNode": () => (/* binding */ FocusManagementNode)
|
|
135350
|
+
/* harmony export */ });
|
|
135351
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
135352
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
135353
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
|
|
135354
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
135355
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
135356
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
135357
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
135358
|
+
|
|
135359
|
+
|
|
135360
|
+
|
|
135361
|
+
|
|
135362
|
+
var _dec, _dec2, _class, _class2, _descriptor;
|
|
135363
|
+
|
|
135364
|
+
|
|
135365
|
+
let FocusManagementNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrMixinNode)(), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attr)("exclusiveFocusByPath", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.attrType.boolean, "Получать фокус только на элементе, помеченном этим атрибутом (при нескольких элементах на одном пути)"), _dec(_class = (_class2 = class FocusManagementNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_3__.SugarNodeBase {
|
|
135366
|
+
constructor(...args) {
|
|
135367
|
+
super(...args);
|
|
135368
|
+
|
|
135369
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "exclusiveFocusByPath", _descriptor, this);
|
|
135370
|
+
}
|
|
135371
|
+
|
|
135372
|
+
}, (_descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "exclusiveFocusByPath", [_dec2], {
|
|
135373
|
+
configurable: true,
|
|
135374
|
+
enumerable: true,
|
|
135375
|
+
writable: true,
|
|
135376
|
+
initializer: null
|
|
135377
|
+
})), _class2)) || _class);
|
|
135378
|
+
|
|
135379
|
+
/***/ }),
|
|
135380
|
+
|
|
135262
135381
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FontWeight.ts":
|
|
135263
135382
|
/*!*******************************************************************************************************!*\
|
|
135264
135383
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FontWeight.ts ***!
|
|
@@ -136835,7 +136954,7 @@ class BannerConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__.S
|
|
|
136835
136954
|
|
|
136836
136955
|
if (node.iconSrc != undefined && node.sourceXmlNode.source != undefined) {
|
|
136837
136956
|
if (_common_SugarPathUtils__WEBPACK_IMPORTED_MODULE_4__.SugarPathUtils.isAbsoluteIncludePath(node.iconSrc)) {
|
|
136838
|
-
throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_5__.SugarAttributeReadError("Поддерживаются только относительные пути для картинок: путь должен начинаться с ./ или ../", node, "
|
|
136957
|
+
throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_5__.SugarAttributeReadError("Поддерживаются только относительные пути для картинок: путь должен начинаться с ./ или ../", node, "iconSrc");
|
|
136839
136958
|
} else {
|
|
136840
136959
|
const imageExt = path__WEBPACK_IMPORTED_MODULE_0___default().extname(node.iconSrc).replace(".", "");
|
|
136841
136960
|
let resource;
|
|
@@ -136892,7 +137011,7 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11
|
|
|
136892
137011
|
|
|
136893
137012
|
|
|
136894
137013
|
|
|
136895
|
-
let BannerNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("banner", `Баннер, позволяющий в виде рекламы рассказать о чем либо`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("name", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Имя баннера, обязательный параметр"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("customSugar", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если true - пишем сахар внутри баннера, если false передаем header, text и ссылку"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("header", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это заголовок в нем"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string,
|
|
137014
|
+
let BannerNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("banner", `Баннер, позволяющий в виде рекламы рассказать о чем либо`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Banner sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("name", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Имя баннера, обязательный параметр"), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("customSugar", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если true - пишем сахар внутри баннера, если false передаем header, text и ссылку"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("header", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это заголовок в нем"), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, `Если банер не кастомный, то это текст в нем. Можно добавить ссылку вида "[Пример ссылки](https://example.com/) в тексте"`), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("icon", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это icon в base64 https://www.base64-image.de/ в нем"), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("clickableText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это текст на который нажимать в нем, стрелочку рисуем →, по умолчанию Открыть статью"), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("href", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Если банер не кастомный, то это href в нем"), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("useButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если банер не кастомный, то это можно использовать кнопку вместо ссылки в нем"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("allowClose", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Разрешает закрывать баннер - появляется кнопка закрытия. можно использовать closeButtonColor"), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("closeButtonColor", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Цвет для расскраски кнопки закрытия в hex формате например #F2F2F2"), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("background", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "Путь до изображения которое будет установлено на фоне. Изображение должно находиться в папке N. Поддерживаемые расширения png,jpg"), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("useFeatureFlag", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, "При использовании свойства, баннер будет показан только под указанным в свойстве фича флагом, например @featureFlags/news6ndfl"), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("bannerTheme", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType["enum"]("light", "dark"), "Тема баннера, по умолчанию белый фон черный текст"), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("arrowInButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.boolean, "Если банер не кастомный, есть ли стрелка в кнопке"), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("iconSrc", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.pathToFile, "Если банер не кастомный, то иконка в формате *.png"), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(), _dec(_class = (_class2 = class BannerNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
|
|
136896
137015
|
constructor(...args) {
|
|
136897
137016
|
super(...args);
|
|
136898
137017
|
|
|
@@ -137657,6 +137776,10 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
|
|
|
137657
137776
|
formMarkupBuilder.appendChild(userPicklistMarkupBuilder);
|
|
137658
137777
|
}
|
|
137659
137778
|
|
|
137779
|
+
if (formNode.onExternalInitSection) {
|
|
137780
|
+
formMarkupBuilder.prop(x => x.externalInitSectionAction).set(context.generateHelperFunctionExpression(formNode, "onClick", formNode.onExternalInitSection));
|
|
137781
|
+
}
|
|
137782
|
+
|
|
137660
137783
|
formMarkupBuilder.prop(x => x.unitInfos).set(pageNodes.map(pageNode => this.buildUnitInfo(context, pageNode, formNode)));
|
|
137661
137784
|
formMarkupBuilder.appendChild(formContent);
|
|
137662
137785
|
const result = formMarkupBuilder.buildConverterResult();
|
|
@@ -137735,7 +137858,9 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
|
|
|
137735
137858
|
pageActions: pageNode.pageActions,
|
|
137736
137859
|
hideEnableAutoValues: pageNode.hideEnableAutoValues,
|
|
137737
137860
|
showOnDemand: pageNode.showOnDemand,
|
|
137738
|
-
onNavigateFromErrorLog: context.generateHelperFunctionExpressionWithoutContext(pageNode, "onNavigateFromErrorLog", pageNode.onNavigateFromErrorLog)
|
|
137861
|
+
onNavigateFromErrorLog: context.generateHelperFunctionExpressionWithoutContext(pageNode, "onNavigateFromErrorLog", pageNode.onNavigateFromErrorLog),
|
|
137862
|
+
onMount: context.generateHelperFunctionExpression(pageNode, "onMount", pageNode.onMount),
|
|
137863
|
+
onUnmount: context.generateHelperFunctionExpression(pageNode, "onUnmount", pageNode.onUnmount)
|
|
137739
137864
|
};
|
|
137740
137865
|
return result;
|
|
137741
137866
|
}
|
|
@@ -137749,7 +137874,7 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
|
|
|
137749
137874
|
hiddenPanelBuilder.appendChild(_Tour_TourConverter__WEBPACK_IMPORTED_MODULE_11__.TourConverter.getNoTourMarkup());
|
|
137750
137875
|
}
|
|
137751
137876
|
|
|
137752
|
-
hiddenPanelBuilder.createChild("HiddenPanelContent").appendChild(this.buildRegularFormContent(node));
|
|
137877
|
+
hiddenPanelBuilder.createChild("HiddenPanelContent").appendChild(this.buildRegularFormContent(node, context));
|
|
137753
137878
|
hiddenPanelBuilder.createChild("HiddenPanelMenu").appendChild(this.buildRegularFormPanel(context, node));
|
|
137754
137879
|
return this.buildBaseFormWithContent(context, hiddenPanelBuilder, node);
|
|
137755
137880
|
}
|
|
@@ -137773,18 +137898,18 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
|
|
|
137773
137898
|
return panelBuilder;
|
|
137774
137899
|
}
|
|
137775
137900
|
|
|
137776
|
-
buildRegularFormContent(node) {
|
|
137901
|
+
buildRegularFormContent(node, context) {
|
|
137777
137902
|
const navigationBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)("Navigation");
|
|
137778
137903
|
navigationBuilder.prop(x => x.maxUnitsCount).set(node.maxUnitsCount);
|
|
137779
137904
|
|
|
137780
137905
|
for (const pageNode of node.pages.filter(x => !x.showOnDemand)) {
|
|
137781
|
-
navigationBuilder.appendChild(this.buildPageUnit(node, pageNode));
|
|
137906
|
+
navigationBuilder.appendChild(this.buildPageUnit(node, pageNode, context));
|
|
137782
137907
|
}
|
|
137783
137908
|
|
|
137784
137909
|
return navigationBuilder;
|
|
137785
137910
|
}
|
|
137786
137911
|
|
|
137787
|
-
buildPageUnit(node, pageNode) {
|
|
137912
|
+
buildPageUnit(node, pageNode, context) {
|
|
137788
137913
|
var _node$panel2;
|
|
137789
137914
|
|
|
137790
137915
|
const unitList = (_node$panel2 = node.panel) === null || _node$panel2 === void 0 ? void 0 : _node$panel2.unitList;
|
|
@@ -137840,6 +137965,8 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
|
|
|
137840
137965
|
}
|
|
137841
137966
|
|
|
137842
137967
|
markupBuilder.prop(x => x.optional).set(pageNode.optional);
|
|
137968
|
+
markupBuilder.prop(x => x.onMount).set(context.generateHelperFunctionExpression(pageNode, "onMount", pageNode.onMount));
|
|
137969
|
+
markupBuilder.prop(x => x.onUnmount).set(context.generateHelperFunctionExpression(pageNode, "onUnmount", pageNode.onUnmount));
|
|
137843
137970
|
|
|
137844
137971
|
if (pageNode.pageActions != undefined) {
|
|
137845
137972
|
markupBuilder.prop(x => x.pageActions).set(pageNode.pageActions);
|
|
@@ -137851,7 +137978,7 @@ class FormConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_7__.Sug
|
|
|
137851
137978
|
|
|
137852
137979
|
const pageMarkupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_5__.componentMarkupBuilder)([], this.getPageName(pageNode));
|
|
137853
137980
|
markupBuilder.appendChild(pageMarkupBuilder);
|
|
137854
|
-
markupBuilder.appendChildren(pageNode.pages.map(x => this.buildPageUnit(node, x)));
|
|
137981
|
+
markupBuilder.appendChildren(pageNode.pages.map(x => this.buildPageUnit(node, x, context)));
|
|
137855
137982
|
return markupBuilder;
|
|
137856
137983
|
}
|
|
137857
137984
|
|
|
@@ -138009,7 +138136,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
138009
138136
|
|
|
138010
138137
|
|
|
138011
138138
|
|
|
138012
|
-
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _dec4, _dec5, _class4, _class5, _descriptor2, _descriptor3, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _dec47, _class7, _class8, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _descriptor44;
|
|
138139
|
+
var _dec, _dec2, _class, _class2, _descriptor, _dec3, _dec4, _dec5, _class4, _class5, _descriptor2, _descriptor3, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _dec47, _dec48, _class7, _class8, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _descriptor44, _descriptor45;
|
|
138013
138140
|
|
|
138014
138141
|
|
|
138015
138142
|
|
|
@@ -138056,7 +138183,7 @@ let ModalTitleNode = (_dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_M
|
|
|
138056
138183
|
initializer: null
|
|
138057
138184
|
})), _class5)) || _class4);
|
|
138058
138185
|
let FormNode = (_dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("form", `Корневой элемент формы.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Form sync recursive .md$")), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingScopeMixinNode), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("userpicklist", [_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_10__.UserPicklistNode]), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("tour", [_Tour_TourNode__WEBPACK_IMPORTED_MODULE_9__.TourNode]), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("fetchfunctions", [FetchFunctionsReferenceNode]), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("modalIE8", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("m", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("uf", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("forceNavigate", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("hideUnitsAdder", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("hasRegionalForms", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.UntypedUsage), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("controls"), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("modalheader", [ModalTitleNode]), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("import", [_SugarNodes_Nodes_ImportNode__WEBPACK_IMPORTED_MODULE_7__.ImportNode]), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("panel", [_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_12__.PanelNode]), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("page", [_Page_PageNode__WEBPACK_IMPORTED_MODULE_8__.PageNode]), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("simple", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("schemaValidations", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("isReadOnly", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отобразить форму в режиме чтения - все редактирование будет отключено (включая интерактивные элементы - валидации, фокус, подсветки тултипы и тд)"), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("ieDeprecationWarningEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отображать окно с предупреждением, что некоторые функции в ie не работают, с предложением скачать другие браузеры. Не блокирует взаимодействие"), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("compactActionPanel", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Отображать компактную плашку (без надписей) на панели действий слева"), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("enableCustomizationButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, "Включить кнопку настройки оформления"), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("ieSizeLimitation", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Это флаг включает отображение заглушки для IE, если фуф больше определенного размера`), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("templates", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Управляет влючение возможность создавать и применять шаблоны keweb-а (кнопка в меню)`), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("plain", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Форма без боковой панели, которая будет содержать один раздел`), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("requisite", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Есть подозрение что это свойство не используется`), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("cssWidth", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `Более преоритетный чем обычный width, задается как css`), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("buttonSettingsType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType["enum"](_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.Revise, _Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.DigitalWarrant), `Разные настройки кнопок отправить и действий с формой. Сейчас есть только ${_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.Revise} / ${_Common_Enums_ButtonSettingsTypeEnum__WEBPACK_IMPORTED_MODULE_11__.ButtonSettingsTypeEnum.DigitalWarrant} который будет делать кнопки в плашке для simple form как у ИОН или Сверке ФСС`), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("validationBeforeSend", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Локальная проверка, которая не даст отправить форму, если есть невалидные поля.\n
|
|
138059
|
-
После проверки фокус падает на невалидное поле, если это возможно. Например на input`), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("padding", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("maxunitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `По дефолту 15. Если количество разделов превышает \`maxunitscount\`, начинает работать частичный рендеринг. Отрисовывается столько разделов вниз от текущего, сколько задано в настройке, а при скроллинге вниз рендерятся следующие. Используется для больших форм с множественными разделами (напр, ЕНВД, Прибыль), помогает облегчить загрузку редактора`), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("unitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``),
|
|
138186
|
+
После проверки фокус падает на невалидное поле, если это возможно. Например на input`), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("padding", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("maxunitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `По дефолту 15. Если количество разделов превышает \`maxunitscount\`, начинает работать частичный рендеринг. Отрисовывается столько разделов вниз от текущего, сколько задано в настройке, а при скроллинге вниз рендерятся следующие. Используется для больших форм с множественными разделами (напр, ЕНВД, Прибыль), помогает облегчить загрузку редактора`), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("onExternalInitSection", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.helperFunctionName, `Выполнение хелпер функции при вызове keweb-ого лайтбокса от внешних ребят. Когда редактор открывается из Контур Бухагалтерии или ТО. Чтобы вызвать - надо в query params передать initSectionLightbox="Path" где Path - путь до раздела`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("unitscount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("transferText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, `Текст в лайтбоксе, который появляется по кнопке "Перенести данные"`), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("navigationLimit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `Количество множественных разделов при котором навигация сворачивается (в левой колонке отображаются не все экземпляры), как выглядит можешь посмотреть в ЕНВД при количестве разделов 2 больше 15`), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadFufButtonEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Включает кнопку загрузить отчет в "Другие действия" в панели слева.`), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.markupAttr)("fufSizeTooLargeErrorText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `Описание ошибки для большого размера файла`), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadFufLightboxHideDemandNameButton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Отключает кнопку "Показать имя требования" внутри лайтбокса Загрузки файла.`), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("uploadInquiryButtonEnabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Включает кнопку загрузить справки в панели слева. (только для 6ндфл и РСВ)`), _dec46 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("defaultUnitsCountForPaging", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, `Количество инстансов множественного раздела на котором включается паджинация раздела`), _dec47 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("type", [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_3__.TypeNode]), _dec48 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("types", [_TypeListNode__WEBPACK_IMPORTED_MODULE_13__.TypeListNode]), _dec6(_class7 = (_class8 = class FormNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
|
|
138060
138187
|
constructor(...args) {
|
|
138061
138188
|
super(...args);
|
|
138062
138189
|
|
|
@@ -138122,25 +138249,27 @@ let FormNode = (_dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
138122
138249
|
|
|
138123
138250
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxUnitsCount", _descriptor34, this);
|
|
138124
138251
|
|
|
138125
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138252
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onExternalInitSection", _descriptor35, this);
|
|
138126
138253
|
|
|
138127
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138254
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "unitsCount", _descriptor36, this);
|
|
138128
138255
|
|
|
138129
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138256
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "transferText", _descriptor37, this);
|
|
138130
138257
|
|
|
138131
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138258
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor38, this);
|
|
138132
138259
|
|
|
138133
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138260
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufButtonEnabled", _descriptor39, this);
|
|
138134
138261
|
|
|
138135
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138262
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "fufSizeTooLargeErrorText", _descriptor40, this);
|
|
138136
138263
|
|
|
138137
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138264
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadFufLightboxHideDemandNameButton", _descriptor41, this);
|
|
138138
138265
|
|
|
138139
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138266
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uploadInquiryButtonEnabled", _descriptor42, this);
|
|
138140
138267
|
|
|
138141
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138268
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "defaultUnitsCountForPaging", _descriptor43, this);
|
|
138142
138269
|
|
|
138143
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
138270
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "types", _descriptor44, this);
|
|
138271
|
+
|
|
138272
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "typeLists", _descriptor45, this);
|
|
138144
138273
|
}
|
|
138145
138274
|
|
|
138146
138275
|
getOwnPath() {
|
|
@@ -138310,52 +138439,57 @@ let FormNode = (_dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
138310
138439
|
enumerable: true,
|
|
138311
138440
|
writable: true,
|
|
138312
138441
|
initializer: null
|
|
138313
|
-
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138442
|
+
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "onExternalInitSection", [_dec38], {
|
|
138314
138443
|
configurable: true,
|
|
138315
138444
|
enumerable: true,
|
|
138316
138445
|
writable: true,
|
|
138317
138446
|
initializer: null
|
|
138318
|
-
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138447
|
+
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "unitsCount", [_dec39], {
|
|
138319
138448
|
configurable: true,
|
|
138320
138449
|
enumerable: true,
|
|
138321
138450
|
writable: true,
|
|
138322
138451
|
initializer: null
|
|
138323
|
-
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138452
|
+
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "transferText", [_dec40], {
|
|
138324
138453
|
configurable: true,
|
|
138325
138454
|
enumerable: true,
|
|
138326
138455
|
writable: true,
|
|
138327
138456
|
initializer: null
|
|
138328
|
-
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138457
|
+
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "navigationLimit", [_dec41], {
|
|
138329
138458
|
configurable: true,
|
|
138330
138459
|
enumerable: true,
|
|
138331
138460
|
writable: true,
|
|
138332
138461
|
initializer: null
|
|
138333
|
-
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138462
|
+
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadFufButtonEnabled", [_dec42], {
|
|
138334
138463
|
configurable: true,
|
|
138335
138464
|
enumerable: true,
|
|
138336
138465
|
writable: true,
|
|
138337
138466
|
initializer: null
|
|
138338
|
-
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138467
|
+
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "fufSizeTooLargeErrorText", [_dec43], {
|
|
138339
138468
|
configurable: true,
|
|
138340
138469
|
enumerable: true,
|
|
138341
138470
|
writable: true,
|
|
138342
138471
|
initializer: null
|
|
138343
|
-
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138472
|
+
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadFufLightboxHideDemandNameButton", [_dec44], {
|
|
138344
138473
|
configurable: true,
|
|
138345
138474
|
enumerable: true,
|
|
138346
138475
|
writable: true,
|
|
138347
138476
|
initializer: null
|
|
138348
|
-
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138477
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "uploadInquiryButtonEnabled", [_dec45], {
|
|
138349
138478
|
configurable: true,
|
|
138350
138479
|
enumerable: true,
|
|
138351
138480
|
writable: true,
|
|
138352
138481
|
initializer: null
|
|
138353
|
-
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138482
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "defaultUnitsCountForPaging", [_dec46], {
|
|
138354
138483
|
configurable: true,
|
|
138355
138484
|
enumerable: true,
|
|
138356
138485
|
writable: true,
|
|
138357
138486
|
initializer: null
|
|
138358
|
-
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
138487
|
+
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "types", [_dec47], {
|
|
138488
|
+
configurable: true,
|
|
138489
|
+
enumerable: true,
|
|
138490
|
+
writable: true,
|
|
138491
|
+
initializer: null
|
|
138492
|
+
}), _descriptor45 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "typeLists", [_dec48], {
|
|
138359
138493
|
configurable: true,
|
|
138360
138494
|
enumerable: true,
|
|
138361
138495
|
writable: true,
|
|
@@ -138862,7 +138996,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
138862
138996
|
|
|
138863
138997
|
|
|
138864
138998
|
|
|
138865
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24;
|
|
138999
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26;
|
|
138866
139000
|
|
|
138867
139001
|
|
|
138868
139002
|
|
|
@@ -138870,7 +139004,7 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11
|
|
|
138870
139004
|
|
|
138871
139005
|
|
|
138872
139006
|
|
|
138873
|
-
let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("page", `Страница (раздел)`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("id", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, `Уникальный идентификатор странцы. Все страницы в форме должны иметь уникальный идентификатор. 1111`), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("template", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("default", "title", "multiple", "diadoc"), 'Для множественных разделов необходимо указать `template="multiple"`, для обычных разделов `template="default"`'), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.bindingPathLink)} данного элемента`), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("headerpanel", [_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_3__.HeaderPanelNode]), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("title", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("formName", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("showOnDemand", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Раздел не будет отображаться на странице, пока не будет вызван явно. Например, через механизм отображения раздела в разделе.`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("onNavigateFromErrorLog", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется перед попыткой навигации в контрол внутри раздела"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("orientation", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("landscape"), `Ориентация страницы. При значении landscape станницы займёт всю доступную ширину экрана`),
|
|
139007
|
+
let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.sugarNode)("page", `Страница (раздел)`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/FormParts/Page sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("id", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string.required, `Уникальный идентификатор странцы. Все страницы в форме должны иметь уникальный идентификатор. 1111`), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("template", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("default", "title", "multiple", "diadoc"), 'Для множественных разделов необходимо указать `template="multiple"`, для обычных разделов `template="default"`'), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.string, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.bindingPathLink)} данного элемента`), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("headerpanel", [_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_3__.HeaderPanelNode]), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("title", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.deprecatedAttr)("formName", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("showOnDemand", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Раздел не будет отображаться на странице, пока не будет вызван явно. Например, через механизм отображения раздела в разделе.`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("onNavigateFromErrorLog", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется перед попыткой навигации в контрол внутри раздела"), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("onMount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется после загрузки раздела"), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("onUnmount", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется перед выгрузкой раздела"), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("orientation", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("landscape"), `Ориентация страницы. При значении landscape станницы займёт всю доступную ширину экрана`), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("navigationName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, `Название Раздела в меню, если в сахаре есть отдельное описание навигации (unitList), то указывать не нужно`), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("height", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Начальная высота раздела`), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("minHeight", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Минимальная высота раздела`), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("multiple", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Обозначение множественного раздела`), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("unitsCountForPaging", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Количество инстансов множественного раздела на котором включается паджинация раздела`), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("multipleAppearance", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType["enum"]("nested", "flat"), "Представление множественных разделов: вложенное или плоское"), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Опциональный раздел`), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("pageActions", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.objectLiteral(), `Атрибут для кастомизации действий с разделом`), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("hideEnableAutoValues", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.boolean, `Всегда скрывать кнопку "Включить авторасчет", даже при включенной серверной нормализации`), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("navigationLimit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.number, `Количество экземпляров множественного раздела после которого в левом меню будет включаться компактный режим отображения разделов. По умолчанию: 15. Используется только для множественных разделов`), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("addingHint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.localizedString, `Подсказка на кнопке добавления раздела в боковом меню. Используется только для множественных разделов`), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)("page"), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.children)(), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.singleChild)("title", [_PageTitleNode__WEBPACK_IMPORTED_MODULE_8__.PageTitleNode]), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attr)("visible", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_6__.javaScriptExpressionLink)} для условного скрытия раздела`), _dec(_class = (_class2 = class PageNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5__.SugarNodeBase {
|
|
138874
139008
|
constructor(...args) {
|
|
138875
139009
|
super(...args);
|
|
138876
139010
|
|
|
@@ -138890,37 +139024,41 @@ let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5
|
|
|
138890
139024
|
|
|
138891
139025
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onNavigateFromErrorLog", _descriptor8, this);
|
|
138892
139026
|
|
|
138893
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139027
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onMount", _descriptor9, this);
|
|
138894
139028
|
|
|
138895
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139029
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onUnmount", _descriptor10, this);
|
|
138896
139030
|
|
|
138897
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139031
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "orientation", _descriptor11, this);
|
|
138898
139032
|
|
|
138899
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139033
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationName", _descriptor12, this);
|
|
138900
139034
|
|
|
138901
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139035
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "height", _descriptor13, this);
|
|
138902
139036
|
|
|
138903
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139037
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "minHeight", _descriptor14, this);
|
|
138904
139038
|
|
|
138905
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139039
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multiple", _descriptor15, this);
|
|
138906
139040
|
|
|
138907
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139041
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "unitsCountForPaging", _descriptor16, this);
|
|
139042
|
+
|
|
139043
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multipleAppearance", _descriptor17, this);
|
|
138908
139044
|
|
|
138909
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139045
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor18, this);
|
|
138910
139046
|
|
|
138911
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139047
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pageActions", _descriptor19, this);
|
|
138912
139048
|
|
|
138913
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139049
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hideEnableAutoValues", _descriptor20, this);
|
|
138914
139050
|
|
|
138915
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139051
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "navigationLimit", _descriptor21, this);
|
|
138916
139052
|
|
|
138917
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139053
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "addingHint", _descriptor22, this);
|
|
138918
139054
|
|
|
138919
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139055
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "pages", _descriptor23, this);
|
|
138920
139056
|
|
|
138921
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139057
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor24, this);
|
|
138922
139058
|
|
|
138923
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
139059
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor25, this);
|
|
139060
|
+
|
|
139061
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "visible", _descriptor26, this);
|
|
138924
139062
|
}
|
|
138925
139063
|
|
|
138926
139064
|
getOwnPath() {
|
|
@@ -138973,82 +139111,92 @@ let PageNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_5
|
|
|
138973
139111
|
enumerable: true,
|
|
138974
139112
|
writable: true,
|
|
138975
139113
|
initializer: null
|
|
138976
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
139114
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "onMount", [_dec10], {
|
|
139115
|
+
configurable: true,
|
|
139116
|
+
enumerable: true,
|
|
139117
|
+
writable: true,
|
|
139118
|
+
initializer: null
|
|
139119
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "onUnmount", [_dec11], {
|
|
139120
|
+
configurable: true,
|
|
139121
|
+
enumerable: true,
|
|
139122
|
+
writable: true,
|
|
139123
|
+
initializer: null
|
|
139124
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "orientation", [_dec12], {
|
|
138977
139125
|
configurable: true,
|
|
138978
139126
|
enumerable: true,
|
|
138979
139127
|
writable: true,
|
|
138980
139128
|
initializer: null
|
|
138981
|
-
}),
|
|
139129
|
+
}), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "navigationName", [_dec13], {
|
|
138982
139130
|
configurable: true,
|
|
138983
139131
|
enumerable: true,
|
|
138984
139132
|
writable: true,
|
|
138985
139133
|
initializer: null
|
|
138986
|
-
}),
|
|
139134
|
+
}), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "height", [_dec14], {
|
|
138987
139135
|
configurable: true,
|
|
138988
139136
|
enumerable: true,
|
|
138989
139137
|
writable: true,
|
|
138990
139138
|
initializer: null
|
|
138991
|
-
}),
|
|
139139
|
+
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "minHeight", [_dec15], {
|
|
138992
139140
|
configurable: true,
|
|
138993
139141
|
enumerable: true,
|
|
138994
139142
|
writable: true,
|
|
138995
139143
|
initializer: null
|
|
138996
|
-
}),
|
|
139144
|
+
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "multiple", [_dec16], {
|
|
138997
139145
|
configurable: true,
|
|
138998
139146
|
enumerable: true,
|
|
138999
139147
|
writable: true,
|
|
139000
139148
|
initializer: null
|
|
139001
|
-
}),
|
|
139149
|
+
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "unitsCountForPaging", [_dec17], {
|
|
139002
139150
|
configurable: true,
|
|
139003
139151
|
enumerable: true,
|
|
139004
139152
|
writable: true,
|
|
139005
139153
|
initializer: null
|
|
139006
|
-
}),
|
|
139154
|
+
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "multipleAppearance", [_dec18], {
|
|
139007
139155
|
configurable: true,
|
|
139008
139156
|
enumerable: true,
|
|
139009
139157
|
writable: true,
|
|
139010
139158
|
initializer: null
|
|
139011
|
-
}),
|
|
139159
|
+
}), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "optional", [_dec19], {
|
|
139012
139160
|
configurable: true,
|
|
139013
139161
|
enumerable: true,
|
|
139014
139162
|
writable: true,
|
|
139015
139163
|
initializer: null
|
|
139016
|
-
}),
|
|
139164
|
+
}), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pageActions", [_dec20], {
|
|
139017
139165
|
configurable: true,
|
|
139018
139166
|
enumerable: true,
|
|
139019
139167
|
writable: true,
|
|
139020
139168
|
initializer: null
|
|
139021
|
-
}),
|
|
139169
|
+
}), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "hideEnableAutoValues", [_dec21], {
|
|
139022
139170
|
configurable: true,
|
|
139023
139171
|
enumerable: true,
|
|
139024
139172
|
writable: true,
|
|
139025
139173
|
initializer: null
|
|
139026
|
-
}),
|
|
139174
|
+
}), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "navigationLimit", [_dec22], {
|
|
139027
139175
|
configurable: true,
|
|
139028
139176
|
enumerable: true,
|
|
139029
139177
|
writable: true,
|
|
139030
139178
|
initializer: null
|
|
139031
|
-
}),
|
|
139179
|
+
}), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "addingHint", [_dec23], {
|
|
139032
139180
|
configurable: true,
|
|
139033
139181
|
enumerable: true,
|
|
139034
139182
|
writable: true,
|
|
139035
139183
|
initializer: null
|
|
139036
|
-
}),
|
|
139184
|
+
}), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "pages", [_dec24], {
|
|
139037
139185
|
configurable: true,
|
|
139038
139186
|
enumerable: true,
|
|
139039
139187
|
writable: true,
|
|
139040
139188
|
initializer: null
|
|
139041
|
-
}),
|
|
139189
|
+
}), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec25], {
|
|
139042
139190
|
configurable: true,
|
|
139043
139191
|
enumerable: true,
|
|
139044
139192
|
writable: true,
|
|
139045
139193
|
initializer: null
|
|
139046
|
-
}),
|
|
139194
|
+
}), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "title", [_dec26], {
|
|
139047
139195
|
configurable: true,
|
|
139048
139196
|
enumerable: true,
|
|
139049
139197
|
writable: true,
|
|
139050
139198
|
initializer: null
|
|
139051
|
-
}),
|
|
139199
|
+
}), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "visible", [_dec27], {
|
|
139052
139200
|
configurable: true,
|
|
139053
139201
|
enumerable: true,
|
|
139054
139202
|
writable: true,
|
|
@@ -143943,34 +144091,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
143943
144091
|
/* harmony export */ });
|
|
143944
144092
|
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
143945
144093
|
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
143946
|
-
/* harmony import */ var
|
|
144094
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
144095
|
+
/* harmony import */ var _ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ModalFormLabelNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel/ModalFormLabelNode.ts");
|
|
144096
|
+
|
|
143947
144097
|
|
|
143948
144098
|
|
|
143949
144099
|
|
|
143950
144100
|
class ModalFormLabelConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_1__.SugarNodeConverterBase {
|
|
143951
144101
|
static getAcceptNodeClass() {
|
|
143952
|
-
return
|
|
144102
|
+
return _ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_3__.ModalFormLabelNode;
|
|
143953
144103
|
}
|
|
143954
144104
|
|
|
143955
144105
|
doBuildDataDeclaration(context) {
|
|
143956
|
-
const node = this.getCurrentNodeAs(
|
|
144106
|
+
const node = this.getCurrentNodeAs(_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_3__.ModalFormLabelNode);
|
|
143957
144107
|
return context.addVisibilityPathDeclEntryNew(node);
|
|
143958
144108
|
}
|
|
143959
144109
|
|
|
143960
144110
|
buildChildrenDataDeclaration(context) {
|
|
143961
|
-
const node = this.getCurrentNodeAs(
|
|
144111
|
+
const node = this.getCurrentNodeAs(_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_3__.ModalFormLabelNode);
|
|
143962
144112
|
return context.processChildrenDataDeclaration(node.children);
|
|
143963
144113
|
}
|
|
143964
144114
|
|
|
143965
144115
|
*doTraverseChildren() {
|
|
143966
|
-
const node = this.getCurrentNodeAs(
|
|
144116
|
+
const node = this.getCurrentNodeAs(_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_3__.ModalFormLabelNode);
|
|
143967
144117
|
yield* node.children;
|
|
143968
144118
|
}
|
|
143969
144119
|
|
|
143970
144120
|
doConvert(context) {
|
|
143971
|
-
const node = this.getCurrentNodeAs(
|
|
144121
|
+
const node = this.getCurrentNodeAs(_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_3__.ModalFormLabelNode);
|
|
143972
144122
|
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("ModalFormLabel");
|
|
143973
144123
|
markupBuilder.appendChild(context.convertChildNodes(node.children));
|
|
144124
|
+
markupBuilder.prop(x => x.modalId).set(node.modalId);
|
|
144125
|
+
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_2__.getNewBindingPathExpression)(node));
|
|
143974
144126
|
return markupBuilder.buildConverterResult();
|
|
143975
144127
|
}
|
|
143976
144128
|
|
|
@@ -144001,15 +144153,21 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
144001
144153
|
|
|
144002
144154
|
|
|
144003
144155
|
|
|
144004
|
-
var _dec, _dec2, _class, _class2, _descriptor;
|
|
144156
|
+
var _dec, _dec2, _dec3, _class, _class2, _descriptor, _descriptor2;
|
|
144005
144157
|
|
|
144006
144158
|
|
|
144007
144159
|
|
|
144008
|
-
let ModalFormLabelNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("modalformlabel", `Контейнер с модальным окном`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(),
|
|
144160
|
+
let ModalFormLabelNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("modalformlabel", `Контейнер с модальным окном`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Modal/ModalFormLabel sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.children)(), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("modalId", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, `Id модалки. Нужно для ручного управления открытием/закрытием. Поведение:
|
|
144161
|
+
- Если указан явно, используется указанный;
|
|
144162
|
+
- Если не указан и внутри нет кнопки для открытия модалки, то будет установлено дефолтное значение, равное текущему path;
|
|
144163
|
+
- Если не указан и внутри есть кнопка для открытия модалки, то снаружи нельзя будет управлять открытием/закрытием.
|
|
144164
|
+
`), _dec(_class = (_class2 = class ModalFormLabelNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
|
|
144009
144165
|
constructor(...args) {
|
|
144010
144166
|
super(...args);
|
|
144011
144167
|
|
|
144012
144168
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor, this);
|
|
144169
|
+
|
|
144170
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "modalId", _descriptor2, this);
|
|
144013
144171
|
}
|
|
144014
144172
|
|
|
144015
144173
|
}, (_descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec2], {
|
|
@@ -144017,6 +144175,11 @@ let ModalFormLabelNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTE
|
|
|
144017
144175
|
enumerable: true,
|
|
144018
144176
|
writable: true,
|
|
144019
144177
|
initializer: null
|
|
144178
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "modalId", [_dec3], {
|
|
144179
|
+
configurable: true,
|
|
144180
|
+
enumerable: true,
|
|
144181
|
+
writable: true,
|
|
144182
|
+
initializer: null
|
|
144020
144183
|
})), _class2)) || _class);
|
|
144021
144184
|
|
|
144022
144185
|
/***/ }),
|
|
@@ -144183,14 +144346,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
144183
144346
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
144184
144347
|
/* harmony export */ "AddRowButtonConverter": () => (/* binding */ AddRowButtonConverter)
|
|
144185
144348
|
/* harmony export */ });
|
|
144186
|
-
/* harmony import */ var
|
|
144187
|
-
/* harmony import */ var
|
|
144188
|
-
/* harmony import */ var
|
|
144189
|
-
/* harmony import */ var
|
|
144190
|
-
/* harmony import */ var
|
|
144191
|
-
/* harmony import */ var
|
|
144192
|
-
/* harmony import */ var
|
|
144193
|
-
/* harmony import */ var
|
|
144349
|
+
/* harmony import */ var util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! util */ "util");
|
|
144350
|
+
/* harmony import */ var util__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(util__WEBPACK_IMPORTED_MODULE_0__);
|
|
144351
|
+
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
144352
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
144353
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
144354
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
144355
|
+
/* harmony import */ var _common_ConditionUtils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../../../common/ConditionUtils */ "./Generator/src/common/ConditionUtils.ts");
|
|
144356
|
+
/* harmony import */ var _Common_KCLangRuntimeUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../../../../../Common/KCLangRuntimeUtils */ "./Common/KCLangRuntimeUtils.ts");
|
|
144357
|
+
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
144358
|
+
/* harmony import */ var _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../../validationGenerator/Nodes/TypeNode */ "./Generator/src/generators/validationGenerator/Nodes/TypeNode.ts");
|
|
144359
|
+
/* harmony import */ var _Common_TypingUtils__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../../../../../Common/TypingUtils */ "./Common/TypingUtils.ts");
|
|
144360
|
+
/* harmony import */ var _AddRowButtonNode__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./AddRowButtonNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AddRowButton/AddRowButtonNode.ts");
|
|
144361
|
+
|
|
144194
144362
|
|
|
144195
144363
|
|
|
144196
144364
|
|
|
@@ -144199,41 +144367,71 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
144199
144367
|
|
|
144200
144368
|
|
|
144201
144369
|
|
|
144202
|
-
|
|
144370
|
+
|
|
144371
|
+
|
|
144372
|
+
class AddRowButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_3__.SugarNodeConverterBase {
|
|
144203
144373
|
static getAcceptNodeClass() {
|
|
144204
|
-
return
|
|
144374
|
+
return _AddRowButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddRowButtonNode;
|
|
144205
144375
|
}
|
|
144206
144376
|
|
|
144207
|
-
doBuildNodeValidations(validationGenerator) {
|
|
144377
|
+
doBuildNodeValidations(validationGenerator) {
|
|
144378
|
+
const node = this.getCurrentNodeAs(_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddRowButtonNode);
|
|
144379
|
+
const {
|
|
144380
|
+
validationPath
|
|
144381
|
+
} = this.getNodeBindingAndValidationPaths(node);
|
|
144382
|
+
|
|
144383
|
+
if ((0,util__WEBPACK_IMPORTED_MODULE_0__.isNullOrUndefined)(validationPath)) {
|
|
144384
|
+
return;
|
|
144385
|
+
}
|
|
144386
|
+
|
|
144387
|
+
const fakeNode = new _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_8__.TypeNode();
|
|
144388
|
+
fakeNode.base = "string";
|
|
144389
|
+
fakeNode.children = [];
|
|
144390
|
+
validationGenerator.processValidations(validationPath.toLegacyPath(), node.validationInfo.optional, fakeNode, undefined, node.validationInfo.emptydescription, undefined);
|
|
144208
144391
|
}
|
|
144209
144392
|
|
|
144210
144393
|
doBuildDataDeclaration(context) {
|
|
144211
|
-
const node = this.getCurrentNodeAs(
|
|
144394
|
+
const node = this.getCurrentNodeAs(_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddRowButtonNode);
|
|
144395
|
+
const pathDeclarations = [];
|
|
144212
144396
|
|
|
144213
|
-
if (node.maxOccurs
|
|
144214
|
-
|
|
144397
|
+
if ((0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_9__.isNotNullOrUndefined)(node.maxOccurs) && /^\d+$/.test(node.maxOccurs)) {
|
|
144398
|
+
pathDeclarations.push(context.maxOccurs(node.getFullPath(), node.maxOccurs));
|
|
144215
144399
|
}
|
|
144216
144400
|
|
|
144217
|
-
|
|
144401
|
+
if ((0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_9__.isNotNullOrEmpty)(node.validationPath)) {
|
|
144402
|
+
const declEntry = {};
|
|
144403
|
+
declEntry["value"] = context.initSequenceFactory.setValueUnconditionally("");
|
|
144404
|
+
const validationPath = node.getFullPath().getParentPath().joinWith(node.validationPath).normalize().toLegacyPath();
|
|
144405
|
+
pathDeclarations.push({
|
|
144406
|
+
[validationPath]: declEntry
|
|
144407
|
+
});
|
|
144408
|
+
}
|
|
144409
|
+
|
|
144410
|
+
return pathDeclarations.length > 0 ? context.mergeDataDeclaration(...pathDeclarations) : _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__.emptyDataDeclarationCollection;
|
|
144218
144411
|
}
|
|
144219
144412
|
|
|
144220
144413
|
buildChildrenDataDeclaration(context) {
|
|
144221
|
-
return
|
|
144414
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_1__.emptyDataDeclarationCollection;
|
|
144222
144415
|
}
|
|
144223
144416
|
|
|
144224
144417
|
*doTraverseChildren() {// no children
|
|
144225
144418
|
}
|
|
144226
144419
|
|
|
144227
144420
|
doConvert(context) {
|
|
144228
|
-
const node = this.getCurrentNodeAs(
|
|
144229
|
-
const markupBuilder = (0,
|
|
144230
|
-
|
|
144421
|
+
const node = this.getCurrentNodeAs(_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddRowButtonNode);
|
|
144422
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__.componentMarkupBuilder)("AddRowButton");
|
|
144423
|
+
const {
|
|
144424
|
+
bindingPath,
|
|
144425
|
+
validationPath
|
|
144426
|
+
} = this.getNodeBindingAndValidationPaths(node);
|
|
144427
|
+
markupBuilder.prop(x => x.bindingPath).set(bindingPath);
|
|
144428
|
+
markupBuilder.prop(x => x.validationPath).set(validationPath);
|
|
144231
144429
|
markupBuilder.prop(x => x.type).set(node.type);
|
|
144232
144430
|
markupBuilder.prop(x => x.text).set(node.text);
|
|
144233
144431
|
|
|
144234
144432
|
if (node.maxOccurs != undefined) {
|
|
144235
|
-
const maxOccursWithDependencies = (0,
|
|
144236
|
-
const maxOccurs = (0,
|
|
144433
|
+
const maxOccursWithDependencies = (0,_common_ConditionUtils__WEBPACK_IMPORTED_MODULE_5__.convertConditionToJsOrFailWithFriendlySugarError)(node.maxOccurs, "path", _Common_KCLangRuntimeUtils__WEBPACK_IMPORTED_MODULE_6__.KCLangRuntimeUtils.kcLangUtilsName, node, "maxOccurs");
|
|
144434
|
+
const maxOccurs = (0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_7__.buildExpressionPropValue)(maxOccursWithDependencies.condition, maxOccursWithDependencies.dependencies);
|
|
144237
144435
|
markupBuilder.prop(x => x.maxOccurs).set(maxOccurs);
|
|
144238
144436
|
markupBuilder.prop(x => x.evaluatorsContextPath).set(this.getEvaluatorsContextPathExpression());
|
|
144239
144437
|
} else {
|
|
@@ -144243,6 +144441,15 @@ class AddRowButtonConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE
|
|
|
144243
144441
|
return markupBuilder.buildConverterResult();
|
|
144244
144442
|
}
|
|
144245
144443
|
|
|
144444
|
+
getNodeBindingAndValidationPaths(node) {
|
|
144445
|
+
const bindingPath = (0,_getBindingPath__WEBPACK_IMPORTED_MODULE_4__.getNewBindingPathExpression)(node);
|
|
144446
|
+
const validationPath = (0,_Common_TypingUtils__WEBPACK_IMPORTED_MODULE_9__.isNotNullOrEmpty)(node.validationPath) ? bindingPath.getParentPath().joinWith(node.validationPath).normalize() : undefined;
|
|
144447
|
+
return {
|
|
144448
|
+
bindingPath: bindingPath,
|
|
144449
|
+
validationPath: validationPath
|
|
144450
|
+
};
|
|
144451
|
+
}
|
|
144452
|
+
|
|
144246
144453
|
}
|
|
144247
144454
|
|
|
144248
144455
|
/***/ }),
|
|
@@ -144267,26 +144474,36 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
144267
144474
|
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
144268
144475
|
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
144269
144476
|
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
144477
|
+
/* harmony import */ var _CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../CommonNodeProperties/ValidationInfoNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/ValidationInfoNode.ts");
|
|
144478
|
+
/* harmony import */ var _CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../CommonNodeProperties/FocusManagementNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FocusManagementNode.ts");
|
|
144270
144479
|
|
|
144271
144480
|
|
|
144272
144481
|
|
|
144273
144482
|
|
|
144274
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4;
|
|
144483
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7;
|
|
144484
|
+
|
|
144275
144485
|
|
|
144276
144486
|
|
|
144277
144487
|
|
|
144278
144488
|
|
|
144279
|
-
|
|
144489
|
+
|
|
144490
|
+
let AddRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("addrowbutton", `Кнопка добавления новой строки в мультилайн`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/AddRowButton sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataReferenceMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_6__.ValidationInfoNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_7__.FocusManagementNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.javascriptExpression, `Максмальное возможное количество элементов в заданном множественном элементе. Может быть ${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_5__.javaScriptExpressionLink)}.`), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("type", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType["enum"]("link", "button"), `Тип кнопки. default: link`), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("text", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.localizedString, `Текст в кнопке. default: "Добавить строку"`), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("validationPath", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.bindingPath, `Путь для валидации, если она нужна"`), _dec(_class = (_class2 = class AddRowButtonNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
144280
144491
|
constructor(...args) {
|
|
144281
144492
|
super(...args);
|
|
144282
144493
|
|
|
144283
144494
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataReference", _descriptor, this);
|
|
144284
144495
|
|
|
144285
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
144496
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor2, this);
|
|
144286
144497
|
|
|
144287
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
144498
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "focusManagement", _descriptor3, this);
|
|
144288
144499
|
|
|
144289
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
144500
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxOccurs", _descriptor4, this);
|
|
144501
|
+
|
|
144502
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "type", _descriptor5, this);
|
|
144503
|
+
|
|
144504
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "text", _descriptor6, this);
|
|
144505
|
+
|
|
144506
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationPath", _descriptor7, this);
|
|
144290
144507
|
}
|
|
144291
144508
|
|
|
144292
144509
|
getOwnPath() {
|
|
@@ -144298,17 +144515,32 @@ let AddRowButtonNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_
|
|
|
144298
144515
|
enumerable: true,
|
|
144299
144516
|
writable: true,
|
|
144300
144517
|
initializer: null
|
|
144301
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
144518
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec3], {
|
|
144302
144519
|
configurable: true,
|
|
144303
144520
|
enumerable: true,
|
|
144304
144521
|
writable: true,
|
|
144305
144522
|
initializer: null
|
|
144306
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
144523
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "focusManagement", [_dec4], {
|
|
144307
144524
|
configurable: true,
|
|
144308
144525
|
enumerable: true,
|
|
144309
144526
|
writable: true,
|
|
144310
144527
|
initializer: null
|
|
144311
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
144528
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "maxOccurs", [_dec5], {
|
|
144529
|
+
configurable: true,
|
|
144530
|
+
enumerable: true,
|
|
144531
|
+
writable: true,
|
|
144532
|
+
initializer: null
|
|
144533
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "type", [_dec6], {
|
|
144534
|
+
configurable: true,
|
|
144535
|
+
enumerable: true,
|
|
144536
|
+
writable: true,
|
|
144537
|
+
initializer: null
|
|
144538
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "text", [_dec7], {
|
|
144539
|
+
configurable: true,
|
|
144540
|
+
enumerable: true,
|
|
144541
|
+
writable: true,
|
|
144542
|
+
initializer: null
|
|
144543
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationPath", [_dec8], {
|
|
144312
144544
|
configurable: true,
|
|
144313
144545
|
enumerable: true,
|
|
144314
144546
|
writable: true,
|
|
@@ -145163,6 +145395,7 @@ class CrossfitTableConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODUL
|
|
|
145163
145395
|
const multiRowBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_2__.componentMarkupBuilder)("CrossfitTable", "CrossfitTable.MultiRow");
|
|
145164
145396
|
multiRowBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_1__.getNewBindingPathExpression)(multiline));
|
|
145165
145397
|
multiRowBuilder.prop(x => x.storeFiltersWithinSession).set(multiline.storeFilters);
|
|
145398
|
+
multiRowBuilder.prop(x => x.disableScroll).set(multiline.disableScroll);
|
|
145166
145399
|
|
|
145167
145400
|
if (multiline.usepager != undefined) {
|
|
145168
145401
|
multiRowBuilder.prop(x => x.isList).set(!multiline.usepager);
|
|
@@ -145250,7 +145483,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
145250
145483
|
|
|
145251
145484
|
|
|
145252
145485
|
|
|
145253
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _dec23, _dec24, _dec25, _dec26, _class4, _class5, _descriptor22, _descriptor23, _descriptor24, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _class7, _class8, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39,
|
|
145486
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _dec23, _dec24, _dec25, _dec26, _class4, _class5, _descriptor22, _descriptor23, _descriptor24, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _class7, _class8, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _dec44, _dec45, _dec46, _class10, _class11, _descriptor41, _descriptor42, _dec47, _dec48, _dec49, _dec50, _dec51, _dec52, _class13, _class14, _descriptor43, _descriptor44, _descriptor45, _descriptor46, _descriptor47, _dec53, _dec54, _class16, _class17, _descriptor48, _dec55, _dec56, _class19, _class20, _descriptor49, _dec57, _dec58, _class22, _class23, _descriptor50, _dec59, _dec60, _dec61, _dec62, _dec63, _dec64, _dec65, _dec66, _dec67, _dec68, _dec69, _dec70, _dec71, _dec72, _dec73, _dec74, _dec75, _dec76, _dec77, _dec78, _dec79, _class25, _class26, _descriptor51, _descriptor52, _descriptor53, _descriptor54, _descriptor55, _descriptor56, _descriptor57, _descriptor58, _descriptor59, _descriptor60, _descriptor61, _descriptor62, _descriptor63, _descriptor64, _descriptor65, _descriptor66, _descriptor67, _descriptor68, _descriptor69, _descriptor70;
|
|
145254
145487
|
|
|
145255
145488
|
|
|
145256
145489
|
|
|
@@ -145448,7 +145681,7 @@ let CrossfitTableRowNode = (_dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMP
|
|
|
145448
145681
|
writable: true,
|
|
145449
145682
|
initializer: null
|
|
145450
145683
|
})), _class5)) || _class4);
|
|
145451
|
-
let MultilineNode = (_dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("multiline", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable sync recursive .md$")), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingScopeMixinNode), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.javascriptExpression, `Масмальное возможное количество элементов в заданном множественном элементе. Может быть ${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_7__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_7__.javaScriptExpressionLink)}.`), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("defaultChildren", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.arrayLiteral(), ``), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("focusByHotkey", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("instancesPerPage", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("pageStep", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("removebutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `false - чтобы слева от раздела не было кнопки "Удалить"`), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("rowmenu", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("row", [CrossfitTableRowNode]), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("addbutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, `Название кнопки при добавлении множественности`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("addType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType["enum"]("button", "link"), `Добавить строку м.б. как кнопка "button" или ссылка "link"`), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("usepager", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `false - без пейджера (1-11, 12-22 - этого нет внизу страницы)`), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("onRowClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике по строке"), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("storeFilters", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Будут ли сохраняться фильтры для этого мультилайна между обнолениями страницы. По умолчанию -- нет`), _dec27(_class7 = (_class8 = class MultilineNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__.SugarNodeWithLegacyVisibility {
|
|
145684
|
+
let MultilineNode = (_dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("multiline", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable sync recursive .md$")), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingScopeMixinNode), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.javascriptExpression, `Масмальное возможное количество элементов в заданном множественном элементе. Может быть ${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_7__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_7__.javaScriptExpressionLink)}.`), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("defaultChildren", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.arrayLiteral(), ``), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("focusByHotkey", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("instancesPerPage", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("pageStep", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("removebutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `false - чтобы слева от раздела не было кнопки "Удалить"`), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("rowmenu", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("row", [CrossfitTableRowNode]), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("addbutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, `Название кнопки при добавлении множественности`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("addType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType["enum"]("button", "link"), `Добавить строку м.б. как кнопка "button" или ссылка "link"`), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("usepager", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `false - без пейджера (1-11, 12-22 - этого нет внизу страницы)`), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("onRowClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике по строке"), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("storeFilters", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Будут ли сохраняться фильтры для этого мультилайна между обнолениями страницы. По умолчанию -- нет`), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("disableScroll", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Возможность отключить скролл в мультилайне`), _dec27(_class7 = (_class8 = class MultilineNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__.SugarNodeWithLegacyVisibility {
|
|
145452
145685
|
constructor(...args) {
|
|
145453
145686
|
super(...args);
|
|
145454
145687
|
|
|
@@ -145481,6 +145714,8 @@ let MultilineNode = (_dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_M
|
|
|
145481
145714
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onRowClick", _descriptor38, this);
|
|
145482
145715
|
|
|
145483
145716
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "storeFilters", _descriptor39, this);
|
|
145717
|
+
|
|
145718
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disableScroll", _descriptor40, this);
|
|
145484
145719
|
}
|
|
145485
145720
|
|
|
145486
145721
|
getOwnPath() {
|
|
@@ -145566,154 +145801,160 @@ let MultilineNode = (_dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_M
|
|
|
145566
145801
|
enumerable: true,
|
|
145567
145802
|
writable: true,
|
|
145568
145803
|
initializer: null
|
|
145804
|
+
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "disableScroll", [_dec43], {
|
|
145805
|
+
configurable: true,
|
|
145806
|
+
enumerable: true,
|
|
145807
|
+
writable: true,
|
|
145808
|
+
initializer: null
|
|
145569
145809
|
})), _class8)) || _class7);
|
|
145570
|
-
let CrossfitTableHeaderNode = (
|
|
145810
|
+
let CrossfitTableHeaderNode = (_dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("header", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable sync recursive .md$")), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("align", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType["enum"]("right"), ``), _dec46 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)(), _dec44(_class10 = (_class11 = class CrossfitTableHeaderNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
|
|
145571
145811
|
constructor(...args) {
|
|
145572
145812
|
super(...args);
|
|
145573
145813
|
|
|
145574
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align",
|
|
145814
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align", _descriptor41, this);
|
|
145575
145815
|
|
|
145576
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children",
|
|
145816
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor42, this);
|
|
145577
145817
|
}
|
|
145578
145818
|
|
|
145579
|
-
}, (
|
|
145819
|
+
}, (_descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "align", [_dec45], {
|
|
145580
145820
|
configurable: true,
|
|
145581
145821
|
enumerable: true,
|
|
145582
145822
|
writable: true,
|
|
145583
145823
|
initializer: null
|
|
145584
|
-
}),
|
|
145824
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "children", [_dec46], {
|
|
145585
145825
|
configurable: true,
|
|
145586
145826
|
enumerable: true,
|
|
145587
145827
|
writable: true,
|
|
145588
145828
|
initializer: null
|
|
145589
145829
|
})), _class11)) || _class10);
|
|
145590
|
-
let FilterInfoNode = (
|
|
145830
|
+
let FilterInfoNode = (_dec47 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("filterinfo", `path - путь до multiline, по которому фильтруем`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable sync recursive .md$")), _dec48 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataReferenceMixinNode), _dec49 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("multilinePath", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, ``), _dec50 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.string, `путь до multiline, по которому фильтруем`), _dec51 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("titles", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.stringArray, `массив строк для склонения единицы поиска (для корректного вывода с количеством найденных)`), _dec52 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("notFoundText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, ` текст, который будет выводится, если после фильтрации ничего не найдено`), _dec47(_class13 = (_class14 = class FilterInfoNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
|
|
145591
145831
|
constructor(...args) {
|
|
145592
145832
|
super(...args);
|
|
145593
145833
|
|
|
145594
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataReference",
|
|
145834
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataReference", _descriptor43, this);
|
|
145595
145835
|
|
|
145596
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multilinePath",
|
|
145836
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "multilinePath", _descriptor44, this);
|
|
145597
145837
|
|
|
145598
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path",
|
|
145838
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path", _descriptor45, this);
|
|
145599
145839
|
|
|
145600
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "titles",
|
|
145840
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "titles", _descriptor46, this);
|
|
145601
145841
|
|
|
145602
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "notFoundText",
|
|
145842
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "notFoundText", _descriptor47, this);
|
|
145603
145843
|
}
|
|
145604
145844
|
|
|
145605
145845
|
getOwnPath() {
|
|
145606
145846
|
return this.dataReference.getOwnPath();
|
|
145607
145847
|
}
|
|
145608
145848
|
|
|
145609
|
-
}, (
|
|
145849
|
+
}, (_descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "dataReference", [_dec48], {
|
|
145610
145850
|
configurable: true,
|
|
145611
145851
|
enumerable: true,
|
|
145612
145852
|
writable: true,
|
|
145613
145853
|
initializer: null
|
|
145614
|
-
}),
|
|
145854
|
+
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "multilinePath", [_dec49], {
|
|
145615
145855
|
configurable: true,
|
|
145616
145856
|
enumerable: true,
|
|
145617
145857
|
writable: true,
|
|
145618
145858
|
initializer: null
|
|
145619
|
-
}),
|
|
145859
|
+
}), _descriptor45 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "path", [_dec50], {
|
|
145620
145860
|
configurable: true,
|
|
145621
145861
|
enumerable: true,
|
|
145622
145862
|
writable: true,
|
|
145623
145863
|
initializer: null
|
|
145624
|
-
}),
|
|
145864
|
+
}), _descriptor46 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "titles", [_dec51], {
|
|
145625
145865
|
configurable: true,
|
|
145626
145866
|
enumerable: true,
|
|
145627
145867
|
writable: true,
|
|
145628
145868
|
initializer: null
|
|
145629
|
-
}),
|
|
145869
|
+
}), _descriptor47 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "notFoundText", [_dec52], {
|
|
145630
145870
|
configurable: true,
|
|
145631
145871
|
enumerable: true,
|
|
145632
145872
|
writable: true,
|
|
145633
145873
|
initializer: null
|
|
145634
145874
|
})), _class14)) || _class13);
|
|
145635
|
-
let CrossfitTableFooterNode = (
|
|
145875
|
+
let CrossfitTableFooterNode = (_dec53 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("footer", ``), _dec54 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)(), _dec53(_class16 = (_class17 = class CrossfitTableFooterNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
|
|
145636
145876
|
constructor(...args) {
|
|
145637
145877
|
super(...args);
|
|
145638
145878
|
|
|
145639
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children",
|
|
145879
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor48, this);
|
|
145640
145880
|
}
|
|
145641
145881
|
|
|
145642
|
-
}, (
|
|
145882
|
+
}, (_descriptor48 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class17.prototype, "children", [_dec54], {
|
|
145643
145883
|
configurable: true,
|
|
145644
145884
|
enumerable: true,
|
|
145645
145885
|
writable: true,
|
|
145646
145886
|
initializer: null
|
|
145647
145887
|
})), _class17)) || _class16);
|
|
145648
|
-
let CrossfitTableColgroupColumnNode = (
|
|
145888
|
+
let CrossfitTableColgroupColumnNode = (_dec55 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("col", ``), _dec56 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.lengthUnit, ``), _dec55(_class19 = (_class20 = class CrossfitTableColgroupColumnNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
|
|
145649
145889
|
constructor(...args) {
|
|
145650
145890
|
super(...args);
|
|
145651
145891
|
|
|
145652
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width",
|
|
145892
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor49, this);
|
|
145653
145893
|
}
|
|
145654
145894
|
|
|
145655
|
-
}, (
|
|
145895
|
+
}, (_descriptor49 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "width", [_dec56], {
|
|
145656
145896
|
configurable: true,
|
|
145657
145897
|
enumerable: true,
|
|
145658
145898
|
writable: true,
|
|
145659
145899
|
initializer: null
|
|
145660
145900
|
})), _class20)) || _class19);
|
|
145661
|
-
let CrossfitTableColgroupNode = (
|
|
145901
|
+
let CrossfitTableColgroupNode = (_dec57 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("colgroup", ``), _dec58 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)("col", [CrossfitTableColgroupColumnNode]), _dec57(_class22 = (_class23 = class CrossfitTableColgroupNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.SugarNodeBase {
|
|
145662
145902
|
constructor(...args) {
|
|
145663
145903
|
super(...args);
|
|
145664
145904
|
|
|
145665
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cols",
|
|
145905
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cols", _descriptor50, this);
|
|
145666
145906
|
}
|
|
145667
145907
|
|
|
145668
|
-
}, (
|
|
145908
|
+
}, (_descriptor50 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class23.prototype, "cols", [_dec58], {
|
|
145669
145909
|
configurable: true,
|
|
145670
145910
|
enumerable: true,
|
|
145671
145911
|
writable: true,
|
|
145672
145912
|
initializer: null
|
|
145673
145913
|
})), _class23)) || _class22);
|
|
145674
|
-
let CrossfitTableNode = (
|
|
145914
|
+
let CrossfitTableNode = (_dec59 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.sugarNode)("table", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/CrossfitTable sync recursive .md$"), x => x.boolAttr("crossfit")), _dec60 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.bindingPath, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_7__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_7__.bindingPathLink)} данного элемента. Опционально, если не указан, то будет отображаться текст заданный внутри данного элемента`), _dec61 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `необязательность`), _dec62 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.deprecatedAttr)("offsetBottom", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec63 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("grayColumn", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec64 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("sidebar", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec65 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("crossfit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec66 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("side", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.number, ``), _dec67 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("rowmenu", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, ``), _dec68 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("removebutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `\"false\" - чтобы слева от раздела не было кнопки "Удалить"`), _dec69 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("sticky", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.boolean, `Делает шапку и футер таблицы залипающими при скролле. По дефолту true.
|
|
145915
|
+
Если нужно спрятать пустой футер (без пейджинга и прочего), нужно явно указать false.`), _dec70 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("doNotCopyPaths", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.stringArray, ``), _dec71 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.children)(["row", "multiline"], [CrossfitTableRowNode, MultilineNode]), _dec72 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("header", [CrossfitTableHeaderNode]), _dec73 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("colgroup", [CrossfitTableColgroupNode]), _dec74 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("filterinfo", [FilterInfoNode]), _dec75 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("loader", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.localizedString, ``), _dec76 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("align", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType["enum"]("baseline", "top"), ``), _dec77 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("columnGrouping", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.object, ``), _dec78 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attr)("hiddenGroups", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.attrType.object, ``), _dec79 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_6__.singleChild)("footer", [CrossfitTableFooterNode]), _dec59(_class25 = (_class26 = class CrossfitTableNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_5__.SugarNodeWithLegacyVisibility {
|
|
145675
145916
|
constructor(...args) {
|
|
145676
145917
|
super(...args);
|
|
145677
145918
|
|
|
145678
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path",
|
|
145919
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path", _descriptor51, this);
|
|
145679
145920
|
|
|
145680
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional",
|
|
145921
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor52, this);
|
|
145681
145922
|
|
|
145682
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "offsetBottom",
|
|
145923
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "offsetBottom", _descriptor53, this);
|
|
145683
145924
|
|
|
145684
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "grayColumn",
|
|
145925
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "grayColumn", _descriptor54, this);
|
|
145685
145926
|
|
|
145686
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sidebar",
|
|
145927
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sidebar", _descriptor55, this);
|
|
145687
145928
|
|
|
145688
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "crossfit",
|
|
145929
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "crossfit", _descriptor56, this);
|
|
145689
145930
|
|
|
145690
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "side",
|
|
145931
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "side", _descriptor57, this);
|
|
145691
145932
|
|
|
145692
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rowmenu",
|
|
145933
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rowmenu", _descriptor58, this);
|
|
145693
145934
|
|
|
145694
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "removebutton",
|
|
145935
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "removebutton", _descriptor59, this);
|
|
145695
145936
|
|
|
145696
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sticky",
|
|
145937
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sticky", _descriptor60, this);
|
|
145697
145938
|
|
|
145698
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "doNotCopyPaths",
|
|
145939
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "doNotCopyPaths", _descriptor61, this);
|
|
145699
145940
|
|
|
145700
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows",
|
|
145941
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows", _descriptor62, this);
|
|
145701
145942
|
|
|
145702
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "header",
|
|
145943
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "header", _descriptor63, this);
|
|
145703
145944
|
|
|
145704
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "colgroup",
|
|
145945
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "colgroup", _descriptor64, this);
|
|
145705
145946
|
|
|
145706
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterinfo",
|
|
145947
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filterinfo", _descriptor65, this);
|
|
145707
145948
|
|
|
145708
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "loader",
|
|
145949
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "loader", _descriptor66, this);
|
|
145709
145950
|
|
|
145710
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align",
|
|
145951
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align", _descriptor67, this);
|
|
145711
145952
|
|
|
145712
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnGrouping",
|
|
145953
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnGrouping", _descriptor68, this);
|
|
145713
145954
|
|
|
145714
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hiddenGroups",
|
|
145955
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hiddenGroups", _descriptor69, this);
|
|
145715
145956
|
|
|
145716
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "footer",
|
|
145957
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "footer", _descriptor70, this);
|
|
145717
145958
|
}
|
|
145718
145959
|
|
|
145719
145960
|
getOwnPath() {
|
|
@@ -145746,102 +145987,102 @@ let CrossfitTableNode = (_dec58 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORT
|
|
|
145746
145987
|
return (_this$sticky = this.sticky) !== null && _this$sticky !== void 0 ? _this$sticky : true;
|
|
145747
145988
|
}
|
|
145748
145989
|
|
|
145749
|
-
}, (
|
|
145990
|
+
}, (_descriptor51 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "path", [_dec60], {
|
|
145750
145991
|
configurable: true,
|
|
145751
145992
|
enumerable: true,
|
|
145752
145993
|
writable: true,
|
|
145753
145994
|
initializer: null
|
|
145754
|
-
}),
|
|
145995
|
+
}), _descriptor52 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "optional", [_dec61], {
|
|
145755
145996
|
configurable: true,
|
|
145756
145997
|
enumerable: true,
|
|
145757
145998
|
writable: true,
|
|
145758
145999
|
initializer: null
|
|
145759
|
-
}),
|
|
146000
|
+
}), _descriptor53 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "offsetBottom", [_dec62], {
|
|
145760
146001
|
configurable: true,
|
|
145761
146002
|
enumerable: true,
|
|
145762
146003
|
writable: true,
|
|
145763
146004
|
initializer: null
|
|
145764
|
-
}),
|
|
146005
|
+
}), _descriptor54 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "grayColumn", [_dec63], {
|
|
145765
146006
|
configurable: true,
|
|
145766
146007
|
enumerable: true,
|
|
145767
146008
|
writable: true,
|
|
145768
146009
|
initializer: null
|
|
145769
|
-
}),
|
|
146010
|
+
}), _descriptor55 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "sidebar", [_dec64], {
|
|
145770
146011
|
configurable: true,
|
|
145771
146012
|
enumerable: true,
|
|
145772
146013
|
writable: true,
|
|
145773
146014
|
initializer: null
|
|
145774
|
-
}),
|
|
146015
|
+
}), _descriptor56 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "crossfit", [_dec65], {
|
|
145775
146016
|
configurable: true,
|
|
145776
146017
|
enumerable: true,
|
|
145777
146018
|
writable: true,
|
|
145778
146019
|
initializer: null
|
|
145779
|
-
}),
|
|
146020
|
+
}), _descriptor57 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "side", [_dec66], {
|
|
145780
146021
|
configurable: true,
|
|
145781
146022
|
enumerable: true,
|
|
145782
146023
|
writable: true,
|
|
145783
146024
|
initializer: null
|
|
145784
|
-
}),
|
|
146025
|
+
}), _descriptor58 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "rowmenu", [_dec67], {
|
|
145785
146026
|
configurable: true,
|
|
145786
146027
|
enumerable: true,
|
|
145787
146028
|
writable: true,
|
|
145788
146029
|
initializer: null
|
|
145789
|
-
}),
|
|
146030
|
+
}), _descriptor59 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "removebutton", [_dec68], {
|
|
145790
146031
|
configurable: true,
|
|
145791
146032
|
enumerable: true,
|
|
145792
146033
|
writable: true,
|
|
145793
146034
|
initializer: null
|
|
145794
|
-
}),
|
|
146035
|
+
}), _descriptor60 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "sticky", [_dec69], {
|
|
145795
146036
|
configurable: true,
|
|
145796
146037
|
enumerable: true,
|
|
145797
146038
|
writable: true,
|
|
145798
146039
|
initializer: null
|
|
145799
|
-
}),
|
|
146040
|
+
}), _descriptor61 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "doNotCopyPaths", [_dec70], {
|
|
145800
146041
|
configurable: true,
|
|
145801
146042
|
enumerable: true,
|
|
145802
146043
|
writable: true,
|
|
145803
146044
|
initializer: null
|
|
145804
|
-
}),
|
|
146045
|
+
}), _descriptor62 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "rows", [_dec71], {
|
|
145805
146046
|
configurable: true,
|
|
145806
146047
|
enumerable: true,
|
|
145807
146048
|
writable: true,
|
|
145808
146049
|
initializer: null
|
|
145809
|
-
}),
|
|
146050
|
+
}), _descriptor63 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "header", [_dec72], {
|
|
145810
146051
|
configurable: true,
|
|
145811
146052
|
enumerable: true,
|
|
145812
146053
|
writable: true,
|
|
145813
146054
|
initializer: null
|
|
145814
|
-
}),
|
|
146055
|
+
}), _descriptor64 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "colgroup", [_dec73], {
|
|
145815
146056
|
configurable: true,
|
|
145816
146057
|
enumerable: true,
|
|
145817
146058
|
writable: true,
|
|
145818
146059
|
initializer: null
|
|
145819
|
-
}),
|
|
146060
|
+
}), _descriptor65 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "filterinfo", [_dec74], {
|
|
145820
146061
|
configurable: true,
|
|
145821
146062
|
enumerable: true,
|
|
145822
146063
|
writable: true,
|
|
145823
146064
|
initializer: null
|
|
145824
|
-
}),
|
|
146065
|
+
}), _descriptor66 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "loader", [_dec75], {
|
|
145825
146066
|
configurable: true,
|
|
145826
146067
|
enumerable: true,
|
|
145827
146068
|
writable: true,
|
|
145828
146069
|
initializer: null
|
|
145829
|
-
}),
|
|
146070
|
+
}), _descriptor67 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "align", [_dec76], {
|
|
145830
146071
|
configurable: true,
|
|
145831
146072
|
enumerable: true,
|
|
145832
146073
|
writable: true,
|
|
145833
146074
|
initializer: null
|
|
145834
|
-
}),
|
|
146075
|
+
}), _descriptor68 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "columnGrouping", [_dec77], {
|
|
145835
146076
|
configurable: true,
|
|
145836
146077
|
enumerable: true,
|
|
145837
146078
|
writable: true,
|
|
145838
146079
|
initializer: null
|
|
145839
|
-
}),
|
|
146080
|
+
}), _descriptor69 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "hiddenGroups", [_dec78], {
|
|
145840
146081
|
configurable: true,
|
|
145841
146082
|
enumerable: true,
|
|
145842
146083
|
writable: true,
|
|
145843
146084
|
initializer: null
|
|
145844
|
-
}),
|
|
146085
|
+
}), _descriptor70 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "footer", [_dec79], {
|
|
145845
146086
|
configurable: true,
|
|
145846
146087
|
enumerable: true,
|
|
145847
146088
|
writable: true,
|
|
@@ -147315,7 +147556,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
147315
147556
|
|
|
147316
147557
|
|
|
147317
147558
|
|
|
147318
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _dec20, _dec21, _dec22, _class4, _class5, _descriptor19, _descriptor20, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _class7, _class8, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42,
|
|
147559
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _dec20, _dec21, _dec22, _class4, _class5, _descriptor19, _descriptor20, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _class7, _class8, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _dec47, _dec48, _dec49, _dec50, _dec51, _dec52, _dec53, _class10, _class11, _descriptor44, _descriptor45, _descriptor46, _descriptor47, _descriptor48, _descriptor49, _dec54, _dec55, _dec56, _class13, _class14, _descriptor50, _descriptor51, _dec57, _dec58, _dec59, _class16, _class17, _descriptor52, _descriptor53, _dec60, _dec61, _class19, _class20, _descriptor54, _dec62, _dec63, _class22, _class23, _descriptor55, _dec64, _dec65, _dec66, _dec67, _dec68, _dec69, _dec70, _dec71, _dec72, _dec73, _dec74, _dec75, _dec76, _dec77, _dec78, _dec79, _dec80, _dec81, _class25, _class26, _descriptor56, _descriptor57, _descriptor58, _descriptor59, _descriptor60, _descriptor61, _descriptor62, _descriptor63, _descriptor64, _descriptor65, _descriptor66, _descriptor67, _descriptor68, _descriptor69, _descriptor70, _descriptor71, _descriptor72;
|
|
147319
147560
|
|
|
147320
147561
|
|
|
147321
147562
|
|
|
@@ -147486,7 +147727,7 @@ let StickyTableMultilineRowNode = (_dec20 = (0,_Serializer_SugarSerializer__WEBP
|
|
|
147486
147727
|
writable: true,
|
|
147487
147728
|
initializer: null
|
|
147488
147729
|
})), _class5)) || _class4);
|
|
147489
|
-
let StickyTableMultilineNode = (_dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("multiline", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable sync recursive .md$")), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.bindingPath, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.bindingPathLink)} данного элемента. Опционально, если не указан, то будет оторажаться текст заданный внутри данного элемента`), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("instancesPerPage", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `Масмальное возможное количество элементов в заданном множественном элементе. Может быть ${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.javaScriptExpressionLink)}.`), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("defaultChildren", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.arrayLiteral(), ``), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("removebutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `\"false\" - крестики не рисовать`), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("rowmenu", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("className", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("customProperty", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.UntypedUsage), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("addButtonText", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("offsetLeft", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("offsetTop", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("focusByHotkey", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `Если добавишь больше 90 строк, то пейджер сворачивается и по focusByHotkey можно сфокусироваться`), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)("row", [StickyTableMultilineRowNode]), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("addbutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.localizedString, `\"false\" - не нужна кнопка для добавления множественного блока`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("doNotCopyPaths", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.stringArray, ``), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("addType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.localizedString, ``), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("usepager", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `\"false\" - без пейджера (1-11, 12-22 - этого нет внизу страницы)`), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("show-row-border", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("override", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.customControl, ``), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("storeFilters", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `Будут ли сохраняться фильтры для этого мультилайна между обнолениями страницы. По умолчанию -- нет`), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("onRowClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике по строке"), _dec23(_class7 = (_class8 = class StickyTableMultilineNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__.SugarNodeWithLegacyVisibility {
|
|
147730
|
+
let StickyTableMultilineNode = (_dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("multiline", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable sync recursive .md$")), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.bindingPath, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.bindingPathLink)} данного элемента. Опционально, если не указан, то будет оторажаться текст заданный внутри данного элемента`), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("instancesPerPage", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("maxOccurs", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `Масмальное возможное количество элементов в заданном множественном элементе. Может быть ${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.javaScriptExpressionLink)}.`), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("defaultChildren", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.arrayLiteral(), ``), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("removebutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `\"false\" - крестики не рисовать`), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("rowmenu", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("className", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.Removed), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("customProperty", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.UntypedUsage), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("addButtonText", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("offsetLeft", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("offsetTop", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_4__.DeprecationReason.InvalidUsage), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("focusByHotkey", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `Если добавишь больше 90 строк, то пейджер сворачивается и по focusByHotkey можно сфокусироваться`), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)("row", [StickyTableMultilineRowNode]), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("addbutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.localizedString, `\"false\" - не нужна кнопка для добавления множественного блока`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("doNotCopyPaths", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.stringArray, ``), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("addType", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.localizedString, ``), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("usepager", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `\"false\" - без пейджера (1-11, 12-22 - этого нет внизу страницы)`), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("show-row-border", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("override", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.customControl, ``), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("storeFilters", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `Будут ли сохраняться фильтры для этого мультилайна между обнолениями страницы. По умолчанию -- нет`), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disableScroll", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `Возможность отключить скролл в мультилайне`), _dec46 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("onRowClick", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.helperFunctionName, "Имя кастомной helpers функции, которая вызовется при клике по строке"), _dec23(_class7 = (_class8 = class StickyTableMultilineNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__.SugarNodeWithLegacyVisibility {
|
|
147490
147731
|
constructor(...args) {
|
|
147491
147732
|
super(...args);
|
|
147492
147733
|
|
|
@@ -147532,7 +147773,9 @@ let StickyTableMultilineNode = (_dec23 = (0,_Serializer_SugarSerializer__WEBPACK
|
|
|
147532
147773
|
|
|
147533
147774
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "storeFilters", _descriptor41, this);
|
|
147534
147775
|
|
|
147535
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
147776
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disableScroll", _descriptor42, this);
|
|
147777
|
+
|
|
147778
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onRowClick", _descriptor43, this);
|
|
147536
147779
|
}
|
|
147537
147780
|
|
|
147538
147781
|
getOwnPath() {
|
|
@@ -147648,91 +147891,96 @@ let StickyTableMultilineNode = (_dec23 = (0,_Serializer_SugarSerializer__WEBPACK
|
|
|
147648
147891
|
enumerable: true,
|
|
147649
147892
|
writable: true,
|
|
147650
147893
|
initializer: null
|
|
147651
|
-
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "
|
|
147894
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "disableScroll", [_dec45], {
|
|
147895
|
+
configurable: true,
|
|
147896
|
+
enumerable: true,
|
|
147897
|
+
writable: true,
|
|
147898
|
+
initializer: null
|
|
147899
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class8.prototype, "onRowClick", [_dec46], {
|
|
147652
147900
|
configurable: true,
|
|
147653
147901
|
enumerable: true,
|
|
147654
147902
|
writable: true,
|
|
147655
147903
|
initializer: null
|
|
147656
147904
|
})), _class8)) || _class7);
|
|
147657
|
-
let StickyTableRowNode = (
|
|
147905
|
+
let StickyTableRowNode = (_dec47 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("row", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable sync recursive .md$")), _dec48 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingScopeMixinNode), _dec49 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec50 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("kind", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType["enum"]("head"), `Шапка таблицы`), _dec51 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("subkind", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType["enum"]("numbers"), `Строка с нумерацией столбцов`), _dec52 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)(["column", "multiline"], [StickyTableColumnNode, StickyTableMultilineNode]), _dec53 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("borderBottom", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `Серая черта под строкой`), _dec47(_class10 = (_class11 = class StickyTableRowNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.SugarNodeBase {
|
|
147658
147906
|
constructor(...args) {
|
|
147659
147907
|
super(...args);
|
|
147660
147908
|
|
|
147661
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope",
|
|
147909
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataScope", _descriptor44, this);
|
|
147662
147910
|
|
|
147663
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional",
|
|
147911
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor45, this);
|
|
147664
147912
|
|
|
147665
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "kind",
|
|
147913
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "kind", _descriptor46, this);
|
|
147666
147914
|
|
|
147667
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "subkind",
|
|
147915
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "subkind", _descriptor47, this);
|
|
147668
147916
|
|
|
147669
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns",
|
|
147917
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns", _descriptor48, this);
|
|
147670
147918
|
|
|
147671
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "borderBottom",
|
|
147919
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "borderBottom", _descriptor49, this);
|
|
147672
147920
|
}
|
|
147673
147921
|
|
|
147674
147922
|
getOwnPath() {
|
|
147675
147923
|
return this.dataScope.getOwnPath();
|
|
147676
147924
|
}
|
|
147677
147925
|
|
|
147678
|
-
}, (
|
|
147926
|
+
}, (_descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "dataScope", [_dec48], {
|
|
147679
147927
|
configurable: true,
|
|
147680
147928
|
enumerable: true,
|
|
147681
147929
|
writable: true,
|
|
147682
147930
|
initializer: null
|
|
147683
|
-
}),
|
|
147931
|
+
}), _descriptor45 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "optional", [_dec49], {
|
|
147684
147932
|
configurable: true,
|
|
147685
147933
|
enumerable: true,
|
|
147686
147934
|
writable: true,
|
|
147687
147935
|
initializer: null
|
|
147688
|
-
}),
|
|
147936
|
+
}), _descriptor46 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "kind", [_dec50], {
|
|
147689
147937
|
configurable: true,
|
|
147690
147938
|
enumerable: true,
|
|
147691
147939
|
writable: true,
|
|
147692
147940
|
initializer: null
|
|
147693
|
-
}),
|
|
147941
|
+
}), _descriptor47 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "subkind", [_dec51], {
|
|
147694
147942
|
configurable: true,
|
|
147695
147943
|
enumerable: true,
|
|
147696
147944
|
writable: true,
|
|
147697
147945
|
initializer: null
|
|
147698
|
-
}),
|
|
147946
|
+
}), _descriptor48 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "columns", [_dec52], {
|
|
147699
147947
|
configurable: true,
|
|
147700
147948
|
enumerable: true,
|
|
147701
147949
|
writable: true,
|
|
147702
147950
|
initializer: null
|
|
147703
|
-
}),
|
|
147951
|
+
}), _descriptor49 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class11.prototype, "borderBottom", [_dec53], {
|
|
147704
147952
|
configurable: true,
|
|
147705
147953
|
enumerable: true,
|
|
147706
147954
|
writable: true,
|
|
147707
147955
|
initializer: null
|
|
147708
147956
|
})), _class11)) || _class10);
|
|
147709
|
-
let StickyTableHeaderNode = (
|
|
147957
|
+
let StickyTableHeaderNode = (_dec54 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("header", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable sync recursive .md$")), _dec55 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("align", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType["enum"]("right"), ``), _dec56 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)(), _dec54(_class13 = (_class14 = class StickyTableHeaderNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.SugarNodeBase {
|
|
147710
147958
|
constructor(...args) {
|
|
147711
147959
|
super(...args);
|
|
147712
147960
|
|
|
147713
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align",
|
|
147961
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align", _descriptor50, this);
|
|
147714
147962
|
|
|
147715
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children",
|
|
147963
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor51, this);
|
|
147716
147964
|
}
|
|
147717
147965
|
|
|
147718
|
-
}, (
|
|
147966
|
+
}, (_descriptor50 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "align", [_dec55], {
|
|
147719
147967
|
configurable: true,
|
|
147720
147968
|
enumerable: true,
|
|
147721
147969
|
writable: true,
|
|
147722
147970
|
initializer: null
|
|
147723
|
-
}),
|
|
147971
|
+
}), _descriptor51 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class14.prototype, "children", [_dec56], {
|
|
147724
147972
|
configurable: true,
|
|
147725
147973
|
enumerable: true,
|
|
147726
147974
|
writable: true,
|
|
147727
147975
|
initializer: null
|
|
147728
147976
|
})), _class14)) || _class13);
|
|
147729
|
-
let StickyTableFooterNode = (
|
|
147977
|
+
let StickyTableFooterNode = (_dec57 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("footer", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable sync recursive .md$")), _dec58 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)(["row"], [StickyTableRowNode]), _dec59 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)("column", [StickyTableColumnNode]), _dec57(_class16 = (_class17 = class StickyTableFooterNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.SugarNodeBase {
|
|
147730
147978
|
constructor(...args) {
|
|
147731
147979
|
super(...args);
|
|
147732
147980
|
|
|
147733
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows",
|
|
147981
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows", _descriptor52, this);
|
|
147734
147982
|
|
|
147735
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns",
|
|
147983
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columns", _descriptor53, this);
|
|
147736
147984
|
}
|
|
147737
147985
|
|
|
147738
147986
|
getColumnLists() {
|
|
@@ -147745,80 +147993,80 @@ let StickyTableFooterNode = (_dec56 = (0,_Serializer_SugarSerializer__WEBPACK_IM
|
|
|
147745
147993
|
return footerColumnsLists;
|
|
147746
147994
|
}
|
|
147747
147995
|
|
|
147748
|
-
}, (
|
|
147996
|
+
}, (_descriptor52 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class17.prototype, "rows", [_dec58], {
|
|
147749
147997
|
configurable: true,
|
|
147750
147998
|
enumerable: true,
|
|
147751
147999
|
writable: true,
|
|
147752
148000
|
initializer: null
|
|
147753
|
-
}),
|
|
148001
|
+
}), _descriptor53 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class17.prototype, "columns", [_dec59], {
|
|
147754
148002
|
configurable: true,
|
|
147755
148003
|
enumerable: true,
|
|
147756
148004
|
writable: true,
|
|
147757
148005
|
initializer: null
|
|
147758
148006
|
})), _class17)) || _class16);
|
|
147759
|
-
let StickyTableColgroupColumnNode = (
|
|
148007
|
+
let StickyTableColgroupColumnNode = (_dec60 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("col", ``), _dec61 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.lengthUnit, ``), _dec60(_class19 = (_class20 = class StickyTableColgroupColumnNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.SugarNodeBase {
|
|
147760
148008
|
constructor(...args) {
|
|
147761
148009
|
super(...args);
|
|
147762
148010
|
|
|
147763
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width",
|
|
148011
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor54, this);
|
|
147764
148012
|
}
|
|
147765
148013
|
|
|
147766
|
-
}, (
|
|
148014
|
+
}, (_descriptor54 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class20.prototype, "width", [_dec61], {
|
|
147767
148015
|
configurable: true,
|
|
147768
148016
|
enumerable: true,
|
|
147769
148017
|
writable: true,
|
|
147770
148018
|
initializer: null
|
|
147771
148019
|
})), _class20)) || _class19);
|
|
147772
|
-
let StickyTableColgroupNode = (
|
|
148020
|
+
let StickyTableColgroupNode = (_dec62 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("colgroup", ``), _dec63 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)("col", [StickyTableColgroupColumnNode]), _dec62(_class22 = (_class23 = class StickyTableColgroupNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.SugarNodeBase {
|
|
147773
148021
|
constructor(...args) {
|
|
147774
148022
|
super(...args);
|
|
147775
148023
|
|
|
147776
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cols",
|
|
148024
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "cols", _descriptor55, this);
|
|
147777
148025
|
}
|
|
147778
148026
|
|
|
147779
|
-
}, (
|
|
148027
|
+
}, (_descriptor55 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class23.prototype, "cols", [_dec63], {
|
|
147780
148028
|
configurable: true,
|
|
147781
148029
|
enumerable: true,
|
|
147782
148030
|
writable: true,
|
|
147783
148031
|
initializer: null
|
|
147784
148032
|
})), _class23)) || _class22);
|
|
147785
|
-
let StickyTableNode = (
|
|
148033
|
+
let StickyTableNode = (_dec64 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("table", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/MultiControls/StickyTable sync recursive .md$"), x => x.boolAttr("sticky") || x.getFirstChild("multiline") != undefined), _dec65 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("path", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.bindingPath, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_8__.bindingPathLink)} данного элемента. Опционально, если не указан, то будет оторажаться текст заданный внутри данного элемента`), _dec66 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("optional", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec67 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("align", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType["enum"]("baseline", "top"), ``), _dec68 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("removebutton", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `\"false\" - крестики не рисовать`), _dec69 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("sticky", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, ``), _dec70 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("stickyHeader", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `Залипающая шапка`), _dec71 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("grayColumn", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.number, `Буквы во второй колонке серым цветом`), _dec72 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("side", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.number, ``), _dec73 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("className", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, ``), _dec74 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.singleChild)("colgroup", [StickyTableColgroupNode]), _dec75 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)(["row", "multiline"], [StickyTableRowNode, StickyTableMultilineNode]), _dec76 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.singleChild)("header", [StickyTableHeaderNode]), _dec77 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.singleChild)("footer", [StickyTableFooterNode]), _dec78 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("deprecated-diadoc-width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.number, ``), _dec79 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.number, `Ширина таблицы`), _dec80 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("tid", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, ``), _dec81 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("columnGrouping", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, `Только вместе с crossfit="true". {"start": "4", "end": "5", "text": ["Испр. с-ф", "040 и 050" ]} - Устанавливает колонки в которых ячейки скрыты под карандаш. В text записываются текстовки, которыми будут заменены тексты в шапке. Если для этих ячеек rowspan > 1, то нужно добавить на каждую пустую строку "". { start: 4, end: 11, showText: "Свернуть столбцы 040-110", hideText: "Столбцы 040-110" } - Устанавливает колонки, которые можно скрывать кнопкой. showText и hideText устанавливаю тексты в подсказке при наведении.`), _dec64(_class25 = (_class26 = class StickyTableNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__.SugarNodeWithLegacyVisibility {
|
|
147786
148034
|
constructor(...args) {
|
|
147787
148035
|
super(...args);
|
|
147788
148036
|
|
|
147789
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path",
|
|
148037
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "path", _descriptor56, this);
|
|
147790
148038
|
|
|
147791
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional",
|
|
148039
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "optional", _descriptor57, this);
|
|
147792
148040
|
|
|
147793
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align",
|
|
148041
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align", _descriptor58, this);
|
|
147794
148042
|
|
|
147795
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "removeButton",
|
|
148043
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "removeButton", _descriptor59, this);
|
|
147796
148044
|
|
|
147797
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sticky",
|
|
148045
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sticky", _descriptor60, this);
|
|
147798
148046
|
|
|
147799
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "stickyHeader",
|
|
148047
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "stickyHeader", _descriptor61, this);
|
|
147800
148048
|
|
|
147801
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "grayColumn",
|
|
148049
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "grayColumn", _descriptor62, this);
|
|
147802
148050
|
|
|
147803
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "side",
|
|
148051
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "side", _descriptor63, this);
|
|
147804
148052
|
|
|
147805
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "className",
|
|
148053
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "className", _descriptor64, this);
|
|
147806
148054
|
|
|
147807
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "colgroup",
|
|
148055
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "colgroup", _descriptor65, this);
|
|
147808
148056
|
|
|
147809
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows",
|
|
148057
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows", _descriptor66, this);
|
|
147810
148058
|
|
|
147811
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "header",
|
|
148059
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "header", _descriptor67, this);
|
|
147812
148060
|
|
|
147813
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "footer",
|
|
148061
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "footer", _descriptor68, this);
|
|
147814
148062
|
|
|
147815
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "deprecatedDiadocWidth",
|
|
148063
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "deprecatedDiadocWidth", _descriptor69, this);
|
|
147816
148064
|
|
|
147817
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width",
|
|
148065
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor70, this);
|
|
147818
148066
|
|
|
147819
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid",
|
|
148067
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tid", _descriptor71, this);
|
|
147820
148068
|
|
|
147821
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnGrouping",
|
|
148069
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "columnGrouping", _descriptor72, this);
|
|
147822
148070
|
}
|
|
147823
148071
|
|
|
147824
148072
|
getOwnPath() {
|
|
@@ -147829,87 +148077,87 @@ let StickyTableNode = (_dec63 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED
|
|
|
147829
148077
|
return this.rows.filter(isRowNode).filter(row => row.kind === "head");
|
|
147830
148078
|
}
|
|
147831
148079
|
|
|
147832
|
-
}, (
|
|
148080
|
+
}, (_descriptor56 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "path", [_dec65], {
|
|
147833
148081
|
configurable: true,
|
|
147834
148082
|
enumerable: true,
|
|
147835
148083
|
writable: true,
|
|
147836
148084
|
initializer: null
|
|
147837
|
-
}),
|
|
148085
|
+
}), _descriptor57 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "optional", [_dec66], {
|
|
147838
148086
|
configurable: true,
|
|
147839
148087
|
enumerable: true,
|
|
147840
148088
|
writable: true,
|
|
147841
148089
|
initializer: null
|
|
147842
|
-
}),
|
|
148090
|
+
}), _descriptor58 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "align", [_dec67], {
|
|
147843
148091
|
configurable: true,
|
|
147844
148092
|
enumerable: true,
|
|
147845
148093
|
writable: true,
|
|
147846
148094
|
initializer: null
|
|
147847
|
-
}),
|
|
148095
|
+
}), _descriptor59 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "removeButton", [_dec68], {
|
|
147848
148096
|
configurable: true,
|
|
147849
148097
|
enumerable: true,
|
|
147850
148098
|
writable: true,
|
|
147851
148099
|
initializer: null
|
|
147852
|
-
}),
|
|
148100
|
+
}), _descriptor60 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "sticky", [_dec69], {
|
|
147853
148101
|
configurable: true,
|
|
147854
148102
|
enumerable: true,
|
|
147855
148103
|
writable: true,
|
|
147856
148104
|
initializer: null
|
|
147857
|
-
}),
|
|
148105
|
+
}), _descriptor61 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "stickyHeader", [_dec70], {
|
|
147858
148106
|
configurable: true,
|
|
147859
148107
|
enumerable: true,
|
|
147860
148108
|
writable: true,
|
|
147861
148109
|
initializer: null
|
|
147862
|
-
}),
|
|
148110
|
+
}), _descriptor62 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "grayColumn", [_dec71], {
|
|
147863
148111
|
configurable: true,
|
|
147864
148112
|
enumerable: true,
|
|
147865
148113
|
writable: true,
|
|
147866
148114
|
initializer: null
|
|
147867
|
-
}),
|
|
148115
|
+
}), _descriptor63 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "side", [_dec72], {
|
|
147868
148116
|
configurable: true,
|
|
147869
148117
|
enumerable: true,
|
|
147870
148118
|
writable: true,
|
|
147871
148119
|
initializer: null
|
|
147872
|
-
}),
|
|
148120
|
+
}), _descriptor64 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "className", [_dec73], {
|
|
147873
148121
|
configurable: true,
|
|
147874
148122
|
enumerable: true,
|
|
147875
148123
|
writable: true,
|
|
147876
148124
|
initializer: null
|
|
147877
|
-
}),
|
|
148125
|
+
}), _descriptor65 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "colgroup", [_dec74], {
|
|
147878
148126
|
configurable: true,
|
|
147879
148127
|
enumerable: true,
|
|
147880
148128
|
writable: true,
|
|
147881
148129
|
initializer: null
|
|
147882
|
-
}),
|
|
148130
|
+
}), _descriptor66 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "rows", [_dec75], {
|
|
147883
148131
|
configurable: true,
|
|
147884
148132
|
enumerable: true,
|
|
147885
148133
|
writable: true,
|
|
147886
148134
|
initializer: null
|
|
147887
|
-
}),
|
|
148135
|
+
}), _descriptor67 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "header", [_dec76], {
|
|
147888
148136
|
configurable: true,
|
|
147889
148137
|
enumerable: true,
|
|
147890
148138
|
writable: true,
|
|
147891
148139
|
initializer: null
|
|
147892
|
-
}),
|
|
148140
|
+
}), _descriptor68 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "footer", [_dec77], {
|
|
147893
148141
|
configurable: true,
|
|
147894
148142
|
enumerable: true,
|
|
147895
148143
|
writable: true,
|
|
147896
148144
|
initializer: null
|
|
147897
|
-
}),
|
|
148145
|
+
}), _descriptor69 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "deprecatedDiadocWidth", [_dec78], {
|
|
147898
148146
|
configurable: true,
|
|
147899
148147
|
enumerable: true,
|
|
147900
148148
|
writable: true,
|
|
147901
148149
|
initializer: null
|
|
147902
|
-
}),
|
|
148150
|
+
}), _descriptor70 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "width", [_dec79], {
|
|
147903
148151
|
configurable: true,
|
|
147904
148152
|
enumerable: true,
|
|
147905
148153
|
writable: true,
|
|
147906
148154
|
initializer: null
|
|
147907
|
-
}),
|
|
148155
|
+
}), _descriptor71 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "tid", [_dec80], {
|
|
147908
148156
|
configurable: true,
|
|
147909
148157
|
enumerable: true,
|
|
147910
148158
|
writable: true,
|
|
147911
148159
|
initializer: null
|
|
147912
|
-
}),
|
|
148160
|
+
}), _descriptor72 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class26.prototype, "columnGrouping", [_dec81], {
|
|
147913
148161
|
configurable: true,
|
|
147914
148162
|
enumerable: true,
|
|
147915
148163
|
writable: true,
|
|
@@ -148538,6 +148786,7 @@ BindingPath: ${errorPath}`));
|
|
|
148538
148786
|
mb.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_13__.getNewBindingPathExpression)(multiline));
|
|
148539
148787
|
mb.prop(x => x.showRowBorder).set(multiline.showRowBorder);
|
|
148540
148788
|
mb.prop(x => x.onRowCLick).set(context.generateHelperFunctionExpression(multiline, "onRowClick", multiline.onRowClick));
|
|
148789
|
+
mb.prop(x => x.disableScroll).set(multiline.disableScroll);
|
|
148541
148790
|
const hasRemoveButton = ((_ref5 = (_node$removeButton = node.removeButton) !== null && _node$removeButton !== void 0 ? _node$removeButton : multiline.removebutton) !== null && _ref5 !== void 0 ? _ref5 : true) || ((_multiline$rowmenu2 = multiline.rowmenu) !== null && _multiline$rowmenu2 !== void 0 ? _multiline$rowmenu2 : false);
|
|
148542
148791
|
const needAddButton = multiline.addbutton !== "false";
|
|
148543
148792
|
|
|
@@ -150352,6 +150601,7 @@ class IconConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Sug
|
|
|
150352
150601
|
const mb = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("Icon");
|
|
150353
150602
|
mb.prop(x => x.name).set((0,_GetIconName__WEBPACK_IMPORTED_MODULE_5__.getIconName)(node, node.name));
|
|
150354
150603
|
mb.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_3__.getNewBindingPathExpression)(node));
|
|
150604
|
+
mb.prop(x => x.hint).set(this.getConverterResultFromAttributeWithMarkup(context, node.hint));
|
|
150355
150605
|
return mb.buildConverterResult();
|
|
150356
150606
|
}
|
|
150357
150607
|
|
|
@@ -150383,18 +150633,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
150383
150633
|
|
|
150384
150634
|
|
|
150385
150635
|
|
|
150386
|
-
var _dec, _dec2, _dec3, _class, _class2, _descriptor, _descriptor2;
|
|
150636
|
+
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3;
|
|
150387
150637
|
|
|
150388
150638
|
|
|
150389
150639
|
|
|
150390
150640
|
|
|
150391
|
-
let IconNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("icon", `Иконка`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Icon sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("name", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string.required, `Название иконки, можно посмотреть http://tech.skbkontur.ru/react-ui/#/Icons`), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_5__.DataBindingMixinNode), _dec(_class = (_class2 = class IconNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
|
|
150641
|
+
let IconNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("icon", `Иконка`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/Typography/Icon sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("name", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string.required, `Название иконки, можно посмотреть http://tech.skbkontur.ru/react-ui/#/Icons`), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.markupAttr)("hint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.localizedString, "Всплывающая подсказка по наведению"), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_5__.DataBindingMixinNode), _dec(_class = (_class2 = class IconNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_3__.SugarNodeWithLegacyVisibility {
|
|
150392
150642
|
constructor(...args) {
|
|
150393
150643
|
super(...args);
|
|
150394
150644
|
|
|
150395
150645
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "name", _descriptor, this);
|
|
150396
150646
|
|
|
150397
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
150647
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hint", _descriptor2, this);
|
|
150648
|
+
|
|
150649
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor3, this);
|
|
150398
150650
|
}
|
|
150399
150651
|
|
|
150400
150652
|
get path() {
|
|
@@ -150410,7 +150662,12 @@ let IconNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4
|
|
|
150410
150662
|
enumerable: true,
|
|
150411
150663
|
writable: true,
|
|
150412
150664
|
initializer: null
|
|
150413
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
150665
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "hint", [_dec3], {
|
|
150666
|
+
configurable: true,
|
|
150667
|
+
enumerable: true,
|
|
150668
|
+
writable: true,
|
|
150669
|
+
initializer: null
|
|
150670
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dataBinding", [_dec4], {
|
|
150414
150671
|
configurable: true,
|
|
150415
150672
|
enumerable: true,
|
|
150416
150673
|
writable: true,
|
|
@@ -151106,11 +151363,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151106
151363
|
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
151107
151364
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
151108
151365
|
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
151366
|
+
/* harmony import */ var _CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../CommonNodeProperties/FocusManagementNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FocusManagementNode.ts");
|
|
151109
151367
|
|
|
151110
151368
|
|
|
151111
151369
|
|
|
151112
151370
|
|
|
151113
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9;
|
|
151371
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10;
|
|
151114
151372
|
|
|
151115
151373
|
|
|
151116
151374
|
|
|
@@ -151119,27 +151377,30 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _class
|
|
|
151119
151377
|
|
|
151120
151378
|
|
|
151121
151379
|
|
|
151122
|
-
|
|
151380
|
+
|
|
151381
|
+
let CheckboxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("checkbox", ``, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Checkbox sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_10__.FocusManagementNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("width", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_8__.TooltipSettingsNode), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("checkedValue", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, ``), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("uncheckedValue", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, ``), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("otherValue", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, ``), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)(undefined, undefined, ["type"]), _dec(_class = (_class2 = class CheckboxNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__.SugarNodeWithLegacyVisibility {
|
|
151123
151382
|
constructor(...args) {
|
|
151124
151383
|
super(...args);
|
|
151125
151384
|
|
|
151126
151385
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
151127
151386
|
|
|
151128
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151387
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "focusManagement", _descriptor2, this);
|
|
151129
151388
|
|
|
151130
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151389
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled2", _descriptor3, this);
|
|
151131
151390
|
|
|
151132
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151391
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor4, this);
|
|
151392
|
+
|
|
151393
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor5, this);
|
|
151133
151394
|
|
|
151134
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings",
|
|
151395
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor6, this);
|
|
151135
151396
|
|
|
151136
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "checkedValue",
|
|
151397
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "checkedValue", _descriptor7, this);
|
|
151137
151398
|
|
|
151138
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uncheckedValue",
|
|
151399
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "uncheckedValue", _descriptor8, this);
|
|
151139
151400
|
|
|
151140
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "otherValue",
|
|
151401
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "otherValue", _descriptor9, this);
|
|
151141
151402
|
|
|
151142
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children",
|
|
151403
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "children", _descriptor10, this);
|
|
151143
151404
|
}
|
|
151144
151405
|
|
|
151145
151406
|
getOwnPath() {
|
|
@@ -151151,42 +151412,47 @@ let CheckboxNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODU
|
|
|
151151
151412
|
enumerable: true,
|
|
151152
151413
|
writable: true,
|
|
151153
151414
|
initializer: null
|
|
151154
|
-
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151415
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "focusManagement", [_dec3], {
|
|
151155
151416
|
configurable: true,
|
|
151156
151417
|
enumerable: true,
|
|
151157
151418
|
writable: true,
|
|
151158
151419
|
initializer: null
|
|
151159
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151420
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled2", [_dec4], {
|
|
151160
151421
|
configurable: true,
|
|
151161
151422
|
enumerable: true,
|
|
151162
151423
|
writable: true,
|
|
151163
151424
|
initializer: null
|
|
151164
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151425
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec5], {
|
|
151165
151426
|
configurable: true,
|
|
151166
151427
|
enumerable: true,
|
|
151167
151428
|
writable: true,
|
|
151168
151429
|
initializer: null
|
|
151169
|
-
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151430
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "validationInfo", [_dec6], {
|
|
151170
151431
|
configurable: true,
|
|
151171
151432
|
enumerable: true,
|
|
151172
151433
|
writable: true,
|
|
151173
151434
|
initializer: null
|
|
151174
|
-
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151435
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec7], {
|
|
151175
151436
|
configurable: true,
|
|
151176
151437
|
enumerable: true,
|
|
151177
151438
|
writable: true,
|
|
151178
151439
|
initializer: null
|
|
151179
|
-
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151440
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "checkedValue", [_dec8], {
|
|
151180
151441
|
configurable: true,
|
|
151181
151442
|
enumerable: true,
|
|
151182
151443
|
writable: true,
|
|
151183
151444
|
initializer: null
|
|
151184
|
-
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151445
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "uncheckedValue", [_dec9], {
|
|
151185
151446
|
configurable: true,
|
|
151186
151447
|
enumerable: true,
|
|
151187
151448
|
writable: true,
|
|
151188
151449
|
initializer: null
|
|
151189
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
151450
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "otherValue", [_dec10], {
|
|
151451
|
+
configurable: true,
|
|
151452
|
+
enumerable: true,
|
|
151453
|
+
writable: true,
|
|
151454
|
+
initializer: null
|
|
151455
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "children", [_dec11], {
|
|
151190
151456
|
configurable: true,
|
|
151191
151457
|
enumerable: true,
|
|
151192
151458
|
writable: true,
|
|
@@ -151410,11 +151676,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151410
151676
|
/* harmony import */ var _Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../Helpers/Help/HelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Help/HelpNode.ts");
|
|
151411
151677
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
151412
151678
|
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
151679
|
+
/* harmony import */ var _CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../../CommonNodeProperties/FocusManagementNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FocusManagementNode.ts");
|
|
151680
|
+
|
|
151413
151681
|
|
|
151414
151682
|
|
|
151415
151683
|
|
|
151684
|
+
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _class4, _class5, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _descriptor44;
|
|
151416
151685
|
|
|
151417
|
-
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _class4, _class5, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43;
|
|
151418
151686
|
|
|
151419
151687
|
|
|
151420
151688
|
|
|
@@ -151454,7 +151722,7 @@ let ComboboxEnumerationItem = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IM
|
|
|
151454
151722
|
writable: true,
|
|
151455
151723
|
initializer: null
|
|
151456
151724
|
})), _class2)) || _class);
|
|
151457
|
-
let ComboBoxNode = (_dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.sugarNode)("combobox", `Комбобокс`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Combobox sync recursive .md$")), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_5__.ValidationInfoNode), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingMixinNode), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_11__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_11__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_10__.TooltipSettingsNode), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("maxLength", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.InvalidUsage),
|
|
151725
|
+
let ComboBoxNode = (_dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.sugarNode)("combobox", `Комбобокс`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Combobox sync recursive .md$")), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_5__.ValidationInfoNode), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_4__.DataBindingMixinNode), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_11__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_11__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_10__.TooltipSettingsNode), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrMixin)(_CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_12__.FocusManagementNode), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("maxLength", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.InvalidUsage), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("caption", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.InvalidUsage), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("openbutton", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.InvalidUsage), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("rngAttribute", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.InvalidUsage), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("kind", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.InvalidUsage), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("title", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.InvalidUsage), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("useIncorrectValue", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.Typo), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.deprecatedAttr)("controlVersion", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_6__.DeprecationReason.Removed), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("type", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.typeName, "Тип для валидации значений"), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.singleChild)("type", [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_3__.TypeNode]), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("gId", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, `Глобальный идентификатор справочника`), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("limit", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.number, `Количество значений в выпадающем списке`), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("display", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType["enum"]("value", "name", "item"), `В каком виде отобразится выбранное значение в инпуте: значение/название/полностью`), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("disabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.boolean, ``), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("displayItem", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType["enum"]("value", "name"), ``), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("gPath", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, ``), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("gPaths", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.delimitedStringArray, ``), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("savedescription", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.boolean, ``), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("useincorrectvalue", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.boolean, `Для валидации введенного значения. если false - то только из справочника должно быть значение`), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("placeholder", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.localizedString["default"]("Начните вводить код или название"), `Когда в input-e пусто, то рисуется этот текст`), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.lengthUnit, ``), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("menuAlign", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType["enum"]("left", "right"), `Определяет, в какую сторону будет открываться выпадающий список. Значения: \`left\`, \`right\`. Значение по умолчанию: \`left\``), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("filter", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.javascriptExpression, ``), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("mostLikelyFilter", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.javascriptExpression, `Фильтр для популярных значений`), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("mostLikelyCaption", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, `Подпись для раздела с популярными значениями`), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("notFoundText", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, `Надпись при отсутствии значений по фильтру`), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("keyColumnName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, `Поле дает возможность указать произвольное значение из объекта пиклиста, вместо дефолтного \`code\`, данный ключ будет выведен в первой колонке комбобокса`), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("valueColumnName", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, `Поле дает возможность указать произвольное значение из объекта пиклиста, вместо дефолтного \`value\`, данный ключ будет выведен во второй колонке комбобокса`), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("emptyValueFilter", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.javascriptExpression, `Фильтр показываемые поля, если вводимое значение пусто`), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("help", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, ``), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.children)("enumeration", [ComboboxEnumerationItem]), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.children)("help", [_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_9__.HelpNode]), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("auto", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.boolean, "Подключен авторасчет"), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.markupAttr)("formula", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, "Подсказка для автозначения"), _dec45 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("autoValue", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, "Значение авторасчета. Код, элемент которого будет показываться как автозначение. Использовать в тестах, заменяет получение из калькуляций."), _dec46 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attr)("useAutoIcon", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_8__.attrType.string, "Какую иконку использовать при использовании авторасчета (работает только с auto = true). Имя иконки смотреть тут - https://ui.gitlab-pages.kontur.host/docs/#/react-icons"), _dec5(_class4 = (_class5 = class ComboBoxNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_7__.SugarNodeWithLegacyVisibility {
|
|
151458
151726
|
constructor(...args) {
|
|
151459
151727
|
super(...args);
|
|
151460
151728
|
|
|
@@ -151466,77 +151734,79 @@ let ComboBoxNode = (_dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MOD
|
|
|
151466
151734
|
|
|
151467
151735
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettingsNode", _descriptor7, this);
|
|
151468
151736
|
|
|
151469
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151737
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "focusManagement", _descriptor8, this);
|
|
151470
151738
|
|
|
151471
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151739
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maxLength", _descriptor9, this);
|
|
151472
151740
|
|
|
151473
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151741
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "caption", _descriptor10, this);
|
|
151474
151742
|
|
|
151475
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151743
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "openbutton", _descriptor11, this);
|
|
151476
151744
|
|
|
151477
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151745
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rngAttribute", _descriptor12, this);
|
|
151478
151746
|
|
|
151479
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151747
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "kind", _descriptor13, this);
|
|
151480
151748
|
|
|
151481
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151749
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor14, this);
|
|
151482
151750
|
|
|
151483
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151751
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "useIncorrectValueInvalidProp", _descriptor15, this);
|
|
151484
151752
|
|
|
151485
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151753
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "controlVersion", _descriptor16, this);
|
|
151486
151754
|
|
|
151487
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151755
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "type", _descriptor17, this);
|
|
151488
151756
|
|
|
151489
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151757
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "anonymousType", _descriptor18, this);
|
|
151490
151758
|
|
|
151491
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151759
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "gId", _descriptor19, this);
|
|
151492
151760
|
|
|
151493
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151761
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "limit", _descriptor20, this);
|
|
151494
151762
|
|
|
151495
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151763
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "display", _descriptor21, this);
|
|
151496
151764
|
|
|
151497
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151765
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled", _descriptor22, this);
|
|
151498
151766
|
|
|
151499
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151767
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "displayItem", _descriptor23, this);
|
|
151500
151768
|
|
|
151501
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151769
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "gPath", _descriptor24, this);
|
|
151502
151770
|
|
|
151503
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151771
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "gPaths", _descriptor25, this);
|
|
151504
151772
|
|
|
151505
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151773
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "saveDescription", _descriptor26, this);
|
|
151506
151774
|
|
|
151507
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151775
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "useIncorrectValue", _descriptor27, this);
|
|
151508
151776
|
|
|
151509
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151777
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "placeholder", _descriptor28, this);
|
|
151510
151778
|
|
|
151511
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151779
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor29, this);
|
|
151512
151780
|
|
|
151513
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151781
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "menuAlign", _descriptor30, this);
|
|
151514
151782
|
|
|
151515
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151783
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "filter", _descriptor31, this);
|
|
151516
151784
|
|
|
151517
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151785
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mostLikelyFilter", _descriptor32, this);
|
|
151518
151786
|
|
|
151519
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151787
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mostLikelyCaption", _descriptor33, this);
|
|
151520
151788
|
|
|
151521
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151789
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "notFoundText", _descriptor34, this);
|
|
151522
151790
|
|
|
151523
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151791
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "keyColumnName", _descriptor35, this);
|
|
151524
151792
|
|
|
151525
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151793
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "valueColumnName", _descriptor36, this);
|
|
151526
151794
|
|
|
151527
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151795
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "emptyValueFilter", _descriptor37, this);
|
|
151528
151796
|
|
|
151529
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151797
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "help", _descriptor38, this);
|
|
151530
151798
|
|
|
151531
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151799
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "enumeration", _descriptor39, this);
|
|
151532
151800
|
|
|
151533
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151801
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "helpNodes", _descriptor40, this);
|
|
151534
151802
|
|
|
151535
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151803
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "auto", _descriptor41, this);
|
|
151536
151804
|
|
|
151537
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151805
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "formula", _descriptor42, this);
|
|
151538
151806
|
|
|
151539
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
151807
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "autoValue", _descriptor43, this);
|
|
151808
|
+
|
|
151809
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "useAutoIcon", _descriptor44, this);
|
|
151540
151810
|
}
|
|
151541
151811
|
|
|
151542
151812
|
getOwnPath() {
|
|
@@ -151567,182 +151837,187 @@ let ComboBoxNode = (_dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MOD
|
|
|
151567
151837
|
enumerable: true,
|
|
151568
151838
|
writable: true,
|
|
151569
151839
|
initializer: null
|
|
151570
|
-
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151840
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "focusManagement", [_dec10], {
|
|
151571
151841
|
configurable: true,
|
|
151572
151842
|
enumerable: true,
|
|
151573
151843
|
writable: true,
|
|
151574
151844
|
initializer: null
|
|
151575
|
-
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151845
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "maxLength", [_dec11], {
|
|
151576
151846
|
configurable: true,
|
|
151577
151847
|
enumerable: true,
|
|
151578
151848
|
writable: true,
|
|
151579
151849
|
initializer: null
|
|
151580
|
-
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151850
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "caption", [_dec12], {
|
|
151581
151851
|
configurable: true,
|
|
151582
151852
|
enumerable: true,
|
|
151583
151853
|
writable: true,
|
|
151584
151854
|
initializer: null
|
|
151585
|
-
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151855
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "openbutton", [_dec13], {
|
|
151586
151856
|
configurable: true,
|
|
151587
151857
|
enumerable: true,
|
|
151588
151858
|
writable: true,
|
|
151589
151859
|
initializer: null
|
|
151590
|
-
}), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151860
|
+
}), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "rngAttribute", [_dec14], {
|
|
151591
151861
|
configurable: true,
|
|
151592
151862
|
enumerable: true,
|
|
151593
151863
|
writable: true,
|
|
151594
151864
|
initializer: null
|
|
151595
|
-
}), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151865
|
+
}), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "kind", [_dec15], {
|
|
151596
151866
|
configurable: true,
|
|
151597
151867
|
enumerable: true,
|
|
151598
151868
|
writable: true,
|
|
151599
151869
|
initializer: null
|
|
151600
|
-
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151870
|
+
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "title", [_dec16], {
|
|
151601
151871
|
configurable: true,
|
|
151602
151872
|
enumerable: true,
|
|
151603
151873
|
writable: true,
|
|
151604
151874
|
initializer: null
|
|
151605
|
-
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151875
|
+
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "useIncorrectValueInvalidProp", [_dec17], {
|
|
151606
151876
|
configurable: true,
|
|
151607
151877
|
enumerable: true,
|
|
151608
151878
|
writable: true,
|
|
151609
151879
|
initializer: null
|
|
151610
|
-
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151880
|
+
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "controlVersion", [_dec18], {
|
|
151611
151881
|
configurable: true,
|
|
151612
151882
|
enumerable: true,
|
|
151613
151883
|
writable: true,
|
|
151614
151884
|
initializer: null
|
|
151615
|
-
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151885
|
+
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "type", [_dec19], {
|
|
151616
151886
|
configurable: true,
|
|
151617
151887
|
enumerable: true,
|
|
151618
151888
|
writable: true,
|
|
151619
151889
|
initializer: null
|
|
151620
|
-
}), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151890
|
+
}), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "anonymousType", [_dec20], {
|
|
151621
151891
|
configurable: true,
|
|
151622
151892
|
enumerable: true,
|
|
151623
151893
|
writable: true,
|
|
151624
151894
|
initializer: null
|
|
151625
|
-
}), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151895
|
+
}), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "gId", [_dec21], {
|
|
151626
151896
|
configurable: true,
|
|
151627
151897
|
enumerable: true,
|
|
151628
151898
|
writable: true,
|
|
151629
151899
|
initializer: null
|
|
151630
|
-
}), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151900
|
+
}), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "limit", [_dec22], {
|
|
151631
151901
|
configurable: true,
|
|
151632
151902
|
enumerable: true,
|
|
151633
151903
|
writable: true,
|
|
151634
151904
|
initializer: null
|
|
151635
|
-
}), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151905
|
+
}), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "display", [_dec23], {
|
|
151636
151906
|
configurable: true,
|
|
151637
151907
|
enumerable: true,
|
|
151638
151908
|
writable: true,
|
|
151639
151909
|
initializer: null
|
|
151640
|
-
}), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151910
|
+
}), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "disabled", [_dec24], {
|
|
151641
151911
|
configurable: true,
|
|
151642
151912
|
enumerable: true,
|
|
151643
151913
|
writable: true,
|
|
151644
151914
|
initializer: null
|
|
151645
|
-
}), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151915
|
+
}), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "displayItem", [_dec25], {
|
|
151646
151916
|
configurable: true,
|
|
151647
151917
|
enumerable: true,
|
|
151648
151918
|
writable: true,
|
|
151649
151919
|
initializer: null
|
|
151650
|
-
}), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151920
|
+
}), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "gPath", [_dec26], {
|
|
151651
151921
|
configurable: true,
|
|
151652
151922
|
enumerable: true,
|
|
151653
151923
|
writable: true,
|
|
151654
151924
|
initializer: null
|
|
151655
|
-
}), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151925
|
+
}), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "gPaths", [_dec27], {
|
|
151656
151926
|
configurable: true,
|
|
151657
151927
|
enumerable: true,
|
|
151658
151928
|
writable: true,
|
|
151659
151929
|
initializer: null
|
|
151660
|
-
}), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151930
|
+
}), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "saveDescription", [_dec28], {
|
|
151661
151931
|
configurable: true,
|
|
151662
151932
|
enumerable: true,
|
|
151663
151933
|
writable: true,
|
|
151664
151934
|
initializer: null
|
|
151665
|
-
}), _descriptor27 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151935
|
+
}), _descriptor27 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "useIncorrectValue", [_dec29], {
|
|
151666
151936
|
configurable: true,
|
|
151667
151937
|
enumerable: true,
|
|
151668
151938
|
writable: true,
|
|
151669
151939
|
initializer: null
|
|
151670
|
-
}), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151940
|
+
}), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "placeholder", [_dec30], {
|
|
151671
151941
|
configurable: true,
|
|
151672
151942
|
enumerable: true,
|
|
151673
151943
|
writable: true,
|
|
151674
151944
|
initializer: null
|
|
151675
|
-
}), _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151945
|
+
}), _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "width", [_dec31], {
|
|
151676
151946
|
configurable: true,
|
|
151677
151947
|
enumerable: true,
|
|
151678
151948
|
writable: true,
|
|
151679
151949
|
initializer: null
|
|
151680
|
-
}), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151950
|
+
}), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "menuAlign", [_dec32], {
|
|
151681
151951
|
configurable: true,
|
|
151682
151952
|
enumerable: true,
|
|
151683
151953
|
writable: true,
|
|
151684
151954
|
initializer: null
|
|
151685
|
-
}), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151955
|
+
}), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "filter", [_dec33], {
|
|
151686
151956
|
configurable: true,
|
|
151687
151957
|
enumerable: true,
|
|
151688
151958
|
writable: true,
|
|
151689
151959
|
initializer: null
|
|
151690
|
-
}), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151960
|
+
}), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "mostLikelyFilter", [_dec34], {
|
|
151691
151961
|
configurable: true,
|
|
151692
151962
|
enumerable: true,
|
|
151693
151963
|
writable: true,
|
|
151694
151964
|
initializer: null
|
|
151695
|
-
}), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151965
|
+
}), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "mostLikelyCaption", [_dec35], {
|
|
151696
151966
|
configurable: true,
|
|
151697
151967
|
enumerable: true,
|
|
151698
151968
|
writable: true,
|
|
151699
151969
|
initializer: null
|
|
151700
|
-
}), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151970
|
+
}), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "notFoundText", [_dec36], {
|
|
151701
151971
|
configurable: true,
|
|
151702
151972
|
enumerable: true,
|
|
151703
151973
|
writable: true,
|
|
151704
151974
|
initializer: null
|
|
151705
|
-
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151975
|
+
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "keyColumnName", [_dec37], {
|
|
151706
151976
|
configurable: true,
|
|
151707
151977
|
enumerable: true,
|
|
151708
151978
|
writable: true,
|
|
151709
151979
|
initializer: null
|
|
151710
|
-
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151980
|
+
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "valueColumnName", [_dec38], {
|
|
151711
151981
|
configurable: true,
|
|
151712
151982
|
enumerable: true,
|
|
151713
151983
|
writable: true,
|
|
151714
151984
|
initializer: null
|
|
151715
|
-
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151985
|
+
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "emptyValueFilter", [_dec39], {
|
|
151716
151986
|
configurable: true,
|
|
151717
151987
|
enumerable: true,
|
|
151718
151988
|
writable: true,
|
|
151719
151989
|
initializer: null
|
|
151720
|
-
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151990
|
+
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "help", [_dec40], {
|
|
151721
151991
|
configurable: true,
|
|
151722
151992
|
enumerable: true,
|
|
151723
151993
|
writable: true,
|
|
151724
151994
|
initializer: null
|
|
151725
|
-
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
151995
|
+
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "enumeration", [_dec41], {
|
|
151726
151996
|
configurable: true,
|
|
151727
151997
|
enumerable: true,
|
|
151728
151998
|
writable: true,
|
|
151729
151999
|
initializer: null
|
|
151730
|
-
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
152000
|
+
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "helpNodes", [_dec42], {
|
|
151731
152001
|
configurable: true,
|
|
151732
152002
|
enumerable: true,
|
|
151733
152003
|
writable: true,
|
|
151734
152004
|
initializer: null
|
|
151735
|
-
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
152005
|
+
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "auto", [_dec43], {
|
|
151736
152006
|
configurable: true,
|
|
151737
152007
|
enumerable: true,
|
|
151738
152008
|
writable: true,
|
|
151739
152009
|
initializer: null
|
|
151740
|
-
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
152010
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "formula", [_dec44], {
|
|
151741
152011
|
configurable: true,
|
|
151742
152012
|
enumerable: true,
|
|
151743
152013
|
writable: true,
|
|
151744
152014
|
initializer: null
|
|
151745
|
-
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "
|
|
152015
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "autoValue", [_dec45], {
|
|
152016
|
+
configurable: true,
|
|
152017
|
+
enumerable: true,
|
|
152018
|
+
writable: true,
|
|
152019
|
+
initializer: null
|
|
152020
|
+
}), _descriptor44 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class5.prototype, "useAutoIcon", [_dec46], {
|
|
151746
152021
|
configurable: true,
|
|
151747
152022
|
enumerable: true,
|
|
151748
152023
|
writable: true,
|
|
@@ -153770,6 +154045,11 @@ class InputConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Su
|
|
|
153770
154045
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_4__.getNewBindingPathExpression)(node));
|
|
153771
154046
|
markupBuilder.prop(x => x.placeholder).set(node.placeholder);
|
|
153772
154047
|
markupBuilder.prop(x => x.disabled).set(node.disabled);
|
|
154048
|
+
markupBuilder.prop(x => x.withIgnoreAutoFlag).set(node.withIgnoreAutoFlag);
|
|
154049
|
+
|
|
154050
|
+
if (node.callHelperOnChange) {
|
|
154051
|
+
markupBuilder.prop(x => x.callHelperOnChange).set(context.generateHelperFunctionExpression(node, "callHelperOnChange", node.callHelperOnChange));
|
|
154052
|
+
}
|
|
153773
154053
|
|
|
153774
154054
|
if (node.disabled2 != undefined) {
|
|
153775
154055
|
markupBuilder.prop(x => x.disabled2).set((0,_SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_5__.buildExpressionPropValue)(node.disabled2));
|
|
@@ -153827,6 +154107,7 @@ class InputConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.Su
|
|
|
153827
154107
|
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_4__.getNewBindingPathExpression)(node));
|
|
153828
154108
|
markupBuilder.prop(x => x.hint).set(this.getConverterResultFromAttributeWithMarkup(context, node.hint));
|
|
153829
154109
|
markupBuilder.prop(x => x.disabled).set(node.disabled);
|
|
154110
|
+
markupBuilder.prop(x => x.withIgnoreAutoFlag).set(node.withIgnoreAutoFlag);
|
|
153830
154111
|
markupBuilder.prop(x => x.disabledPure).set(node.deprecatedDisabledForRpn);
|
|
153831
154112
|
markupBuilder.prop(x => x.align).set(node.align);
|
|
153832
154113
|
markupBuilder.prop(x => x.useAutoIcon).set((0,_Typography_Icon_GetIconName__WEBPACK_IMPORTED_MODULE_6__.getIconName)(node, node.useAutoIcon));
|
|
@@ -154017,11 +154298,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
154017
154298
|
/* harmony import */ var _Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../Helpers/Help/HelpNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/Helpers/Help/HelpNode.ts");
|
|
154018
154299
|
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
154019
154300
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
154301
|
+
/* harmony import */ var _CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../CommonNodeProperties/FocusManagementNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FocusManagementNode.ts");
|
|
154302
|
+
|
|
154020
154303
|
|
|
154021
154304
|
|
|
154022
154305
|
|
|
154306
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43;
|
|
154023
154307
|
|
|
154024
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39;
|
|
154025
154308
|
|
|
154026
154309
|
|
|
154027
154310
|
|
|
@@ -154031,7 +154314,7 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11
|
|
|
154031
154314
|
|
|
154032
154315
|
|
|
154033
154316
|
|
|
154034
|
-
let InputNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("input", `Текстовое поле ввода. Используется только для редактирование текстовых и числовых значений.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Input sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_10__.TooltipSettingsNode),
|
|
154317
|
+
let InputNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("input", `Текстовое поле ввода. Используется только для редактирование текстовых и числовых значений.`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/Input sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_11__.FocusManagementNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_10__.TooltipSettingsNode), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("className", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("line", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("resize", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("rngAttribute", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec10 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("caption", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec11 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("gId", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.UntypedUsage), _dec12 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("dataType", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec13 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("useincorrectvalue", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec14 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("inputLimit", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec15 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("textOverflow", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec16 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("editable", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec17 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("title", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec18 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("autoResize", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec19 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("rows", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec20 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("sendMetrics", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec21 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("placeholder", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.localizedString, ""), _dec22 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("useAutoIcon", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, "Какую иконку использовать при использовании авторасчета (работает только с auto = true). Имя иконки смотреть тут - https://ui.gitlab-pages.kontur.host/docs/#/react-icons"), _dec23 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("defaultValue", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, "Значение которое будет установлено по умолчанию, в случае если в inner отсутствует путь данного элемента указанный в path"), _dec24 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.markupAttr)("hint", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.localizedString, "Всплывающая подсказка по наведению"), _dec25 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("auto", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, "Подключен авторассчет"), _dec26 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("callHelperOnChange", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.helperFunctionName, "Вызов helper функции на onChange контролла"), _dec27 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("withIgnoreAutoFlag", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, "Костыль: поставить true, если есть 2 инпута под if/else с одинаковыми путями, но один с auto, а другой без"), _dec28 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("onChange", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.helperFunctionName, "Вызов helper функции на onChange контролла"), _dec29 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("mask", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, `
|
|
154035
154318
|
Что это?
|
|
154036
154319
|
Маска, позволяет задать правила отображения данных в поле input.
|
|
154037
154320
|
Например так:
|
|
@@ -154048,7 +154331,7 @@ let InputNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
154048
154331
|
|
|
154049
154332
|
Для разработчиков:
|
|
154050
154333
|
Где код? Данное свойство прокидывается в react-ui а от туда в https://github.com/sanniassin/react-input-mask
|
|
154051
|
-
`),
|
|
154334
|
+
`), _dec30 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("maskChar", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, `
|
|
154052
154335
|
Работает в совокупности с mask (прочитать ее доку обязательно!)
|
|
154053
154336
|
|
|
154054
154337
|
Символ, обозначающий маску, при фокусе на элемент. По умолчанию \`_\` однако может быть заменен на что угодно, например \`+\`
|
|
@@ -154056,7 +154339,7 @@ let InputNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
154056
154339
|
\`<input mask="99 999" path="test" maskChar="+" />\`
|
|
154057
154340
|
|
|
154058
154341
|
Теперь при фокусе, в отображении маски будут плюсики
|
|
154059
|
-
`),
|
|
154342
|
+
`), _dec31 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("formatChars", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.object, `
|
|
154060
154343
|
Работает в совокупности с mask (прочитать ее доку обязательно!)
|
|
154061
154344
|
|
|
154062
154345
|
Хотя маску (параметр mask) можно передавать и без formatChars, однако, если требуется более тонкая настройка валидации, то можно использовать
|
|
@@ -154079,7 +154362,7 @@ let InputNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
154079
154362
|
<input mask="XX XX XX" formatChars={{ X: "." }} />
|
|
154080
154363
|
|
|
154081
154364
|
**Но имейте ввиду, хотя валидации (цифры или буквы) не будет, но данные свыше данной маски справа будут отрезаны!**
|
|
154082
|
-
`),
|
|
154365
|
+
`), _dec32 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disabled", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, "Поле ввода становится заблокированным для редактирования"), _dec33 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec34 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("settings", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, "'true': всегда первой будет применяться указанная fetchfn, а если она вернет undefined то тогда будет брать из модели - из фуфа/draftinfo (то, что придет с сервера). В противном случае fetchfn сработает только в том случае, когда бекенд ничего не прислал"), _dec35 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("deprecated-disabled-for-rpn", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, "Поле ввода становится заблокированным для редактирования"), _dec36 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("width", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.lengthUnit, "Ширина поля"), _dec37 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("visible", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_9__.javaScriptExpressionLink)} для условного скрытия контрола`), _dec38 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("align", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType["enum"]("left", "right"), "Выравнивание текста внутри поля ввода (`left` | `right`, default: `left`)"), _dec39 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.markupAttr)("formula", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, "Всплывающая подсказка по авторасчету"), _dec40 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.markupAttr)("suffix", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, `Текст или верстка отображаемая в правой части input-а`), _dec41 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.markupAttr)("prefix", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, `Текст или верстка отображаемая в левой части input-а`), _dec42 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("help", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.string, ``), _dec43 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)("help", [_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_8__.HelpNode]), _dec44 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("currency", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.boolean, `При включении этого флага значение в поле отображается как денежное: с двумя знаками после запятой и пробелами между тысячами.`), _dec(_class = (_class2 = class InputNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__.SugarNodeWithLegacyVisibility {
|
|
154083
154366
|
constructor(...args) {
|
|
154084
154367
|
super(...args);
|
|
154085
154368
|
|
|
@@ -154087,79 +154370,87 @@ let InputNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
154087
154370
|
|
|
154088
154371
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor2, this);
|
|
154089
154372
|
|
|
154090
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154373
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "focusManagement", _descriptor3, this);
|
|
154091
154374
|
|
|
154092
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154375
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor4, this);
|
|
154376
|
+
|
|
154377
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "className", _descriptor5, this);
|
|
154378
|
+
|
|
154379
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "line", _descriptor6, this);
|
|
154380
|
+
|
|
154381
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "resize", _descriptor7, this);
|
|
154093
154382
|
|
|
154094
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154383
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rngAttribute", _descriptor8, this);
|
|
154095
154384
|
|
|
154096
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154385
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "caption", _descriptor9, this);
|
|
154097
154386
|
|
|
154098
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154387
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "gId", _descriptor10, this);
|
|
154099
154388
|
|
|
154100
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154389
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataType", _descriptor11, this);
|
|
154101
154390
|
|
|
154102
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154391
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "useincorrectvalue", _descriptor12, this);
|
|
154103
154392
|
|
|
154104
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154393
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "inputLimit", _descriptor13, this);
|
|
154105
154394
|
|
|
154106
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154395
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "textOverflow", _descriptor14, this);
|
|
154107
154396
|
|
|
154108
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154397
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "editable", _descriptor15, this);
|
|
154109
154398
|
|
|
154110
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154399
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "title", _descriptor16, this);
|
|
154111
154400
|
|
|
154112
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154401
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "autoResize", _descriptor17, this);
|
|
154113
154402
|
|
|
154114
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154403
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "rows", _descriptor18, this);
|
|
154115
154404
|
|
|
154116
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154405
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sendMetrics", _descriptor19, this);
|
|
154117
154406
|
|
|
154118
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154407
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "placeholder", _descriptor20, this);
|
|
154119
154408
|
|
|
154120
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154409
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "useAutoIcon", _descriptor21, this);
|
|
154121
154410
|
|
|
154122
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154411
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "defaultValue", _descriptor22, this);
|
|
154123
154412
|
|
|
154124
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154413
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "hint", _descriptor23, this);
|
|
154125
154414
|
|
|
154126
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154415
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "auto", _descriptor24, this);
|
|
154127
154416
|
|
|
154128
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154417
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "callHelperOnChange", _descriptor25, this);
|
|
154129
154418
|
|
|
154130
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154419
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "withIgnoreAutoFlag", _descriptor26, this);
|
|
154131
154420
|
|
|
154132
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154421
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "onChange", _descriptor27, this);
|
|
154133
154422
|
|
|
154134
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154423
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "mask", _descriptor28, this);
|
|
154135
154424
|
|
|
154136
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154425
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "maskChar", _descriptor29, this);
|
|
154137
154426
|
|
|
154138
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154427
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "formatChars", _descriptor30, this);
|
|
154139
154428
|
|
|
154140
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154429
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled", _descriptor31, this);
|
|
154141
154430
|
|
|
154142
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154431
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled2", _descriptor32, this);
|
|
154143
154432
|
|
|
154144
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154433
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "settings", _descriptor33, this);
|
|
154145
154434
|
|
|
154146
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154435
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "deprecatedDisabledForRpn", _descriptor34, this);
|
|
154147
154436
|
|
|
154148
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154437
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "width", _descriptor35, this);
|
|
154149
154438
|
|
|
154150
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154439
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "visible", _descriptor36, this);
|
|
154151
154440
|
|
|
154152
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154441
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "align", _descriptor37, this);
|
|
154153
154442
|
|
|
154154
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154443
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "formula", _descriptor38, this);
|
|
154155
154444
|
|
|
154156
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154445
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "suffix", _descriptor39, this);
|
|
154157
154446
|
|
|
154158
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154447
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "prefix", _descriptor40, this);
|
|
154159
154448
|
|
|
154160
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154449
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "help", _descriptor41, this);
|
|
154161
154450
|
|
|
154162
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
154451
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "helpNodes", _descriptor42, this);
|
|
154452
|
+
|
|
154453
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "currency", _descriptor43, this);
|
|
154163
154454
|
}
|
|
154164
154455
|
|
|
154165
154456
|
getOwnPath() {
|
|
@@ -154180,187 +154471,207 @@ let InputNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
154180
154471
|
enumerable: true,
|
|
154181
154472
|
writable: true,
|
|
154182
154473
|
initializer: null
|
|
154183
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
154474
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "focusManagement", [_dec4], {
|
|
154184
154475
|
configurable: true,
|
|
154185
154476
|
enumerable: true,
|
|
154186
154477
|
writable: true,
|
|
154187
154478
|
initializer: null
|
|
154188
|
-
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
154479
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec5], {
|
|
154480
|
+
configurable: true,
|
|
154481
|
+
enumerable: true,
|
|
154482
|
+
writable: true,
|
|
154483
|
+
initializer: null
|
|
154484
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "className", [_dec6], {
|
|
154485
|
+
configurable: true,
|
|
154486
|
+
enumerable: true,
|
|
154487
|
+
writable: true,
|
|
154488
|
+
initializer: null
|
|
154489
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "line", [_dec7], {
|
|
154189
154490
|
configurable: true,
|
|
154190
154491
|
enumerable: true,
|
|
154191
154492
|
writable: true,
|
|
154192
154493
|
initializer: null
|
|
154193
|
-
}),
|
|
154494
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "resize", [_dec8], {
|
|
154194
154495
|
configurable: true,
|
|
154195
154496
|
enumerable: true,
|
|
154196
154497
|
writable: true,
|
|
154197
154498
|
initializer: null
|
|
154198
|
-
}),
|
|
154499
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "rngAttribute", [_dec9], {
|
|
154199
154500
|
configurable: true,
|
|
154200
154501
|
enumerable: true,
|
|
154201
154502
|
writable: true,
|
|
154202
154503
|
initializer: null
|
|
154203
|
-
}),
|
|
154504
|
+
}), _descriptor9 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "caption", [_dec10], {
|
|
154204
154505
|
configurable: true,
|
|
154205
154506
|
enumerable: true,
|
|
154206
154507
|
writable: true,
|
|
154207
154508
|
initializer: null
|
|
154208
|
-
}),
|
|
154509
|
+
}), _descriptor10 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "gId", [_dec11], {
|
|
154209
154510
|
configurable: true,
|
|
154210
154511
|
enumerable: true,
|
|
154211
154512
|
writable: true,
|
|
154212
154513
|
initializer: null
|
|
154213
|
-
}),
|
|
154514
|
+
}), _descriptor11 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dataType", [_dec12], {
|
|
154214
154515
|
configurable: true,
|
|
154215
154516
|
enumerable: true,
|
|
154216
154517
|
writable: true,
|
|
154217
154518
|
initializer: null
|
|
154218
|
-
}),
|
|
154519
|
+
}), _descriptor12 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "useincorrectvalue", [_dec13], {
|
|
154219
154520
|
configurable: true,
|
|
154220
154521
|
enumerable: true,
|
|
154221
154522
|
writable: true,
|
|
154222
154523
|
initializer: null
|
|
154223
|
-
}),
|
|
154524
|
+
}), _descriptor13 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "inputLimit", [_dec14], {
|
|
154224
154525
|
configurable: true,
|
|
154225
154526
|
enumerable: true,
|
|
154226
154527
|
writable: true,
|
|
154227
154528
|
initializer: null
|
|
154228
|
-
}),
|
|
154529
|
+
}), _descriptor14 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "textOverflow", [_dec15], {
|
|
154229
154530
|
configurable: true,
|
|
154230
154531
|
enumerable: true,
|
|
154231
154532
|
writable: true,
|
|
154232
154533
|
initializer: null
|
|
154233
|
-
}),
|
|
154534
|
+
}), _descriptor15 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "editable", [_dec16], {
|
|
154234
154535
|
configurable: true,
|
|
154235
154536
|
enumerable: true,
|
|
154236
154537
|
writable: true,
|
|
154237
154538
|
initializer: null
|
|
154238
|
-
}),
|
|
154539
|
+
}), _descriptor16 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "title", [_dec17], {
|
|
154239
154540
|
configurable: true,
|
|
154240
154541
|
enumerable: true,
|
|
154241
154542
|
writable: true,
|
|
154242
154543
|
initializer: null
|
|
154243
|
-
}),
|
|
154544
|
+
}), _descriptor17 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "autoResize", [_dec18], {
|
|
154244
154545
|
configurable: true,
|
|
154245
154546
|
enumerable: true,
|
|
154246
154547
|
writable: true,
|
|
154247
154548
|
initializer: null
|
|
154248
|
-
}),
|
|
154549
|
+
}), _descriptor18 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "rows", [_dec19], {
|
|
154249
154550
|
configurable: true,
|
|
154250
154551
|
enumerable: true,
|
|
154251
154552
|
writable: true,
|
|
154252
154553
|
initializer: null
|
|
154253
|
-
}),
|
|
154554
|
+
}), _descriptor19 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "sendMetrics", [_dec20], {
|
|
154254
154555
|
configurable: true,
|
|
154255
154556
|
enumerable: true,
|
|
154256
154557
|
writable: true,
|
|
154257
154558
|
initializer: null
|
|
154258
|
-
}),
|
|
154559
|
+
}), _descriptor20 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "placeholder", [_dec21], {
|
|
154259
154560
|
configurable: true,
|
|
154260
154561
|
enumerable: true,
|
|
154261
154562
|
writable: true,
|
|
154262
154563
|
initializer: null
|
|
154263
|
-
}),
|
|
154564
|
+
}), _descriptor21 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "useAutoIcon", [_dec22], {
|
|
154264
154565
|
configurable: true,
|
|
154265
154566
|
enumerable: true,
|
|
154266
154567
|
writable: true,
|
|
154267
154568
|
initializer: null
|
|
154268
|
-
}),
|
|
154569
|
+
}), _descriptor22 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "defaultValue", [_dec23], {
|
|
154269
154570
|
configurable: true,
|
|
154270
154571
|
enumerable: true,
|
|
154271
154572
|
writable: true,
|
|
154272
154573
|
initializer: null
|
|
154273
|
-
}),
|
|
154574
|
+
}), _descriptor23 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "hint", [_dec24], {
|
|
154274
154575
|
configurable: true,
|
|
154275
154576
|
enumerable: true,
|
|
154276
154577
|
writable: true,
|
|
154277
154578
|
initializer: null
|
|
154278
|
-
}),
|
|
154579
|
+
}), _descriptor24 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "auto", [_dec25], {
|
|
154279
154580
|
configurable: true,
|
|
154280
154581
|
enumerable: true,
|
|
154281
154582
|
writable: true,
|
|
154282
154583
|
initializer: null
|
|
154283
|
-
}),
|
|
154584
|
+
}), _descriptor25 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "callHelperOnChange", [_dec26], {
|
|
154284
154585
|
configurable: true,
|
|
154285
154586
|
enumerable: true,
|
|
154286
154587
|
writable: true,
|
|
154287
154588
|
initializer: null
|
|
154288
|
-
}),
|
|
154589
|
+
}), _descriptor26 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "withIgnoreAutoFlag", [_dec27], {
|
|
154289
154590
|
configurable: true,
|
|
154290
154591
|
enumerable: true,
|
|
154291
154592
|
writable: true,
|
|
154292
154593
|
initializer: null
|
|
154293
|
-
}),
|
|
154594
|
+
}), _descriptor27 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "onChange", [_dec28], {
|
|
154294
154595
|
configurable: true,
|
|
154295
154596
|
enumerable: true,
|
|
154296
154597
|
writable: true,
|
|
154297
154598
|
initializer: null
|
|
154298
|
-
}),
|
|
154599
|
+
}), _descriptor28 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "mask", [_dec29], {
|
|
154299
154600
|
configurable: true,
|
|
154300
154601
|
enumerable: true,
|
|
154301
154602
|
writable: true,
|
|
154302
154603
|
initializer: null
|
|
154303
|
-
}),
|
|
154604
|
+
}), _descriptor29 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "maskChar", [_dec30], {
|
|
154304
154605
|
configurable: true,
|
|
154305
154606
|
enumerable: true,
|
|
154306
154607
|
writable: true,
|
|
154307
154608
|
initializer: null
|
|
154308
|
-
}),
|
|
154609
|
+
}), _descriptor30 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "formatChars", [_dec31], {
|
|
154309
154610
|
configurable: true,
|
|
154310
154611
|
enumerable: true,
|
|
154311
154612
|
writable: true,
|
|
154312
154613
|
initializer: null
|
|
154313
|
-
}),
|
|
154614
|
+
}), _descriptor31 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled", [_dec32], {
|
|
154314
154615
|
configurable: true,
|
|
154315
154616
|
enumerable: true,
|
|
154316
154617
|
writable: true,
|
|
154317
154618
|
initializer: null
|
|
154318
|
-
}),
|
|
154619
|
+
}), _descriptor32 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled2", [_dec33], {
|
|
154319
154620
|
configurable: true,
|
|
154320
154621
|
enumerable: true,
|
|
154321
154622
|
writable: true,
|
|
154322
154623
|
initializer: null
|
|
154323
|
-
}),
|
|
154624
|
+
}), _descriptor33 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "settings", [_dec34], {
|
|
154324
154625
|
configurable: true,
|
|
154325
154626
|
enumerable: true,
|
|
154326
154627
|
writable: true,
|
|
154327
154628
|
initializer: null
|
|
154328
|
-
}),
|
|
154629
|
+
}), _descriptor34 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "deprecatedDisabledForRpn", [_dec35], {
|
|
154329
154630
|
configurable: true,
|
|
154330
154631
|
enumerable: true,
|
|
154331
154632
|
writable: true,
|
|
154332
154633
|
initializer: null
|
|
154333
|
-
}),
|
|
154634
|
+
}), _descriptor35 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "width", [_dec36], {
|
|
154334
154635
|
configurable: true,
|
|
154335
154636
|
enumerable: true,
|
|
154336
154637
|
writable: true,
|
|
154337
154638
|
initializer: null
|
|
154338
|
-
}),
|
|
154639
|
+
}), _descriptor36 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "visible", [_dec37], {
|
|
154339
154640
|
configurable: true,
|
|
154340
154641
|
enumerable: true,
|
|
154341
154642
|
writable: true,
|
|
154342
154643
|
initializer: null
|
|
154343
|
-
}),
|
|
154644
|
+
}), _descriptor37 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "align", [_dec38], {
|
|
154344
154645
|
configurable: true,
|
|
154345
154646
|
enumerable: true,
|
|
154346
154647
|
writable: true,
|
|
154347
154648
|
initializer: null
|
|
154348
|
-
}),
|
|
154649
|
+
}), _descriptor38 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "formula", [_dec39], {
|
|
154349
154650
|
configurable: true,
|
|
154350
154651
|
enumerable: true,
|
|
154351
154652
|
writable: true,
|
|
154352
154653
|
initializer: null
|
|
154353
|
-
}),
|
|
154654
|
+
}), _descriptor39 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "suffix", [_dec40], {
|
|
154354
154655
|
configurable: true,
|
|
154355
154656
|
enumerable: true,
|
|
154356
154657
|
writable: true,
|
|
154357
154658
|
initializer: null
|
|
154358
|
-
}),
|
|
154659
|
+
}), _descriptor40 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "prefix", [_dec41], {
|
|
154359
154660
|
configurable: true,
|
|
154360
154661
|
enumerable: true,
|
|
154361
154662
|
writable: true,
|
|
154362
154663
|
initializer: null
|
|
154363
|
-
}),
|
|
154664
|
+
}), _descriptor41 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "help", [_dec42], {
|
|
154665
|
+
configurable: true,
|
|
154666
|
+
enumerable: true,
|
|
154667
|
+
writable: true,
|
|
154668
|
+
initializer: null
|
|
154669
|
+
}), _descriptor42 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "helpNodes", [_dec43], {
|
|
154670
|
+
configurable: true,
|
|
154671
|
+
enumerable: true,
|
|
154672
|
+
writable: true,
|
|
154673
|
+
initializer: null
|
|
154674
|
+
}), _descriptor43 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "currency", [_dec44], {
|
|
154364
154675
|
configurable: true,
|
|
154365
154676
|
enumerable: true,
|
|
154366
154677
|
writable: true,
|
|
@@ -155368,11 +155679,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
155368
155679
|
/* harmony import */ var _radio_RadioNode__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../radio/RadioNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/radio/RadioNode.ts");
|
|
155369
155680
|
/* harmony import */ var _CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../CommonNodeProperties/TooltipProperties/TooltipSettingsNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/TooltipProperties/TooltipSettingsNode.ts");
|
|
155370
155681
|
/* harmony import */ var _Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../Commons/DocumentationLinks */ "./Generator/src/generators/markupGenerator/ElementProcessors/Commons/DocumentationLinks.ts");
|
|
155682
|
+
/* harmony import */ var _CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../CommonNodeProperties/FocusManagementNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/FocusManagementNode.ts");
|
|
155371
155683
|
|
|
155372
155684
|
|
|
155373
155685
|
|
|
155374
155686
|
|
|
155375
|
-
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7;
|
|
155687
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8;
|
|
155688
|
+
|
|
155376
155689
|
|
|
155377
155690
|
|
|
155378
155691
|
|
|
@@ -155382,7 +155695,7 @@ var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _class, _class2, _des
|
|
|
155382
155695
|
|
|
155383
155696
|
|
|
155384
155697
|
|
|
155385
|
-
let RadioGroupNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("radiogroup", `Радио группа`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__.javaScriptExpressionLink)} для условного задизейбливания контрола`),
|
|
155698
|
+
let RadioGroupNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.sugarNode)("radiogroup", `Радио группа`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueEditors/RadioGroup sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_ValidationInfoNode__WEBPACK_IMPORTED_MODULE_4__.ValidationInfoNode), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_FocusManagementNode__WEBPACK_IMPORTED_MODULE_11__.FocusManagementNode), _dec5 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attr)("disabled2", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrType.javascriptExpression, `${(0,_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__.docLink)(_Commons_DocumentationLinks__WEBPACK_IMPORTED_MODULE_10__.javaScriptExpressionLink)} для условного задизейбливания контрола`), _dec6 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("display", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.InvalidUsage), _dec7 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.deprecatedAttr)("sendMetrics", _Serializer_DeprecationReason__WEBPACK_IMPORTED_MODULE_5__.DeprecationReason.Removed), _dec8 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.children)(["radio"], [_radio_RadioNode__WEBPACK_IMPORTED_MODULE_8__.RadioNode]), _dec9 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_7__.attrMixin)(_CommonNodeProperties_TooltipProperties_TooltipSettingsNode__WEBPACK_IMPORTED_MODULE_9__.TooltipSettingsNode), _dec(_class = (_class2 = class RadioGroupNode extends _Serializer_SugarNodeWithLegacyVisibility__WEBPACK_IMPORTED_MODULE_6__.SugarNodeWithLegacyVisibility {
|
|
155386
155699
|
constructor(...args) {
|
|
155387
155700
|
super(...args);
|
|
155388
155701
|
|
|
@@ -155390,15 +155703,17 @@ let RadioGroupNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MO
|
|
|
155390
155703
|
|
|
155391
155704
|
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "validationInfo", _descriptor2, this);
|
|
155392
155705
|
|
|
155393
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "
|
|
155706
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "focusManagement", _descriptor3, this);
|
|
155707
|
+
|
|
155708
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "disabled2", _descriptor4, this);
|
|
155394
155709
|
|
|
155395
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "display",
|
|
155710
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "display", _descriptor5, this);
|
|
155396
155711
|
|
|
155397
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sendMetrics",
|
|
155712
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "sendMetrics", _descriptor6, this);
|
|
155398
155713
|
|
|
155399
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items",
|
|
155714
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "items", _descriptor7, this);
|
|
155400
155715
|
|
|
155401
|
-
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings",
|
|
155716
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "tooltipSettings", _descriptor8, this);
|
|
155402
155717
|
}
|
|
155403
155718
|
|
|
155404
155719
|
getOwnPath() {
|
|
@@ -155415,27 +155730,32 @@ let RadioGroupNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MO
|
|
|
155415
155730
|
enumerable: true,
|
|
155416
155731
|
writable: true,
|
|
155417
155732
|
initializer: null
|
|
155418
|
-
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "
|
|
155733
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "focusManagement", [_dec4], {
|
|
155734
|
+
configurable: true,
|
|
155735
|
+
enumerable: true,
|
|
155736
|
+
writable: true,
|
|
155737
|
+
initializer: null
|
|
155738
|
+
}), _descriptor4 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "disabled2", [_dec5], {
|
|
155419
155739
|
configurable: true,
|
|
155420
155740
|
enumerable: true,
|
|
155421
155741
|
writable: true,
|
|
155422
155742
|
initializer: null
|
|
155423
|
-
}),
|
|
155743
|
+
}), _descriptor5 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "display", [_dec6], {
|
|
155424
155744
|
configurable: true,
|
|
155425
155745
|
enumerable: true,
|
|
155426
155746
|
writable: true,
|
|
155427
155747
|
initializer: null
|
|
155428
|
-
}),
|
|
155748
|
+
}), _descriptor6 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "sendMetrics", [_dec7], {
|
|
155429
155749
|
configurable: true,
|
|
155430
155750
|
enumerable: true,
|
|
155431
155751
|
writable: true,
|
|
155432
155752
|
initializer: null
|
|
155433
|
-
}),
|
|
155753
|
+
}), _descriptor7 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "items", [_dec8], {
|
|
155434
155754
|
configurable: true,
|
|
155435
155755
|
enumerable: true,
|
|
155436
155756
|
writable: true,
|
|
155437
155757
|
initializer: null
|
|
155438
|
-
}),
|
|
155758
|
+
}), _descriptor8 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "tooltipSettings", [_dec9], {
|
|
155439
155759
|
configurable: true,
|
|
155440
155760
|
enumerable: true,
|
|
155441
155761
|
writable: true,
|
|
@@ -156996,6 +157316,136 @@ let RadioNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_
|
|
|
156996
157316
|
|
|
156997
157317
|
/***/ }),
|
|
156998
157318
|
|
|
157319
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewConverter.ts":
|
|
157320
|
+
/*!***************************************************************************************************************!*\
|
|
157321
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewConverter.ts ***!
|
|
157322
|
+
\***************************************************************************************************************/
|
|
157323
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
157324
|
+
|
|
157325
|
+
"use strict";
|
|
157326
|
+
__webpack_require__.r(__webpack_exports__);
|
|
157327
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
157328
|
+
/* harmony export */ "DateViewConverter": () => (/* binding */ DateViewConverter)
|
|
157329
|
+
/* harmony export */ });
|
|
157330
|
+
/* harmony import */ var _getBindingPath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../getBindingPath */ "./Generator/src/generators/markupGenerator/getBindingPath.ts");
|
|
157331
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
157332
|
+
/* harmony import */ var _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../SugarNodeConverter */ "./Generator/src/generators/markupGenerator/SugarNodeConverter.ts");
|
|
157333
|
+
/* harmony import */ var _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../DataDeclarationGenerator/DataDeclarationGenerationContext */ "./Generator/src/generators/DataDeclarationGenerator/DataDeclarationGenerationContext.ts");
|
|
157334
|
+
/* harmony import */ var _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../../common/XmlParser/XmlNode */ "./Generator/src/common/XmlParser/XmlNode.ts");
|
|
157335
|
+
/* harmony import */ var _DateViewNode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./DateViewNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts");
|
|
157336
|
+
|
|
157337
|
+
|
|
157338
|
+
|
|
157339
|
+
|
|
157340
|
+
|
|
157341
|
+
|
|
157342
|
+
class DateViewConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.SugarNodeConverterBase {
|
|
157343
|
+
static getAcceptNodeClass() {
|
|
157344
|
+
return _DateViewNode__WEBPACK_IMPORTED_MODULE_5__.DateViewNode;
|
|
157345
|
+
}
|
|
157346
|
+
|
|
157347
|
+
doBuildDataDeclaration(context) {
|
|
157348
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__.emptyDataDeclarationCollection;
|
|
157349
|
+
}
|
|
157350
|
+
|
|
157351
|
+
buildChildrenDataDeclaration(context) {
|
|
157352
|
+
return _DataDeclarationGenerator_DataDeclarationGenerationContext__WEBPACK_IMPORTED_MODULE_3__.emptyDataDeclarationCollection;
|
|
157353
|
+
}
|
|
157354
|
+
|
|
157355
|
+
*doTraverseChildren() {// no children
|
|
157356
|
+
}
|
|
157357
|
+
|
|
157358
|
+
get nodePaths() {
|
|
157359
|
+
const node = this.getCurrentNodeAs(_DateViewNode__WEBPACK_IMPORTED_MODULE_5__.DateViewNode);
|
|
157360
|
+
return [node.getFullPath()];
|
|
157361
|
+
}
|
|
157362
|
+
|
|
157363
|
+
doConvert(context) {
|
|
157364
|
+
const node = this.getCurrentNodeAs(_DateViewNode__WEBPACK_IMPORTED_MODULE_5__.DateViewNode);
|
|
157365
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_1__.componentMarkupBuilder)("DateView");
|
|
157366
|
+
markupBuilder.prop(x => x.bindingPath).set((0,_getBindingPath__WEBPACK_IMPORTED_MODULE_0__.getNewBindingPathExpression)(node));
|
|
157367
|
+
|
|
157368
|
+
if (node.format !== "dd.MM.yyyy") {
|
|
157369
|
+
// NOTE Формат по https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
|
|
157370
|
+
// Расчёт на то, что если надо будет сложнее форматировать дату то возьмут date-fns, который поддерживает
|
|
157371
|
+
// указанный выше формат.
|
|
157372
|
+
throw new _common_XmlParser_XmlNode__WEBPACK_IMPORTED_MODULE_4__.SugarAttributeReadError("Укажите формат даты. Поддерживается только формат даты dd.MM.yyyy.", node, "format");
|
|
157373
|
+
}
|
|
157374
|
+
|
|
157375
|
+
markupBuilder.prop(x => x.dateFormat).set(node.dateFormat);
|
|
157376
|
+
return markupBuilder.buildConverterResult();
|
|
157377
|
+
}
|
|
157378
|
+
|
|
157379
|
+
}
|
|
157380
|
+
|
|
157381
|
+
/***/ }),
|
|
157382
|
+
|
|
157383
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts":
|
|
157384
|
+
/*!**********************************************************************************************************!*\
|
|
157385
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts ***!
|
|
157386
|
+
\**********************************************************************************************************/
|
|
157387
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
157388
|
+
|
|
157389
|
+
"use strict";
|
|
157390
|
+
__webpack_require__.r(__webpack_exports__);
|
|
157391
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
157392
|
+
/* harmony export */ "DateViewNode": () => (/* binding */ DateViewNode)
|
|
157393
|
+
/* harmony export */ });
|
|
157394
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/initializerDefineProperty */ "./node_modules/@babel/runtime/helpers/initializerDefineProperty.js");
|
|
157395
|
+
/* harmony import */ var _babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0__);
|
|
157396
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/applyDecoratedDescriptor */ "./node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js");
|
|
157397
|
+
/* harmony import */ var _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1__);
|
|
157398
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/initializerWarningHelper */ "./node_modules/@babel/runtime/helpers/initializerWarningHelper.js");
|
|
157399
|
+
/* harmony import */ var _babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_initializerWarningHelper__WEBPACK_IMPORTED_MODULE_2__);
|
|
157400
|
+
/* harmony import */ var _CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../CommonNodeProperties/DataBindingMixinNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/CommonNodeProperties/DataBindingMixinNode.ts");
|
|
157401
|
+
/* harmony import */ var _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Serializer/SugarSerializer */ "./Generator/src/generators/markupGenerator/Serializer/SugarSerializer.ts");
|
|
157402
|
+
|
|
157403
|
+
|
|
157404
|
+
|
|
157405
|
+
|
|
157406
|
+
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3;
|
|
157407
|
+
|
|
157408
|
+
|
|
157409
|
+
|
|
157410
|
+
let DateViewNode = (_dec = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.sugarNode)("dateview", `Контрол для отображения даты в различных форматах`, __webpack_require__("./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView sync recursive .md$")), _dec2 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrMixin)(_CommonNodeProperties_DataBindingMixinNode__WEBPACK_IMPORTED_MODULE_3__.DataBindingMixinNode), _dec3 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("dateFormat", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType["enum"]("fss"), `Форматы даты, в котором дата находится в inner, в 4-ФСС указывается "fss".`), _dec4 = (0,_Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attr)("format", _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.attrType.string, `Форматы даты, в котором дата будет выводится на форме. см. https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
|
|
157411
|
+
Поддерживается только "dd.MM.yyyy".`), _dec(_class = (_class2 = class DateViewNode extends _Serializer_SugarSerializer__WEBPACK_IMPORTED_MODULE_4__.SugarNodeBase {
|
|
157412
|
+
constructor(...args) {
|
|
157413
|
+
super(...args);
|
|
157414
|
+
|
|
157415
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dataBinding", _descriptor, this);
|
|
157416
|
+
|
|
157417
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "dateFormat", _descriptor2, this);
|
|
157418
|
+
|
|
157419
|
+
_babel_runtime_helpers_initializerDefineProperty__WEBPACK_IMPORTED_MODULE_0___default()(this, "format", _descriptor3, this);
|
|
157420
|
+
}
|
|
157421
|
+
|
|
157422
|
+
get path() {
|
|
157423
|
+
return this.dataBinding.path;
|
|
157424
|
+
}
|
|
157425
|
+
|
|
157426
|
+
getOwnPath() {
|
|
157427
|
+
return this.dataBinding.getOwnPath();
|
|
157428
|
+
}
|
|
157429
|
+
|
|
157430
|
+
}, (_descriptor = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dataBinding", [_dec2], {
|
|
157431
|
+
configurable: true,
|
|
157432
|
+
enumerable: true,
|
|
157433
|
+
writable: true,
|
|
157434
|
+
initializer: null
|
|
157435
|
+
}), _descriptor2 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "dateFormat", [_dec3], {
|
|
157436
|
+
configurable: true,
|
|
157437
|
+
enumerable: true,
|
|
157438
|
+
writable: true,
|
|
157439
|
+
initializer: null
|
|
157440
|
+
}), _descriptor3 = _babel_runtime_helpers_applyDecoratedDescriptor__WEBPACK_IMPORTED_MODULE_1___default()(_class2.prototype, "format", [_dec4], {
|
|
157441
|
+
configurable: true,
|
|
157442
|
+
enumerable: true,
|
|
157443
|
+
writable: true,
|
|
157444
|
+
initializer: null
|
|
157445
|
+
})), _class2)) || _class);
|
|
157446
|
+
|
|
157447
|
+
/***/ }),
|
|
157448
|
+
|
|
156999
157449
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/FIOConverter.ts":
|
|
157000
157450
|
/*!*****************************************************************************************************!*\
|
|
157001
157451
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/FIO/FIOConverter.ts ***!
|
|
@@ -158123,6 +158573,39 @@ class FLangNormalizationRulesBuilder {
|
|
|
158123
158573
|
|
|
158124
158574
|
/***/ }),
|
|
158125
158575
|
|
|
158576
|
+
/***/ "./Generator/src/generators/markupGenerator/FocusManagementProcessor.ts":
|
|
158577
|
+
/*!******************************************************************************!*\
|
|
158578
|
+
!*** ./Generator/src/generators/markupGenerator/FocusManagementProcessor.ts ***!
|
|
158579
|
+
\******************************************************************************/
|
|
158580
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
158581
|
+
|
|
158582
|
+
"use strict";
|
|
158583
|
+
__webpack_require__.r(__webpack_exports__);
|
|
158584
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
158585
|
+
/* harmony export */ "FocusManagementProcessor": () => (/* binding */ FocusManagementProcessor)
|
|
158586
|
+
/* harmony export */ });
|
|
158587
|
+
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
158588
|
+
|
|
158589
|
+
const exclusiveFocusByPath = "exclusiveFocusByPath";
|
|
158590
|
+
class FocusManagementProcessor {
|
|
158591
|
+
static processFocusManagementAttributes(sugarNode, converterResult) {
|
|
158592
|
+
const node = sugarNode.sourceXmlNode;
|
|
158593
|
+
|
|
158594
|
+
if (!node.attr(exclusiveFocusByPath)) {
|
|
158595
|
+
return converterResult;
|
|
158596
|
+
}
|
|
158597
|
+
|
|
158598
|
+
const markupBuilder = (0,_ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_0__.componentMarkupBuilder)("FocusManagementWrapper");
|
|
158599
|
+
markupBuilder.prop(x => x.exclusiveFocusByPath).set(node.attrAsBoolean(exclusiveFocusByPath));
|
|
158600
|
+
markupBuilder.appendChild(converterResult);
|
|
158601
|
+
const newConverterResult = markupBuilder.buildConverterResult();
|
|
158602
|
+
return newConverterResult;
|
|
158603
|
+
}
|
|
158604
|
+
|
|
158605
|
+
}
|
|
158606
|
+
|
|
158607
|
+
/***/ }),
|
|
158608
|
+
|
|
158126
158609
|
/***/ "./Generator/src/generators/markupGenerator/IFarmFileSystem.ts":
|
|
158127
158610
|
/*!*********************************************************************!*\
|
|
158128
158611
|
!*** ./Generator/src/generators/markupGenerator/IFarmFileSystem.ts ***!
|
|
@@ -160005,6 +160488,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
160005
160488
|
/* harmony import */ var _SugarNodes_SugarNodeUtils__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./SugarNodes/SugarNodeUtils */ "./Generator/src/generators/markupGenerator/SugarNodes/SugarNodeUtils.ts");
|
|
160006
160489
|
/* harmony import */ var _VisibilityProcessor__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./VisibilityProcessor */ "./Generator/src/generators/markupGenerator/VisibilityProcessor.ts");
|
|
160007
160490
|
/* harmony import */ var _ComponentMarkupBuilder_ComponentMarkupBuilder__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./ComponentMarkupBuilder/ComponentMarkupBuilder */ "./Generator/src/generators/markupGenerator/ComponentMarkupBuilder/ComponentMarkupBuilder.ts");
|
|
160491
|
+
/* harmony import */ var _FocusManagementProcessor__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./FocusManagementProcessor */ "./Generator/src/generators/markupGenerator/FocusManagementProcessor.ts");
|
|
160492
|
+
|
|
160008
160493
|
|
|
160009
160494
|
|
|
160010
160495
|
|
|
@@ -160089,6 +160574,10 @@ class SugarNodeConverterBase {
|
|
|
160089
160574
|
return true;
|
|
160090
160575
|
}
|
|
160091
160576
|
|
|
160577
|
+
applyFocusManagementProcessing() {
|
|
160578
|
+
return true;
|
|
160579
|
+
}
|
|
160580
|
+
|
|
160092
160581
|
convert(context) {
|
|
160093
160582
|
context.addPathsToContext(this.nodePaths);
|
|
160094
160583
|
let converterResult = this.doConvert(context);
|
|
@@ -160097,6 +160586,10 @@ class SugarNodeConverterBase {
|
|
|
160097
160586
|
converterResult = this.processVisibilityPathAttributes(converterResult);
|
|
160098
160587
|
}
|
|
160099
160588
|
|
|
160589
|
+
if (this.applyFocusManagementProcessing()) {
|
|
160590
|
+
converterResult = this.processFocusManagementAttributes(converterResult);
|
|
160591
|
+
}
|
|
160592
|
+
|
|
160100
160593
|
return converterResult;
|
|
160101
160594
|
}
|
|
160102
160595
|
|
|
@@ -160286,6 +160779,10 @@ class SugarNodeConverterBase {
|
|
|
160286
160779
|
return _VisibilityProcessor__WEBPACK_IMPORTED_MODULE_10__.VisibilityProcessor.processVisibilityPathAttributes(this.node, converterResult);
|
|
160287
160780
|
}
|
|
160288
160781
|
|
|
160782
|
+
processFocusManagementAttributes(converterResult) {
|
|
160783
|
+
return _FocusManagementProcessor__WEBPACK_IMPORTED_MODULE_12__.FocusManagementProcessor.processFocusManagementAttributes(this.node, converterResult);
|
|
160784
|
+
}
|
|
160785
|
+
|
|
160289
160786
|
}
|
|
160290
160787
|
|
|
160291
160788
|
/***/ }),
|
|
@@ -160417,6 +160914,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
160417
160914
|
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Long/LongNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Long/LongNode.ts");
|
|
160418
160915
|
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/Short/ShortNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/Short/ShortNode.ts");
|
|
160419
160916
|
/* harmony import */ var _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ../ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ControlFlow/Captions/FillHint/FillHintNode.ts");
|
|
160917
|
+
/* harmony import */ var _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ../ElementProcessors/ValueViewers/DateView/DateViewNode */ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/DateViewNode.ts");
|
|
160918
|
+
|
|
160420
160919
|
|
|
160421
160920
|
|
|
160422
160921
|
|
|
@@ -160637,6 +161136,7 @@ function registerDefaultSugarNodes(result) {
|
|
|
160637
161136
|
result.registerNode(_ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_108__.UserPicklistNode);
|
|
160638
161137
|
result.registerNode(_ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_109__.TaxRebateNode);
|
|
160639
161138
|
result.registerNode(_ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_110__.BannerNode);
|
|
161139
|
+
result.registerNode(_ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_114__.DateViewNode);
|
|
160640
161140
|
}
|
|
160641
161141
|
|
|
160642
161142
|
function createDefaultSugarSerializer() {
|
|
@@ -160650,7 +161150,7 @@ function getAllSugarValidationNodeClasses() {
|
|
|
160650
161150
|
return [_validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TypeNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.CustomValidationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.PatternTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.EnumerationTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.AttachmentsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.LengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MinlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxlengthTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.TotaldigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.IntegerdigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.FractiondigitsTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.DigestcheckTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.DigestConditionTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MininclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.MaxinclusiveTypeCheckNode, _validationGenerator_Nodes_TypeNode__WEBPACK_IMPORTED_MODULE_1__.ForcedTypeChecksNode];
|
|
160651
161151
|
}
|
|
160652
161152
|
function getAllSugarNodeClasses() {
|
|
160653
|
-
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_93__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_88__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_88__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_88__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_29__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_30__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_18__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_19__.CheckboxNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_20__.ChoiceNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_21__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_22__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_89__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_23__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_24__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_27__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_36__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_37__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_38__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_39__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_40__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_41__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_42__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_47__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_43__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_48__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_49__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_50__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_52__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_51__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_54__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_53__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_55__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_56__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_57__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_59__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_60__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_61__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_62__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_64__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_66__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_63__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_67__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_31__.MenuNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_69__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_70__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_68__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_72__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_73__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_74__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_75__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_46__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_76__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_77__.PicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_78__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_32__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_80__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_33__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_34__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_81__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_90__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_82__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_79__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_83__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_91__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_84__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_86__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_85__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_87__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_94__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_101__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_95__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_96__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_97__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_35__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_98__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_99__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_100__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_66__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_65__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_112__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_111__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_113__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_58__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_58__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_58__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_90__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_90__.SimpleTableColumnNode, _ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode, _ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_91__.StickyTableMultilineNode, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_8__.HeaderPanelNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonActionNode, _ElementProcessors_MultiControls_Tabs_TabsNode__WEBPACK_IMPORTED_MODULE_7__.TabsNode, _ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode, _ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode, _ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_104__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_104__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_105__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_106__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_107__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_108__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_109__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_110__.BannerNode];
|
|
161153
|
+
return [_ElementProcessors_ValueViewers_Text_TextNode__WEBPACK_IMPORTED_MODULE_93__.TextNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_88__.SwitchNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_88__.SwitchDefaultNode, _ElementProcessors_ControlFlow_Switch_SwitchNode__WEBPACK_IMPORTED_MODULE_88__.SwitchCaseNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddButtonNode__WEBPACK_IMPORTED_MODULE_29__.AddButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_AddLineNode__WEBPACK_IMPORTED_MODULE_30__.AddLineNode, _ElementProcessors_FormParts_AddPageButton_AddPageButtonNode__WEBPACK_IMPORTED_MODULE_10__.AddPageButtonNode, _ElementProcessors_MultiControls_AddRowButton_AddRowButtonNode__WEBPACK_IMPORTED_MODULE_11__.AddRowButtonNode, _ElementProcessors_Layout_Block_BlockNode__WEBPACK_IMPORTED_MODULE_12__.BlockNode, _ElementProcessors_Layout_Minitour_MinitourNode__WEBPACK_IMPORTED_MODULE_13__.MinitourNode, _ElementProcessors_Modal_Body_BodyNode__WEBPACK_IMPORTED_MODULE_14__.BodyNode, _ElementProcessors_Typography_Bold_BoldNode__WEBPACK_IMPORTED_MODULE_15__.BoldNode, _ElementProcessors_Layout_Br_BrNode__WEBPACK_IMPORTED_MODULE_16__.BrNode, _ElementProcessors_Action_Button_ButtonNode__WEBPACK_IMPORTED_MODULE_17__.ButtonNode, _ElementProcessors_FormParts_Caption_CaptionNode__WEBPACK_IMPORTED_MODULE_18__.CaptionNode, _ElementProcessors_ValueEditors_Checkbox_CheckboxNode__WEBPACK_IMPORTED_MODULE_19__.CheckboxNode, _ElementProcessors_ControlFlow_Choice_ChoiceNode__WEBPACK_IMPORTED_MODULE_20__.ChoiceNode, _ElementProcessors_ValueEditors_Combobox_ComboBoxNode__WEBPACK_IMPORTED_MODULE_21__.ComboBoxNode, _ElementProcessors_FormParts_Content_ContentNode__WEBPACK_IMPORTED_MODULE_22__.ContentNode, _ElementProcessors_MultiControls_CrossfitTable_CrossfitTableNode__WEBPACK_IMPORTED_MODULE_89__.CrossfitTableNode, _ElementProcessors_FormParts_Cross_CrossNode__WEBPACK_IMPORTED_MODULE_23__.CrossNode, _ElementProcessors_ValueEditors_Date_DateNode__WEBPACK_IMPORTED_MODULE_24__.DateNode, _ElementProcessors_ValueEditors_DiadocSuggestComboBox_DiadocSuggestComboBoxNode__WEBPACK_IMPORTED_MODULE_26__.DiadocSuggestComboBoxNode, _ElementProcessors_Typography_Entity_EntityNode__WEBPACK_IMPORTED_MODULE_27__.EntityNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteNode, _ElementProcessors_ValueEditors_FileLoader_FileLoaderNode__WEBPACK_IMPORTED_MODULE_36__.FileLoaderNode, _ElementProcessors_MultiControls_FilterDateRange_FilterDateRangeNode__WEBPACK_IMPORTED_MODULE_37__.FilterDateRangeNode, _ElementProcessors_MultiControls_FilterInput_FilterInputNode__WEBPACK_IMPORTED_MODULE_38__.FilterInputNode, _ElementProcessors_MultiControls_FilterList_FilterListNode__WEBPACK_IMPORTED_MODULE_39__.FilterListNode, _ElementProcessors_ValueViewers_FIO_FIONode__WEBPACK_IMPORTED_MODULE_40__.FIONode, _ElementProcessors_Layout_Flexbox_FlexboxNode__WEBPACK_IMPORTED_MODULE_41__.FlexboxNode, _ElementProcessors_Modal_Footer_FooterNode__WEBPACK_IMPORTED_MODULE_42__.FooterNode, _ElementProcessors_FormParts_FormInfo_FormInfoNode__WEBPACK_IMPORTED_MODULE_47__.FormInfoNode, _ElementProcessors_FormParts_Form_FormNode__WEBPACK_IMPORTED_MODULE_43__.FormNode, _ElementProcessors_Typography_Gray_GrayNode__WEBPACK_IMPORTED_MODULE_48__.GrayNode, _ElementProcessors_Layout_GridCol_GridColNode__WEBPACK_IMPORTED_MODULE_49__.GridColNode, _ElementProcessors_Layout_GridRow_GridRowNode__WEBPACK_IMPORTED_MODULE_50__.GridRowNode, _ElementProcessors_MultiControls_HeaderMenu_HeaderMenuNode__WEBPACK_IMPORTED_MODULE_52__.HeaderMenuNode, _ElementProcessors_FormParts_Header_HeaderNode__WEBPACK_IMPORTED_MODULE_51__.HeaderNode, _ElementProcessors_Helpers_Helpinfo_HelpInfoNode__WEBPACK_IMPORTED_MODULE_54__.HelpInfoNode, _ElementProcessors_Helpers_Help_HelpNode__WEBPACK_IMPORTED_MODULE_53__.HelpNode, _ElementProcessors_Typography_Highlight_HighlightNode__WEBPACK_IMPORTED_MODULE_55__.HighlightNode, _ElementProcessors_Layout_Hr_HrNode__WEBPACK_IMPORTED_MODULE_56__.HrNode, _ElementProcessors_Typography_Icon_IconNode__WEBPACK_IMPORTED_MODULE_57__.IconNode, _ElementProcessors_Layout_Img_ImgNode__WEBPACK_IMPORTED_MODULE_59__.ImgNode, _ElementProcessors_Layout_InnerText_InnertextNode__WEBPACK_IMPORTED_MODULE_9__.InnertextNode, _ElementProcessors_ValueEditors_INN_INNNode__WEBPACK_IMPORTED_MODULE_60__.INNNode, _ElementProcessors_ValueEditors_Input_InputNode__WEBPACK_IMPORTED_MODULE_61__.InputNode, _ElementProcessors_Typography_Italic_ItalicNode__WEBPACK_IMPORTED_MODULE_62__.ItalicNode, _ElementProcessors_ValueEditors_Kladr_KladrNode__WEBPACK_IMPORTED_MODULE_64__.KladrNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_66__.LinkNode, _ElementProcessors_Layout_ListItem_ListItemNode__WEBPACK_IMPORTED_MODULE_63__.ListItemNode, _ElementProcessors_Layout_List_ListNode__WEBPACK_IMPORTED_MODULE_67__.ListNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_MenuNode__WEBPACK_IMPORTED_MODULE_31__.MenuNode, _ElementProcessors_Modal_ModalFormCancel_ModalFormCancelNode__WEBPACK_IMPORTED_MODULE_69__.ModalFormCancelNode, _ElementProcessors_Modal_ModalFormConfirm_ModalFormConfirmNode__WEBPACK_IMPORTED_MODULE_70__.ModalFormConfirmNode, _ElementProcessors_Modal_ModalFormLabel_ModalFormLabelNode__WEBPACK_IMPORTED_MODULE_71__.ModalFormLabelNode, _ElementProcessors_Modal_ModalForm_ModalFormNode__WEBPACK_IMPORTED_MODULE_68__.ModalFormNode, _ElementProcessors_MultiControls_Multilinefield_MultilineFieldNode__WEBPACK_IMPORTED_MODULE_72__.MultilineFieldNode, _ElementProcessors_Helpers_Normativehelp_NormativeHelpNode__WEBPACK_IMPORTED_MODULE_73__.NormativeHelpNode, _ElementProcessors_ControlFlow_Otherwise_OtherwiseNode__WEBPACK_IMPORTED_MODULE_74__.OtherwiseNode, _ElementProcessors_FormParts_Page_PageNode__WEBPACK_IMPORTED_MODULE_75__.PageNode, _ElementProcessors_FormParts_Form_Nodes_PanelNode__WEBPACK_IMPORTED_MODULE_46__.PanelNode, _ElementProcessors_Layout_Pencil_PencilNode__WEBPACK_IMPORTED_MODULE_76__.PencilNode, _ElementProcessors_ValueEditors_Picklist_PicklistNode__WEBPACK_IMPORTED_MODULE_77__.PicklistNode, _ElementProcessors_ValueEditors_radio_RadioNode__WEBPACK_IMPORTED_MODULE_78__.RadioNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_RemoveButtonNode__WEBPACK_IMPORTED_MODULE_32__.RemoveButtonNode, _ElementProcessors_MultiControls_RemoveRowButton_RemoveRowButtonNode__WEBPACK_IMPORTED_MODULE_80__.RemoveRowButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceButtonNode__WEBPACK_IMPORTED_MODULE_33__.ReplaceButtonNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ReplaceLineNode__WEBPACK_IMPORTED_MODULE_34__.ReplaceLineNode, _ElementProcessors_ValueEditors_Select_SelectNode__WEBPACK_IMPORTED_MODULE_81__.SelectNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_90__.SimpleTableNode, _ElementProcessors_MultiControls_SortRadioGroup_SortRadioGroupNode__WEBPACK_IMPORTED_MODULE_82__.SortRadioGroupNode, _ElementProcessors_ValueEditors_RadioGroup_RadioGroupNode__WEBPACK_IMPORTED_MODULE_79__.RadioGroupNode, _ElementProcessors_Layout_Spoiler_SpoilerNode__WEBPACK_IMPORTED_MODULE_83__.SpoilerNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_91__.StickyTableNode, _ElementProcessors_Typography_Strong_StrongNode__WEBPACK_IMPORTED_MODULE_84__.StrongNode, _ElementProcessors_Layout_Subheader_SubheaderNode__WEBPACK_IMPORTED_MODULE_86__.SubheaderNode, _ElementProcessors_Typography_Sub_SubNode__WEBPACK_IMPORTED_MODULE_85__.SubNode, _ElementProcessors_Typography_Sup_SupNode__WEBPACK_IMPORTED_MODULE_87__.SupNode, _ElementProcessors_ValueEditors_Textarea_TextAreaNode__WEBPACK_IMPORTED_MODULE_94__.TextAreaNode, _ElementProcessors_ValueEditors_popupTextArea_PopupTextAreaNode__WEBPACK_IMPORTED_MODULE_101__.PopupTextAreaNode, _ElementProcessors_FormParts_UnitItem_UnitItemNode__WEBPACK_IMPORTED_MODULE_95__.UnitItemNode, _ElementProcessors_FormParts_UnitList_UnitListNode__WEBPACK_IMPORTED_MODULE_96__.UnitListNode, _ElementProcessors_ValueViewers_ValueLength_ValueLengthNode__WEBPACK_IMPORTED_MODULE_97__.ValueLengthNode, _ElementProcessors_ValueEditors_FileLoader_FileLoader_ViewFileNode__WEBPACK_IMPORTED_MODULE_35__.ViewFileNode, _ElementProcessors_ControlFlow_VisibilityBlock_VisibilityBlockNode__WEBPACK_IMPORTED_MODULE_98__.VisibilityBlockNode, _ElementProcessors_Layout_Warning_WarningNode__WEBPACK_IMPORTED_MODULE_99__.WarningNode, _ElementProcessors_ControlFlow_When_WhenNode__WEBPACK_IMPORTED_MODULE_100__.WhenNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.ExpertNoteNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.MessageBoxNode, _ElementProcessors_Action_Link_LinkNode__WEBPACK_IMPORTED_MODULE_66__.LinkNode, _ElementProcessors_ValueEditors_ExpertNote_ExpertNoteNode__WEBPACK_IMPORTED_MODULE_28__.NameNode, _ElementProcessors_ValueViewers_Linetext_LineTextNode__WEBPACK_IMPORTED_MODULE_65__.LineTextNode, _ElementProcessors_ControlFlow_Captions_Short_ShortNode__WEBPACK_IMPORTED_MODULE_112__.ShortNode, _ElementProcessors_ControlFlow_Captions_Long_LongNode__WEBPACK_IMPORTED_MODULE_111__.LongNode, _ElementProcessors_ControlFlow_Captions_FillHint_FillHintNode__WEBPACK_IMPORTED_MODULE_113__.FillHintNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_58__.IfNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_58__.ElseNode, _ElementProcessors_ControlFlow_If_IfNode__WEBPACK_IMPORTED_MODULE_58__.ThenNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_90__.SimpleTableRowNode, _ElementProcessors_Layout_SimpleTable_SimpleTableNode__WEBPACK_IMPORTED_MODULE_90__.SimpleTableColumnNode, _ElementProcessors_Layout_Stack_StackNode__WEBPACK_IMPORTED_MODULE_4__.StackNode, _ElementProcessors_Layout_Grid_GridNode__WEBPACK_IMPORTED_MODULE_3__.GridNode, _ElementProcessors_MultiControls_StickyTable_StickyTableNode__WEBPACK_IMPORTED_MODULE_91__.StickyTableMultilineNode, _ElementProcessors_UnitParts_HeaderPanel_HeaderPanelNode__WEBPACK_IMPORTED_MODULE_8__.HeaderPanelNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonNode, _ElementProcessors_Action_DropdownButton_DropdownButtonNode__WEBPACK_IMPORTED_MODULE_2__.DropdownButtonActionNode, _ElementProcessors_MultiControls_Tabs_TabsNode__WEBPACK_IMPORTED_MODULE_7__.TabsNode, _ElementProcessors_ValueEditors_Fias_FiasNode__WEBPACK_IMPORTED_MODULE_0__.FiasNode, _ElementProcessors_MultiControls_FilterSelect_FilterSelectNode__WEBPACK_IMPORTED_MODULE_5__.FilterSelectNode, _ElementProcessors_MultiControls_Table2_Table2Node__WEBPACK_IMPORTED_MODULE_6__.Table2Node, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_104__.FixedTabsNode, _ElementProcessors_Layout_FixedTabs_FixedTabsNode__WEBPACK_IMPORTED_MODULE_104__.FixedTabNode, _ElementProcessors_MultiControls_Multiple_MultipleNode__WEBPACK_IMPORTED_MODULE_105__.MultipleNode, _ElementProcessors_Action_ExcelPastePanel_ExcelPastePanelNode__WEBPACK_IMPORTED_MODULE_106__.ExcelPastePanelNode, _ElementProcessors_ValueEditors_ReferencedFields_ReferencedFieldsNode__WEBPACK_IMPORTED_MODULE_107__.ReferencedFieldsNode, _ElementProcessors_FormParts_UserPicklist_UserPicklistNode__WEBPACK_IMPORTED_MODULE_108__.UserPicklistNode, _ElementProcessors_ValueEditors_TaxRebate_TaxRebateNode__WEBPACK_IMPORTED_MODULE_109__.TaxRebateNode, _ElementProcessors_FormParts_Banner_BannerNode__WEBPACK_IMPORTED_MODULE_110__.BannerNode, _ElementProcessors_ValueViewers_DateView_DateViewNode__WEBPACK_IMPORTED_MODULE_114__.DateViewNode];
|
|
160654
161154
|
}
|
|
160655
161155
|
|
|
160656
161156
|
/***/ }),
|
|
@@ -199090,28 +199590,6 @@ module.exports = {
|
|
|
199090
199590
|
"17.0": "96"
|
|
199091
199591
|
};
|
|
199092
199592
|
|
|
199093
|
-
/***/ }),
|
|
199094
|
-
|
|
199095
|
-
/***/ "./node_modules/escape-string-regexp/index.js":
|
|
199096
|
-
/*!****************************************************!*\
|
|
199097
|
-
!*** ./node_modules/escape-string-regexp/index.js ***!
|
|
199098
|
-
\****************************************************/
|
|
199099
|
-
/***/ ((module) => {
|
|
199100
|
-
|
|
199101
|
-
"use strict";
|
|
199102
|
-
|
|
199103
|
-
|
|
199104
|
-
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
|
|
199105
|
-
|
|
199106
|
-
module.exports = function (str) {
|
|
199107
|
-
if (typeof str !== 'string') {
|
|
199108
|
-
throw new TypeError('Expected a string');
|
|
199109
|
-
}
|
|
199110
|
-
|
|
199111
|
-
return str.replace(matchOperatorsRe, '\\$&');
|
|
199112
|
-
};
|
|
199113
|
-
|
|
199114
|
-
|
|
199115
199593
|
/***/ }),
|
|
199116
199594
|
|
|
199117
199595
|
/***/ "./node_modules/fbjs/lib/areEqual.js":
|
|
@@ -210712,6 +211190,16 @@ module.exports = "Валидация строится по `<type>`, анало
|
|
|
210712
211190
|
|
|
210713
211191
|
/***/ }),
|
|
210714
211192
|
|
|
211193
|
+
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/description.md":
|
|
211194
|
+
/*!*********************************************************************************************************!*\
|
|
211195
|
+
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/DateView/description.md ***!
|
|
211196
|
+
\*********************************************************************************************************/
|
|
211197
|
+
/***/ ((module) => {
|
|
211198
|
+
|
|
211199
|
+
module.exports = "";
|
|
211200
|
+
|
|
211201
|
+
/***/ }),
|
|
211202
|
+
|
|
210715
211203
|
/***/ "./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/description.md":
|
|
210716
211204
|
/*!*****************************************************************************************************!*\
|
|
210717
211205
|
!*** ./Generator/src/generators/markupGenerator/ElementProcessors/ValueViewers/Text/description.md ***!
|