gitextract_vkd5losq/ ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── NOTICE ├── README-connect-live-chat.md ├── README-css-style.md ├── README-file-upload.md ├── README-qbusiness.md ├── README-streaming-responses.md ├── README.md ├── build/ │ ├── Makefile │ ├── copy-assets.js │ ├── create-custom-css.js │ ├── create-iframe-snippet-file.sh │ ├── release.sh │ ├── update-lex-web-ui-config.js │ └── upload-bootstrap.sh ├── config/ │ ├── base.env.js │ ├── dist.env.js │ ├── env.mk │ ├── full.env.js │ ├── index.js │ └── utils/ │ └── merge-config.js ├── dist/ │ ├── 3.5.13_dist_vue.global.prod.js │ ├── Makefile │ ├── aws-lex-web-ui.css │ ├── custom-chatbot-style.css │ ├── index.html │ ├── initiate-loader.js │ ├── lex-web-ui-loader.css │ ├── lex-web-ui-loader.js │ ├── lex-web-ui.css │ ├── lex-web-ui.js │ ├── material_icons.css │ ├── parent.html │ └── wav-worker.js ├── example-css/ │ ├── bright-yellow.css │ ├── coral-pink.css │ ├── dark-mode-theme.css │ ├── elegant-purple-theme.css │ ├── forest-green.css │ ├── professional-blue.css │ ├── sky-blue.css │ └── sunset-orange.css ├── lex-web-ui/ │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .sassrc.js │ ├── README.md │ ├── READMECONFIGSCREENS.md │ ├── current/ │ │ ├── user-custom-chatbot-style.css │ │ └── user-lex-web-ui-loader-config.json │ ├── index.html │ ├── package.json │ ├── plugins/ │ │ ├── asset-handler-plugin.js │ │ └── banner-plugin.js │ ├── public/ │ │ ├── img/ │ │ │ └── note.md │ │ └── index.html │ ├── scripts/ │ │ └── post-build-css.js │ ├── src/ │ │ ├── App.vue │ │ ├── LexApp.vue │ │ ├── assets/ │ │ │ ├── css-overrides.css │ │ │ └── silent.ogg │ │ ├── components/ │ │ │ ├── InputContainer.vue │ │ │ ├── LexWeb.vue │ │ │ ├── Message.vue │ │ │ ├── MessageList.vue │ │ │ ├── MessageLoading.vue │ │ │ ├── MessageText.vue │ │ │ ├── MinButton.vue │ │ │ ├── RecorderStatus.vue │ │ │ ├── ResponseCard.vue │ │ │ └── ToolbarContainer.vue │ │ ├── config/ │ │ │ ├── .gitattributes │ │ │ ├── config.awstest.json │ │ │ ├── config.current.json │ │ │ ├── config.dev.json │ │ │ ├── config.prod.json │ │ │ ├── config.test.json │ │ │ └── index.js │ │ ├── init.js │ │ ├── lex-web-ui.js │ │ ├── lib/ │ │ │ └── lex/ │ │ │ ├── client.js │ │ │ ├── recorder.js │ │ │ └── wav-worker.js │ │ ├── main.js │ │ ├── router/ │ │ │ └── index.js │ │ └── store/ │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── live-chat-handlers.js │ │ ├── mutations.js │ │ ├── recorder-handlers.js │ │ ├── sigv4-handlers.js │ │ ├── state.js │ │ └── talkdesk-live-chat-handlers.js │ ├── test/ │ │ ├── e2e/ │ │ │ ├── custom-assertions/ │ │ │ │ └── elementCount.js │ │ │ ├── nightwatch.conf.js │ │ │ ├── runner.js │ │ │ └── specs/ │ │ │ └── test.js │ │ ├── integration/ │ │ │ ├── build-modes.test.js │ │ │ ├── functionality.test.js │ │ │ └── jest.config.js │ │ └── unit/ │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs/ │ │ ├── InputContainer.spec.js │ │ ├── LexWeb.spec.js │ │ ├── Message.spec.js │ │ ├── MessageList.spec.js │ │ ├── RecorderStatus.spec.js │ │ ├── lex-web-ui.spec.js │ │ └── store.spec.js │ └── vite.config.js ├── package.json ├── postcss.config.js ├── server.js ├── src/ │ ├── README.md │ ├── config/ │ │ ├── .gitattributes │ │ ├── default-lex-web-ui-loader-config.json │ │ └── lex-web-ui-loader-config.json │ ├── dependencies/ │ │ ├── 3.5.13_dist_vue.global.prod.js │ │ ├── initiate-loader.js │ │ └── material_icons.css │ ├── initiate-chat-lambda/ │ │ └── index.js │ ├── lex-web-ui-loader/ │ │ ├── css/ │ │ │ ├── lex-web-ui-fullpage.css │ │ │ └── lex-web-ui-iframe.css │ │ └── js/ │ │ ├── defaults/ │ │ │ ├── dependencies.js │ │ │ ├── lex-web-ui.js │ │ │ └── loader.js │ │ ├── index.js │ │ └── lib/ │ │ ├── config-loader.js │ │ ├── dependency-loader.js │ │ ├── fullpage-component-loader.js │ │ ├── iframe-component-loader.js │ │ └── loginutil.js │ ├── qbusiness-lambda/ │ │ └── index.py │ ├── streaming-lambda/ │ │ └── index.js │ └── website/ │ ├── custom-chatbot-style.css │ ├── iframeparent.html │ ├── index.css │ ├── index.html │ └── parent.html ├── templates/ │ ├── Makefile │ ├── README.md │ ├── codebuild-deploy.yaml │ ├── cognito.yaml │ ├── cognitouserpoolconfig.yaml │ ├── custom-resources/ │ │ ├── cfnresponse.py │ │ ├── codebuild-start.py │ │ └── s3-cleanup.py │ ├── lexbot.yaml │ ├── master.yaml │ ├── restapi.yaml │ └── streaming-support.yaml └── vite.config.js