@justeattakeaway/pie-select 0.4.1 → 0.4.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": "SelectProps['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
@@ -13,7 +13,7 @@ var A = Object.defineProperty, F = (c, t, e, d) => {
13
13
  };
14
14
  class x extends b {
15
15
  constructor() {
16
- super(...arguments), this.v = "0.4.1";
16
+ super(...arguments), this.v = "0.4.3";
17
17
  }
18
18
  }
19
19
  F([
@@ -158,7 +158,7 @@ o([
158
158
  a({ type: String })
159
159
  ], r.prototype, "assistiveText");
160
160
  o([
161
- a({ type: String })
161
+ a({ type: String, reflect: !0 })
162
162
  ], r.prototype, "name");
163
163
  o([
164
164
  a({ type: Array })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-select",
3
3
  "description": "PIE Design System Select built using Web Components",
4
- "version": "0.4.1",
4
+ "version": "0.4.3",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -33,13 +33,13 @@
33
33
  "license": "Apache-2.0",
34
34
  "devDependencies": {
35
35
  "@custom-elements-manifest/analyzer": "0.9.0",
36
- "@justeattakeaway/pie-components-config": "0.19.1",
36
+ "@justeattakeaway/pie-components-config": "0.20.0",
37
37
  "@justeattakeaway/pie-css": "0.16.0",
38
38
  "@justeattakeaway/pie-monorepo-utils": "0.5.0",
39
39
  "cem-plugin-module-file-extensions": "0.0.5"
40
40
  },
41
41
  "dependencies": {
42
- "@justeattakeaway/pie-assistive-text": "0.9.1",
42
+ "@justeattakeaway/pie-assistive-text": "0.9.2",
43
43
  "@justeattakeaway/pie-webc-core": "0.25.1"
44
44
  },
45
45
  "volta": {
package/src/index.ts CHANGED
@@ -60,7 +60,7 @@ export class PieSelect extends FormControlMixin(RtlMixin(PieElement)) implements
60
60
  @property({ type: String })
61
61
  public assistiveText: SelectProps['assistiveText'];
62
62
 
63
- @property({ type: String })
63
+ @property({ type: String, reflect: true })
64
64
  public name: SelectProps['name'];
65
65
 
66
66
  @property({ type: Array })