@up42/up-components 0.19.0 → 0.20.1

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,6 +4,7 @@ import { BoxProps } from '../Box/Box';
4
4
  declare type TabData = {
5
5
  label: string | ReactNode;
6
6
  content: string | ReactNode;
7
+ hidden?: boolean;
7
8
  };
8
9
  export declare type TabGroupProps = {
9
10
  tabs: TabData[];
package/dist/index.d.ts CHANGED
@@ -367,6 +367,7 @@ declare const Tab: ({ children, ...props }: TabProps) => JSX.Element;
367
367
  declare type TabData = {
368
368
  label: string | ReactNode;
369
369
  content: string | ReactNode;
370
+ hidden?: boolean;
370
371
  };
371
372
  declare type TabGroupProps = {
372
373
  tabs: TabData[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@up42/up-components",
3
- "version": "0.19.0",
3
+ "version": "0.20.1",
4
4
  "description": "UP42 Component Library",
5
5
  "author": "Axel Fuhrmann axel.fuhrmann@up42.com",
6
6
  "license": "ISC",
@@ -25,7 +25,7 @@
25
25
  "format": "prettier --write ./**/*.mdx"
26
26
  },
27
27
  "dependencies": {
28
- "@up42/design-system-tokens": "^3.0.1",
28
+ "@up42/design-system-tokens": "^3.0.2",
29
29
  "dayjs": "^1.11.7",
30
30
  "prismjs": "^1.29.0"
31
31
  },