Skip to content

Commit 325930e

Browse files
authored
Merge pull request #813 from aws-samples/development
v0.22.3 release
2 parents db32999 + 4e8ce22 commit 325930e

29 files changed

+9551
-3355
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [0.22.0] - 2025-05-10
7+
## [0.22.3] - 2025-06-26
8+
- Fix issue where credentials were not available on web socket initiation in some instances of streaming
9+
- Accessibility improvements
10+
11+
## [0.22.1] - 2025-05-19
12+
- Fix scenarios where cross origin requests did not have credentials passed before iframe loads
13+
14+
## [0.22.1] - 2025-05-10
815
- Upgrade to latest versions of Vue/Vuetify
9-
-
16+
1017
## [0.22.0] - 2025-04-15
1118
- Upgrade to AWS SDK v3
1219
- Fix for Connect transcription redaction

README.md

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ of the various methods:
7474
| --- | --- | --- | --- |
7575
| 1 | [CloudFormation Deployment](#cloudformation-deployment) using the CloudFormation [templates](templates) provided by this project | Fully automated deployment of a hosted web application to an S3 bucket with an optional CI/CD pipeline. By default, it also creates a Cognito Identity Pool and a sample Lex bot | Use when you want to have a infrastructure as code approach that automatically builds and configures the chatbot UI resources |
7676
| 2 | Use the pre-built [libraries](#libraries) from the [dist](dist) directory of this repo | We provide a pre-built version of the chatbot UI component and a loader library that you can use on your web site as a [stand alone page](#stand-alone-page) or as an embeddable [iframe](#iframe) | Use when you have an existing site and want to add the chatbot UI to it by simply copying or referencing the library files |
77-
| 3 | Use npm to install and use the chatbot UI as a Vue component | Enables developers to consume this project as an [npm](https://www.npmjs.com/) package that provides a [Vue](https://vuejs.org/) component. See the [Npm Install and Vue Component Use](#npm-install-and-vue-component-use) section for details | Use when developing front-end based web applications built using JavaScript and bundled with tools such as [webpack](https://webpack.github.io) |
77+
7878

7979
See the [Usage](#usage) and [Deployment](#deployment) sections below for details.
8080

@@ -395,38 +395,6 @@ see the source of the [parent.html](src/website/parent.html) page and the
395395
[Iframe Embedding](src/README.md#iframe-embedding) documentation of the
396396
loader library.
397397

398-
### Npm Install and Vue Component Use
399-
You can use the [npm](https://docs.npmjs.com/) package manager to
400-
install this project. The npm installation provides a library that you
401-
can import as a module into your JavaScript code. The component is built
402-
as a reusable [Vue](https://vuejs.org/) plugin. This approach is geared
403-
to be used in a [webpack](https://webpack.github.io) based project.
404-
405-
Package installation using `npm`:
406-
407-
```shell
408-
# install npm package from github repo
409-
npm install --save awslabs/aws-lex-web-ui
410-
# you may need to install co-dependencies:
411-
npm install --save vue vuex vuetify material-design-icons roboto-fontface
412-
```
413-
414-
This is a quick example showing how to import the library in your project:
415-
416-
```JavaScript
417-
// assumes that a bundler like webpack will handle import/require
418-
// using es6 module
419-
import LexWebUi from 'aws-lex-web-ui';
420-
// or using require
421-
var LexWebUi = require('aws-lex-web-ui');
422-
// import the debug non-minimized version
423-
import LexWebUi from 'aws-lex-web-ui/dist/lex-web-ui';
424-
```
425-
426-
The source of the chatbot UI component resides under the
427-
[lex-web-ui](lex-web-ui) directory. For further details about the chatbot
428-
UI component see its [README](lex-web-ui/README.md) file.
429-
430398
### Sample Site
431399
This repository provides a sample site that you can use as a base
432400
for development. The site is a couple of HTML pages can be found

dist/lex-web-ui-loader.js

Lines changed: 1337 additions & 165 deletions
Large diffs are not rendered by default.

dist/lex-web-ui-loader.js.map

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

dist/lex-web-ui-loader.min.css

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

dist/lex-web-ui-loader.min.css.map

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

0 commit comments

Comments
 (0)