|
1 | | -import {GettingStartedComponent} from "./getting-started/getting-started.component"; |
2 | | -import {ValidatorClassComponent} from "./validator-class/validator-class.component"; |
3 | | -import {ValidationErrorClassComponent} from "./validation-error-class/validation-error-class.component"; |
4 | | -import {ValidationResultClassComponent} from "./validation-result-class/validation-result-class.component"; |
| 1 | +/* Introduction */ |
| 2 | +import {GettingStartedComponent} from "./introduction/getting-started/getting-started.component"; |
5 | 3 |
|
6 | | -export * from "./getting-started/getting-started.component"; |
7 | | -export * from "./validator-class/validator-class.component"; |
8 | | -export * from "./validation-error-class/validation-error-class.component"; |
9 | | -export * from "./validation-result-class/validation-result-class.component"; |
| 4 | +/* Name-Space */ |
| 5 | +import {ValidatorClassComponent} from "./name-space/validator-class/validator-class.component"; |
| 6 | +import {ValidationErrorClassComponent} from "./name-space/validation-error-class/validation-error-class.component"; |
| 7 | +import {ValidationResultClassComponent} from "./name-space/validation-result-class/validation-result-class.component"; |
| 8 | + |
| 9 | +/* Validation */ |
| 10 | +import {BlackListFuncComponent} from "./validation/black-list-func/black-list-func.component"; |
| 11 | +import {ContainsFuncComponent} from "./validation/contains-func/contains-func.component"; |
| 12 | +import {CustomValidatorFuncComponent} from "./validation/custom-validator-func/custom-validator-func.component"; |
| 13 | +import {EndsWithFuncComponent} from "./validation/ends-with-func/ends-with-func.component"; |
| 14 | +import {IsAlphaFuncComponent} from "./validation/is-alpha-func/is-alpha-func.component"; |
| 15 | + |
| 16 | +/* Introduction */ |
| 17 | +export * from "./introduction/getting-started/getting-started.component"; |
| 18 | + |
| 19 | +/* Name-Space */ |
| 20 | +export * from "./name-space/validator-class/validator-class.component"; |
| 21 | +export * from "./name-space/validation-error-class/validation-error-class.component"; |
| 22 | +export * from "./name-space/validation-result-class/validation-result-class.component"; |
| 23 | + |
| 24 | +/* Validation */ |
| 25 | +export * from "./validation/black-list-func/black-list-func.component"; |
| 26 | +export * from "./validation/contains-func/contains-func.component"; |
| 27 | +export * from "./validation/custom-validator-func/custom-validator-func.component"; |
| 28 | +export * from "./validation/ends-with-func/ends-with-func.component"; |
| 29 | +export * from "./validation/is-alpha-func/is-alpha-func.component"; |
10 | 30 |
|
11 | 31 | export const COMPONENTS: any[] = [ |
12 | 32 | GettingStartedComponent, |
| 33 | + |
13 | 34 | ValidatorClassComponent, |
14 | 35 | ValidationErrorClassComponent, |
15 | | - ValidationResultClassComponent |
| 36 | + ValidationResultClassComponent, |
| 37 | + |
| 38 | + BlackListFuncComponent, |
| 39 | + ContainsFuncComponent, |
| 40 | + CustomValidatorFuncComponent, |
| 41 | + EndsWithFuncComponent, |
| 42 | + IsAlphaFuncComponent |
16 | 43 | ]; |
0 commit comments