data-table-component-gif 0.0.6 → 0.0.7

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/README.md CHANGED
@@ -34,5 +34,3 @@ function App() {
34
34
  > ```js
35
35
  > import "data-table-component-gif/dist/data-table-component-gif.css";
36
36
  > ```
37
- >
38
- > **TypeScript users:** the package includes its own `.d.ts` file, so no additional `@types` dependency is required. You'll get full typings when importing `DataTable`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-table-component-gif",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
package/src/index.d.ts CHANGED
@@ -35,4 +35,4 @@ export interface DataTableProps {
35
35
  /**
36
36
  * Simple data table with sorting, filtering and pagination.
37
37
  */
38
- export function DataTable(props: DataTableProps): JSX.Element;
38
+ export function DataTable(props: DataTableProps): React.JSX.Element;