@umbraco-ui/uui-input-password 1.7.0 → 1.8.0-rc.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/custom-elements.json +4 -3
- package/package.json +5 -5
package/custom-elements.json
CHANGED
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
"name": "value",
|
|
110
|
-
"description": "Value of this form control.",
|
|
110
|
+
"description": "Value of this form control.\nIf you dont want the setFormValue to be called on the ElementInternals, then prevent calling this method, by not calling super.value = newValue in your implementation of the value setter method.",
|
|
111
111
|
"type": "string",
|
|
112
112
|
"default": "\"''\""
|
|
113
113
|
},
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
{
|
|
280
280
|
"name": "value",
|
|
281
281
|
"attribute": "value",
|
|
282
|
-
"description": "Value of this form control.",
|
|
282
|
+
"description": "Value of this form control.\nIf you dont want the setFormValue to be called on the ElementInternals, then prevent calling this method, by not calling super.value = newValue in your implementation of the value setter method.",
|
|
283
283
|
"type": "string",
|
|
284
284
|
"default": "\"''\""
|
|
285
285
|
},
|
|
@@ -323,7 +323,8 @@
|
|
|
323
323
|
"type": "ValidityState"
|
|
324
324
|
},
|
|
325
325
|
{
|
|
326
|
-
"name": "validationMessage"
|
|
326
|
+
"name": "validationMessage",
|
|
327
|
+
"type": "string"
|
|
327
328
|
},
|
|
328
329
|
{
|
|
329
330
|
"name": "label",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-password",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0-rc.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.
|
|
34
|
-
"@umbraco-ui/uui-icon-registry-essential": "1.
|
|
35
|
-
"@umbraco-ui/uui-input": "1.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.8.0-rc.0",
|
|
34
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.8.0-rc.0",
|
|
35
|
+
"@umbraco-ui/uui-input": "1.8.0-rc.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": "46d444c66217c9a3c74518d8ce4badc7f121bfdf"
|
|
47
47
|
}
|