@aloudata/aloudata-design 1.10.8 → 1.10.9
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/Table/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/Table/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ForwardedRef } from 'react';
|
|
2
2
|
import { ITableProps, ITableRef } from './types';
|
|
3
|
-
declare
|
|
3
|
+
declare function Table<TDataItem extends object>(props: ITableProps<TDataItem>, ref: ForwardedRef<ITableRef>): React.JSX.Element;
|
|
4
|
+
declare const _default: <TDataItem extends object>(props: ITableProps<TDataItem> & {
|
|
5
|
+
ref?: React.ForwardedRef<HTMLUListElement> | undefined;
|
|
6
|
+
}) => ReturnType<typeof Table>;
|
|
4
7
|
export default _default;
|