@justeattakeaway/pie-link 0.18.1 → 0.18.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.
package/dist/index.js CHANGED
@@ -87,7 +87,7 @@ const r = "pie-link", k = class k extends y {
87
87
  k.styles = g(b);
88
88
  let t = k;
89
89
  i([
90
- n(),
90
+ n({ type: String }),
91
91
  a(r, $, e.tag)
92
92
  ], t.prototype, "tag");
93
93
  i([
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-link",
3
3
  "description": "PIE Design System Link built using Web Components",
4
- "version": "0.18.1",
4
+ "version": "0.18.3",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -37,13 +37,13 @@
37
37
  "devDependencies": {
38
38
  "@custom-elements-manifest/analyzer": "0.9.0",
39
39
  "@justeattakeaway/pie-components-config": "0.18.0",
40
- "@justeattakeaway/pie-css": "0.13.0",
41
- "@justeattakeaway/pie-icons-webc": "0.25.2",
42
- "@justeattakeaway/pie-wrapper-react": "0.14.1",
40
+ "@justeattakeaway/pie-css": "0.13.1",
41
+ "@justeattakeaway/pie-icons-webc": "1.1.0",
42
+ "@justeattakeaway/pie-wrapper-react": "0.14.2",
43
43
  "cem-plugin-module-file-extensions": "0.0.5"
44
44
  },
45
45
  "dependencies": {
46
- "@justeattakeaway/pie-webc-core": "0.24.1"
46
+ "@justeattakeaway/pie-webc-core": "0.24.2"
47
47
  },
48
48
  "volta": {
49
49
  "extends": "../../../package.json"
package/src/index.ts CHANGED
@@ -29,7 +29,7 @@ const componentSelector = 'pie-link';
29
29
  */
30
30
 
31
31
  export class PieLink extends LitElement implements LinkProps {
32
- @property()
32
+ @property({ type: String })
33
33
  @validPropertyValues(componentSelector, tags, defaultProps.tag)
34
34
  public tag = defaultProps.tag;
35
35
 
package/src/react.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import { createComponent } from '@lit/react';
3
3
  import { PieLink as PieLinkLit } from './index';
4
- import { LinkProps } from './defs';
4
+ import { type LinkProps } from './defs';
5
5
 
6
6
  export * from './defs';
7
7