@justeattakeaway/pie-form-label 0.14.2 → 0.14.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-form-label",
3
3
  "description": "PIE Design System Form Label built using Web Components",
4
- "version": "0.14.2",
4
+ "version": "0.14.3",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -37,14 +37,14 @@
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-switch": "0.30.2",
42
- "@justeattakeaway/pie-text-input": "0.24.1",
43
- "@justeattakeaway/pie-wrapper-react": "0.14.1",
40
+ "@justeattakeaway/pie-css": "0.13.1",
41
+ "@justeattakeaway/pie-switch": "0.30.3",
42
+ "@justeattakeaway/pie-text-input": "0.24.2",
43
+ "@justeattakeaway/pie-wrapper-react": "0.14.2",
44
44
  "cem-plugin-module-file-extensions": "0.0.5"
45
45
  },
46
46
  "dependencies": {
47
- "@justeattakeaway/pie-webc-core": "0.24.1"
47
+ "@justeattakeaway/pie-webc-core": "0.24.2"
48
48
  },
49
49
  "volta": {
50
50
  "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.LabelHTMLAttributes<HTMLLabelElement>
package/src/index.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import {
2
- LitElement, TemplateResult, html, nothing, unsafeCSS,
2
+ LitElement, type TemplateResult, html, nothing, unsafeCSS,
3
3
  } from 'lit';
4
4
  import { ifDefined } from 'lit/directives/if-defined.js';
5
- import { RtlMixin, defineCustomElement, PIEInputElement } from '@justeattakeaway/pie-webc-core';
5
+ import { RtlMixin, defineCustomElement, type PIEInputElement } from '@justeattakeaway/pie-webc-core';
6
6
  import { property } from 'lit/decorators.js';
7
7
  import styles from './form-label.scss?inline';
8
- import { FormLabelProps } from './defs';
8
+ import { type FormLabelProps } from './defs';
9
9
 
10
10
  // Valid values available to consumers
11
11
  export * from './defs';
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 { PieFormLabel as PieFormLabelLit } from './index';
4
- import { FormLabelProps } from './defs';
4
+ import { type FormLabelProps } from './defs';
5
5
 
6
6
  export * from './defs';
7
7