@umbraco-ui/uui-input-lock 0.1.1 → 0.2.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 +2 -1
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -40,7 +40,8 @@ let UUIInputLockElement = class extends UUIInputElement {
|
|
|
40
40
|
.disabled=${this.disabled}
|
|
41
41
|
@click=${this._onLockToggle}
|
|
42
42
|
compact
|
|
43
|
-
id="lock"
|
|
43
|
+
id="lock"
|
|
44
|
+
label="${this.locked ? "Unlock input" : "Lock input"}">
|
|
44
45
|
${this.renderIcon()}
|
|
45
46
|
</uui-button>`;
|
|
46
47
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-lock",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@umbraco-ui/uui-base": "0.1.1",
|
|
34
34
|
"@umbraco-ui/uui-button": "0.2.1",
|
|
35
35
|
"@umbraco-ui/uui-icon": "0.1.1",
|
|
36
|
-
"@umbraco-ui/uui-input": "0.
|
|
36
|
+
"@umbraco-ui/uui-input": "0.2.0"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-input-lock",
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "3832880dc1f6f0db202b68530a11603299efe075"
|
|
48
48
|
}
|