@umbraco-ui/uui-input-password 1.2.1 → 1.3.0-rc.1
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 +26 -0
- package/lib/index.js +1 -0
- package/package.json +6 -6
package/custom-elements.json
CHANGED
|
@@ -75,6 +75,18 @@
|
|
|
75
75
|
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
76
76
|
"default": "\"text\""
|
|
77
77
|
},
|
|
78
|
+
{
|
|
79
|
+
"name": "pattern",
|
|
80
|
+
"description": "Validates the input based on the Regex pattern",
|
|
81
|
+
"type": "string",
|
|
82
|
+
"default": "\"undefined\""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "inputmode",
|
|
86
|
+
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
87
|
+
"type": "string",
|
|
88
|
+
"default": "\"undefined\""
|
|
89
|
+
},
|
|
78
90
|
{
|
|
79
91
|
"name": "name",
|
|
80
92
|
"description": "This is a name property of the component.",
|
|
@@ -211,6 +223,20 @@
|
|
|
211
223
|
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
212
224
|
"default": "\"text\""
|
|
213
225
|
},
|
|
226
|
+
{
|
|
227
|
+
"name": "pattern",
|
|
228
|
+
"attribute": "pattern",
|
|
229
|
+
"description": "Validates the input based on the Regex pattern",
|
|
230
|
+
"type": "string",
|
|
231
|
+
"default": "\"undefined\""
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "inputmode",
|
|
235
|
+
"attribute": "inputmode",
|
|
236
|
+
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
237
|
+
"type": "string",
|
|
238
|
+
"default": "\"undefined\""
|
|
239
|
+
},
|
|
214
240
|
{
|
|
215
241
|
"name": "formAssociated",
|
|
216
242
|
"description": "This is a static class field indicating that the element is can be used inside a native form and participate in its events. It may require a polyfill, check support here https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals. Read more about form controls here https://web.dev/more-capable-form-controls/",
|
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-password",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,18 +30,18 @@
|
|
|
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.3.0-rc.1",
|
|
34
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.3.0-rc.1",
|
|
35
|
+
"@umbraco-ui/uui-input": "1.3.0-rc.1"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
39
|
-
"clean": "tsc --build --clean && rimraf dist lib/*.js lib/**/*.js custom-elements.json",
|
|
39
|
+
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
|
|
40
40
|
"analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-input-password",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "0c517175884931aa0bc0d8f05974852a7704626e"
|
|
47
47
|
}
|