pixelize-design-library 1.0.73 → 1.0.74
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.
|
@@ -3,7 +3,6 @@ import { KaTableProps } from './KaTableProps';
|
|
|
3
3
|
import * as TableEnums from 'ka-table/enums';
|
|
4
4
|
import * as TableProps from 'ka-table/props';
|
|
5
5
|
import * as TableActionCreator from 'ka-table/actionCreators';
|
|
6
|
-
import "./KaTable.css";
|
|
7
6
|
declare const KaTable: ({ columns, data, rowKey, Edit, shorting, format, paging, filter, childComponents, columnReorder, columnResizing, editableCells, validation, loading }: KaTableProps) => React.JSX.Element;
|
|
8
7
|
export default KaTable;
|
|
9
8
|
export { TableEnums, TableActionCreator, TableProps };
|
|
@@ -35,7 +35,7 @@ var TableProps = __importStar(require("ka-table/props"));
|
|
|
35
35
|
exports.TableProps = TableProps;
|
|
36
36
|
var TableActionCreator = __importStar(require("ka-table/actionCreators"));
|
|
37
37
|
exports.TableActionCreator = TableActionCreator;
|
|
38
|
-
|
|
38
|
+
// import "./KaTable.css";
|
|
39
39
|
var KaTable = function (_a) {
|
|
40
40
|
var columns = _a.columns, data = _a.data, _b = _a.rowKey, rowKey = _b === void 0 ? 'id' : _b, Edit = _a.Edit, shorting = _a.shorting, format = _a.format, paging = _a.paging, filter = _a.filter, childComponents = _a.childComponents, columnReorder = _a.columnReorder, columnResizing = _a.columnResizing, editableCells = _a.editableCells, validation = _a.validation, loading = _a.loading;
|
|
41
41
|
return (react_1.default.createElement(ka_table_1.Table, { columns: columns, data: data, rowKeyField: rowKey, editingMode: Edit, sortingMode: shorting, format: format, paging: paging, filteringMode: filter, childComponents: childComponents, columnReordering: columnReorder, columnResizing: columnResizing, editableCells: editableCells, validation: validation, loading: loading }));
|