@justeattakeaway/pie-radio 0.10.0 → 0.10.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.
@@ -94,7 +94,8 @@
94
94
  "text": "RadioProps['name']"
95
95
  },
96
96
  "privacy": "public",
97
- "attribute": "name"
97
+ "attribute": "name",
98
+ "reflects": true
98
99
  },
99
100
  {
100
101
  "kind": "field",
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ var S = Object.defineProperty, A = (l, r, a, n) => {
11
11
  };
12
12
  class u extends f {
13
13
  constructor() {
14
- super(...arguments), this.v = "0.10.0";
14
+ super(...arguments), this.v = "0.10.2";
15
15
  }
16
16
  }
17
17
  A([
@@ -129,7 +129,7 @@ i([
129
129
  c({ type: Boolean, reflect: !0 })
130
130
  ], e.prototype, "disabled");
131
131
  i([
132
- c({ type: String })
132
+ c({ type: String, reflect: !0 })
133
133
  ], e.prototype, "name");
134
134
  i([
135
135
  c({ type: Boolean, reflect: !0 })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-radio",
3
3
  "description": "PIE Design System Radio built using Web Components",
4
- "version": "0.10.0",
4
+ "version": "0.10.2",
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.0",
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-webc-core": "0.25.0"
42
+ "@justeattakeaway/pie-webc-core": "0.25.1"
43
43
  },
44
44
  "volta": {
45
45
  "extends": "../../../package.json"
package/src/index.ts CHANGED
@@ -40,7 +40,7 @@ export class PieRadio extends FormControlMixin(RtlMixin(PieElement)) implements
40
40
  @property({ type: Boolean, reflect: true })
41
41
  public disabled = defaultProps.disabled;
42
42
 
43
- @property({ type: String })
43
+ @property({ type: String, reflect: true })
44
44
  public name: RadioProps['name'];
45
45
 
46
46
  @property({ type: Boolean, reflect: true })
package/declaration.d.ts DELETED
@@ -1,9 +0,0 @@
1
- declare module '*.scss' {
2
- const content: Record<string, string>;
3
- export default content;
4
- }
5
-
6
- declare module '*.scss?inline' {
7
- const content: Record<string, string>;
8
- export default content;
9
- }