@justeattakeaway/pie-checkbox-group 0.8.2 → 0.8.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.
@@ -116,7 +116,8 @@
116
116
  "text": "CheckboxGroupProps['name']"
117
117
  },
118
118
  "privacy": "public",
119
- "attribute": "name"
119
+ "attribute": "name",
120
+ "reflects": true
120
121
  },
121
122
  {
122
123
  "kind": "field",
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ var S = Object.defineProperty, $ = (c, e, o, n) => {
11
11
  };
12
12
  class f extends g {
13
13
  constructor() {
14
- super(...arguments), this.v = "0.8.2";
14
+ super(...arguments), this.v = "0.8.3";
15
15
  }
16
16
  }
17
17
  $([
@@ -102,7 +102,7 @@ r([
102
102
  k()
103
103
  ], s.prototype, "_hasLabel");
104
104
  r([
105
- l({ type: String })
105
+ l({ type: String, reflect: !0 })
106
106
  ], s.prototype, "name");
107
107
  r([
108
108
  l({ type: String })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-checkbox-group",
3
3
  "description": "PIE Design System Checkbox Group built using Web Components",
4
- "version": "0.8.2",
4
+ "version": "0.8.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/justeattakeaway/pie",
@@ -39,7 +39,7 @@
39
39
  "license": "Apache-2.0",
40
40
  "devDependencies": {
41
41
  "@custom-elements-manifest/analyzer": "0.9.0",
42
- "@justeattakeaway/pie-checkbox": "0.15.2",
42
+ "@justeattakeaway/pie-checkbox": "0.15.3",
43
43
  "@justeattakeaway/pie-components-config": "0.20.0",
44
44
  "@justeattakeaway/pie-css": "0.16.0",
45
45
  "@justeattakeaway/pie-monorepo-utils": "0.5.0",
package/src/index.ts CHANGED
@@ -38,7 +38,7 @@ export class PieCheckboxGroup extends FormControlMixin(RtlMixin(PieElement)) imp
38
38
  @state()
39
39
  private _hasLabel = false;
40
40
 
41
- @property({ type: String })
41
+ @property({ type: String, reflect: true })
42
42
  public name: CheckboxGroupProps['name'];
43
43
 
44
44
  @property({ type: String })