aio-table 9.1.3 → 9.1.4
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/index.d.ts +1 -1
- package/package.json +3 -2
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
|
-
import "./index.css";
|
|
3
2
|
import { I_filter, I_filter_item, I_filter_saved_item, I_paging, I_sort } from "aio-component-utils";
|
|
3
|
+
import "./index.css";
|
|
4
4
|
type I_rowOption<T, R> = (p: I_rowDetail<T>) => R;
|
|
5
5
|
type I_cellOption<T, R> = ((p: I_cellDetail<T>) => R) | string;
|
|
6
6
|
type I_rowDetail<T> = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aio-table",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.4",
|
|
4
4
|
"description": "all in one table. tree mode , simple mode , tree mode, gantt mode , groupby mode, freeze mode.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types":"index.d.ts",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"homepage": "https://github.com/mohammadFeiz/aio-table#readme",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"aio-input": "latest",
|
|
22
|
-
"aio-utils":"latest"
|
|
22
|
+
"aio-utils":"latest",
|
|
23
|
+
"aio-component_utils":"latest"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"react-scripts": "latest"
|