Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.21.0 #626

Merged
merged 8 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.21.0] - 2024-03-01
- Upgraded the existing solution and relevant dependencies to Vue 3. Migrating from Vuetify 1.5 -> 3 in the process, skipping over Vuetify 2 entirely, requiring clean-up and reconfiguration of all UI components. Goal was to get parity in UI from the previous release, which includes some new CSS rules to maintain the look at feel of the previous UI. These changes could result in **breaking changes** to custom CSS despite efforts to maintain backwards compatibilty many Vuetify classes changed names during the upgrade. Please use caution when updating to this version of the Lex Web UI UI.

## [0.20.6] - 2024-02-12
- Emergency fix to upgrade Python function to version 3.8 across the board. As this will end of life later in the year we will release another update soon to move everything to 3.12.

Expand Down
4 changes: 2 additions & 2 deletions README-css-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ There are two distinct mechanisms for changing the background color.
1) Update lex-web-ui-loader-config.json. Change the property ui.toolbarColor. You must select a value
from.
https://vuetifyjs.com/en/styles/colors#
2) OR use the following in css
2) OR use the following in css to overwrite the color of the default red CSS
```
.toolbar.theme--dark {
.bg-red {
background-color: #2b2b2b !important;
}
```
Expand Down
2 changes: 1 addition & 1 deletion build/create-custom-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ if (process.env['CHAT_BACKGROUND_COLOR'] && process.env['CHAT_BACKGROUND_COLOR']
modifyRule(styleSheet, '.message-list-container', { "background-color": process.env['CHAT_BACKGROUND_COLOR'] + ' !important'});
}
if (process.env['TOOLBAR_COLOR'] && process.env['TOOLBAR_COLOR'].length > 0) {
modifyRule(styleSheet, '.toolbar.theme--dark', { "background-color": process.env['TOOLBAR_COLOR'] + ' !important'});
modifyRule(styleSheet, '.bg-red', { "background-color": process.env['TOOLBAR_COLOR'] + ' !important'});
}
if (process.env['AGENT_CHAT_BUBBLE'] && process.env['AGENT_CHAT_BUBBLE'].length > 0) {
modifyRule(styleSheet, '.message-bot .message-bubble', { "background-color": process.env['AGENT_CHAT_BUBBLE'] + ' !important'});
Expand Down
7 changes: 0 additions & 7 deletions dist/0.17.7_dist_vuetify.min.css

This file was deleted.

6 changes: 0 additions & 6 deletions dist/0.17.7_dist_vuetify.min.js

This file was deleted.

6 changes: 0 additions & 6 deletions dist/2.6.11_dist_vue.min.js

This file was deleted.

6 changes: 6 additions & 0 deletions dist/3.3.10_dist_vue.global.prod.js

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions dist/3.4.0_dist_vuex.min.js

This file was deleted.

12 changes: 12 additions & 0 deletions dist/3.4.6_dist_vuetify.min.css

Large diffs are not rendered by default.