@umbraco-ui/uui-input-lock 1.2.1 → 1.3.0-rc.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 +26 -0
- package/package.json +7 -7
package/custom-elements.json
CHANGED
|
@@ -81,6 +81,18 @@
|
|
|
81
81
|
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
82
82
|
"default": "\"text\""
|
|
83
83
|
},
|
|
84
|
+
{
|
|
85
|
+
"name": "pattern",
|
|
86
|
+
"description": "Validates the input based on the Regex pattern",
|
|
87
|
+
"type": "string",
|
|
88
|
+
"default": "\"undefined\""
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "inputmode",
|
|
92
|
+
"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
|
+
"type": "string",
|
|
94
|
+
"default": "\"undefined\""
|
|
95
|
+
},
|
|
84
96
|
{
|
|
85
97
|
"name": "name",
|
|
86
98
|
"description": "This is a name property of the component.",
|
|
@@ -224,6 +236,20 @@
|
|
|
224
236
|
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
225
237
|
"default": "\"text\""
|
|
226
238
|
},
|
|
239
|
+
{
|
|
240
|
+
"name": "pattern",
|
|
241
|
+
"attribute": "pattern",
|
|
242
|
+
"description": "Validates the input based on the Regex pattern",
|
|
243
|
+
"type": "string",
|
|
244
|
+
"default": "\"undefined\""
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "inputmode",
|
|
248
|
+
"attribute": "inputmode",
|
|
249
|
+
"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
|
+
"type": "string",
|
|
251
|
+
"default": "\"undefined\""
|
|
252
|
+
},
|
|
227
253
|
{
|
|
228
254
|
"name": "formAssociated",
|
|
229
255
|
"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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-lock",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.
|
|
34
|
-
"@umbraco-ui/uui-button": "1.
|
|
35
|
-
"@umbraco-ui/uui-icon": "1.
|
|
36
|
-
"@umbraco-ui/uui-input": "1.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.3.0-rc.0",
|
|
34
|
+
"@umbraco-ui/uui-button": "1.3.0-rc.0",
|
|
35
|
+
"@umbraco-ui/uui-icon": "1.3.0-rc.0",
|
|
36
|
+
"@umbraco-ui/uui-input": "1.3.0-rc.0"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
40
|
-
"clean": "tsc --build --clean && rimraf dist lib/*.js lib/**/*.js custom-elements.json",
|
|
40
|
+
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
|
|
41
41
|
"analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-input-lock",
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
|
|
48
48
|
}
|