linkmore-design 1.0.40 → 1.0.43
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/dist/CkFilter/complexFilter/saveModal.d.ts +4 -0
- package/dist/CustomTableOption/index.d.ts +2 -1
- package/dist/LmTable/ImgList/footer.d.ts +3 -1
- package/dist/Spin/demos/basic.d.ts +2 -0
- package/dist/Spin/demos/size.d.ts +2 -0
- package/dist/Spin/index.d.ts +7 -0
- package/dist/Spin/style/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.umd.js +318 -105
- package/dist/index.umd.min.js +5 -5
- package/es/CardTable/style/style.css +3 -0
- package/es/CkFilter/baseFilter/index.js +9 -2
- package/es/CkFilter/complexFilter/drawer.js +31 -18
- package/es/CkFilter/complexFilter/saveModal.js +140 -0
- package/es/CkFilter/customFilter/drawer.js +2 -2
- package/es/CkFilter/style/style.css +34 -3
- package/es/CustomTableOption/index.d.ts +2 -1
- package/es/CustomTableOption/index.js +10 -6
- package/es/CustomTableOption/style/index.css +8 -0
- package/es/Dropdown/index.js +10 -2
- package/es/EditTable/EditTable.js +6 -4
- package/es/IconFont/font/iconfont.css +113 -5
- package/es/IconFont/font/iconfont.js +19 -19
- package/es/IconFont/font/iconfont.ttf +0 -0
- package/es/IconFont/font/iconfont.woff +0 -0
- package/es/IconFont/font/iconfont.woff2 +0 -0
- package/es/LmTable/ImgList/footer.js +9 -7
- package/es/LmTable/ImgList/imgCell.js +25 -13
- package/es/LmTable/ImgList/imgTable.js +28 -5
- package/es/LmTable/Table.js +26 -4
- package/es/LmTable/style/style.css +422 -395
- package/es/Pagination/index.js +2 -1
- package/es/ProTable/style/style.css +0 -3
- package/es/Spin/index.d.ts +7 -0
- package/es/Spin/index.js +3 -0
- package/es/Spin/style/index.css +505 -0
- package/es/Spin/style/index.d.ts +1 -0
- package/es/Spin/style/index.js +1 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +2 -1
- package/lib/CardTable/style/style.css +3 -0
- package/lib/CkFilter/baseFilter/index.js +9 -2
- package/lib/CkFilter/complexFilter/drawer.js +31 -18
- package/lib/CkFilter/complexFilter/saveModal.js +140 -0
- package/lib/CkFilter/customFilter/drawer.js +2 -2
- package/lib/CkFilter/style/style.css +34 -3
- package/lib/CustomTableOption/index.d.ts +2 -1
- package/lib/CustomTableOption/index.js +12 -6
- package/lib/CustomTableOption/style/index.css +8 -0
- package/lib/Dropdown/index.js +10 -2
- package/lib/EditTable/EditTable.js +6 -4
- package/lib/IconFont/font/iconfont.css +113 -5
- package/lib/IconFont/font/iconfont.js +19 -19
- package/lib/IconFont/font/iconfont.ttf +0 -0
- package/lib/IconFont/font/iconfont.woff +0 -0
- package/lib/IconFont/font/iconfont.woff2 +0 -0
- package/lib/LmTable/ImgList/footer.js +9 -7
- package/lib/LmTable/ImgList/imgCell.js +25 -13
- package/lib/LmTable/ImgList/imgTable.js +28 -5
- package/lib/LmTable/Table.js +26 -4
- package/lib/LmTable/style/style.css +422 -395
- package/lib/Pagination/index.js +2 -1
- package/lib/ProTable/style/style.css +0 -3
- package/lib/Spin/index.d.ts +7 -0
- package/lib/Spin/index.js +15 -0
- package/lib/Spin/style/index.css +505 -0
- package/lib/Spin/style/index.d.ts +1 -0
- package/lib/Spin/style/index.js +3 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +9 -1
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { TableProps } from 'antd';
|
|
2
|
+
import { TableProps, TooltipProps } from 'antd';
|
|
3
3
|
export interface ICustomTableOptionProps {
|
|
4
4
|
className?: string;
|
|
5
5
|
style?: React.CSSProperties;
|
|
6
6
|
size?: 'small' | 'default' | 'middle';
|
|
7
|
+
tooltip?: TooltipProps;
|
|
7
8
|
filter?: Record<string, any>[];
|
|
8
9
|
columns?: TableProps<any>['columns'];
|
|
9
10
|
onSave?: (data: any) => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import './index.less';
|
package/dist/index.d.ts
CHANGED