@teambit/graph 1.0.12 → 1.0.14
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/dist/graph.compare.section.d.ts +2 -2
- package/dist/graph.composition.d.ts +2 -2
- package/dist/{preview-1696157448017.js → preview-1696302977046.js} +2 -2
- package/dist/ui/component-node/component-node.d.ts +2 -2
- package/dist/ui/dependencies-compare/dependencies-compare.d.ts +2 -2
- package/dist/ui/dependencies-compare/dependency-compare-node.d.ts +2 -2
- package/dist/ui/dependencies-graph/dependencies-graph.d.ts +2 -2
- package/dist/ui/graph-page/graph-filters.d.ts +2 -2
- package/dist/ui/graph-page/graph-page.d.ts +2 -2
- package/dist/ui/graph.section.d.ts +2 -2
- package/package.json +6 -6
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { Section } from '@teambit/component';
|
3
3
|
import { ChangeType } from '@teambit/component.ui.component-compare.models.component-compare-change-type';
|
4
4
|
import { TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props';
|
@@ -13,7 +13,7 @@ export declare class GraphCompareSection implements Section, TabItem {
|
|
13
13
|
};
|
14
14
|
route: {
|
15
15
|
path: string;
|
16
|
-
element: JSX.Element;
|
16
|
+
element: React.JSX.Element;
|
17
17
|
};
|
18
18
|
order: number;
|
19
19
|
changeType: ChangeType;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
export declare const Logo: () => JSX.Element;
|
1
|
+
import React from 'react';
|
2
|
+
export declare const Logo: () => React.JSX.Element;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.14/dist/graph.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.14/dist/graph.docs.md';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
@@ -1,8 +1,8 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { CardProps } from '@teambit/base-ui.surfaces.card';
|
3
3
|
import { NodeModel } from '../query/node-model';
|
4
4
|
export interface IComponentNode extends CardProps {
|
5
5
|
node: NodeModel;
|
6
6
|
type: string;
|
7
7
|
}
|
8
|
-
export declare function ComponentNode({ node, type, ...rest }: IComponentNode): JSX.Element;
|
8
|
+
export declare function ComponentNode({ node, type, ...rest }: IComponentNode): React.JSX.Element;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
export declare function DependenciesCompare(): JSX.Element;
|
1
|
+
import React from 'react';
|
2
|
+
export declare function DependenciesCompare(): React.JSX.Element;
|
@@ -1,7 +1,7 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { CompareNodeModel } from './compare-node-model';
|
3
3
|
export declare type DependencyCompareNodeProps = {
|
4
4
|
node: CompareNodeModel;
|
5
5
|
type?: string;
|
6
6
|
};
|
7
|
-
export declare function DependencyCompareNode(props: DependencyCompareNodeProps): JSX.Element;
|
7
|
+
export declare function DependencyCompareNode(props: DependencyCompareNodeProps): React.JSX.Element;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { OnLoadParams, ReactFlowProps } from 'react-flow-renderer';
|
3
3
|
import { ComponentID } from '@teambit/component';
|
4
4
|
import { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
@@ -9,4 +9,4 @@ export declare type DependenciesGraphProps = {
|
|
9
9
|
componentWidgets: ComponentWidgetSlot;
|
10
10
|
onLoad?: (instance: OnLoadParams) => void;
|
11
11
|
} & Omit<ReactFlowProps, 'elements'>;
|
12
|
-
export declare function DependenciesGraph({ graph, rootNode, componentWidgets, className, onLoad, children, ...rest }: DependenciesGraphProps): JSX.Element;
|
12
|
+
export declare function DependenciesGraph({ graph, rootNode, componentWidgets, className, onLoad, children, ...rest }: DependenciesGraphProps): React.JSX.Element;
|
@@ -1,9 +1,9 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { CardProps } from '@teambit/base-ui.surfaces.card';
|
3
3
|
declare type GraphFiltersType = {
|
4
4
|
isFiltered: boolean;
|
5
5
|
onChangeFilter: (isFiltered: boolean) => void;
|
6
6
|
disable?: boolean;
|
7
7
|
} & CardProps;
|
8
|
-
export declare function GraphFilters({ onChangeFilter, isFiltered, disable, ...rest }: GraphFiltersType): JSX.Element;
|
8
|
+
export declare function GraphFilters({ onChangeFilter, isFiltered, disable, ...rest }: GraphFiltersType): React.JSX.Element;
|
9
9
|
export {};
|
@@ -1,7 +1,7 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
3
3
|
declare type GraphPageProps = {
|
4
4
|
componentWidgets: ComponentWidgetSlot;
|
5
5
|
};
|
6
|
-
export declare function GraphPage({ componentWidgets }: GraphPageProps): JSX.Element;
|
6
|
+
export declare function GraphPage({ componentWidgets }: GraphPageProps): React.JSX.Element;
|
7
7
|
export {};
|
@@ -1,12 +1,12 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import { Section } from '@teambit/component';
|
2
|
+
import React from 'react';
|
3
3
|
import { ComponentWidgetSlot } from '../graph.ui.runtime';
|
4
4
|
export declare class GraphSection implements Section {
|
5
5
|
private componentWidgetSlot;
|
6
6
|
constructor(componentWidgetSlot: ComponentWidgetSlot);
|
7
7
|
route: {
|
8
8
|
path: string;
|
9
|
-
element: JSX.Element;
|
9
|
+
element: React.JSX.Element;
|
10
10
|
};
|
11
11
|
navigationLink: {
|
12
12
|
href: string;
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/graph",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.14",
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/graph",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.component",
|
8
8
|
"name": "graph",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.14"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"lodash": "4.17.21",
|
@@ -39,12 +39,12 @@
|
|
39
39
|
"@teambit/ui-foundation.ui.full-loader": "0.0.500",
|
40
40
|
"@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.505",
|
41
41
|
"@teambit/ui-foundation.ui.react-router.use-query": "0.0.501",
|
42
|
-
"@teambit/component": "1.0.
|
42
|
+
"@teambit/component": "1.0.14",
|
43
43
|
"@teambit/cli": "0.0.793",
|
44
|
-
"@teambit/graphql": "1.0.
|
44
|
+
"@teambit/graphql": "1.0.14",
|
45
45
|
"@teambit/logger": "0.0.886",
|
46
|
-
"@teambit/component-compare": "1.0.
|
47
|
-
"@teambit/ui": "1.0.
|
46
|
+
"@teambit/component-compare": "1.0.14",
|
47
|
+
"@teambit/ui": "1.0.14",
|
48
48
|
"@teambit/component.modules.component-url": "0.0.153",
|
49
49
|
"@teambit/envs.ui.env-icon": "0.0.500"
|
50
50
|
},
|