@umbraco-ui/uui-input-password 1.3.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.
@@ -20,7 +20,7 @@
20
20
  {
21
21
  "name": "minlength-message",
22
22
  "description": "Minlength validation message.",
23
- "type": "boolean"
23
+ "type": "string"
24
24
  },
25
25
  {
26
26
  "name": "max",
@@ -37,7 +37,7 @@
37
37
  {
38
38
  "name": "maxlength-message",
39
39
  "description": "Maxlength validation message.",
40
- "type": "boolean"
40
+ "type": "string"
41
41
  },
42
42
  {
43
43
  "name": "step",
@@ -69,6 +69,12 @@
69
69
  "type": "string",
70
70
  "default": "\"undefined\""
71
71
  },
72
+ {
73
+ "name": "auto-width",
74
+ "description": "Sets the input width to fit the value or placeholder if empty",
75
+ "type": "boolean",
76
+ "default": "false"
77
+ },
72
78
  {
73
79
  "name": "type",
74
80
  "description": "This property specifies the type of input that will be rendered.",
@@ -78,14 +84,18 @@
78
84
  {
79
85
  "name": "pattern",
80
86
  "description": "Validates the input based on the Regex pattern",
81
- "type": "string",
82
- "default": "\"undefined\""
87
+ "type": "string"
83
88
  },
84
89
  {
85
- "name": "inputmode",
90
+ "name": "inputMode",
86
91
  "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
92
  "type": "string",
88
- "default": "\"undefined\""
93
+ "default": "\"\""
94
+ },
95
+ {
96
+ "name": "spellcheck",
97
+ "description": "get/set native spellcheck attribute",
98
+ "type": "boolean"
89
99
  },
90
100
  {
91
101
  "name": "name",
@@ -159,7 +169,7 @@
159
169
  "name": "minlengthMessage",
160
170
  "attribute": "minlength-message",
161
171
  "description": "Minlength validation message.",
162
- "type": "boolean"
172
+ "type": "string"
163
173
  },
164
174
  {
165
175
  "name": "max",
@@ -179,7 +189,7 @@
179
189
  "name": "maxlengthMessage",
180
190
  "attribute": "maxlength-message",
181
191
  "description": "Maxlength validation message.",
182
- "type": "boolean"
192
+ "type": "string"
183
193
  },
184
194
  {
185
195
  "name": "step",
@@ -216,6 +226,13 @@
216
226
  "type": "string",
217
227
  "default": "\"undefined\""
218
228
  },
229
+ {
230
+ "name": "autoWidth",
231
+ "attribute": "auto-width",
232
+ "description": "Sets the input width to fit the value or placeholder if empty",
233
+ "type": "boolean",
234
+ "default": "false"
235
+ },
219
236
  {
220
237
  "name": "type",
221
238
  "attribute": "type",
@@ -227,15 +244,20 @@
227
244
  "name": "pattern",
228
245
  "attribute": "pattern",
229
246
  "description": "Validates the input based on the Regex pattern",
230
- "type": "string",
231
- "default": "\"undefined\""
247
+ "type": "string"
232
248
  },
233
249
  {
234
- "name": "inputmode",
235
- "attribute": "inputmode",
250
+ "name": "inputMode",
251
+ "attribute": "inputMode",
236
252
  "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
253
  "type": "string",
238
- "default": "\"undefined\""
254
+ "default": "\"\""
255
+ },
256
+ {
257
+ "name": "spellcheck",
258
+ "attribute": "spellcheck",
259
+ "description": "get/set native spellcheck attribute",
260
+ "type": "boolean"
239
261
  },
240
262
  {
241
263
  "name": "formAssociated",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-input-password",
3
- "version": "1.3.0",
3
+ "version": "1.4.0-rc.1",
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.3.0",
34
- "@umbraco-ui/uui-icon-registry-essential": "1.3.0",
35
- "@umbraco-ui/uui-input": "1.3.0"
33
+ "@umbraco-ui/uui-base": "1.4.0-rc.1",
34
+ "@umbraco-ui/uui-icon-registry-essential": "1.4.0-rc.1",
35
+ "@umbraco-ui/uui-input": "1.4.0-rc.1"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "npm run analyze && tsc --build --force && 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": "e662ac3be21cef08076d1dbb978748c2dd30e596"
46
+ "gitHead": "2ecc805ac912c25d89bc96eaf7f50b97aa85fff0"
47
47
  }