@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.
- package/artifacts/__bit_junit.xml +1 -1
- package/artifacts/preview/teambit_component_graph-preview.js +1 -1
- package/artifacts/schema.json +535 -126
- package/dist/component-graph/component-graph.d.ts +22 -0
- package/dist/component-graph/index.d.ts +1 -0
- package/dist/component-id-graph.d.ts +50 -0
- package/dist/duplicate-dependency.d.ts +11 -0
- package/dist/edge-type.d.ts +5 -0
- package/dist/graph-builder.d.ts +16 -0
- package/dist/graph-cmd.d.ts +24 -0
- package/dist/graph.aspect.d.ts +3 -0
- package/dist/graph.compare.section.d.ts +20 -0
- package/dist/graph.composition.d.ts +1 -0
- package/dist/graph.graphql.d.ts +4 -0
- package/dist/graph.main.runtime.d.ts +26 -0
- package/dist/graph.ui.runtime.d.ts +33 -0
- package/dist/index.d.ts +18 -0
- package/dist/model/dependency/dependency.d.ts +6 -0
- package/dist/model/dependency/index.d.ts +1 -0
- package/dist/model/graph-filters/graph-filters.d.ts +1 -0
- package/dist/model/graph-filters/index.d.ts +1 -0
- package/dist/object-list-to-graph.d.ts +13 -0
- package/dist/{preview-1712805335812.js → preview-1712891953391.js} +2 -2
- package/dist/ui/component-node/component-node.d.ts +7 -0
- package/dist/ui/component-node/index.d.ts +13 -0
- package/dist/ui/component-node/variants.d.ts +2 -0
- package/dist/ui/dependencies-compare/compare-graph-model.d.ts +7 -0
- package/dist/ui/dependencies-compare/compare-node-model.d.ts +9 -0
- package/dist/ui/dependencies-compare/dependencies-compare.d.ts +1 -0
- package/dist/ui/dependencies-compare/dependency-compare-node.d.ts +6 -0
- package/dist/ui/dependencies-compare/diff-graph.d.ts +4 -0
- package/dist/ui/dependencies-compare/index.d.ts +1 -0
- package/dist/ui/dependencies-graph/calc-elements.d.ts +11 -0
- package/dist/ui/dependencies-graph/calc-layout.d.ts +8 -0
- package/dist/ui/dependencies-graph/dep-edge/dep-edge.d.ts +3 -0
- package/dist/ui/dependencies-graph/dep-edge/index.d.ts +1 -0
- package/dist/ui/dependencies-graph/dependencies-graph.d.ts +11 -0
- package/dist/ui/dependencies-graph/graph-context.d.ts +7 -0
- package/dist/ui/dependencies-graph/index.d.ts +12 -0
- package/dist/ui/dependencies-graph/minimap.d.ts +2 -0
- package/dist/ui/graph-page/graph-filters.d.ts +8 -0
- package/dist/ui/graph-page/graph-page.d.ts +6 -0
- package/dist/ui/graph-page/index.d.ts +6 -0
- package/dist/ui/graph.section.d.ts +15 -0
- package/dist/ui/query/edge-model.d.ts +8 -0
- package/dist/ui/query/get-graph.query.d.ts +32 -0
- package/dist/ui/query/graph-model.d.ts +9 -0
- package/dist/ui/query/index.d.ts +6 -0
- package/dist/ui/query/node-model.d.ts +7 -0
- package/dist/ui/query/use-graph-query.d.ts +8 -0
- package/dist/ui/query/use-graph.d.ts +5 -0
- package/package.json +9 -9
- 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
|
}
|