@umbraco-ui/uui-input-password 1.8.0-rc.0 → 1.9.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.
@@ -115,7 +115,7 @@
115
115
  "name": "pristine",
116
116
  "description": "Determines wether the form control has been touched or interacted with, this determines wether the validation-status of this form control should be made visible.",
117
117
  "type": "boolean",
118
- "default": "\"false\""
118
+ "default": "\"true\""
119
119
  },
120
120
  {
121
121
  "name": "required",
@@ -288,7 +288,7 @@
288
288
  "attribute": "pristine",
289
289
  "description": "Determines wether the form control has been touched or interacted with, this determines wether the validation-status of this form control should be made visible.",
290
290
  "type": "boolean",
291
- "default": "\"false\""
291
+ "default": "\"true\""
292
292
  },
293
293
  {
294
294
  "name": "required",
package/lib/index.js CHANGED
@@ -12,8 +12,7 @@ var __decorateClass = (decorators, target, key, kind) => {
12
12
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
13
13
  if (decorator = decorators[i])
14
14
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
15
- if (kind && result)
16
- __defProp(target, key, result);
15
+ if (kind && result) __defProp(target, key, result);
17
16
  return result;
18
17
  };
19
18
  let UUIInputPasswordElement = class extends UUIInputElement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-input-password",
3
- "version": "1.8.0-rc.0",
3
+ "version": "1.9.0-rc.0",
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.8.0-rc.0",
34
- "@umbraco-ui/uui-icon-registry-essential": "1.8.0-rc.0",
35
- "@umbraco-ui/uui-input": "1.8.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.9.0-rc.0",
34
+ "@umbraco-ui/uui-icon-registry-essential": "1.9.0-rc.0",
35
+ "@umbraco-ui/uui-input": "1.9.0-rc.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "npm run analyze && tsc --build && 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": "46d444c66217c9a3c74518d8ce4badc7f121bfdf"
46
+ "gitHead": "e3e398e07b6ff9874aa0656cb7767df42f58a4ce"
47
47
  }