@justeattakeaway/pie-tabs 0.1.8 → 0.1.9

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.
File without changes
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ const e = class e extends b {
5
5
  this.getAttribute("v") || this.setAttribute("v", e.v);
6
6
  }
7
7
  };
8
- e.v = "0.1.8";
8
+ e.v = "0.1.9";
9
9
  let r = e;
10
10
  const d = "*,*:after,*:before{box-sizing:inherit}:host{display:block}";
11
11
  var u = Object.getOwnPropertyDescriptor, m = (l, a, p, o) => {
package/dist/react.d.ts CHANGED
@@ -5,7 +5,7 @@ import * as React_2 from 'react';
5
5
  import { RTLInterface } from '@justeattakeaway/pie-webc-core';
6
6
  import { TemplateResult } from 'lit-html';
7
7
 
8
- export declare const PieTabs: React_2.ForwardRefExoticComponent<React_2.PropsWithoutRef<TabsProps> & React_2.RefAttributes<PieTabs_2> & ReactBaseType>;
8
+ export declare const PieTabs: React_2.ForwardRefExoticComponent<React_2.PropsWithChildren<Omit<React_2.PropsWithoutRef<TabsProps>, "children">> & React_2.RefAttributes<PieTabs_2> & ReactBaseType>;
9
9
 
10
10
  /**
11
11
  * @tagname pie-tabs
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-tabs",
3
3
  "description": "PIE Design System Tabs built using Web Components",
4
- "version": "0.1.8",
4
+ "version": "0.1.9",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -39,12 +39,12 @@
39
39
  "devDependencies": {
40
40
  "@custom-elements-manifest/analyzer": "0.9.0",
41
41
  "@justeattakeaway/pie-components-config": "0.21.0",
42
- "@justeattakeaway/pie-css": "0.26.1",
42
+ "@justeattakeaway/pie-css": "0.26.2",
43
43
  "@justeattakeaway/pie-monorepo-utils": "0.7.0",
44
44
  "cem-plugin-module-file-extensions": "0.0.5"
45
45
  },
46
46
  "dependencies": {
47
- "@justeattakeaway/pie-webc-core": "6.0.1"
47
+ "@justeattakeaway/pie-webc-core": "6.0.2"
48
48
  },
49
49
  "volta": {
50
50
  "extends": "../../../package.json"
package/src/react.ts CHANGED
@@ -15,5 +15,5 @@ const PieTabsReact = createComponent({
15
15
 
16
16
  type ReactBaseType = React.HTMLAttributes<HTMLElement>
17
17
 
18
- export const PieTabs = PieTabsReact as React.ForwardRefExoticComponent<React.PropsWithoutRef<TabsProps>
18
+ export const PieTabs = PieTabsReact as React.ForwardRefExoticComponent<React.PropsWithChildren<Omit<React.PropsWithoutRef<TabsProps>, 'children'>>
19
19
  & React.RefAttributes<PieTabsLit> & ReactBaseType>;