@teambit/changelog 1.0.1002 → 1.0.1004
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.
|
@@ -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 { ChangeLogUI } from './changelog.ui.runtime';
|
|
3
4
|
export declare class ChangelogSection implements Section {
|
|
@@ -5,11 +6,11 @@ export declare class ChangelogSection implements Section {
|
|
|
5
6
|
constructor(ui: ChangeLogUI);
|
|
6
7
|
route: {
|
|
7
8
|
path: string;
|
|
8
|
-
element:
|
|
9
|
+
element: React.JSX.Element;
|
|
9
10
|
};
|
|
10
11
|
navigationLink: {
|
|
11
12
|
href: string;
|
|
12
|
-
children:
|
|
13
|
+
children: React.JSX.Element;
|
|
13
14
|
displayName: string;
|
|
14
15
|
hideInMinimalMode: boolean;
|
|
15
16
|
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import type { ComponentUI } from '@teambit/component';
|
|
2
|
+
import React from 'react';
|
|
2
3
|
import type { Harmony } from '@teambit/harmony';
|
|
3
4
|
import type { ChangeLogPageProps } from './ui/change-log-page';
|
|
4
5
|
export declare class ChangeLogUI {
|
|
5
6
|
private host;
|
|
6
7
|
constructor(host: string);
|
|
7
|
-
ChangeLog: (props?: ChangeLogPageProps) =>
|
|
8
|
+
ChangeLog: (props?: ChangeLogPageProps) => React.JSX.Element;
|
|
8
9
|
static dependencies: import("@teambit/harmony").Aspect[];
|
|
9
10
|
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
10
11
|
static provider([component]: [ComponentUI], _: any, __: any, harmony: Harmony): Promise<ChangeLogUI>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_changelog@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_changelog@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_changelog@1.0.1004/dist/changelog.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_changelog@1.0.1004/dist/changelog.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { ComponentLogsResult, Filters } from '@teambit/component';
|
|
2
2
|
import type { HTMLAttributes } from 'react';
|
|
3
|
+
import React from 'react';
|
|
3
4
|
export type ChangeLogPageProps = {
|
|
4
5
|
host?: string;
|
|
5
6
|
useComponentLogs?: (id: string, host: string, filters?: Filters, skip?: boolean) => ComponentLogsResult;
|
|
6
7
|
} & HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare function ChangeLogPage({ className, useComponentLogs, host, }: ChangeLogPageProps):
|
|
8
|
+
export declare function ChangeLogPage({ className, useComponentLogs, host, }: ChangeLogPageProps): React.JSX.Element | null;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/changelog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1004",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/changelog",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "changelog",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1004"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"classnames": "^2.5.1",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"@teambit/design.ui.separator": "0.0.367",
|
|
19
19
|
"@teambit/documenter.ui.heading": "4.1.8",
|
|
20
20
|
"@teambit/mdx.ui.mdx-layout": "1.0.12",
|
|
21
|
-
"@teambit/component": "1.0.
|
|
22
|
-
"@teambit/ui": "1.0.
|
|
21
|
+
"@teambit/component": "1.0.1004",
|
|
22
|
+
"@teambit/ui": "1.0.1004"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/classnames": "^2.3.4",
|