@teambit/changelog 1.0.13 → 1.0.15

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,2 +1,2 @@
1
- /// <reference types="react" />
2
- export declare const Logo: () => JSX.Element;
1
+ import React from 'react';
2
+ export declare const Logo: () => React.JSX.Element;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import { Section } from '@teambit/component';
3
3
  import { ChangeLogUI } from './changelog.ui.runtime';
4
4
  export declare class ChangelogSection implements Section {
@@ -6,11 +6,11 @@ export declare class ChangelogSection implements Section {
6
6
  constructor(ui: ChangeLogUI);
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;
13
- children: JSX.Element;
13
+ children: React.JSX.Element;
14
14
  displayName: string;
15
15
  };
16
16
  order: number;
@@ -1,11 +1,11 @@
1
- /// <reference types="react" />
2
1
  import { ComponentUI } from '@teambit/component';
2
+ import React from 'react';
3
3
  import { Harmony } from '@teambit/harmony';
4
4
  import { ChangeLogPageProps } from './ui/change-log-page';
5
5
  export declare class ChangeLogUI {
6
6
  private host;
7
7
  constructor(host: string);
8
- ChangeLog: (props?: ChangeLogPageProps) => JSX.Element;
8
+ ChangeLog: (props?: ChangeLogPageProps) => React.JSX.Element;
9
9
  static dependencies: import("@teambit/harmony").Aspect[];
10
10
  static runtime: import("@teambit/harmony").RuntimeDefinition;
11
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/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_changelog@1.0.13/dist/changelog.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_changelog@1.0.13/dist/changelog.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_changelog@1.0.15/dist/changelog.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_changelog@1.0.15/dist/changelog.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -1,7 +1,7 @@
1
1
  import { ComponentLogsResult, Filters } from '@teambit/component';
2
- import { HTMLAttributes } from 'react';
2
+ import React, { HTMLAttributes } from 'react';
3
3
  export declare type ChangeLogPageProps = {
4
4
  host?: string;
5
5
  useComponentLogs?: (id: string, host: string, filters?: Filters, skip?: boolean) => ComponentLogsResult;
6
6
  } & HTMLAttributes<HTMLDivElement>;
7
- export declare function ChangeLogPage({ className, useComponentLogs, host, }: ChangeLogPageProps): JSX.Element | null;
7
+ 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.13",
3
+ "version": "1.0.15",
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.13"
9
+ "version": "1.0.15"
10
10
  },
11
11
  "dependencies": {
12
12
  "classnames": "2.2.6",
@@ -20,8 +20,8 @@
20
20
  "@teambit/design.ui.separator": "0.0.354",
21
21
  "@teambit/documenter.ui.heading": "4.1.1",
22
22
  "@teambit/mdx.ui.mdx-layout": "1.0.6",
23
- "@teambit/component": "1.0.13",
24
- "@teambit/ui": "1.0.13"
23
+ "@teambit/component": "1.0.15",
24
+ "@teambit/ui": "1.0.15"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/react": "^17.0.8",
@@ -33,7 +33,7 @@
33
33
  "@types/testing-library__jest-dom": "5.9.5"
34
34
  },
35
35
  "peerDependencies": {
36
- "@teambit/legacy": "1.0.572",
36
+ "@teambit/legacy": "1.0.573",
37
37
  "react": "^16.8.0 || ^17.0.0",
38
38
  "react-dom": "^16.8.0 || ^17.0.0"
39
39
  },