Skip to content

Commit 16c193a

Browse files
authored
Merge pull request #353 from FlowiseAI/bugfix/Missing-Theme-Property
Bugfix/Missing Theme in FullPageChat
2 parents 104ba07 + 2674416 commit 16c193a

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

dist/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
export type { BotProps } from './components/Bot';
22
export type { BubbleProps } from './features/bubble/components/Bubble';
3+
export type { FullProps } from './features/full/components/Full';
4+
export type { BubbleTheme } from './features/bubble/types';
35
//# sourceMappingURL=index.d.ts.map

dist/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ declare const chatbot: {
55
onRequest?: ((request: RequestInit) => Promise<void>) | undefined;
66
chatflowConfig?: Record<string, unknown> | undefined;
77
observersConfig?: import("./components/Bot").observersConfigType | undefined;
8-
theme?: import("./features/bubble/types").BubbleTheme | undefined;
8+
theme?: import(".").BubbleTheme | undefined;
99
} & {
1010
id?: string | undefined;
1111
}) => void;
@@ -15,7 +15,7 @@ declare const chatbot: {
1515
onRequest?: ((request: RequestInit) => Promise<void>) | undefined;
1616
chatflowConfig?: Record<string, unknown> | undefined;
1717
observersConfig?: import("./components/Bot").observersConfigType | undefined;
18-
theme?: import("./features/bubble/types").BubbleTheme | undefined;
18+
theme?: import(".").BubbleTheme | undefined;
1919
}) => void;
2020
destroy: () => void;
2121
};

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
export type { BotProps } from './components/Bot';
22
export type { BubbleProps } from './features/bubble/components/Bubble';
3+
export type { FullProps } from './features/full/components/Full';
4+
export type { BubbleTheme } from './features/bubble/types';

0 commit comments

Comments
 (0)