@ngutil/layout 0.0.3-dev.1 → 0.0.3-dev.10

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 (49) hide show
  1. package/docking/docking-content.component.d.ts +5 -0
  2. package/docking/docking-layout.component.d.ts +22 -0
  3. package/docking/docking-panel.component.d.ts +40 -0
  4. package/docking/index.d.ts +13 -0
  5. package/esm2022/docking/docking-content.component.mjs +11 -0
  6. package/esm2022/docking/docking-layout.component.mjs +140 -0
  7. package/esm2022/docking/docking-panel.component.mjs +179 -0
  8. package/esm2022/docking/index.mjs +20 -0
  9. package/esm2022/index.mjs +5 -0
  10. package/esm2022/l9/index.mjs +3 -0
  11. package/esm2022/l9/range.mjs +109 -0
  12. package/esm2022/l9/state.mjs +29 -0
  13. package/esm2022/ngutil-layout.mjs +5 -0
  14. package/esm2022/services/slots.service.mjs +240 -0
  15. package/esm2022/util/dimension-watcher.mjs +85 -0
  16. package/esm2022/util/dimension.mjs +2 -0
  17. package/esm2022/util/index.mjs +3 -0
  18. package/esm2022/util/media-watcher.mjs +29 -0
  19. package/esm2022/util/rect.mjs +2 -0
  20. package/fesm2022/ngutil-layout.mjs +822 -0
  21. package/fesm2022/ngutil-layout.mjs.map +1 -0
  22. package/index.d.ts +4 -0
  23. package/l9/index.d.ts +2 -0
  24. package/l9/range.d.ts +28 -0
  25. package/l9/state.d.ts +14 -0
  26. package/package.json +18 -5
  27. package/services/slots.service.d.ts +69 -0
  28. package/util/dimension-watcher.d.ts +4 -0
  29. package/util/dimension.d.ts +5 -0
  30. package/util/index.d.ts +4 -0
  31. package/util/media-watcher.d.ts +5 -0
  32. package/util/rect.d.ts +5 -0
  33. package/.eslintrc.json +0 -25
  34. package/.storybook/main.ts +0 -16
  35. package/.storybook/preview.ts +0 -0
  36. package/.storybook/tsconfig.json +0 -16
  37. package/jest.config.ts +0 -22
  38. package/ng-package.json +0 -7
  39. package/project.json +0 -73
  40. package/src/index.ts +0 -1
  41. package/src/lib/layout/layout.component.scss +0 -0
  42. package/src/lib/layout/layout.component.spec.ts +0 -22
  43. package/src/lib/layout/layout.component.stories.ts +0 -24
  44. package/src/lib/layout/layout.component.ts +0 -11
  45. package/src/test-setup.ts +0 -9
  46. package/tsconfig.json +0 -32
  47. package/tsconfig.lib.json +0 -19
  48. package/tsconfig.lib.prod.json +0 -9
  49. package/tsconfig.spec.json +0 -11
package/tsconfig.lib.json DELETED
@@ -1,19 +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
- },
10
- "exclude": [
11
- "src/**/*.spec.ts",
12
- "src/test-setup.ts",
13
- "jest.config.ts",
14
- "src/**/*.test.ts",
15
- "**/*.stories.ts",
16
- "**/*.stories.js"
17
- ],
18
- "include": ["src/**/*.ts"]
19
- }
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "./tsconfig.lib.json",
3
- "compilerOptions": {
4
- "declarationMap": false
5
- },
6
- "angularCompilerOptions": {
7
- "compilationMode": "partial"
8
- }
9
- }
@@ -1,11 +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
- },
9
- "files": ["src/test-setup.ts"],
10
- "include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts"]
11
- }