@justeattakeaway/pie-checkbox 0.15.2 → 0.15.3

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.
@@ -103,7 +103,8 @@
103
103
  "text": "CheckboxProps['name']"
104
104
  },
105
105
  "privacy": "public",
106
- "attribute": "name"
106
+ "attribute": "name",
107
+ "reflects": true
107
108
  },
108
109
  {
109
110
  "kind": "field",
package/dist/index.js CHANGED
@@ -12,7 +12,7 @@ var R = Object.defineProperty, L = (s, c, r, d) => {
12
12
  };
13
13
  class w extends f {
14
14
  constructor() {
15
- super(...arguments), this.v = "0.15.2";
15
+ super(...arguments), this.v = "0.15.3";
16
16
  }
17
17
  }
18
18
  L([
@@ -171,7 +171,7 @@ t([
171
171
  i({ type: String })
172
172
  ], e.prototype, "value");
173
173
  t([
174
- i({ type: String })
174
+ i({ type: String, reflect: !0 })
175
175
  ], e.prototype, "name");
176
176
  t([
177
177
  i({ type: Boolean, reflect: !0 })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-checkbox",
3
3
  "description": "PIE Design System Checkbox built using Web Components",
4
- "version": "0.15.2",
4
+ "version": "0.15.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/justeattakeaway/pie",
package/src/index.ts CHANGED
@@ -42,7 +42,7 @@ export class PieCheckbox extends FormControlMixin(RtlMixin(PieElement)) implemen
42
42
  @property({ type: String })
43
43
  public value = defaultProps.value;
44
44
 
45
- @property({ type: String })
45
+ @property({ type: String, reflect: true })
46
46
  public name: CheckboxProps['name'];
47
47
 
48
48
  @property({ type: Boolean, reflect: true })