@umbraco-ui/uui-toggle 1.8.0-rc.0 → 1.8.2

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.
@@ -40,7 +40,7 @@
40
40
  "name": "pristine",
41
41
  "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.",
42
42
  "type": "boolean",
43
- "default": "\"false\""
43
+ "default": "\"true\""
44
44
  },
45
45
  {
46
46
  "name": "required",
@@ -124,7 +124,7 @@
124
124
  "attribute": "pristine",
125
125
  "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.",
126
126
  "type": "boolean",
127
- "default": "\"false\""
127
+ "default": "\"true\""
128
128
  },
129
129
  {
130
130
  "name": "required",
package/lib/index.js CHANGED
@@ -11,8 +11,7 @@ var __decorateClass = (decorators, target, key, kind) => {
11
11
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
12
12
  if (decorator = decorators[i])
13
13
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
14
- if (kind && result)
15
- __defProp(target, key, result);
14
+ if (kind && result) __defProp(target, key, result);
16
15
  return result;
17
16
  };
18
17
  let UUIToggleElement = class extends UUIBooleanInputElement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-toggle",
3
- "version": "1.8.0-rc.0",
3
+ "version": "1.8.2",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,8 +30,8 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.8.0-rc.0",
34
- "@umbraco-ui/uui-boolean-input": "1.8.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.8.0",
34
+ "@umbraco-ui/uui-boolean-input": "1.8.2"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
@@ -42,5 +42,5 @@
42
42
  "access": "public"
43
43
  },
44
44
  "homepage": "https://uui.umbraco.com/?path=/story/uui-toggle",
45
- "gitHead": "46d444c66217c9a3c74518d8ce4badc7f121bfdf"
45
+ "gitHead": "ff7f8bf2e837773d2a73d4ca5eb9b67857b3dd8b"
46
46
  }