@hw-component/table 1.6.9 → 1.7.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.
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/components/index.tsx +1 -1
- package/src/pages/DwTable/index.tsx +3 -3
package/es/index.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ export { default as HTableHeader } from "./HTableHeader";
|
|
|
10
10
|
export { default as HTablePagination } from "./HTablePagination";
|
|
11
11
|
export { default as HModalTable } from "./DialogTable/ModalTable";
|
|
12
12
|
export { useHDialogTable } from "./DialogTable/hooks";
|
|
13
|
-
export { default as
|
|
13
|
+
export { default as HDwTable } from "./DialogTable/DwTable";
|
package/es/index.js
CHANGED
|
@@ -9,5 +9,5 @@ export { default as HTableHeader } from './HTableHeader/index.js';
|
|
|
9
9
|
export { default as HTablePagination } from './HTablePagination/index.js';
|
|
10
10
|
export { default as HModalTable } from './DialogTable/ModalTable.js';
|
|
11
11
|
export { useHDialogTable } from './DialogTable/hooks.js';
|
|
12
|
-
export { default as
|
|
12
|
+
export { default as HDwTable } from './DialogTable/DwTable.js';
|
|
13
13
|
// powered by hdj
|
package/lib/index.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ export { default as HTableHeader } from "./HTableHeader";
|
|
|
10
10
|
export { default as HTablePagination } from "./HTablePagination";
|
|
11
11
|
export { default as HModalTable } from "./DialogTable/ModalTable";
|
|
12
12
|
export { useHDialogTable } from "./DialogTable/hooks";
|
|
13
|
-
export { default as
|
|
13
|
+
export { default as HDwTable } from "./DialogTable/DwTable";
|
package/lib/index.js
CHANGED
|
@@ -24,5 +24,5 @@ exports.HTableHeader = index$2.default;
|
|
|
24
24
|
exports.HTablePagination = index$3.default;
|
|
25
25
|
exports.HModalTable = ModalTable.default;
|
|
26
26
|
exports.useHDialogTable = hooks.useHDialogTable;
|
|
27
|
-
exports.
|
|
27
|
+
exports.HDwTable = DwTable.default;
|
|
28
28
|
// powered by h
|
package/package.json
CHANGED
package/src/components/index.tsx
CHANGED
|
@@ -10,4 +10,4 @@ export { default as HTableHeader } from "./HTableHeader";
|
|
|
10
10
|
export { default as HTablePagination } from "./HTablePagination";
|
|
11
11
|
export { default as HModalTable } from "./DialogTable/ModalTable";
|
|
12
12
|
export { useHDialogTable } from "./DialogTable/hooks";
|
|
13
|
-
export { default as
|
|
13
|
+
export { default as HDwTable } from "./DialogTable/DwTable";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Button } from "antd";
|
|
2
|
-
import {
|
|
2
|
+
import { HDwTable, HTable, useHDialogTable } from "@/components";
|
|
3
3
|
const configData = [
|
|
4
4
|
{
|
|
5
5
|
title: "座位",
|
|
@@ -95,7 +95,7 @@ const Test = () => {
|
|
|
95
95
|
|
|
96
96
|
return (
|
|
97
97
|
<>
|
|
98
|
-
<
|
|
98
|
+
<HDwTable
|
|
99
99
|
dialogTable={dialogTable1}
|
|
100
100
|
title="111"
|
|
101
101
|
configData={configData}
|
|
@@ -129,7 +129,7 @@ export default () => {
|
|
|
129
129
|
>
|
|
130
130
|
点我333
|
|
131
131
|
</Button>
|
|
132
|
-
<
|
|
132
|
+
<HDwTable
|
|
133
133
|
dialogTable={dialogTable}
|
|
134
134
|
request={req2}
|
|
135
135
|
width={1200}
|