@teambit/code.ui.code-tab-page 0.0.611 → 0.0.612

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/code-tab-page.tsx CHANGED
@@ -26,7 +26,7 @@ import { FILE_SIZE_THRESHOLD } from '@teambit/component.ui.artifacts.artifacts-t
26
26
 
27
27
  import styles from './code-tab-page.module.scss';
28
28
 
29
- type CodePageProps = {
29
+ export type CodePageProps = {
30
30
  fileIconSlot?: FileIconSlot;
31
31
  host: string;
32
32
  } & HTMLAttributes<HTMLDivElement>;
@@ -2,10 +2,9 @@ import { HTMLAttributes } from 'react';
2
2
  import type { FileIconSlot } from '@teambit/code';
3
3
  import { FileIconMatch } from '@teambit/code.ui.utils.get-file-icon';
4
4
  import { TreeNode } from '@teambit/design.ui.tree';
5
- declare type CodePageProps = {
5
+ export declare type CodePageProps = {
6
6
  fileIconSlot?: FileIconSlot;
7
7
  host: string;
8
8
  } & HTMLAttributes<HTMLDivElement>;
9
9
  export declare function CodePage({ className, fileIconSlot, host }: CodePageProps): JSX.Element;
10
10
  export declare function generateIcon(fileIconMatchers: FileIconMatch[]): ({ id }: TreeNode) => string;
11
- export {};
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export { CodePage, generateIcon } from './code-tab-page';
2
+ export type { CodePageProps } from './code-tab-page';
package/index.ts CHANGED
@@ -1 +1,2 @@
1
1
  export { CodePage, generateIcon } from './code-tab-page';
2
+ export type { CodePageProps } from './code-tab-page';
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/code.ui.code-tab-page",
3
- "version": "0.0.611",
4
- "homepage": "https://bit.dev/teambit/code/ui/code-tab-page",
3
+ "version": "0.0.612",
4
+ "homepage": "https://bit.cloud/teambit/code/ui/code-tab-page",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.code",
8
8
  "name": "ui/code-tab-page",
9
- "version": "0.0.611"
9
+ "version": "0.0.612"
10
10
  },
11
11
  "dependencies": {
12
12
  "classnames": "2.2.6",