2 Commits

Author SHA1 Message Date
24ff8601e4 1.1.2 2024-06-28 14:38:09 +02:00
b9ddcde25e fix(elements): Fix blur effect in UptimelinkWebwidget component 2024-06-28 14:38:08 +02:00
4 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 2024-06-28 - 1.1.2 - fix(elements)
Fix blur effect in UptimelinkWebwidget component
- Changed blur effect from true to false in the DeesWindowLayer setup
## 2024-06-27 - 1.1.1 - fix(build) ## 2024-06-27 - 1.1.1 - fix(build)
Fix build script to use correct tsbuild command Fix build script to use correct tsbuild command

View File

@ -1,6 +1,6 @@
{ {
"name": "@uptime.link/webwidget", "name": "@uptime.link/webwidget",
"version": "1.1.1", "version": "1.1.2",
"private": false, "private": false,
"description": "The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.", "description": "The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@uptime.link/webwidget', name: '@uptime.link/webwidget',
version: '1.1.1', version: '1.1.2',
description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.' description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.'
} }

View File

@ -193,7 +193,7 @@ export class UptimelinkWebwidget extends DeesElement {
this.isElevated = true; this.isElevated = true;
this.isFocused = true; this.isFocused = true;
this.windowLayer = await DeesWindowLayer.createAndShow({ this.windowLayer = await DeesWindowLayer.createAndShow({
blur: true, blur: false,
}); });
await domtools.convenience.smartdelay.delayFor(200); await domtools.convenience.smartdelay.delayFor(200);
if (!this.isFocused) { if (!this.isFocused) {