diff --git a/dist/index.d.ts b/dist/index.d.ts index 3fb36f4e3..45095bbcb 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,3 +1,5 @@ export type { BotProps } from './components/Bot'; export type { BubbleProps } from './features/bubble/components/Bubble'; +export type { FullProps } from './features/full/components/Full'; +export type { BubbleTheme } from './features/bubble/types'; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/dist/index.d.ts.map b/dist/index.d.ts.map index d7a3616d0..ab02e6391 100644 --- a/dist/index.d.ts.map +++ b/dist/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,YAAY,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,YAAY,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AACvE,YAAY,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AACjE,YAAY,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC"} \ No newline at end of file diff --git a/dist/web.d.ts b/dist/web.d.ts index a395dac23..fb9b57535 100644 --- a/dist/web.d.ts +++ b/dist/web.d.ts @@ -5,7 +5,7 @@ declare const chatbot: { onRequest?: ((request: RequestInit) => Promise) | undefined; chatflowConfig?: Record | undefined; observersConfig?: import("./components/Bot").observersConfigType | undefined; - theme?: import("./features/bubble/types").BubbleTheme | undefined; + theme?: import(".").BubbleTheme | undefined; } & { id?: string | undefined; }) => void; @@ -15,7 +15,7 @@ declare const chatbot: { onRequest?: ((request: RequestInit) => Promise) | undefined; chatflowConfig?: Record | undefined; observersConfig?: import("./components/Bot").observersConfigType | undefined; - theme?: import("./features/bubble/types").BubbleTheme | undefined; + theme?: import(".").BubbleTheme | undefined; }) => void; destroy: () => void; }; diff --git a/src/index.ts b/src/index.ts index 87ca635aa..80d7c4f8f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,4 @@ export type { BotProps } from './components/Bot'; export type { BubbleProps } from './features/bubble/components/Bubble'; +export type { FullProps } from './features/full/components/Full'; +export type { BubbleTheme } from './features/bubble/types';