aio-table 14.1.1 → 14.2.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.
Files changed (3) hide show
  1. package/index.css +0 -2
  2. package/index.d.ts +2 -2
  3. package/package.json +1 -1
package/index.css CHANGED
@@ -91,7 +91,6 @@
91
91
  .aio-table-row {
92
92
  display: flex;
93
93
  min-width: fit-content;
94
- height:3em;
95
94
  }
96
95
  .aio-table-cell {
97
96
  padding: 6px 12px;
@@ -169,7 +168,6 @@
169
168
  }
170
169
 
171
170
  .aio-table-toolbar-content {
172
- font-weight: bold;
173
171
  padding: 0 12px;
174
172
  height: 100%;
175
173
  display: flex;
package/index.d.ts CHANGED
@@ -215,8 +215,8 @@ export declare const useSort: <T>(p: {
215
215
  getSortedRows: (rows: T[]) => T[];
216
216
  changeSort: (sortId: string, changeObject: Partial<I_table_sort<T>>) => void;
217
217
  changeSorts: (sorts: I_table_sort<T>[]) => Promise<void>;
218
- renderSortArrow: (option: false | I_table_sort<T>, inline?: boolean) => import("react/jsx-runtime").JSX.Element;
219
- getSortByColumn: (column: I_table_column<T>) => false | I_table_sort<T>;
218
+ renderSortArrow: (option: I_table_sort<T> | false, inline?: boolean) => import("react/jsx-runtime").JSX.Element;
219
+ getSortByColumn: (column: I_table_column<T>) => I_table_sort<T> | false;
220
220
  };
221
221
  export type I_table_paging = {
222
222
  serverSide?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aio-table",
3
- "version": "14.1.1",
3
+ "version": "14.2.0",
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",