@signaltree/ng-forms 4.0.9 → 4.0.15

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.
Files changed (41) hide show
  1. package/fesm2022/signaltree-ng-forms-src-audit.mjs +20 -0
  2. package/fesm2022/signaltree-ng-forms-src-audit.mjs.map +1 -0
  3. package/fesm2022/signaltree-ng-forms-src-history.mjs +113 -0
  4. package/fesm2022/signaltree-ng-forms-src-history.mjs.map +1 -0
  5. package/fesm2022/signaltree-ng-forms-src-rxjs.mjs +21 -0
  6. package/fesm2022/signaltree-ng-forms-src-rxjs.mjs.map +1 -0
  7. package/fesm2022/signaltree-ng-forms.mjs +1038 -0
  8. package/fesm2022/signaltree-ng-forms.mjs.map +1 -0
  9. package/index.d.ts +128 -0
  10. package/package.json +27 -7
  11. package/src/audit/index.d.ts +15 -0
  12. package/src/history/index.d.ts +24 -0
  13. package/src/rxjs/index.d.ts +6 -0
  14. package/LICENSE +0 -54
  15. package/eslint.config.mjs +0 -48
  16. package/jest.config.ts +0 -21
  17. package/ng-package.json +0 -8
  18. package/project.json +0 -48
  19. package/src/audit/audit.ts +0 -75
  20. package/src/audit/index.ts +0 -1
  21. package/src/audit/ng-package.json +0 -5
  22. package/src/core/async-validators.ts +0 -80
  23. package/src/core/ng-forms.spec.ts +0 -204
  24. package/src/core/ng-forms.ts +0 -1316
  25. package/src/core/validators.ts +0 -209
  26. package/src/history/history.ts +0 -169
  27. package/src/history/index.ts +0 -1
  28. package/src/history/ng-package.json +0 -5
  29. package/src/index.ts +0 -5
  30. package/src/rxjs/index.ts +0 -1
  31. package/src/rxjs/ng-package.json +0 -5
  32. package/src/rxjs/public-api.ts +0 -5
  33. package/src/rxjs/rxjs-bridge.ts +0 -75
  34. package/src/test-setup.ts +0 -6
  35. package/src/types/signaltree-core.d.ts +0 -11
  36. package/src/wizard/index.ts +0 -1
  37. package/src/wizard/wizard.ts +0 -145
  38. package/tsconfig.json +0 -33
  39. package/tsconfig.lib.json +0 -25
  40. package/tsconfig.lib.prod.json +0 -13
  41. package/tsconfig.spec.json +0 -17
package/tsconfig.lib.json DELETED
@@ -1,25 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../dist/out-tsc",
5
- "declaration": true,
6
- "declarationMap": true,
7
- "inlineSources": true,
8
- "types": [],
9
- "typeRoots": [
10
- "./src/types",
11
- "../../node_modules/@types"
12
- ],
13
- "paths": {
14
- "@signaltree/core": ["packages/core/src/index.ts"],
15
- "@signaltree/core/*": ["packages/core/src/*"]
16
- }
17
- },
18
- "exclude": [
19
- "src/**/*.spec.ts",
20
- "src/test-setup.ts",
21
- "jest.config.ts",
22
- "src/**/*.test.ts"
23
- ],
24
- "include": ["src/**/*.ts"]
25
- }
@@ -1,13 +0,0 @@
1
- {
2
- "extends": "./tsconfig.lib.json",
3
- "compilerOptions": {
4
- "removeComments": true,
5
- "declarationMap": false,
6
- "declaration": true,
7
- "stripInternal": true,
8
- "sourceMap": false
9
- },
10
- "angularCompilerOptions": {
11
- "compilationMode": "partial"
12
- }
13
- }
@@ -1,17 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../dist/out-tsc",
5
- "module": "commonjs",
6
- "target": "es2016",
7
- "types": ["jest", "node"],
8
- "moduleResolution": "node10"
9
- },
10
- "files": ["src/test-setup.ts"],
11
- "include": [
12
- "jest.config.ts",
13
- "src/**/*.test.ts",
14
- "src/**/*.spec.ts",
15
- "src/**/*.d.ts"
16
- ]
17
- }