@umbraco-ui/uui-input-password 1.7.0 → 1.8.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 +6 -5
- 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
|
},
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"name": "pristine",
|
|
116
116
|
"description": "Determines wether the form control has been touched or interacted with, this determines wether the validation-status of this form control should be made visible.",
|
|
117
117
|
"type": "boolean",
|
|
118
|
-
"default": "\"
|
|
118
|
+
"default": "\"true\""
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"name": "required",
|
|
@@ -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
|
},
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
"attribute": "pristine",
|
|
289
289
|
"description": "Determines wether the form control has been touched or interacted with, this determines wether the validation-status of this form control should be made visible.",
|
|
290
290
|
"type": "boolean",
|
|
291
|
-
"default": "\"
|
|
291
|
+
"default": "\"true\""
|
|
292
292
|
},
|
|
293
293
|
{
|
|
294
294
|
"name": "required",
|
|
@@ -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",
|
|
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",
|
|
34
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.8.0",
|
|
35
|
+
"@umbraco-ui/uui-input": "1.8.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": "53021762a52dc54a46f0c5ef829c1cbaabde1160"
|
|
47
47
|
}
|