@equisoft/design-elements-react 3.5.1-snapshot.20220104201526 → 3.5.1-snapshot.20220107140407

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.
@@ -1,2 +1,7 @@
1
- declare const Card: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2
- export { Card };
1
+ import { FunctionComponent } from 'react';
2
+ interface Props {
3
+ className?: string;
4
+ noPadding?: boolean;
5
+ }
6
+ export declare const Card: FunctionComponent<Props>;
7
+ export {};
@@ -1,9 +1,10 @@
1
1
  import { KeyboardEvent } from 'react';
2
2
  import { IconName } from '../icon/icon';
3
3
  interface TabButtonProps {
4
+ global?: boolean;
4
5
  id: string;
5
- panelId: string;
6
6
  children: string;
7
+ panelId: string;
7
8
  leftIcon?: IconName;
8
9
  rightIcon?: IconName;
9
10
  isSelected: boolean;
@@ -1,9 +1,10 @@
1
1
  import { ReactElement, ReactNode } from 'react';
2
2
  interface TabPanelProps {
3
- id: string;
4
3
  buttonId: string;
5
- hidden: boolean;
6
4
  children: ReactNode;
5
+ contained?: boolean;
6
+ hidden: boolean;
7
+ id: string;
7
8
  }
8
- export declare function TabPanel({ id, buttonId, hidden, children, }: TabPanelProps): ReactElement;
9
+ export declare function TabPanel({ buttonId, children, contained, hidden, id, }: TabPanelProps): ReactElement;
9
10
  export {};
@@ -8,7 +8,10 @@ export interface Tab {
8
8
  }
9
9
  interface Props {
10
10
  className?: string;
11
+ /** Not available in global mode */
12
+ contained?: boolean;
11
13
  forceRenderTabPanels?: boolean;
14
+ global?: boolean;
12
15
  tabs: Tab[];
13
16
  }
14
17
  export declare const Tabs: VoidFunctionComponent<Props>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/design-elements-react",
3
- "version": "3.5.1-snapshot.20220104201526",
3
+ "version": "3.5.1-snapshot.20220107140407",
4
4
  "description": "React implementation of the Equisoft design system.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/bundle.js",