@umbraco-ui/uui-input-lock 1.2.0-rc.3 → 1.2.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.
@@ -11,9 +11,15 @@
11
11
  "type": "boolean",
12
12
  "default": "\"true\""
13
13
  },
14
+ {
15
+ "name": "min",
16
+ "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.",
17
+ "type": "number | string",
18
+ "default": "\"undefined\""
19
+ },
14
20
  {
15
21
  "name": "minlength",
16
- "description": "This is a minimum value of the input.",
22
+ "description": "Sets the minimum length of the value of the input.",
17
23
  "type": "number",
18
24
  "default": "\"undefined\""
19
25
  },
@@ -22,9 +28,15 @@
22
28
  "description": "Minlength validation message.",
23
29
  "type": "boolean"
24
30
  },
31
+ {
32
+ "name": "max",
33
+ "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.",
34
+ "type": "number | string",
35
+ "default": "\"undefined\""
36
+ },
25
37
  {
26
38
  "name": "maxlength",
27
- "description": "This is a maximum value of the input.",
39
+ "description": "Sets the maximum length of the value of the input.",
28
40
  "type": "number",
29
41
  "default": "\"undefined\""
30
42
  },
@@ -33,6 +45,12 @@
33
45
  "description": "Maxlength validation message.",
34
46
  "type": "boolean"
35
47
  },
48
+ {
49
+ "name": "step",
50
+ "description": "Specifies the interval between legal numbers of the input",
51
+ "type": "number",
52
+ "default": "\"undefined\""
53
+ },
36
54
  {
37
55
  "name": "disabled",
38
56
  "description": "Disables the input.",
@@ -124,10 +142,17 @@
124
142
  "type": "CSSResult[]",
125
143
  "default": "[null,null]"
126
144
  },
145
+ {
146
+ "name": "min",
147
+ "attribute": "min",
148
+ "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.",
149
+ "type": "number | string",
150
+ "default": "\"undefined\""
151
+ },
127
152
  {
128
153
  "name": "minlength",
129
154
  "attribute": "minlength",
130
- "description": "This is a minimum value of the input.",
155
+ "description": "Sets the minimum length of the value of the input.",
131
156
  "type": "number",
132
157
  "default": "\"undefined\""
133
158
  },
@@ -137,10 +162,17 @@
137
162
  "description": "Minlength validation message.",
138
163
  "type": "boolean"
139
164
  },
165
+ {
166
+ "name": "max",
167
+ "attribute": "max",
168
+ "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.",
169
+ "type": "number | string",
170
+ "default": "\"undefined\""
171
+ },
140
172
  {
141
173
  "name": "maxlength",
142
174
  "attribute": "maxlength",
143
- "description": "This is a maximum value of the input.",
175
+ "description": "Sets the maximum length of the value of the input.",
144
176
  "type": "number",
145
177
  "default": "\"undefined\""
146
178
  },
@@ -150,6 +182,13 @@
150
182
  "description": "Maxlength validation message.",
151
183
  "type": "boolean"
152
184
  },
185
+ {
186
+ "name": "step",
187
+ "attribute": "step",
188
+ "description": "Specifies the interval between legal numbers of the input",
189
+ "type": "number",
190
+ "default": "\"undefined\""
191
+ },
153
192
  {
154
193
  "name": "disabled",
155
194
  "attribute": "disabled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-input-lock",
3
- "version": "1.2.0-rc.3",
3
+ "version": "1.2.0",
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.2.0-rc.3",
34
- "@umbraco-ui/uui-button": "1.2.0-rc.3",
35
- "@umbraco-ui/uui-icon": "1.2.0-rc.3",
36
- "@umbraco-ui/uui-input": "1.2.0-rc.3"
33
+ "@umbraco-ui/uui-base": "1.2.0",
34
+ "@umbraco-ui/uui-button": "1.2.0",
35
+ "@umbraco-ui/uui-icon": "1.2.0",
36
+ "@umbraco-ui/uui-input": "1.2.0"
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": "ea5983f5f13e95944adba0174839548b11154b4a"
47
+ "gitHead": "78ce6df4b259921ed47e25ce10812920f25cbc1c"
48
48
  }