├── .circleci ├── config.yml └── continue-config.yml ├── .editorconfig ├── .github └── workflows │ ├── docs.yml │ └── update-pr-title.yaml ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit └── pre-push ├── .prettierignore ├── .vscode └── settings.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.2.1.cjs ├── .yarnrc.yml ├── README.md ├── bors.toml ├── eslint.config.mjs ├── examples └── live-agent │ ├── CHANGELOG.md │ ├── README.md │ ├── example_project.vf │ ├── index.html │ ├── package.json │ ├── server │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── intercom │ │ │ ├── intercom-topic.enum.ts │ │ │ ├── intercom.routes.ts │ │ │ └── intercom.service.ts │ │ ├── main.ts │ │ └── sockets.ts │ └── tsconfig.json │ ├── shared │ ├── live-agent-platform.enum.ts │ └── socket-event.enum.ts │ ├── src │ ├── config.ts │ ├── context.tsx │ ├── main.tsx │ ├── traces │ │ └── LiveAgent.trace.ts │ └── use-live-agent.hook.ts │ ├── tsconfig.json │ ├── types │ └── env.d.ts │ └── vite.config.ts ├── lerna.json ├── package.json ├── packages └── react-chat │ ├── --output-dir │ ├── .babelrc.json │ ├── .dependency-cruiser.mjs │ ├── .gitignore │ ├── .storybook │ ├── main.ts │ ├── preview-head.html │ └── preview.tsx │ ├── CHANGELOG.md │ ├── README.md │ ├── __mocks__ │ └── @voiceflow │ │ └── stitches-react.ts │ ├── chromatic.config.json │ ├── config │ └── test │ │ └── setup.ts │ ├── e2e │ ├── embedded.html │ ├── embedded.spec.ts │ ├── extensions.html │ ├── extensions.spec.ts │ ├── overlay.html │ ├── overlay.spec.ts │ ├── proactive.html │ ├── proactive.spec.ts │ └── utils.ts │ ├── examples │ └── index.html │ ├── package.json │ ├── playwright.config.ts │ ├── sonar-project.properties │ ├── src │ ├── assets │ │ └── svg │ │ │ ├── close.svg │ │ │ ├── closeV2.svg │ │ │ ├── index.ts │ │ │ ├── large-arrow-left.svg │ │ │ ├── microphone.svg │ │ │ ├── minus.svg │ │ │ ├── small-arrow-up.svg │ │ │ ├── sound-off.svg │ │ │ ├── sound.svg │ │ │ ├── stop.svg │ │ │ ├── thumbs-up.svg │ │ │ └── top-caret.svg │ ├── common │ │ ├── index.ts │ │ └── utils.ts │ ├── components │ │ ├── AssistantInfo │ │ │ ├── AssistantInfo.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Avatar │ │ │ ├── Avatar.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Bubble │ │ │ ├── Bubble.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Button │ │ │ ├── Button.story.tsx │ │ │ ├── Button.test.tsx │ │ │ ├── Primary.ts │ │ │ ├── Secondary.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── styled.ts │ │ ├── Card │ │ │ ├── Card.story.tsx │ │ │ ├── index.tsx │ │ │ ├── styled.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── Carousel │ │ │ ├── Carousel.story.tsx │ │ │ ├── CarouselButton.tsx │ │ │ ├── constants.ts │ │ │ ├── hooks.ts │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Chat │ │ │ ├── Chat.story.tsx │ │ │ ├── hooks.ts │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── ChatInput │ │ │ ├── AudioInputButton.tsx │ │ │ ├── ChatInput.story.tsx │ │ │ ├── hooks.ts │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Feedback │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Footer │ │ │ ├── Footer.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Header │ │ │ ├── Header.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Icon │ │ │ ├── Icon.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Image │ │ │ ├── Default.tsx │ │ │ ├── Image.story.tsx │ │ │ └── index.tsx │ │ ├── Input │ │ │ ├── Input.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Launcher │ │ │ ├── Launcher.story.tsx │ │ │ ├── index.tsx │ │ │ ├── launch.svg │ │ │ └── styled.ts │ │ ├── Loader │ │ │ ├── Loader.story.tsx │ │ │ └── index.ts │ │ ├── Message │ │ │ ├── ChatMessage.ts │ │ │ ├── DebugMessage │ │ │ │ ├── index.tsx │ │ │ │ └── styled.ts │ │ │ ├── Message.story.tsx │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── styled.ts │ │ ├── Proactive │ │ │ ├── Close.tsx │ │ │ ├── Message.tsx │ │ │ └── index.tsx │ │ ├── Prompt │ │ │ ├── Prompt.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── SystemResponse │ │ │ ├── ExtensionMessage.tsx │ │ │ ├── Indicator.tsx │ │ │ ├── SystemMessage.tsx │ │ │ ├── SystemResponse.story.tsx │ │ │ ├── constants.ts │ │ │ ├── hooks.ts │ │ │ ├── index.tsx │ │ │ ├── state │ │ │ │ └── end.tsx │ │ │ ├── styled.ts │ │ │ └── types.ts │ │ ├── Text │ │ │ ├── Default.tsx │ │ │ ├── Markdown.tsx │ │ │ ├── index.tsx │ │ │ └── schema.ts │ │ ├── Textarea │ │ │ ├── Textarea.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── Timestamp │ │ │ ├── Timestamp.story.tsx │ │ │ ├── index.tsx │ │ │ ├── styled.ts │ │ │ └── utils.ts │ │ ├── Tooltip │ │ │ ├── Tooltip.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── TypingIndicator │ │ │ ├── TypingIndicator.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── UserResponse │ │ │ ├── UserResponse.story.tsx │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ └── index.ts │ ├── constants.ts │ ├── contexts │ │ ├── AutoScrollContext.tsx │ │ ├── RuntimeContext │ │ │ ├── audio-controller.ts │ │ │ ├── index.tsx │ │ │ ├── messages.ts │ │ │ ├── runtime.utils.test.ts │ │ │ ├── runtime.utils.ts │ │ │ ├── silent-audio.ts │ │ │ ├── traces │ │ │ │ ├── EffectExtensions.trace.ts │ │ │ │ ├── NoReply.trace.ts │ │ │ │ └── ResponseExtensions.trace.ts │ │ │ ├── useNoReply.ts │ │ │ ├── useRuntimeAPI.ts │ │ │ └── useRuntimeState.ts │ │ └── index.ts │ ├── device.ts │ ├── dtos │ │ ├── AssistantOptions.dto.ts │ │ ├── ChatConfig.dto.test.ts │ │ ├── ChatConfig.dto.ts │ │ ├── Extension.dto.ts │ │ ├── RenderOptions.dto.test.ts │ │ └── RenderOptions.dto.ts │ ├── fixtures.ts │ ├── hocs │ │ ├── index.ts │ │ └── tag.tsx │ ├── hooks │ │ ├── index.ts │ │ ├── useAutoScroll.ts │ │ ├── useChatAPI.ts │ │ ├── useDidUpdateEffect.ts │ │ ├── useStateRef.ts │ │ ├── useStorage.ts │ │ └── useTheme.ts │ ├── index.tsx │ ├── package.entry.ts │ ├── styles.css │ ├── styles │ │ ├── animation.ts │ │ ├── color.ts │ │ ├── font.ts │ │ ├── fragments.ts │ │ ├── index.ts │ │ ├── shadow.ts │ │ └── theme.ts │ ├── types │ │ ├── index.ts │ │ ├── session.ts │ │ ├── trace.ts │ │ ├── turn.ts │ │ └── util.ts │ ├── utils │ │ ├── actions.ts │ │ ├── assistant.test.ts │ │ ├── assistant.ts │ │ ├── broadcast.ts │ │ ├── chat.ts │ │ ├── controls.tsx │ │ ├── functional.ts │ │ ├── session.ts │ │ ├── stylesheet.ts │ │ ├── url.ts │ │ └── variants.tsx │ └── views │ │ ├── ChatEmbed │ │ └── index.tsx │ │ ├── ChatWidget │ │ ├── index.tsx │ │ └── styled.ts │ │ ├── ChatWindow │ │ ├── index.tsx │ │ └── styled.ts │ │ └── index.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── typings │ ├── env.d.ts │ └── global.d.ts │ ├── vite.config.ts │ ├── vite.package.config.ts │ └── vitest.config.mts ├── renovate.json ├── scripts ├── build_pkg.sh └── vercel_ignore_build.sh ├── sonar-project.properties ├── turbo.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/continue-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.circleci/continue-config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/update-pr-title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.github/workflows/update-pr-title.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | yarn commitlint --edit "$1" 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | yarn lint-staged 4 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | yarn git-branch-check 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/README.md -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/bors.toml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/live-agent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/CHANGELOG.md -------------------------------------------------------------------------------- /examples/live-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/README.md -------------------------------------------------------------------------------- /examples/live-agent/example_project.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/example_project.vf -------------------------------------------------------------------------------- /examples/live-agent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/index.html -------------------------------------------------------------------------------- /examples/live-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/package.json -------------------------------------------------------------------------------- /examples/live-agent/server/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /examples/live-agent/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/README.md -------------------------------------------------------------------------------- /examples/live-agent/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/package.json -------------------------------------------------------------------------------- /examples/live-agent/server/src/intercom/intercom-topic.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/src/intercom/intercom-topic.enum.ts -------------------------------------------------------------------------------- /examples/live-agent/server/src/intercom/intercom.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/src/intercom/intercom.routes.ts -------------------------------------------------------------------------------- /examples/live-agent/server/src/intercom/intercom.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/src/intercom/intercom.service.ts -------------------------------------------------------------------------------- /examples/live-agent/server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/src/main.ts -------------------------------------------------------------------------------- /examples/live-agent/server/src/sockets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/src/sockets.ts -------------------------------------------------------------------------------- /examples/live-agent/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/server/tsconfig.json -------------------------------------------------------------------------------- /examples/live-agent/shared/live-agent-platform.enum.ts: -------------------------------------------------------------------------------- 1 | export enum LiveAgentPlatform { 2 | INTERCOM = 'intercom', 3 | } 4 | -------------------------------------------------------------------------------- /examples/live-agent/shared/socket-event.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/shared/socket-event.enum.ts -------------------------------------------------------------------------------- /examples/live-agent/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/src/config.ts -------------------------------------------------------------------------------- /examples/live-agent/src/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/src/context.tsx -------------------------------------------------------------------------------- /examples/live-agent/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/src/main.tsx -------------------------------------------------------------------------------- /examples/live-agent/src/traces/LiveAgent.trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/src/traces/LiveAgent.trace.ts -------------------------------------------------------------------------------- /examples/live-agent/src/use-live-agent.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/src/use-live-agent.hook.ts -------------------------------------------------------------------------------- /examples/live-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/tsconfig.json -------------------------------------------------------------------------------- /examples/live-agent/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/types/env.d.ts -------------------------------------------------------------------------------- /examples/live-agent/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/examples/live-agent/vite.config.ts -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/package.json -------------------------------------------------------------------------------- /packages/react-chat/--output-dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-chat/.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/.babelrc.json -------------------------------------------------------------------------------- /packages/react-chat/.dependency-cruiser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/.dependency-cruiser.mjs -------------------------------------------------------------------------------- /packages/react-chat/.gitignore: -------------------------------------------------------------------------------- 1 | /test-results/ 2 | -------------------------------------------------------------------------------- /packages/react-chat/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/.storybook/main.ts -------------------------------------------------------------------------------- /packages/react-chat/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/.storybook/preview-head.html -------------------------------------------------------------------------------- /packages/react-chat/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/.storybook/preview.tsx -------------------------------------------------------------------------------- /packages/react-chat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/README.md -------------------------------------------------------------------------------- /packages/react-chat/__mocks__/@voiceflow/stitches-react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/__mocks__/@voiceflow/stitches-react.ts -------------------------------------------------------------------------------- /packages/react-chat/chromatic.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "outputDir": "./storybook-static" 3 | } 4 | -------------------------------------------------------------------------------- /packages/react-chat/config/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/config/test/setup.ts -------------------------------------------------------------------------------- /packages/react-chat/e2e/embedded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/embedded.html -------------------------------------------------------------------------------- /packages/react-chat/e2e/embedded.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/embedded.spec.ts -------------------------------------------------------------------------------- /packages/react-chat/e2e/extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/extensions.html -------------------------------------------------------------------------------- /packages/react-chat/e2e/extensions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/extensions.spec.ts -------------------------------------------------------------------------------- /packages/react-chat/e2e/overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/overlay.html -------------------------------------------------------------------------------- /packages/react-chat/e2e/overlay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/overlay.spec.ts -------------------------------------------------------------------------------- /packages/react-chat/e2e/proactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/proactive.html -------------------------------------------------------------------------------- /packages/react-chat/e2e/proactive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/proactive.spec.ts -------------------------------------------------------------------------------- /packages/react-chat/e2e/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/e2e/utils.ts -------------------------------------------------------------------------------- /packages/react-chat/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/examples/index.html -------------------------------------------------------------------------------- /packages/react-chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/package.json -------------------------------------------------------------------------------- /packages/react-chat/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/playwright.config.ts -------------------------------------------------------------------------------- /packages/react-chat/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/sonar-project.properties -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/close.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/closeV2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/closeV2.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/large-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/large-arrow-left.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/microphone.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/minus.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/small-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/small-arrow-up.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/sound-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/sound-off.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/sound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/sound.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/stop.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/thumbs-up.svg -------------------------------------------------------------------------------- /packages/react-chat/src/assets/svg/top-caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/assets/svg/top-caret.svg -------------------------------------------------------------------------------- /packages/react-chat/src/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils'; 2 | -------------------------------------------------------------------------------- /packages/react-chat/src/common/utils.ts: -------------------------------------------------------------------------------- 1 | export { isObject } from 'remeda'; 2 | -------------------------------------------------------------------------------- /packages/react-chat/src/components/AssistantInfo/AssistantInfo.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/AssistantInfo/AssistantInfo.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/AssistantInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/AssistantInfo/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/AssistantInfo/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/AssistantInfo/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Avatar/Avatar.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Avatar/Avatar.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Avatar/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Avatar/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Avatar/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Bubble/Bubble.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Bubble/Bubble.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Bubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Bubble/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Bubble/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Bubble/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Button/Button.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Button/Button.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Button/Button.test.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Button/Primary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Button/Primary.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Button/Secondary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Button/Secondary.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Button/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Button/constants.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Button/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Button/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Button/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Card/Card.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Card/Card.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Card/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Card/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Card/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Card/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Card/types.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Card/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Card/utils.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Carousel/Carousel.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Carousel/Carousel.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Carousel/CarouselButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Carousel/CarouselButton.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Carousel/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Carousel/constants.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Carousel/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Carousel/hooks.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Carousel/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Carousel/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Carousel/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Chat/Chat.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Chat/Chat.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Chat/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Chat/hooks.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Chat/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Chat/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Chat/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/ChatInput/AudioInputButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/ChatInput/AudioInputButton.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/ChatInput/ChatInput.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/ChatInput/ChatInput.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/ChatInput/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/ChatInput/hooks.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/ChatInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/ChatInput/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/ChatInput/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/ChatInput/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Feedback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Feedback/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Feedback/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Feedback/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Footer/Footer.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Footer/Footer.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Footer/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Footer/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Header/Header.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Header/Header.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Header/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Header/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Header/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Icon/Icon.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Icon/Icon.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Icon/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Icon/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Icon/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Image/Default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Image/Default.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Image/Image.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Image/Image.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Image/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Input/Input.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Input/Input.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Input/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Input/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Input/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Launcher/Launcher.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Launcher/Launcher.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Launcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Launcher/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Launcher/launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Launcher/launch.svg -------------------------------------------------------------------------------- /packages/react-chat/src/components/Launcher/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Launcher/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Loader/Loader.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Loader/Loader.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Loader/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Message/ChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Message/ChatMessage.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Message/DebugMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Message/DebugMessage/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Message/DebugMessage/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Message/DebugMessage/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Message/Message.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Message/Message.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Message/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Message/constants.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Message/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Message/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Message/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Proactive/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Proactive/Close.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Proactive/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Proactive/Message.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Proactive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Proactive/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Prompt/Prompt.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Prompt/Prompt.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Prompt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Prompt/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Prompt/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Prompt/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/ExtensionMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/ExtensionMessage.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/Indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/Indicator.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/SystemMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/SystemMessage.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/SystemResponse.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/SystemResponse.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/constants.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/hooks.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/state/end.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/state/end.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/SystemResponse/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/SystemResponse/types.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Text/Default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Text/Default.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Text/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Text/Markdown.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Text/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Text/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Text/schema.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Textarea/Textarea.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Textarea/Textarea.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Textarea/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Textarea/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Textarea/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Timestamp/Timestamp.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Timestamp/Timestamp.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Timestamp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Timestamp/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Timestamp/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Timestamp/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Timestamp/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Timestamp/utils.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/Tooltip/Tooltip.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Tooltip/Tooltip.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/Tooltip/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/Tooltip/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/TypingIndicator/TypingIndicator.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/TypingIndicator/TypingIndicator.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/TypingIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/TypingIndicator/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/TypingIndicator/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/TypingIndicator/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/UserResponse/UserResponse.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/UserResponse/UserResponse.story.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/UserResponse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/UserResponse/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/components/UserResponse/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/UserResponse/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/components/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/constants.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/AutoScrollContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/AutoScrollContext.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/audio-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/audio-controller.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/messages.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/runtime.utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/runtime.utils.test.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/runtime.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/runtime.utils.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/silent-audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/silent-audio.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/traces/EffectExtensions.trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/traces/EffectExtensions.trace.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/traces/NoReply.trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/traces/NoReply.trace.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/traces/ResponseExtensions.trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/traces/ResponseExtensions.trace.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/useNoReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/useNoReply.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/useRuntimeAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/useRuntimeAPI.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/RuntimeContext/useRuntimeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/RuntimeContext/useRuntimeState.ts -------------------------------------------------------------------------------- /packages/react-chat/src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/contexts/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/device.ts -------------------------------------------------------------------------------- /packages/react-chat/src/dtos/AssistantOptions.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/dtos/AssistantOptions.dto.ts -------------------------------------------------------------------------------- /packages/react-chat/src/dtos/ChatConfig.dto.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/dtos/ChatConfig.dto.test.ts -------------------------------------------------------------------------------- /packages/react-chat/src/dtos/ChatConfig.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/dtos/ChatConfig.dto.ts -------------------------------------------------------------------------------- /packages/react-chat/src/dtos/Extension.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/dtos/Extension.dto.ts -------------------------------------------------------------------------------- /packages/react-chat/src/dtos/RenderOptions.dto.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/dtos/RenderOptions.dto.test.ts -------------------------------------------------------------------------------- /packages/react-chat/src/dtos/RenderOptions.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/dtos/RenderOptions.dto.ts -------------------------------------------------------------------------------- /packages/react-chat/src/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/fixtures.ts -------------------------------------------------------------------------------- /packages/react-chat/src/hocs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tag'; 2 | -------------------------------------------------------------------------------- /packages/react-chat/src/hocs/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hocs/tag.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/hooks/useAutoScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hooks/useAutoScroll.ts -------------------------------------------------------------------------------- /packages/react-chat/src/hooks/useChatAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hooks/useChatAPI.ts -------------------------------------------------------------------------------- /packages/react-chat/src/hooks/useDidUpdateEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hooks/useDidUpdateEffect.ts -------------------------------------------------------------------------------- /packages/react-chat/src/hooks/useStateRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hooks/useStateRef.ts -------------------------------------------------------------------------------- /packages/react-chat/src/hooks/useStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hooks/useStorage.ts -------------------------------------------------------------------------------- /packages/react-chat/src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /packages/react-chat/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/package.entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/package.entry.ts -------------------------------------------------------------------------------- /packages/react-chat/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles.css -------------------------------------------------------------------------------- /packages/react-chat/src/styles/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles/animation.ts -------------------------------------------------------------------------------- /packages/react-chat/src/styles/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles/color.ts -------------------------------------------------------------------------------- /packages/react-chat/src/styles/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles/font.ts -------------------------------------------------------------------------------- /packages/react-chat/src/styles/fragments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles/fragments.ts -------------------------------------------------------------------------------- /packages/react-chat/src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/styles/shadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles/shadow.ts -------------------------------------------------------------------------------- /packages/react-chat/src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/styles/theme.ts -------------------------------------------------------------------------------- /packages/react-chat/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/types/index.ts -------------------------------------------------------------------------------- /packages/react-chat/src/types/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/types/session.ts -------------------------------------------------------------------------------- /packages/react-chat/src/types/trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/types/trace.ts -------------------------------------------------------------------------------- /packages/react-chat/src/types/turn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/types/turn.ts -------------------------------------------------------------------------------- /packages/react-chat/src/types/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/types/util.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/actions.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/assistant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/assistant.test.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/assistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/assistant.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/broadcast.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/chat.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/controls.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/utils/functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/functional.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/session.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/stylesheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/stylesheet.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/url.ts -------------------------------------------------------------------------------- /packages/react-chat/src/utils/variants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/utils/variants.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/views/ChatEmbed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/views/ChatEmbed/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/views/ChatWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/views/ChatWidget/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/views/ChatWidget/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/views/ChatWidget/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/views/ChatWindow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/views/ChatWindow/index.tsx -------------------------------------------------------------------------------- /packages/react-chat/src/views/ChatWindow/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/views/ChatWindow/styled.ts -------------------------------------------------------------------------------- /packages/react-chat/src/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/src/views/index.ts -------------------------------------------------------------------------------- /packages/react-chat/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/tsconfig.build.json -------------------------------------------------------------------------------- /packages/react-chat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/tsconfig.json -------------------------------------------------------------------------------- /packages/react-chat/typings/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/typings/env.d.ts -------------------------------------------------------------------------------- /packages/react-chat/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/typings/global.d.ts -------------------------------------------------------------------------------- /packages/react-chat/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/vite.config.ts -------------------------------------------------------------------------------- /packages/react-chat/vite.package.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/vite.package.config.ts -------------------------------------------------------------------------------- /packages/react-chat/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/packages/react-chat/vitest.config.mts -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/build_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/scripts/build_pkg.sh -------------------------------------------------------------------------------- /scripts/vercel_ignore_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/scripts/vercel_ignore_build.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow/react-chat/HEAD/yarn.lock --------------------------------------------------------------------------------