@justeattakeaway/pie-webc-core 0.14.0 → 0.15.0

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.
@@ -4,4 +4,4 @@ transforming...
4
4
  rendering chunks...
5
5
  computing gzip size...
6
6
  dist/index.js 2.23 kB │ gzip: 1.02 kB
7
- ✓ built in 117ms
7
+ ✓ built in 123ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [Changed] - Updated LitElement imports where it is only used as a type to include the 'type' keyword (fixes a TS error in some consumers) ([#1143](https://github.com/justeattakeaway/pie/pull/1143)) by [@jamieomaguire](https://github.com/jamieomaguire)
8
+
3
9
  ## 0.14.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-webc-core",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "PIE design system base classes, mixins and utilities for web components",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,4 +1,4 @@
1
- import { LitElement } from 'lit';
1
+ import type { LitElement } from 'lit';
2
2
 
3
3
  /**
4
4
  * Defines a web component, ensuring that the component is only defined once in the Custom Element Registry.
@@ -1,4 +1,4 @@
1
- import { LitElement } from 'lit';
1
+ import type { LitElement } from 'lit';
2
2
  import type { GenericConstructor } from '../types/GenericConstructor';
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { LitElement } from 'lit';
1
+ import type { LitElement } from 'lit';
2
2
  import type { GenericConstructor } from './GenericConstructor';
3
3
 
4
4
  /**