Skip to content
Snippets Groups Projects
Verified Commit 738584d7 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: password icon and gradient for dark mode

parent 8cbf30fc
No related branches found
No related tags found
No related merge requests found
Showing
with 1419 additions and 1420 deletions
......@@ -2,7 +2,7 @@ export const projectRoot = "/home/vs/workspaces/oss/monster/monster";
export const sourcePath = "/home/vs/workspaces/oss/monster/monster/source";
export const developmentPath = "/home/vs/workspaces/oss/monster/monster/development";
export const pnpxBin = "/nix/store/2djgcjvx3c183zcdprylsx9p1a6rmwwk-nodejs-20.18.3/bin/npx";
export const nodeBin = "/nix/store/wwdh9slw3km4a1cpwacanciinz742wxa-nodejs-23.9.0/bin/node";
export const nodeBin = "/nix/store/zfh73syf3zbr36mpjj96f9kyl6gngz3i-nodejs-23.10.0/bin/node";
export const license = "/**" + "\n" +
" * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved." + "\n" +
" * Node module: @schukai/monster" + "\n" +
......
......@@ -164,11 +164,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1742512142,
"narHash": "sha256-8XfURTDxOm6+33swQJu/hx6xw1Tznl8vJJN5HwVqckg=",
"lastModified": 1743231893,
"narHash": "sha256-tpJsHMUPEhEnzySoQxx7+kA+KUtgWqvlcUBqROYNNt0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "7105ae3957700a9646cc4b766f5815b23ed0c682",
"rev": "c570c1f5304493cafe133b8d843c7c1c4a10d3a6",
"type": "github"
},
"original": {
......
......@@ -32,7 +32,7 @@
"esbuild": "^0.25.1",
"espree": "^10.3.0",
"estraverse": "^5.3.0",
"flow-bin": "^0.265.3",
"flow-bin": "^0.266.1",
"fs": "0.0.1-security",
"glob": "^11.0.1",
"graphviz": "^0.0.9",
......@@ -3624,9 +3624,9 @@
}
},
"node_modules/flow-bin": {
"version": "0.265.3",
"resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.265.3.tgz",
"integrity": "sha512-08PjO2kjuQxy8MxYJNCzmgRpAe1uqTf7kQ+U32QTavRzTD/7IJASYKFEEvCkVNHlhSy8CTJsN+AQdHsXVqChIw==",
"version": "0.266.1",
"resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.266.1.tgz",
"integrity": "sha512-c1lg1E8SDcuPSkrOeH0JTcNKMZOzXvqX2DuuXJ0amZec15uyuIi8QlGTO3OzYssMT/kwFdo5vviJqSUI/BNFbw==",
"dev": true,
"license": "MIT",
"bin": {
......
......@@ -63,7 +63,7 @@
"esbuild": "^0.25.1",
"espree": "^10.3.0",
"estraverse": "^5.3.0",
"flow-bin": "^0.265.3",
"flow-bin": "^0.266.1",
"fs": "0.0.1-security",
"glob": "^11.0.1",
"graphviz": "^0.0.9",
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -95,7 +95,7 @@ class Password extends CustomControl {
*/
set value(value) {
this.setOption("value", value);
this[inputElementSymbol].value=value;
this[inputElementSymbol].value = value;
this.setFormValue(value);
}
......@@ -203,7 +203,7 @@ function initEventHandler() {
this[inputElementSymbol].addEventListener("input", function (event) {
self.setFormValue(self.value);
self.setOption("value", this.value);
})
});
return this;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment