@justeattakeaway/pie-checkbox-group 0.7.1 → 0.7.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-group",
3
3
  "description": "PIE Design System Checkbox Group built using Web Components",
4
- "version": "0.7.1",
4
+ "version": "0.7.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.FieldsetHTMLAttributes<HTMLFieldSetElement>
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import {
2
- LitElement, html, unsafeCSS, PropertyValues, nothing, type TemplateResult,
2
+ LitElement, html, unsafeCSS, type PropertyValues, type nothing, type TemplateResult,
3
3
  } from 'lit';
4
4
  import { property, queryAssignedElements, state } from 'lit/decorators.js';
5
5
  import {
@@ -14,7 +14,7 @@ import styles from './checkbox-group.scss?inline';
14
14
  import {
15
15
  ON_CHECKBOX_GROUP_DISABLED,
16
16
  ON_CHECKBOX_GROUP_ERROR,
17
- CheckboxGroupProps,
17
+ type CheckboxGroupProps,
18
18
  defaultProps,
19
19
  statusTypes,
20
20
  } 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 { PieCheckboxGroup as PieCheckboxGroupLit } from './index';
4
- import { CheckboxGroupProps } from './defs';
4
+ import { type CheckboxGroupProps } from './defs';
5
5
 
6
6
  export * from './defs';
7
7