├── .claude └── commands │ ├── comp-doc-write.md │ ├── feature-plan-no-ui.md │ ├── feature-plan-ui.md │ ├── feature-write-no-ui.md │ ├── feature-write.md │ ├── prime.md │ ├── refactor-minor.md │ ├── refactor-plan.md │ ├── refactor-write.md │ ├── ui-bug-fix.md │ ├── unit-test-plan.md │ ├── unit-test-write.md │ └── update-version.md ├── .gitignore ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── js ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmignore ├── README.md ├── docs │ ├── build.md │ ├── entry.md │ └── playwright_mcp.md ├── package-lock.json ├── package.json ├── rollup.config.js ├── shopify.md ├── src │ ├── CLAUDE.md │ ├── __features__ │ │ ├── Fixed-Input │ │ │ ├── bug-desc.md │ │ │ ├── example-multiline.png │ │ │ ├── example.png │ │ │ ├── fixed-input-bottom-analysis.md │ │ │ ├── implementation-plan.md │ │ │ ├── multi-line.png │ │ │ ├── requirements.md │ │ │ └── single-line.png │ │ ├── clear-button-api │ │ │ ├── implementation-plan.md │ │ │ └── requirements.md │ │ ├── clear-button │ │ │ ├── implementation-plan.md │ │ │ └── requirements.md │ │ ├── custom-submit-keys │ │ │ ├── implementation-plan.md │ │ │ └── requirements.md │ │ └── onSend-prop │ │ │ └── onSend.md │ ├── __refactor__ │ │ ├── build-optimization │ │ │ └── rollup-production-optimization-plan-08-12-25.md │ │ └── components │ │ │ └── Bot.tsx │ │ │ ├── localStorage-hook-refactor-12-08-25.md │ │ │ └── refactor-12-08-25.md │ ├── __regressions__ │ │ ├── components │ │ │ ├── Bot.tsx │ │ │ │ └── input-restoration-regression-12-08-25.md │ │ │ └── StreamConversation.tsx │ │ │ │ └── StreamConversation-logs-dom-tsx.md │ │ └── fixed-input-styling.md │ ├── __rules__ │ │ ├── css-rules.md │ │ ├── implementation-rules.md │ │ └── test-rules.md │ ├── __tests__ │ │ ├── README.md │ │ ├── components │ │ │ ├── Bot │ │ │ │ ├── Bot.avatar-props.test.tsx │ │ │ │ ├── Bot.customCss-props.test.tsx │ │ │ │ ├── Bot.general.test.tsx │ │ │ │ ├── Bot.input-precedence-botcontent.test.tsx │ │ │ │ ├── Bot.input-restoration-regression.test.tsx │ │ │ │ ├── Bot.props.test.tsx │ │ │ │ └── Bot.sessionId.test.tsx │ │ │ ├── ClearButton │ │ │ │ └── ClearButton.test.tsx │ │ │ ├── StreamConversation │ │ │ │ ├── FixedBottomInput-shortcuts.test.tsx │ │ │ │ ├── FixedBottomInput.test.tsx │ │ │ │ └── StreamConversation.test.tsx │ │ │ └── inputs │ │ │ │ ├── AutoResizingTextarea-shortcuts.test.tsx │ │ │ │ └── AutoResizingTextarea.test.tsx │ │ ├── data │ │ │ ├── getInitialChatReplyQuery.json │ │ │ └── localStorage.md │ │ ├── debug.test.tsx │ │ ├── fixtures │ │ │ ├── README.md │ │ │ ├── localhost │ │ │ │ ├── avatar-variants │ │ │ │ │ └── standard-with-avatar.html │ │ │ │ ├── basic │ │ │ │ │ ├── bubble.html │ │ │ │ │ ├── popup.html │ │ │ │ │ └── standard.html │ │ │ │ ├── compatibility │ │ │ │ │ └── backward-compatibility.html │ │ │ │ ├── customCss │ │ │ │ │ └── standard-with-customCss.html │ │ │ │ ├── input-variants │ │ │ │ │ ├── bubble-with-input.html │ │ │ │ │ ├── popup-with-input.html │ │ │ │ │ └── standard-with-input.html │ │ │ │ └── shortcuts │ │ │ │ │ ├── custom-keymap.html │ │ │ │ │ ├── enter-to-send.html │ │ │ │ │ └── mod-enter-to-send.html │ │ │ └── production │ │ │ │ ├── basic │ │ │ │ ├── bubble.html │ │ │ │ ├── popup.html │ │ │ │ └── standard.html │ │ │ │ ├── compatibility │ │ │ │ └── backward-compatibility.html │ │ │ │ ├── input-variants │ │ │ │ ├── bubble-with-input.html │ │ │ │ ├── popup-with-input.html │ │ │ │ └── standard-with-input.html │ │ │ │ └── shortcuts │ │ │ │ ├── custom-keymap.html │ │ │ │ ├── enter-to-send.html │ │ │ │ └── mod-enter-to-send.html │ │ ├── hooks │ │ │ └── useKeyboardShortcuts.test.ts │ │ ├── plan │ │ │ ├── Bot │ │ │ │ ├── Bot-input-precedence-botcontent-test-plan.md │ │ │ │ ├── Bot-props-test-plan.md │ │ │ │ ├── Bot-sessionId-test-plan.md │ │ │ │ ├── Bot-tests-todo.md │ │ │ │ ├── bot-props-test-spec.md │ │ │ │ └── bot-sessionId-test-spec.md │ │ │ ├── StreamConversation │ │ │ │ ├── StreamConversation-test-plan.md │ │ │ │ ├── StreamConversation-test-spec.md │ │ │ │ └── StreamConversation-todo.md │ │ │ └── components │ │ │ │ └── StreamConversation │ │ │ │ └── FixedBottomInput-test-plan.md │ │ ├── regressions │ │ │ ├── api-input-override-regression.test.tsx │ │ │ ├── fixed-bottom-input-positioning.test.tsx │ │ │ └── standard-widget-fixed-input-positioning.test.tsx │ │ ├── setup.ts │ │ ├── simple.test.ts │ │ ├── test-utils.tsx │ │ └── utils │ │ │ └── keyboardUtils.test.ts │ ├── assets │ │ ├── immutable.css │ │ └── index.css │ ├── components │ │ ├── Bot.md │ │ ├── Bot.tsx │ │ ├── Button.tsx │ │ ├── ClearButton.tsx │ │ ├── ErrorMessage.tsx │ │ ├── InputChatBlock.tsx │ │ ├── LiteBadge.tsx │ │ ├── SendButton.tsx │ │ ├── Spinner.tsx │ │ ├── StreamConversation │ │ │ ├── AvatarSideContainer.tsx │ │ │ ├── CLAUDE.md │ │ │ ├── ChatChunk.tsx │ │ │ ├── FixedBottomInput.tsx │ │ │ ├── LoadingChunk.tsx │ │ │ ├── StreamConversation.tsx │ │ │ ├── StreamInput.tsx │ │ │ └── index.ts │ │ ├── TypingBubble.tsx │ │ ├── avatars │ │ │ ├── Avatar.tsx │ │ │ └── DefaultAvatar.tsx │ │ ├── bubbles │ │ │ ├── GuestBubble.tsx │ │ │ ├── HostBubble.tsx │ │ │ └── LoadingBubble.tsx │ │ ├── icons │ │ │ ├── CheckIcon.tsx │ │ │ ├── ChevronDownIcon.tsx │ │ │ ├── CloseIcon.tsx │ │ │ ├── ExternalLinkIcon.tsx │ │ │ ├── PdLogo.tsx │ │ │ ├── SendIcon.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ └── inputs │ │ │ ├── AutoResizingTextarea.tsx │ │ │ ├── SearchInput.tsx │ │ │ ├── ShortTextInput.tsx │ │ │ ├── Textarea.tsx │ │ │ └── index.ts │ ├── constants.ts │ ├── env.d.ts │ ├── features │ │ ├── blocks │ │ │ ├── bubbles │ │ │ │ ├── audio │ │ │ │ │ ├── components │ │ │ │ │ │ ├── AudioBubble.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── embed │ │ │ │ │ ├── components │ │ │ │ │ │ ├── EmbedBubble.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── image │ │ │ │ │ ├── components │ │ │ │ │ │ └── ImageBubble.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── textBubble │ │ │ │ │ ├── components │ │ │ │ │ │ ├── TextBubble.tsx │ │ │ │ │ │ └── plate │ │ │ │ │ │ │ └── PlateText.tsx │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── applyFilterRichText.ts │ │ │ │ │ │ ├── computeTypingDuration.ts │ │ │ │ │ │ └── convertRichTextToPlainText.ts │ │ │ │ │ └── index.ts │ │ │ │ └── video │ │ │ │ │ ├── components │ │ │ │ │ └── VideoBubble.tsx │ │ │ │ │ └── index.ts │ │ │ ├── inputs │ │ │ │ ├── buttons │ │ │ │ │ └── components │ │ │ │ │ │ ├── Buttons.tsx │ │ │ │ │ │ ├── Checkbox.tsx │ │ │ │ │ │ └── MultipleChoicesForm.tsx │ │ │ │ ├── date │ │ │ │ │ ├── components │ │ │ │ │ │ └── DateForm.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── parseReadableDate.ts │ │ │ │ ├── fileUpload │ │ │ │ │ ├── components │ │ │ │ │ │ └── FileUploadForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── payment │ │ │ │ │ ├── components │ │ │ │ │ │ ├── PaymentForm.tsx │ │ │ │ │ │ ├── StripePaymentForm.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── paymentInProgressStorage.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── pictureChoice │ │ │ │ │ ├── MultiplePictureChoice.tsx │ │ │ │ │ └── SinglePictureChoice.tsx │ │ │ │ ├── rating │ │ │ │ │ ├── components │ │ │ │ │ │ └── RatingForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── textInput │ │ │ │ │ ├── components │ │ │ │ │ └── TextInput.tsx │ │ │ │ │ └── index.ts │ │ │ ├── integrations │ │ │ │ ├── chatwoot │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── executeChatwoot.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── googleAnalytics │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── executeGoogleAnalytics.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── pixel │ │ │ │ │ └── executePixel.ts │ │ │ └── logic │ │ │ │ ├── redirect │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── executeRedirect.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── script │ │ │ │ └── executeScript.ts │ │ │ │ ├── setVariable │ │ │ │ └── executeSetVariable.ts │ │ │ │ └── wait │ │ │ │ └── utils │ │ │ │ └── executeWait.ts │ │ ├── bubble │ │ │ ├── components │ │ │ │ ├── Bubble.tsx │ │ │ │ ├── BubbleButton.tsx │ │ │ │ ├── PreviewMessage.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── button │ │ │ └── index.tsx │ │ ├── commands │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── close.ts │ │ │ │ ├── hidePreviewMessage.ts │ │ │ │ ├── index.ts │ │ │ │ ├── open.ts │ │ │ │ ├── reset.ts │ │ │ │ ├── setContextVariables.ts │ │ │ │ ├── setInputValue.ts │ │ │ │ ├── showPreviewMessage.ts │ │ │ │ └── toggle.ts │ │ ├── popup │ │ │ ├── components │ │ │ │ ├── Popup.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── standard │ │ │ ├── components │ │ │ ├── Standard.tsx │ │ │ └── index.ts │ │ │ └── index.ts │ ├── global.d.ts │ ├── hooks │ │ ├── useAgentStorage.ts │ │ └── useKeyboardShortcuts.ts │ ├── image.d.ts │ ├── index.ts │ ├── lib │ │ ├── gtag.ts │ │ ├── gtm.ts │ │ ├── hexToRgb.ts │ │ ├── phoneCountries.ts │ │ ├── pixel.ts │ │ ├── stripe.ts │ │ └── utils.ts │ ├── queries │ │ ├── getInitialChatReplyQuery.ts │ │ └── sendMessageQuery.ts │ ├── register.tsx │ ├── schemas │ │ ├── features │ │ │ ├── agent │ │ │ │ ├── agent.ts │ │ │ │ ├── index.ts │ │ │ │ ├── settings.ts │ │ │ │ ├── theme │ │ │ │ │ ├── enums.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── schemas.ts │ │ │ │ └── variable.ts │ │ │ ├── blocks │ │ │ │ ├── baseSchemas.ts │ │ │ │ ├── bubbles │ │ │ │ │ ├── audio.ts │ │ │ │ │ ├── embed.ts │ │ │ │ │ ├── enums.ts │ │ │ │ │ ├── image.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── text.ts │ │ │ │ │ └── video │ │ │ │ │ │ ├── enums.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schemas.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inputs │ │ │ │ │ ├── choice.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── date.ts │ │ │ │ │ ├── email.ts │ │ │ │ │ ├── enums.ts │ │ │ │ │ ├── file.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── number.ts │ │ │ │ │ ├── payment │ │ │ │ │ │ ├── enums.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schemas.ts │ │ │ │ │ ├── phone.ts │ │ │ │ │ ├── pictureChoice.ts │ │ │ │ │ ├── rating.ts │ │ │ │ │ ├── text.ts │ │ │ │ │ └── url.ts │ │ │ │ ├── integrations │ │ │ │ │ ├── enums.ts │ │ │ │ │ ├── googleAnalytics.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pixel │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ └── schemas.ts │ │ │ │ ├── logic │ │ │ │ │ ├── abTest.ts │ │ │ │ │ ├── agentLink.ts │ │ │ │ │ ├── condition.ts │ │ │ │ │ ├── enums.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── jump.ts │ │ │ │ │ ├── redirect.ts │ │ │ │ │ ├── script.ts │ │ │ │ │ ├── setVariable.ts │ │ │ │ │ └── wait.ts │ │ │ │ ├── schemas.ts │ │ │ │ └── start │ │ │ │ │ ├── index.ts │ │ │ │ │ └── schemas.ts │ │ │ ├── chat.ts │ │ │ ├── items │ │ │ │ ├── baseSchemas.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.ts │ │ │ │ └── types.ts │ │ │ └── utils.ts │ │ └── index.ts │ ├── types.ts │ ├── utils │ │ ├── getApiEndPoint.ts │ │ ├── injectStartProps.ts │ │ ├── isMobileSignal.ts │ │ ├── keyboardUtils.ts │ │ ├── mergePropsWithApiData.ts │ │ ├── setCssVariablesValue.ts │ │ ├── streamingMessageSignal.ts │ │ └── transformMessages.ts │ ├── web.ts │ └── window.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig │ ├── base.json │ ├── nextjs.json │ └── react-library.json └── vitest.config.ts ├── nextjs ├── .eslintrc.cjs ├── .npmignore ├── Development.md ├── README.md ├── package-lock.json ├── package.json ├── rollup.config.js ├── src │ └── index.ts ├── tsconfig.json └── tsconfig │ ├── base.json │ └── nextjs.json ├── package.json └── react ├── .eslintrc.cjs ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── rollup.config.js ├── src ├── Bubble.tsx ├── Popup.tsx ├── Standard.tsx └── index.ts ├── tsconfig.json └── tsconfig ├── base.json └── react-library.json /.claude/commands/comp-doc-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/comp-doc-write.md -------------------------------------------------------------------------------- /.claude/commands/feature-plan-no-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/feature-plan-no-ui.md -------------------------------------------------------------------------------- /.claude/commands/feature-plan-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/feature-plan-ui.md -------------------------------------------------------------------------------- /.claude/commands/feature-write-no-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/feature-write-no-ui.md -------------------------------------------------------------------------------- /.claude/commands/feature-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/feature-write.md -------------------------------------------------------------------------------- /.claude/commands/prime.md: -------------------------------------------------------------------------------- 1 | # Context Window Prime 2 | RUN: 3 | git ls-files 4 | -------------------------------------------------------------------------------- /.claude/commands/refactor-minor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/refactor-minor.md -------------------------------------------------------------------------------- /.claude/commands/refactor-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/refactor-plan.md -------------------------------------------------------------------------------- /.claude/commands/refactor-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/refactor-write.md -------------------------------------------------------------------------------- /.claude/commands/ui-bug-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/ui-bug-fix.md -------------------------------------------------------------------------------- /.claude/commands/unit-test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/unit-test-plan.md -------------------------------------------------------------------------------- /.claude/commands/unit-test-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/unit-test-write.md -------------------------------------------------------------------------------- /.claude/commands/update-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.claude/commands/update-version.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/README.md -------------------------------------------------------------------------------- /js/.eslintignore: -------------------------------------------------------------------------------- 1 | /src/react/** -------------------------------------------------------------------------------- /js/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/.eslintrc.cjs -------------------------------------------------------------------------------- /js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /js/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/.npmignore -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/README.md -------------------------------------------------------------------------------- /js/docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/docs/build.md -------------------------------------------------------------------------------- /js/docs/entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/docs/entry.md -------------------------------------------------------------------------------- /js/docs/playwright_mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/docs/playwright_mcp.md -------------------------------------------------------------------------------- /js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/package-lock.json -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/package.json -------------------------------------------------------------------------------- /js/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/rollup.config.js -------------------------------------------------------------------------------- /js/shopify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/shopify.md -------------------------------------------------------------------------------- /js/src/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/CLAUDE.md -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/bug-desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/bug-desc.md -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/example-multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/example-multiline.png -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/example.png -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/fixed-input-bottom-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/fixed-input-bottom-analysis.md -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/implementation-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/implementation-plan.md -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/multi-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/multi-line.png -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/requirements.md -------------------------------------------------------------------------------- /js/src/__features__/Fixed-Input/single-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/Fixed-Input/single-line.png -------------------------------------------------------------------------------- /js/src/__features__/clear-button-api/implementation-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/clear-button-api/implementation-plan.md -------------------------------------------------------------------------------- /js/src/__features__/clear-button-api/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/clear-button-api/requirements.md -------------------------------------------------------------------------------- /js/src/__features__/clear-button/implementation-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/clear-button/implementation-plan.md -------------------------------------------------------------------------------- /js/src/__features__/clear-button/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/clear-button/requirements.md -------------------------------------------------------------------------------- /js/src/__features__/custom-submit-keys/implementation-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/custom-submit-keys/implementation-plan.md -------------------------------------------------------------------------------- /js/src/__features__/custom-submit-keys/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/custom-submit-keys/requirements.md -------------------------------------------------------------------------------- /js/src/__features__/onSend-prop/onSend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__features__/onSend-prop/onSend.md -------------------------------------------------------------------------------- /js/src/__refactor__/build-optimization/rollup-production-optimization-plan-08-12-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__refactor__/build-optimization/rollup-production-optimization-plan-08-12-25.md -------------------------------------------------------------------------------- /js/src/__refactor__/components/Bot.tsx/localStorage-hook-refactor-12-08-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__refactor__/components/Bot.tsx/localStorage-hook-refactor-12-08-25.md -------------------------------------------------------------------------------- /js/src/__refactor__/components/Bot.tsx/refactor-12-08-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__refactor__/components/Bot.tsx/refactor-12-08-25.md -------------------------------------------------------------------------------- /js/src/__regressions__/components/Bot.tsx/input-restoration-regression-12-08-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__regressions__/components/Bot.tsx/input-restoration-regression-12-08-25.md -------------------------------------------------------------------------------- /js/src/__regressions__/components/StreamConversation.tsx/StreamConversation-logs-dom-tsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__regressions__/components/StreamConversation.tsx/StreamConversation-logs-dom-tsx.md -------------------------------------------------------------------------------- /js/src/__regressions__/fixed-input-styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__regressions__/fixed-input-styling.md -------------------------------------------------------------------------------- /js/src/__rules__/css-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__rules__/css-rules.md -------------------------------------------------------------------------------- /js/src/__rules__/implementation-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__rules__/implementation-rules.md -------------------------------------------------------------------------------- /js/src/__rules__/test-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__rules__/test-rules.md -------------------------------------------------------------------------------- /js/src/__tests__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/README.md -------------------------------------------------------------------------------- /js/src/__tests__/components/Bot/Bot.avatar-props.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/Bot/Bot.avatar-props.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/Bot/Bot.customCss-props.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/Bot/Bot.customCss-props.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/Bot/Bot.general.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/Bot/Bot.general.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/Bot/Bot.input-precedence-botcontent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/Bot/Bot.input-precedence-botcontent.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/Bot/Bot.input-restoration-regression.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/Bot/Bot.input-restoration-regression.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/Bot/Bot.props.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/Bot/Bot.props.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/Bot/Bot.sessionId.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/Bot/Bot.sessionId.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/ClearButton/ClearButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/ClearButton/ClearButton.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/StreamConversation/FixedBottomInput-shortcuts.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/StreamConversation/FixedBottomInput-shortcuts.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/StreamConversation/FixedBottomInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/StreamConversation/FixedBottomInput.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/StreamConversation/StreamConversation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/StreamConversation/StreamConversation.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/inputs/AutoResizingTextarea-shortcuts.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/inputs/AutoResizingTextarea-shortcuts.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/components/inputs/AutoResizingTextarea.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/components/inputs/AutoResizingTextarea.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/data/getInitialChatReplyQuery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/data/getInitialChatReplyQuery.json -------------------------------------------------------------------------------- /js/src/__tests__/data/localStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/data/localStorage.md -------------------------------------------------------------------------------- /js/src/__tests__/debug.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/debug.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/README.md -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/avatar-variants/standard-with-avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/avatar-variants/standard-with-avatar.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/basic/bubble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/basic/bubble.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/basic/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/basic/popup.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/basic/standard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/basic/standard.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/compatibility/backward-compatibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/compatibility/backward-compatibility.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/customCss/standard-with-customCss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/customCss/standard-with-customCss.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/input-variants/bubble-with-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/input-variants/bubble-with-input.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/input-variants/popup-with-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/input-variants/popup-with-input.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/input-variants/standard-with-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/input-variants/standard-with-input.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/shortcuts/custom-keymap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/shortcuts/custom-keymap.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/shortcuts/enter-to-send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/shortcuts/enter-to-send.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/localhost/shortcuts/mod-enter-to-send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/localhost/shortcuts/mod-enter-to-send.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/basic/bubble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/basic/bubble.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/basic/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/basic/popup.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/basic/standard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/basic/standard.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/compatibility/backward-compatibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/compatibility/backward-compatibility.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/input-variants/bubble-with-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/input-variants/bubble-with-input.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/input-variants/popup-with-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/input-variants/popup-with-input.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/input-variants/standard-with-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/input-variants/standard-with-input.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/shortcuts/custom-keymap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/shortcuts/custom-keymap.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/shortcuts/enter-to-send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/shortcuts/enter-to-send.html -------------------------------------------------------------------------------- /js/src/__tests__/fixtures/production/shortcuts/mod-enter-to-send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/fixtures/production/shortcuts/mod-enter-to-send.html -------------------------------------------------------------------------------- /js/src/__tests__/hooks/useKeyboardShortcuts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/hooks/useKeyboardShortcuts.test.ts -------------------------------------------------------------------------------- /js/src/__tests__/plan/Bot/Bot-input-precedence-botcontent-test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/Bot/Bot-input-precedence-botcontent-test-plan.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/Bot/Bot-props-test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/Bot/Bot-props-test-plan.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/Bot/Bot-sessionId-test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/Bot/Bot-sessionId-test-plan.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/Bot/Bot-tests-todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/Bot/Bot-tests-todo.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/Bot/bot-props-test-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/Bot/bot-props-test-spec.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/Bot/bot-sessionId-test-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/Bot/bot-sessionId-test-spec.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/StreamConversation/StreamConversation-test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/StreamConversation/StreamConversation-test-plan.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/StreamConversation/StreamConversation-test-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/StreamConversation/StreamConversation-test-spec.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/StreamConversation/StreamConversation-todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/StreamConversation/StreamConversation-todo.md -------------------------------------------------------------------------------- /js/src/__tests__/plan/components/StreamConversation/FixedBottomInput-test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/plan/components/StreamConversation/FixedBottomInput-test-plan.md -------------------------------------------------------------------------------- /js/src/__tests__/regressions/api-input-override-regression.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/regressions/api-input-override-regression.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/regressions/fixed-bottom-input-positioning.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/regressions/fixed-bottom-input-positioning.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/regressions/standard-widget-fixed-input-positioning.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/regressions/standard-widget-fixed-input-positioning.test.tsx -------------------------------------------------------------------------------- /js/src/__tests__/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/setup.ts -------------------------------------------------------------------------------- /js/src/__tests__/simple.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/simple.test.ts -------------------------------------------------------------------------------- /js/src/__tests__/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/test-utils.tsx -------------------------------------------------------------------------------- /js/src/__tests__/utils/keyboardUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/__tests__/utils/keyboardUtils.test.ts -------------------------------------------------------------------------------- /js/src/assets/immutable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/assets/immutable.css -------------------------------------------------------------------------------- /js/src/assets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/assets/index.css -------------------------------------------------------------------------------- /js/src/components/Bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/Bot.md -------------------------------------------------------------------------------- /js/src/components/Bot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/Bot.tsx -------------------------------------------------------------------------------- /js/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/Button.tsx -------------------------------------------------------------------------------- /js/src/components/ClearButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/ClearButton.tsx -------------------------------------------------------------------------------- /js/src/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /js/src/components/InputChatBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/InputChatBlock.tsx -------------------------------------------------------------------------------- /js/src/components/LiteBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/LiteBadge.tsx -------------------------------------------------------------------------------- /js/src/components/SendButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/SendButton.tsx -------------------------------------------------------------------------------- /js/src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/Spinner.tsx -------------------------------------------------------------------------------- /js/src/components/StreamConversation/AvatarSideContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/StreamConversation/AvatarSideContainer.tsx -------------------------------------------------------------------------------- /js/src/components/StreamConversation/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/StreamConversation/CLAUDE.md -------------------------------------------------------------------------------- /js/src/components/StreamConversation/ChatChunk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/StreamConversation/ChatChunk.tsx -------------------------------------------------------------------------------- /js/src/components/StreamConversation/FixedBottomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/StreamConversation/FixedBottomInput.tsx -------------------------------------------------------------------------------- /js/src/components/StreamConversation/LoadingChunk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/StreamConversation/LoadingChunk.tsx -------------------------------------------------------------------------------- /js/src/components/StreamConversation/StreamConversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/StreamConversation/StreamConversation.tsx -------------------------------------------------------------------------------- /js/src/components/StreamConversation/StreamInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/StreamConversation/StreamInput.tsx -------------------------------------------------------------------------------- /js/src/components/StreamConversation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StreamConversation' 2 | -------------------------------------------------------------------------------- /js/src/components/TypingBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/TypingBubble.tsx -------------------------------------------------------------------------------- /js/src/components/avatars/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/avatars/Avatar.tsx -------------------------------------------------------------------------------- /js/src/components/avatars/DefaultAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/avatars/DefaultAvatar.tsx -------------------------------------------------------------------------------- /js/src/components/bubbles/GuestBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/bubbles/GuestBubble.tsx -------------------------------------------------------------------------------- /js/src/components/bubbles/HostBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/bubbles/HostBubble.tsx -------------------------------------------------------------------------------- /js/src/components/bubbles/LoadingBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/bubbles/LoadingBubble.tsx -------------------------------------------------------------------------------- /js/src/components/icons/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/icons/CheckIcon.tsx -------------------------------------------------------------------------------- /js/src/components/icons/ChevronDownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/icons/ChevronDownIcon.tsx -------------------------------------------------------------------------------- /js/src/components/icons/CloseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/icons/CloseIcon.tsx -------------------------------------------------------------------------------- /js/src/components/icons/ExternalLinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/icons/ExternalLinkIcon.tsx -------------------------------------------------------------------------------- /js/src/components/icons/PdLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/icons/PdLogo.tsx -------------------------------------------------------------------------------- /js/src/components/icons/SendIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/icons/SendIcon.tsx -------------------------------------------------------------------------------- /js/src/components/icons/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SendIcon' 2 | -------------------------------------------------------------------------------- /js/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/index.ts -------------------------------------------------------------------------------- /js/src/components/inputs/AutoResizingTextarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/inputs/AutoResizingTextarea.tsx -------------------------------------------------------------------------------- /js/src/components/inputs/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/inputs/SearchInput.tsx -------------------------------------------------------------------------------- /js/src/components/inputs/ShortTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/inputs/ShortTextInput.tsx -------------------------------------------------------------------------------- /js/src/components/inputs/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/inputs/Textarea.tsx -------------------------------------------------------------------------------- /js/src/components/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/components/inputs/index.ts -------------------------------------------------------------------------------- /js/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/constants.ts -------------------------------------------------------------------------------- /js/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/env.d.ts -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/audio/components/AudioBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/audio/components/AudioBubble.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/audio/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AudioBubble' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/audio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/embed/components/EmbedBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/embed/components/EmbedBubble.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/embed/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EmbedBubble' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/embed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/image/components/ImageBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/image/components/ImageBubble.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/image/index.ts -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/textBubble/components/TextBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/textBubble/components/TextBubble.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/textBubble/components/plate/PlateText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/textBubble/components/plate/PlateText.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/textBubble/helpers/applyFilterRichText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/textBubble/helpers/applyFilterRichText.ts -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/textBubble/helpers/computeTypingDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/textBubble/helpers/computeTypingDuration.ts -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/textBubble/helpers/convertRichTextToPlainText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/textBubble/helpers/convertRichTextToPlainText.ts -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/textBubble/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/textBubble/index.ts -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/video/components/VideoBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/video/components/VideoBubble.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/bubbles/video/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/bubbles/video/index.ts -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/buttons/components/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/buttons/components/Buttons.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/buttons/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/buttons/components/Checkbox.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/buttons/components/MultipleChoicesForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/buttons/components/MultipleChoicesForm.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/date/components/DateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/date/components/DateForm.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/date/index.ts -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/date/utils/parseReadableDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/date/utils/parseReadableDate.ts -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/fileUpload/components/FileUploadForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/fileUpload/components/FileUploadForm.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/fileUpload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/fileUpload/index.ts -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/payment/components/PaymentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/payment/components/PaymentForm.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/payment/components/StripePaymentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/payment/components/StripePaymentForm.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/payment/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PaymentForm' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/payment/helpers/paymentInProgressStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/payment/helpers/paymentInProgressStorage.ts -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/payment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/pictureChoice/MultiplePictureChoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/pictureChoice/MultiplePictureChoice.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/pictureChoice/SinglePictureChoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/pictureChoice/SinglePictureChoice.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/rating/components/RatingForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/rating/components/RatingForm.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/rating/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/rating/index.ts -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/textInput/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/textInput/components/TextInput.tsx -------------------------------------------------------------------------------- /js/src/features/blocks/inputs/textInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/inputs/textInput/index.ts -------------------------------------------------------------------------------- /js/src/features/blocks/integrations/chatwoot/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/integrations/chatwoot/utils/executeChatwoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/integrations/chatwoot/utils/executeChatwoot.ts -------------------------------------------------------------------------------- /js/src/features/blocks/integrations/chatwoot/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './executeChatwoot' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/integrations/googleAnalytics/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/integrations/googleAnalytics/utils/executeGoogleAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/integrations/googleAnalytics/utils/executeGoogleAnalytics.ts -------------------------------------------------------------------------------- /js/src/features/blocks/integrations/googleAnalytics/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './executeGoogleAnalytics' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/integrations/pixel/executePixel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/integrations/pixel/executePixel.ts -------------------------------------------------------------------------------- /js/src/features/blocks/logic/redirect/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/logic/redirect/utils/executeRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/logic/redirect/utils/executeRedirect.ts -------------------------------------------------------------------------------- /js/src/features/blocks/logic/redirect/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './executeRedirect' 2 | -------------------------------------------------------------------------------- /js/src/features/blocks/logic/script/executeScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/logic/script/executeScript.ts -------------------------------------------------------------------------------- /js/src/features/blocks/logic/setVariable/executeSetVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/logic/setVariable/executeSetVariable.ts -------------------------------------------------------------------------------- /js/src/features/blocks/logic/wait/utils/executeWait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/blocks/logic/wait/utils/executeWait.ts -------------------------------------------------------------------------------- /js/src/features/bubble/components/Bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/bubble/components/Bubble.tsx -------------------------------------------------------------------------------- /js/src/features/bubble/components/BubbleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/bubble/components/BubbleButton.tsx -------------------------------------------------------------------------------- /js/src/features/bubble/components/PreviewMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/bubble/components/PreviewMessage.tsx -------------------------------------------------------------------------------- /js/src/features/bubble/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Bubble' 2 | -------------------------------------------------------------------------------- /js/src/features/bubble/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components' 2 | -------------------------------------------------------------------------------- /js/src/features/bubble/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/bubble/types.ts -------------------------------------------------------------------------------- /js/src/features/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/button/index.tsx -------------------------------------------------------------------------------- /js/src/features/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/index.ts -------------------------------------------------------------------------------- /js/src/features/commands/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/types.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/close.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/close.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/hidePreviewMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/hidePreviewMessage.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/index.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/open.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/reset.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/setContextVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/setContextVariables.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/setInputValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/setInputValue.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/showPreviewMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/showPreviewMessage.ts -------------------------------------------------------------------------------- /js/src/features/commands/utils/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/commands/utils/toggle.ts -------------------------------------------------------------------------------- /js/src/features/popup/components/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/popup/components/Popup.tsx -------------------------------------------------------------------------------- /js/src/features/popup/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Popup' 2 | -------------------------------------------------------------------------------- /js/src/features/popup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components' 2 | -------------------------------------------------------------------------------- /js/src/features/popup/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/popup/types.ts -------------------------------------------------------------------------------- /js/src/features/standard/components/Standard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/features/standard/components/Standard.tsx -------------------------------------------------------------------------------- /js/src/features/standard/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Standard' 2 | -------------------------------------------------------------------------------- /js/src/features/standard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components' 2 | -------------------------------------------------------------------------------- /js/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.css' 2 | -------------------------------------------------------------------------------- /js/src/hooks/useAgentStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/hooks/useAgentStorage.ts -------------------------------------------------------------------------------- /js/src/hooks/useKeyboardShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/hooks/useKeyboardShortcuts.ts -------------------------------------------------------------------------------- /js/src/image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/image.d.ts -------------------------------------------------------------------------------- /js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/index.ts -------------------------------------------------------------------------------- /js/src/lib/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/lib/gtag.ts -------------------------------------------------------------------------------- /js/src/lib/gtm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/lib/gtm.ts -------------------------------------------------------------------------------- /js/src/lib/hexToRgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/lib/hexToRgb.ts -------------------------------------------------------------------------------- /js/src/lib/phoneCountries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/lib/phoneCountries.ts -------------------------------------------------------------------------------- /js/src/lib/pixel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/lib/pixel.ts -------------------------------------------------------------------------------- /js/src/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/lib/stripe.ts -------------------------------------------------------------------------------- /js/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/lib/utils.ts -------------------------------------------------------------------------------- /js/src/queries/getInitialChatReplyQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/queries/getInitialChatReplyQuery.ts -------------------------------------------------------------------------------- /js/src/queries/sendMessageQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/queries/sendMessageQuery.ts -------------------------------------------------------------------------------- /js/src/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/register.tsx -------------------------------------------------------------------------------- /js/src/schemas/features/agent/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/agent/agent.ts -------------------------------------------------------------------------------- /js/src/schemas/features/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/agent/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/agent/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/agent/settings.ts -------------------------------------------------------------------------------- /js/src/schemas/features/agent/theme/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/agent/theme/enums.ts -------------------------------------------------------------------------------- /js/src/schemas/features/agent/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/agent/theme/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/agent/theme/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/agent/theme/schemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/agent/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/agent/variable.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/baseSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/baseSchemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/audio.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/embed.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/enums.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/image.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/text.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/video/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/video/enums.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/video/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/video/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/bubbles/video/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/bubbles/video/schemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/choice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/choice.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/constants.ts: -------------------------------------------------------------------------------- 1 | export const defaultButtonLabel = 'Send' 2 | -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/date.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/email.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/enums.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/file.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/number.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/payment/enums.ts: -------------------------------------------------------------------------------- 1 | export enum PaymentProvider { 2 | STRIPE = 'Stripe', 3 | } 4 | -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/payment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/payment/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/payment/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/payment/schemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/phone.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/pictureChoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/pictureChoice.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/rating.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/text.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/inputs/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/inputs/url.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/integrations/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/integrations/enums.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/integrations/googleAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/integrations/googleAnalytics.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/integrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/integrations/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/integrations/pixel/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/integrations/pixel/constants.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/integrations/pixel/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/integrations/pixel/schemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/abTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/abTest.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/agentLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/agentLink.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/condition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/condition.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/enums.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/jump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/jump.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/redirect.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/script.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/setVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/setVariable.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/logic/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/logic/wait.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/schemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/start/index.ts: -------------------------------------------------------------------------------- 1 | export * from './schemas' 2 | -------------------------------------------------------------------------------- /js/src/schemas/features/blocks/start/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/blocks/start/schemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/chat.ts -------------------------------------------------------------------------------- /js/src/schemas/features/items/baseSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/items/baseSchemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/items/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/items/enums.ts -------------------------------------------------------------------------------- /js/src/schemas/features/items/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/items/index.ts -------------------------------------------------------------------------------- /js/src/schemas/features/items/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/items/schemas.ts -------------------------------------------------------------------------------- /js/src/schemas/features/items/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/items/types.ts -------------------------------------------------------------------------------- /js/src/schemas/features/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/features/utils.ts -------------------------------------------------------------------------------- /js/src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/schemas/index.ts -------------------------------------------------------------------------------- /js/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/types.ts -------------------------------------------------------------------------------- /js/src/utils/getApiEndPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/getApiEndPoint.ts -------------------------------------------------------------------------------- /js/src/utils/injectStartProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/injectStartProps.ts -------------------------------------------------------------------------------- /js/src/utils/isMobileSignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/isMobileSignal.ts -------------------------------------------------------------------------------- /js/src/utils/keyboardUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/keyboardUtils.ts -------------------------------------------------------------------------------- /js/src/utils/mergePropsWithApiData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/mergePropsWithApiData.ts -------------------------------------------------------------------------------- /js/src/utils/setCssVariablesValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/setCssVariablesValue.ts -------------------------------------------------------------------------------- /js/src/utils/streamingMessageSignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/streamingMessageSignal.ts -------------------------------------------------------------------------------- /js/src/utils/transformMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/utils/transformMessages.ts -------------------------------------------------------------------------------- /js/src/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/web.ts -------------------------------------------------------------------------------- /js/src/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/src/window.ts -------------------------------------------------------------------------------- /js/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/tailwind.config.cjs -------------------------------------------------------------------------------- /js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/tsconfig.json -------------------------------------------------------------------------------- /js/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/tsconfig/base.json -------------------------------------------------------------------------------- /js/tsconfig/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/tsconfig/nextjs.json -------------------------------------------------------------------------------- /js/tsconfig/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/tsconfig/react-library.json -------------------------------------------------------------------------------- /js/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/js/vitest.config.ts -------------------------------------------------------------------------------- /nextjs/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/.eslintrc.cjs -------------------------------------------------------------------------------- /nextjs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/.npmignore -------------------------------------------------------------------------------- /nextjs/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/Development.md -------------------------------------------------------------------------------- /nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/README.md -------------------------------------------------------------------------------- /nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/package-lock.json -------------------------------------------------------------------------------- /nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/package.json -------------------------------------------------------------------------------- /nextjs/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/rollup.config.js -------------------------------------------------------------------------------- /nextjs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/src/index.ts -------------------------------------------------------------------------------- /nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/tsconfig.json -------------------------------------------------------------------------------- /nextjs/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/tsconfig/base.json -------------------------------------------------------------------------------- /nextjs/tsconfig/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/nextjs/tsconfig/nextjs.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/package.json -------------------------------------------------------------------------------- /react/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/.eslintrc.cjs -------------------------------------------------------------------------------- /react/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/.npmignore -------------------------------------------------------------------------------- /react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/README.md -------------------------------------------------------------------------------- /react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/package-lock.json -------------------------------------------------------------------------------- /react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/package.json -------------------------------------------------------------------------------- /react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/rollup.config.js -------------------------------------------------------------------------------- /react/src/Bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/src/Bubble.tsx -------------------------------------------------------------------------------- /react/src/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/src/Popup.tsx -------------------------------------------------------------------------------- /react/src/Standard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/src/Standard.tsx -------------------------------------------------------------------------------- /react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/src/index.ts -------------------------------------------------------------------------------- /react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/tsconfig.json -------------------------------------------------------------------------------- /react/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/tsconfig/base.json -------------------------------------------------------------------------------- /react/tsconfig/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Predictable-Dialogs/agent-embed/HEAD/react/tsconfig/react-library.json --------------------------------------------------------------------------------