@utrecht/component-library-react 3.0.1-alpha.26 → 3.0.1-alpha.28

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.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license EUPL-1.2
3
+ * Copyright (c) 2022 Robbert Broersma
4
+ */
5
+ import { HTMLAttributes } from 'react';
6
+ export interface TableContainerProps extends HTMLAttributes<HTMLDivElement> {
7
+ overflowInline?: boolean;
8
+ }
9
+ export declare const TableContainer: import("react").ForwardRefExoticComponent<TableContainerProps & {
10
+ children?: import("react").ReactNode;
11
+ } & import("react").RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license EUPL-1.2
3
+ * Copyright (c) 2022 Robbert Broersma
4
+ */
5
+ import { HTMLAttributes } from 'react';
6
+ export interface TableContainerProps extends HTMLAttributes<HTMLDivElement> {
7
+ overflowInline?: boolean;
8
+ }
9
+ export declare const TableContainer: import("react").ForwardRefExoticComponent<TableContainerProps & {
10
+ children?: import("react").ReactNode;
11
+ } & import("react").RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @license EUPL-1.2
3
+ * Copyright (c) 2024 Frameless B.V.
4
+ */
5
+ import '../../../../components/table/css/index.scss';
6
+ export * from '../TableContainer';
@@ -153,6 +153,8 @@ export type { StrongProps } from '../Strong';
153
153
  export { Strong } from './Strong';
154
154
  export type { SurfaceProps } from '../Surface';
155
155
  export { Surface } from './Surface';
156
+ export type { TableContainerProps } from '../TableContainer';
157
+ export { TableContainer } from '../TableContainer';
156
158
  export type { TableProps } from '../Table';
157
159
  export { Table } from './Table';
158
160
  export type { TableBodyProps } from '../TableBody';
@@ -154,6 +154,8 @@ export type { StrongProps } from './Strong';
154
154
  export { Strong } from './Strong';
155
155
  export type { SurfaceProps } from './Surface';
156
156
  export { Surface } from './Surface';
157
+ export type { TableContainerProps } from './TableContainer';
158
+ export { TableContainer } from './TableContainer';
157
159
  export type { TableProps } from './Table';
158
160
  export { Table } from './Table';
159
161
  export type { TableBodyProps } from './TableBody';