react-magma-dom 4.8.0-next.9 → 4.8.1-next.0

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,7 +1,8 @@
1
1
  import * as React from 'react';
2
2
  import { HyperlinkProps } from '../Hyperlink';
3
+ import { Omit } from '../../utils';
3
4
  export declare const TARGET_ID = "reactMagmaMainContent";
4
- export interface SkipLinkProps extends HyperlinkProps {
5
+ export interface SkipLinkProps extends Omit<HyperlinkProps, 'children'> {
5
6
  /**
6
7
  * The text in the skip link
7
8
  * @default "Skip Navigation"
@@ -73,6 +73,7 @@ export declare enum TableRowColor {
73
73
  interface TableContextInterface {
74
74
  density?: TableDensity;
75
75
  hasHoverStyles?: boolean;
76
+ hasSquareCorners?: boolean;
76
77
  hasVerticalBorders?: boolean;
77
78
  hasZebraStripes?: boolean;
78
79
  isInverse?: boolean;
@@ -86,14 +87,21 @@ export declare const TableContainer: import("@emotion/styled").StyledComponent<{
86
87
  theme?: import("@emotion/react").Theme;
87
88
  as?: React.ElementType<any>;
88
89
  } & {
89
- minWidth: number;
90
- hasSquareCorners?: boolean;
91
90
  isInverse?: boolean;
91
+ minWidth: number;
92
+ tableOverFlow?: string;
93
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
94
+ export declare const TableWrapper: import("@emotion/styled").StyledComponent<{
95
+ theme?: import("@emotion/react").Theme;
96
+ as?: React.ElementType<any>;
97
+ } & {
98
+ minWidth: number;
92
99
  }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
93
100
  export declare const StyledTable: import("@emotion/styled").StyledComponent<{
94
101
  theme?: import("@emotion/react").Theme;
95
102
  as?: React.ElementType<any>;
96
103
  } & {
104
+ hasSquareCorners?: boolean;
97
105
  isInverse?: boolean;
98
106
  minWidth: number;
99
107
  }, React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {}>;