react-magma-dom 4.8.0-next.8 → 4.8.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.
- package/dist/components/Table/Table.d.ts +10 -2
- package/dist/esm/index.js +185 -99
- package/dist/esm/index.js.map +1 -1
- package/dist/hooks/useDeviceDetect.d.ts +8 -0
- package/dist/properties.json +43 -27
- package/dist/react-magma-dom.cjs.development.js +182 -99
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -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>, {}>;
|