@umbraco-ui/uui-input-lock 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.
@@ -26,7 +26,7 @@
26
26
  {
27
27
  "name": "minlength-message",
28
28
  "description": "Minlength validation message.",
29
- "type": "boolean"
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": "boolean"
46
+ "type": "string"
47
47
  },
48
48
  {
49
49
  "name": "step",
@@ -75,6 +75,12 @@
75
75
  "type": "string",
76
76
  "default": "\"undefined\""
77
77
  },
78
+ {
79
+ "name": "auto-width",
80
+ "description": "Sets the input width to fit the value or placeholder if empty",
81
+ "type": "boolean",
82
+ "default": "false"
83
+ },
78
84
  {
79
85
  "name": "type",
80
86
  "description": "This property specifies the type of input that will be rendered.",
@@ -84,14 +90,18 @@
84
90
  {
85
91
  "name": "pattern",
86
92
  "description": "Validates the input based on the Regex pattern",
87
- "type": "string",
88
- "default": "\"undefined\""
93
+ "type": "string"
89
94
  },
90
95
  {
91
- "name": "inputmode",
96
+ "name": "inputMode",
92
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.",
93
98
  "type": "string",
94
- "default": "\"undefined\""
99
+ "default": "\"\""
100
+ },
101
+ {
102
+ "name": "spellcheck",
103
+ "description": "get/set native spellcheck attribute",
104
+ "type": "boolean"
95
105
  },
96
106
  {
97
107
  "name": "name",
@@ -172,7 +182,7 @@
172
182
  "name": "minlengthMessage",
173
183
  "attribute": "minlength-message",
174
184
  "description": "Minlength validation message.",
175
- "type": "boolean"
185
+ "type": "string"
176
186
  },
177
187
  {
178
188
  "name": "max",
@@ -192,7 +202,7 @@
192
202
  "name": "maxlengthMessage",
193
203
  "attribute": "maxlength-message",
194
204
  "description": "Maxlength validation message.",
195
- "type": "boolean"
205
+ "type": "string"
196
206
  },
197
207
  {
198
208
  "name": "step",
@@ -229,6 +239,13 @@
229
239
  "type": "string",
230
240
  "default": "\"undefined\""
231
241
  },
242
+ {
243
+ "name": "autoWidth",
244
+ "attribute": "auto-width",
245
+ "description": "Sets the input width to fit the value or placeholder if empty",
246
+ "type": "boolean",
247
+ "default": "false"
248
+ },
232
249
  {
233
250
  "name": "type",
234
251
  "attribute": "type",
@@ -240,15 +257,20 @@
240
257
  "name": "pattern",
241
258
  "attribute": "pattern",
242
259
  "description": "Validates the input based on the Regex pattern",
243
- "type": "string",
244
- "default": "\"undefined\""
260
+ "type": "string"
245
261
  },
246
262
  {
247
- "name": "inputmode",
248
- "attribute": "inputmode",
263
+ "name": "inputMode",
264
+ "attribute": "inputMode",
249
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.",
250
266
  "type": "string",
251
- "default": "\"undefined\""
267
+ "default": "\"\""
268
+ },
269
+ {
270
+ "name": "spellcheck",
271
+ "attribute": "spellcheck",
272
+ "description": "get/set native spellcheck attribute",
273
+ "type": "boolean"
252
274
  },
253
275
  {
254
276
  "name": "formAssociated",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-input-lock",
3
- "version": "1.3.0",
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.3.0",
34
- "@umbraco-ui/uui-button": "1.3.0",
35
- "@umbraco-ui/uui-icon": "1.3.0",
36
- "@umbraco-ui/uui-input": "1.3.0"
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": "e662ac3be21cef08076d1dbb978748c2dd30e596"
47
+ "gitHead": "2ecc805ac912c25d89bc96eaf7f50b97aa85fff0"
48
48
  }