@umbraco-ui/uui-input-lock 1.4.0-rc.0 → 1.4.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 +24 -15
- package/package.json +6 -6
package/custom-elements.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
{
|
|
27
27
|
"name": "minlength-message",
|
|
28
28
|
"description": "Minlength validation message.",
|
|
29
|
-
"type": "
|
|
29
|
+
"type": "string"
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
32
|
"name": "max",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
{
|
|
44
44
|
"name": "maxlength-message",
|
|
45
45
|
"description": "Maxlength validation message.",
|
|
46
|
-
"type": "
|
|
46
|
+
"type": "string"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"name": "step",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"name": "auto-width",
|
|
80
80
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
81
81
|
"type": "boolean",
|
|
82
|
-
"default": "
|
|
82
|
+
"default": "false"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"name": "type",
|
|
@@ -90,14 +90,18 @@
|
|
|
90
90
|
{
|
|
91
91
|
"name": "pattern",
|
|
92
92
|
"description": "Validates the input based on the Regex pattern",
|
|
93
|
-
"type": "string"
|
|
94
|
-
"default": "\"undefined\""
|
|
93
|
+
"type": "string"
|
|
95
94
|
},
|
|
96
95
|
{
|
|
97
|
-
"name": "
|
|
96
|
+
"name": "inputMode",
|
|
98
97
|
"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.",
|
|
99
98
|
"type": "string",
|
|
100
|
-
"default": "\"
|
|
99
|
+
"default": "\"\""
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "spellcheck",
|
|
103
|
+
"description": "get/set native spellcheck attribute",
|
|
104
|
+
"type": "boolean"
|
|
101
105
|
},
|
|
102
106
|
{
|
|
103
107
|
"name": "name",
|
|
@@ -178,7 +182,7 @@
|
|
|
178
182
|
"name": "minlengthMessage",
|
|
179
183
|
"attribute": "minlength-message",
|
|
180
184
|
"description": "Minlength validation message.",
|
|
181
|
-
"type": "
|
|
185
|
+
"type": "string"
|
|
182
186
|
},
|
|
183
187
|
{
|
|
184
188
|
"name": "max",
|
|
@@ -198,7 +202,7 @@
|
|
|
198
202
|
"name": "maxlengthMessage",
|
|
199
203
|
"attribute": "maxlength-message",
|
|
200
204
|
"description": "Maxlength validation message.",
|
|
201
|
-
"type": "
|
|
205
|
+
"type": "string"
|
|
202
206
|
},
|
|
203
207
|
{
|
|
204
208
|
"name": "step",
|
|
@@ -240,7 +244,7 @@
|
|
|
240
244
|
"attribute": "auto-width",
|
|
241
245
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
242
246
|
"type": "boolean",
|
|
243
|
-
"default": "
|
|
247
|
+
"default": "false"
|
|
244
248
|
},
|
|
245
249
|
{
|
|
246
250
|
"name": "type",
|
|
@@ -253,15 +257,20 @@
|
|
|
253
257
|
"name": "pattern",
|
|
254
258
|
"attribute": "pattern",
|
|
255
259
|
"description": "Validates the input based on the Regex pattern",
|
|
256
|
-
"type": "string"
|
|
257
|
-
"default": "\"undefined\""
|
|
260
|
+
"type": "string"
|
|
258
261
|
},
|
|
259
262
|
{
|
|
260
|
-
"name": "
|
|
261
|
-
"attribute": "
|
|
263
|
+
"name": "inputMode",
|
|
264
|
+
"attribute": "inputMode",
|
|
262
265
|
"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.",
|
|
263
266
|
"type": "string",
|
|
264
|
-
"default": "\"
|
|
267
|
+
"default": "\"\""
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "spellcheck",
|
|
271
|
+
"attribute": "spellcheck",
|
|
272
|
+
"description": "get/set native spellcheck attribute",
|
|
273
|
+
"type": "boolean"
|
|
265
274
|
},
|
|
266
275
|
{
|
|
267
276
|
"name": "formAssociated",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-lock",
|
|
3
|
-
"version": "1.4.0-rc.
|
|
3
|
+
"version": "1.4.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.4.0-rc.
|
|
34
|
-
"@umbraco-ui/uui-button": "1.4.0-rc.
|
|
35
|
-
"@umbraco-ui/uui-icon": "1.4.0-rc.
|
|
36
|
-
"@umbraco-ui/uui-input": "1.4.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.4.0-rc.1",
|
|
34
|
+
"@umbraco-ui/uui-button": "1.4.0-rc.1",
|
|
35
|
+
"@umbraco-ui/uui-icon": "1.4.0-rc.1",
|
|
36
|
+
"@umbraco-ui/uui-input": "1.4.0-rc.1"
|
|
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": "2ecc805ac912c25d89bc96eaf7f50b97aa85fff0"
|
|
48
48
|
}
|