@umbraco-ui/uui-input-password 1.9.0-rc.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js
CHANGED
|
@@ -23,8 +23,8 @@ let UUIInputPasswordElement = class extends UUIInputElement {
|
|
|
23
23
|
get type() {
|
|
24
24
|
return this.passwordType;
|
|
25
25
|
}
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
set type(newValue) {
|
|
27
|
+
this.passwordType = newValue;
|
|
28
28
|
}
|
|
29
29
|
_onPasswordToggle() {
|
|
30
30
|
if (this.passwordType === "password") {
|
|
@@ -6,7 +6,7 @@ import { InputType, UUIInputElement } from '@umbraco-ui/uui-input/lib';
|
|
|
6
6
|
export declare class UUIInputPasswordElement extends UUIInputElement {
|
|
7
7
|
private passwordType;
|
|
8
8
|
get type(): InputType;
|
|
9
|
-
set type(
|
|
9
|
+
set type(newValue: InputType);
|
|
10
10
|
_onPasswordToggle(): void;
|
|
11
11
|
connectedCallback(): void;
|
|
12
12
|
renderIcon(): import("lit-html").TemplateResult<1>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-password",
|
|
3
|
-
"version": "1.9.0
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.9.0
|
|
34
|
-
"@umbraco-ui/uui-icon-registry-essential": "1.9.0
|
|
35
|
-
"@umbraco-ui/uui-input": "1.9.0
|
|
33
|
+
"@umbraco-ui/uui-base": "1.9.0",
|
|
34
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.9.0",
|
|
35
|
+
"@umbraco-ui/uui-input": "1.9.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-input-password",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "37111ea2cebb5883dcef0e682916f1e101013123"
|
|
47
47
|
}
|