@kontur.candy/generator 5.43.0-disabled-validation-for-rsv.1 → 5.44.0-errorlog-hidden-text.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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -70814,10 +70814,11 @@ class NormalizationRulesGenerator {
|
|
|
70814
70814
|
const lazyLoadingRules = this.lazyLoadingRulesBuilder.buildRules();
|
|
70815
70815
|
const formulaFLangRules = this.formulaRulesBuilder.buildRules();
|
|
70816
70816
|
const optionalSectionRules = this.optionalSectionRulesBuilder.buildRules();
|
|
70817
|
+
const sugarValidationRules = this.validationRulesBuilder.buildRules();
|
|
70817
70818
|
const dataDeclarationRules = this.sugarRulesBuilder.buildRules();
|
|
70818
70819
|
|
|
70819
70820
|
// Порядок важен, т.к. потом делаем distinctBy.
|
|
70820
|
-
const allRules = _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.concat(initializeRules, lazyLoadingRules, formulaFLangRules, optionalSectionRules, dataDeclarationRules).flatMap(rule => (0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_1__.wrapWithDisableValueAutoInitFlagCheckIfRequired)(this.formSchemaRng, rule));
|
|
70821
|
+
const allRules = _Common_IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.concat(initializeRules, lazyLoadingRules, formulaFLangRules, optionalSectionRules, dataDeclarationRules, sugarValidationRules).flatMap(rule => (0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_1__.wrapWithDisableValueAutoInitFlagCheckIfRequired)(this.formSchemaRng, rule));
|
|
70821
70822
|
return (0,_FLang_FlangUtils__WEBPACK_IMPORTED_MODULE_1__.combineRulesWithOptionalSectionChecking)(allRules, this.optionalSectionRulesBuilder);
|
|
70822
70823
|
}
|
|
70823
70824
|
}
|