@justeattakeaway/pie-checkbox 0.13.1 → 0.13.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-checkbox",
3
3
  "description": "PIE Design System Checkbox built using Web Components",
4
- "version": "0.13.1",
4
+ "version": "0.13.2",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -37,12 +37,12 @@
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",
40
+ "@justeattakeaway/pie-css": "0.13.1",
41
41
  "cem-plugin-module-file-extensions": "0.0.5"
42
42
  },
43
43
  "dependencies": {
44
- "@justeattakeaway/pie-assistive-text": "0.7.2",
45
- "@justeattakeaway/pie-webc-core": "0.24.1"
44
+ "@justeattakeaway/pie-assistive-text": "0.7.3",
45
+ "@justeattakeaway/pie-webc-core": "0.24.2"
46
46
  },
47
47
  "volta": {
48
48
  "extends": "../../../package.json"
package/src/defs-react.ts CHANGED
@@ -1,3 +1,3 @@
1
- import React from 'react';
1
+ import type React from 'react';
2
2
 
3
3
  export type ReactBaseType = React.InputHTMLAttributes<HTMLInputElement>
package/src/index.ts CHANGED
@@ -16,7 +16,7 @@ import {
16
16
  import '@justeattakeaway/pie-assistive-text';
17
17
 
18
18
  import styles from './checkbox.scss?inline';
19
- import { CheckboxProps, defaultProps, statusTypes } from './defs';
19
+ import { type CheckboxProps, defaultProps, statusTypes } from './defs';
20
20
 
21
21
  // Valid values available to consumers
22
22
  export * from './defs';
package/src/react.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
- import { createComponent, EventName } from '@lit/react';
2
+ import { createComponent, type EventName } from '@lit/react';
3
3
  import { PieCheckbox as PieCheckboxLit } from './index';
4
- import { CheckboxProps } from './defs';
4
+ import { type CheckboxProps } from './defs';
5
5
 
6
6
  export * from './defs';
7
7