Skip to content

Commit 5d2d605

Browse files
authored
Merge branch 'master' into chore/disable-e2e
2 parents 30c38f0 + 135e4c4 commit 5d2d605

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

src/components/Message/renderText/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { MentionProps } from './componentRenderers';
1+
export type { MentionProps } from './componentRenderers';
22
export { escapeRegExp, matchMarkdownLinks, messageCodeBlocks } from './regex';
33
export * from './rehypePlugins';
44
export * from './remarkPlugins';

src/components/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ export * from './TypingIndicator';
3232
export * from './UserItem';
3333
export * from './Window';
3434

35-
export { UploadButton, UploadButtonProps } from './ReactFileUtilities';
35+
export { UploadButton } from './ReactFileUtilities';
36+
export type { UploadButtonProps } from './ReactFileUtilities';

src/types/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { DefaultStreamChatGenerics, ChannelUnreadUiState } from './types';
1+
export type { DefaultStreamChatGenerics, ChannelUnreadUiState } from './types';

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"declaration": true,
2929
"declarationDir": "./dist",
3030
"declarationMap": true,
31-
"importHelpers": true
31+
"importHelpers": true,
32+
"isolatedModules": true
3233
},
3334
"include": ["./src/**/*"],
3435
"exclude": ["./src/stories", "./src/mock-builders", "./src/**/__tests__/*"]

0 commit comments

Comments
 (0)