@teambit/graph 1.0.228 → 1.0.230

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 (53) hide show
  1. package/artifacts/__bit_junit.xml +1 -1
  2. package/artifacts/preview/teambit_component_graph-preview.js +1 -1
  3. package/artifacts/schema.json +535 -126
  4. package/dist/component-graph/component-graph.d.ts +22 -0
  5. package/dist/component-graph/index.d.ts +1 -0
  6. package/dist/component-id-graph.d.ts +50 -0
  7. package/dist/duplicate-dependency.d.ts +11 -0
  8. package/dist/edge-type.d.ts +5 -0
  9. package/dist/graph-builder.d.ts +16 -0
  10. package/dist/graph-cmd.d.ts +24 -0
  11. package/dist/graph.aspect.d.ts +3 -0
  12. package/dist/graph.compare.section.d.ts +20 -0
  13. package/dist/graph.composition.d.ts +1 -0
  14. package/dist/graph.graphql.d.ts +4 -0
  15. package/dist/graph.main.runtime.d.ts +26 -0
  16. package/dist/graph.ui.runtime.d.ts +33 -0
  17. package/dist/index.d.ts +18 -0
  18. package/dist/model/dependency/dependency.d.ts +6 -0
  19. package/dist/model/dependency/index.d.ts +1 -0
  20. package/dist/model/graph-filters/graph-filters.d.ts +1 -0
  21. package/dist/model/graph-filters/index.d.ts +1 -0
  22. package/dist/object-list-to-graph.d.ts +13 -0
  23. package/dist/{preview-1712805335812.js → preview-1712891953391.js} +2 -2
  24. package/dist/ui/component-node/component-node.d.ts +7 -0
  25. package/dist/ui/component-node/index.d.ts +13 -0
  26. package/dist/ui/component-node/variants.d.ts +2 -0
  27. package/dist/ui/dependencies-compare/compare-graph-model.d.ts +7 -0
  28. package/dist/ui/dependencies-compare/compare-node-model.d.ts +9 -0
  29. package/dist/ui/dependencies-compare/dependencies-compare.d.ts +1 -0
  30. package/dist/ui/dependencies-compare/dependency-compare-node.d.ts +6 -0
  31. package/dist/ui/dependencies-compare/diff-graph.d.ts +4 -0
  32. package/dist/ui/dependencies-compare/index.d.ts +1 -0
  33. package/dist/ui/dependencies-graph/calc-elements.d.ts +11 -0
  34. package/dist/ui/dependencies-graph/calc-layout.d.ts +8 -0
  35. package/dist/ui/dependencies-graph/dep-edge/dep-edge.d.ts +3 -0
  36. package/dist/ui/dependencies-graph/dep-edge/index.d.ts +1 -0
  37. package/dist/ui/dependencies-graph/dependencies-graph.d.ts +11 -0
  38. package/dist/ui/dependencies-graph/graph-context.d.ts +7 -0
  39. package/dist/ui/dependencies-graph/index.d.ts +12 -0
  40. package/dist/ui/dependencies-graph/minimap.d.ts +2 -0
  41. package/dist/ui/graph-page/graph-filters.d.ts +8 -0
  42. package/dist/ui/graph-page/graph-page.d.ts +6 -0
  43. package/dist/ui/graph-page/index.d.ts +6 -0
  44. package/dist/ui/graph.section.d.ts +15 -0
  45. package/dist/ui/query/edge-model.d.ts +8 -0
  46. package/dist/ui/query/get-graph.query.d.ts +32 -0
  47. package/dist/ui/query/graph-model.d.ts +9 -0
  48. package/dist/ui/query/index.d.ts +6 -0
  49. package/dist/ui/query/node-model.d.ts +7 -0
  50. package/dist/ui/query/use-graph-query.d.ts +8 -0
  51. package/dist/ui/query/use-graph.d.ts +5 -0
  52. package/package.json +9 -9
  53. package/tsconfig.json +1 -22
package/tsconfig.json CHANGED
@@ -20,8 +20,7 @@
20
20
  "emitDeclarationOnly": true,
21
21
  "strict": true,
22
22
  "strictPropertyInitialization": false,
23
- "noImplicitAny": false,
24
- "composite": true
23
+ "noImplicitAny": false
25
24
  },
26
25
  "exclude": [
27
26
  "artifacts",
@@ -36,25 +35,5 @@
36
35
  "include": [
37
36
  "**/*",
38
37
  "**/*.json"
39
- ],
40
- "references": [
41
- {
42
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.228"
43
- },
44
- {
45
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
46
- },
47
- {
48
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_graphql@1.0.228"
49
- },
50
- {
51
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_logger@0.0.954"
52
- },
53
- {
54
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-compare@1.0.228"
55
- },
56
- {
57
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@1.0.228"
58
- }
59
38
  ]
60
39
  }