@teambit/component-compare 1.0.1002 → 1.0.1003
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/component-compare-aspects.section.d.ts +4 -3
- package/dist/component-compare-changelog.section.d.ts +4 -3
- package/dist/component-compare.compositions.d.ts +2 -1
- package/dist/component-compare.section.d.ts +3 -2
- package/dist/component-compare.ui.runtime.d.ts +4 -3
- package/dist/{preview-1780084871933.js → preview-1780507494169.js} +2 -2
- package/package.json +18 -18
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props';
|
|
2
3
|
import { ChangeType } from '@teambit/component.ui.component-compare.models.component-compare-change-type';
|
|
3
4
|
import type { Section } from '@teambit/component';
|
|
@@ -8,16 +9,16 @@ export declare class AspectsCompareSection implements TabItem, Section {
|
|
|
8
9
|
navigationLink: {
|
|
9
10
|
href: string;
|
|
10
11
|
displayName: string;
|
|
11
|
-
children:
|
|
12
|
+
children: React.JSX.Element;
|
|
12
13
|
};
|
|
13
14
|
props: {
|
|
14
15
|
href: string;
|
|
15
16
|
displayName: string;
|
|
16
|
-
children:
|
|
17
|
+
children: React.JSX.Element;
|
|
17
18
|
};
|
|
18
19
|
route: {
|
|
19
20
|
path: string;
|
|
20
|
-
element:
|
|
21
|
+
element: React.JSX.Element;
|
|
21
22
|
};
|
|
22
23
|
order: number;
|
|
23
24
|
widget: boolean;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { Section } from '@teambit/component';
|
|
2
3
|
import type { TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props';
|
|
3
4
|
import type { ComponentCompareUI } from './component-compare.ui.runtime';
|
|
@@ -6,17 +7,17 @@ export declare class CompareChangelogSection implements Section, TabItem {
|
|
|
6
7
|
constructor(compareUI: ComponentCompareUI);
|
|
7
8
|
navigationLink: {
|
|
8
9
|
href: string;
|
|
9
|
-
children:
|
|
10
|
+
children: React.JSX.Element;
|
|
10
11
|
displayName: string;
|
|
11
12
|
};
|
|
12
13
|
props: {
|
|
13
14
|
href: string;
|
|
14
|
-
children:
|
|
15
|
+
children: React.JSX.Element;
|
|
15
16
|
displayName: string;
|
|
16
17
|
};
|
|
17
18
|
route: {
|
|
18
19
|
path: string;
|
|
19
|
-
element:
|
|
20
|
+
element: React.JSX.Element;
|
|
20
21
|
};
|
|
21
22
|
order: number;
|
|
22
23
|
widget: boolean;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Logo: () => React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { Section } from '@teambit/component';
|
|
2
3
|
import type { ComponentCompareUI } from './component-compare.ui.runtime';
|
|
3
4
|
export declare class ComponentCompareSection implements Section {
|
|
@@ -7,12 +8,12 @@ export declare class ComponentCompareSection implements Section {
|
|
|
7
8
|
navigationLink: {
|
|
8
9
|
href: string;
|
|
9
10
|
displayName: string;
|
|
10
|
-
children:
|
|
11
|
+
children: React.JSX.Element;
|
|
11
12
|
hideInMinimalMode: boolean;
|
|
12
13
|
};
|
|
13
14
|
route: {
|
|
14
15
|
path: string;
|
|
15
|
-
element:
|
|
16
|
+
element: React.JSX.Element;
|
|
16
17
|
};
|
|
17
18
|
order: number;
|
|
18
19
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { RouteProps } from 'react-router-dom';
|
|
2
3
|
import type { Harmony, SlotRegistry } from '@teambit/harmony';
|
|
3
4
|
import type { ComponentUI } from '@teambit/component';
|
|
@@ -16,9 +17,9 @@ export declare class ComponentCompareUI {
|
|
|
16
17
|
static dependencies: import("@teambit/harmony").Aspect[];
|
|
17
18
|
getComponentComparePage: (props?: ComponentCompareProps & {
|
|
18
19
|
pinned?: boolean;
|
|
19
|
-
}) =>
|
|
20
|
-
getAspectsComparePage: () =>
|
|
21
|
-
getChangelogComparePage: () =>
|
|
20
|
+
}) => React.JSX.Element;
|
|
21
|
+
getAspectsComparePage: () => React.JSX.Element;
|
|
22
|
+
getChangelogComparePage: () => React.JSX.Element;
|
|
22
23
|
registerNavigation(nav: TabItem | Array<TabItem>): this;
|
|
23
24
|
registerRoutes(routes: RouteProps[]): this;
|
|
24
25
|
get routes(): Map<string, RouteProps | RouteProps[]>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.1003/dist/component-compare.compositions.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.1003/dist/component-compare.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/component-compare",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1003",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/component-compare",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "component-compare",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1003"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"graphql-tag": "2.12.1",
|
|
@@ -23,22 +23,22 @@
|
|
|
23
23
|
"@teambit/component.ui.component-compare.compare-aspects.compare-aspects": "0.0.155",
|
|
24
24
|
"@teambit/component.ui.component-compare.component-compare": "0.0.259",
|
|
25
25
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.523",
|
|
26
|
-
"@teambit/component": "1.0.
|
|
27
|
-
"@teambit/graphql": "1.0.
|
|
28
|
-
"@teambit/builder": "1.0.
|
|
29
|
-
"@teambit/cli": "0.0.
|
|
30
|
-
"@teambit/dependency-resolver": "1.0.
|
|
31
|
-
"@teambit/importer": "1.0.
|
|
32
|
-
"@teambit/legacy.component-diff": "0.0.
|
|
33
|
-
"@teambit/legacy.consumer-component": "0.0.
|
|
34
|
-
"@teambit/logger": "0.0.
|
|
35
|
-
"@teambit/objects": "0.0.
|
|
36
|
-
"@teambit/schema": "1.0.
|
|
37
|
-
"@teambit/scope": "1.0.
|
|
38
|
-
"@teambit/tester": "1.0.
|
|
39
|
-
"@teambit/workspace": "1.0.
|
|
40
|
-
"@teambit/ui": "1.0.
|
|
41
|
-
"@teambit/legacy.constants": "0.0.
|
|
26
|
+
"@teambit/component": "1.0.1003",
|
|
27
|
+
"@teambit/graphql": "1.0.1003",
|
|
28
|
+
"@teambit/builder": "1.0.1003",
|
|
29
|
+
"@teambit/cli": "0.0.1330",
|
|
30
|
+
"@teambit/dependency-resolver": "1.0.1003",
|
|
31
|
+
"@teambit/importer": "1.0.1003",
|
|
32
|
+
"@teambit/legacy.component-diff": "0.0.175",
|
|
33
|
+
"@teambit/legacy.consumer-component": "0.0.121",
|
|
34
|
+
"@teambit/logger": "0.0.1423",
|
|
35
|
+
"@teambit/objects": "0.0.510",
|
|
36
|
+
"@teambit/schema": "1.0.1003",
|
|
37
|
+
"@teambit/scope": "1.0.1003",
|
|
38
|
+
"@teambit/tester": "1.0.1003",
|
|
39
|
+
"@teambit/workspace": "1.0.1003",
|
|
40
|
+
"@teambit/ui": "1.0.1003",
|
|
41
|
+
"@teambit/legacy.constants": "0.0.29"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/lodash": "4.14.165",
|