Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
24ff8601e4 | |||
b9ddcde25e | |||
6572f310ea | |||
7c15589ce7 |
10
changelog.md
10
changelog.md
@ -1,5 +1,15 @@
|
||||
# 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)
|
||||
Fix build script to use correct tsbuild command
|
||||
|
||||
- Corrected the build script in package.json to use 'tsbuild tsfolders --allowimplicitany && tsbundle element --production' instead of 'tsbuild element --allowimplicitany && tsbundle element --production'.
|
||||
|
||||
## 2024-06-27 - 1.1.0 - feat(elements)
|
||||
Add performance improvements to uptimelink-webwidget
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@uptime.link/webwidget",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.2",
|
||||
"private": false,
|
||||
"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",
|
||||
@ -8,7 +8,7 @@
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"test": "npm run build",
|
||||
"build": "tsbuild element --allowimplicitany && tsbundle element --production",
|
||||
"build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production",
|
||||
"watch": "tswatch element"
|
||||
},
|
||||
"author": "Lossless GmbH",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@uptime.link/webwidget',
|
||||
version: '1.1.0',
|
||||
version: '1.1.2',
|
||||
description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.'
|
||||
}
|
||||
|
@ -193,7 +193,7 @@ export class UptimelinkWebwidget extends DeesElement {
|
||||
this.isElevated = true;
|
||||
this.isFocused = true;
|
||||
this.windowLayer = await DeesWindowLayer.createAndShow({
|
||||
blur: true,
|
||||
blur: false,
|
||||
});
|
||||
await domtools.convenience.smartdelay.delayFor(200);
|
||||
if (!this.isFocused) {
|
||||
|
Reference in New Issue
Block a user