@umbraco-ui/uui-input-password 1.2.0-rc.3 → 1.2.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 +43 -4
- package/package.json +5 -5
package/custom-elements.json
CHANGED
|
@@ -5,9 +5,15 @@
|
|
|
5
5
|
"name": "uui-input-password",
|
|
6
6
|
"path": "./lib/uui-input-password.element.ts",
|
|
7
7
|
"attributes": [
|
|
8
|
+
{
|
|
9
|
+
"name": "min",
|
|
10
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
11
|
+
"type": "number | string",
|
|
12
|
+
"default": "\"undefined\""
|
|
13
|
+
},
|
|
8
14
|
{
|
|
9
15
|
"name": "minlength",
|
|
10
|
-
"description": "
|
|
16
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
11
17
|
"type": "number",
|
|
12
18
|
"default": "\"undefined\""
|
|
13
19
|
},
|
|
@@ -16,9 +22,15 @@
|
|
|
16
22
|
"description": "Minlength validation message.",
|
|
17
23
|
"type": "boolean"
|
|
18
24
|
},
|
|
25
|
+
{
|
|
26
|
+
"name": "max",
|
|
27
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
28
|
+
"type": "number | string",
|
|
29
|
+
"default": "\"undefined\""
|
|
30
|
+
},
|
|
19
31
|
{
|
|
20
32
|
"name": "maxlength",
|
|
21
|
-
"description": "
|
|
33
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
22
34
|
"type": "number",
|
|
23
35
|
"default": "\"undefined\""
|
|
24
36
|
},
|
|
@@ -27,6 +39,12 @@
|
|
|
27
39
|
"description": "Maxlength validation message.",
|
|
28
40
|
"type": "boolean"
|
|
29
41
|
},
|
|
42
|
+
{
|
|
43
|
+
"name": "step",
|
|
44
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
45
|
+
"type": "number",
|
|
46
|
+
"default": "\"undefined\""
|
|
47
|
+
},
|
|
30
48
|
{
|
|
31
49
|
"name": "disabled",
|
|
32
50
|
"description": "Disables the input.",
|
|
@@ -111,10 +129,17 @@
|
|
|
111
129
|
"type": "CSSResult[]",
|
|
112
130
|
"default": "[null,null]"
|
|
113
131
|
},
|
|
132
|
+
{
|
|
133
|
+
"name": "min",
|
|
134
|
+
"attribute": "min",
|
|
135
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
136
|
+
"type": "number | string",
|
|
137
|
+
"default": "\"undefined\""
|
|
138
|
+
},
|
|
114
139
|
{
|
|
115
140
|
"name": "minlength",
|
|
116
141
|
"attribute": "minlength",
|
|
117
|
-
"description": "
|
|
142
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
118
143
|
"type": "number",
|
|
119
144
|
"default": "\"undefined\""
|
|
120
145
|
},
|
|
@@ -124,10 +149,17 @@
|
|
|
124
149
|
"description": "Minlength validation message.",
|
|
125
150
|
"type": "boolean"
|
|
126
151
|
},
|
|
152
|
+
{
|
|
153
|
+
"name": "max",
|
|
154
|
+
"attribute": "max",
|
|
155
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
156
|
+
"type": "number | string",
|
|
157
|
+
"default": "\"undefined\""
|
|
158
|
+
},
|
|
127
159
|
{
|
|
128
160
|
"name": "maxlength",
|
|
129
161
|
"attribute": "maxlength",
|
|
130
|
-
"description": "
|
|
162
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
131
163
|
"type": "number",
|
|
132
164
|
"default": "\"undefined\""
|
|
133
165
|
},
|
|
@@ -137,6 +169,13 @@
|
|
|
137
169
|
"description": "Maxlength validation message.",
|
|
138
170
|
"type": "boolean"
|
|
139
171
|
},
|
|
172
|
+
{
|
|
173
|
+
"name": "step",
|
|
174
|
+
"attribute": "step",
|
|
175
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
176
|
+
"type": "number",
|
|
177
|
+
"default": "\"undefined\""
|
|
178
|
+
},
|
|
140
179
|
{
|
|
141
180
|
"name": "disabled",
|
|
142
181
|
"attribute": "disabled",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-password",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.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.2.
|
|
34
|
-
"@umbraco-ui/uui-icon-registry-essential": "1.2.
|
|
35
|
-
"@umbraco-ui/uui-input": "1.2.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.2.1",
|
|
34
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.2.1",
|
|
35
|
+
"@umbraco-ui/uui-input": "1.2.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": "
|
|
46
|
+
"gitHead": "94eb22bee5ff21bac6fadbd78653671279bebe36"
|
|
47
47
|
}
|