linkmore-design 1.0.44 → 1.0.47

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 (71) hide show
  1. package/dist/CardTable/LmCardTable.d.ts +3 -2
  2. package/dist/CardTable/body/TableBodyCell.d.ts +2 -1
  3. package/dist/CardTable/card/PictureTextColumn.d.ts +2 -1
  4. package/dist/CardTable/card/PictureTextRow.d.ts +2 -1
  5. package/dist/CardTable/table/TableRoot.d.ts +3 -9
  6. package/dist/LmSelect/useCheckboxOptions.d.ts +4 -1
  7. package/dist/index.umd.js +5756 -5628
  8. package/dist/index.umd.min.js +6 -6
  9. package/es/CardTable/LmCardTable.js +9 -3
  10. package/es/CardTable/body/TableBodyCell.js +3 -1
  11. package/es/CardTable/body/TableBodyRow.js +8 -4
  12. package/es/CardTable/card/PictureTextColumn.js +37 -11
  13. package/es/CardTable/card/PictureTextRow.js +31 -11
  14. package/es/CardTable/style/style.css +1 -2
  15. package/es/CardTable/table/TableRoot.js +53 -23
  16. package/es/CkFilter/baseFilter/filterMenu.js +4 -0
  17. package/es/CkFilter/baseFilter/index.js +16 -10
  18. package/es/CkFilter/complexFilter/drawer.js +11 -3
  19. package/es/CkFilter/components/filterTypes.js +30 -2
  20. package/es/CustomTableOption/index.js +7 -7
  21. package/es/CustomerService/README.md.old +15 -0
  22. package/es/EnlargeImg/README.md.old +21 -0
  23. package/es/Filter/README.md.old +144 -0
  24. package/es/IconFont/font/iconfont.css +15 -7
  25. package/es/IconFont/font/iconfont.js +1 -1
  26. package/es/IconFont/font/iconfont.ttf +0 -0
  27. package/es/IconFont/font/iconfont.woff +0 -0
  28. package/es/IconFont/font/iconfont.woff2 +0 -0
  29. package/es/LeftTable/style/style.css +1 -1
  30. package/es/LmSelect/NormalSelect.js +2 -2
  31. package/es/LmSelect/useCheckboxOptions.d.ts +4 -1
  32. package/es/LmSelect/useCheckboxOptions.js +14 -8
  33. package/es/LmTable/Table.js +127 -48
  34. package/es/LmTable/style/style.css +9 -0
  35. package/es/OldModal/README.md.old +27 -0
  36. package/es/PopTable/README.md.old +30 -0
  37. package/es/ProTable/README.md.old +141 -0
  38. package/es/Radio/index.js +0 -1
  39. package/es/TableRender/README.md.old +20 -0
  40. package/lib/CardTable/LmCardTable.js +9 -3
  41. package/lib/CardTable/body/TableBodyCell.js +3 -1
  42. package/lib/CardTable/body/TableBodyRow.js +8 -4
  43. package/lib/CardTable/card/PictureTextColumn.js +37 -11
  44. package/lib/CardTable/card/PictureTextRow.js +31 -11
  45. package/lib/CardTable/style/style.css +1 -2
  46. package/lib/CardTable/table/TableRoot.js +53 -23
  47. package/lib/CkFilter/baseFilter/filterMenu.js +4 -0
  48. package/lib/CkFilter/baseFilter/index.js +16 -10
  49. package/lib/CkFilter/complexFilter/drawer.js +11 -3
  50. package/lib/CkFilter/components/filterTypes.js +30 -2
  51. package/lib/CustomTableOption/index.js +7 -7
  52. package/lib/CustomerService/README.md.old +15 -0
  53. package/lib/EnlargeImg/README.md.old +21 -0
  54. package/lib/Filter/README.md.old +144 -0
  55. package/lib/IconFont/font/iconfont.css +15 -7
  56. package/lib/IconFont/font/iconfont.js +1 -1
  57. package/lib/IconFont/font/iconfont.ttf +0 -0
  58. package/lib/IconFont/font/iconfont.woff +0 -0
  59. package/lib/IconFont/font/iconfont.woff2 +0 -0
  60. package/lib/LeftTable/style/style.css +1 -1
  61. package/lib/LmSelect/NormalSelect.js +2 -2
  62. package/lib/LmSelect/useCheckboxOptions.d.ts +4 -1
  63. package/lib/LmSelect/useCheckboxOptions.js +14 -8
  64. package/lib/LmTable/Table.js +127 -48
  65. package/lib/LmTable/style/style.css +9 -0
  66. package/lib/OldModal/README.md.old +27 -0
  67. package/lib/PopTable/README.md.old +30 -0
  68. package/lib/ProTable/README.md.old +141 -0
  69. package/lib/Radio/index.js +0 -1
  70. package/lib/TableRender/README.md.old +20 -0
  71. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- declare function _default({ cellKey, type, height, virtual, components, dataSource, cellConfig, checkboxConfig, ...resetProps }: {
1
+ declare const _default: React.ForwardRefExoticComponent<Pick<{
2
2
  [x: string]: any;
3
3
  cellKey?: string;
4
4
  type?: string;
@@ -8,5 +8,6 @@ declare function _default({ cellKey, type, height, virtual, components, dataSour
8
8
  dataSource?: any[];
9
9
  cellConfig?: {};
10
10
  checkboxConfig?: {};
11
- }): JSX.Element;
11
+ }, string | number> & React.RefAttributes<any>>;
12
12
  export default _default;
13
+ import React from "react";
@@ -1,5 +1,6 @@
1
1
  export default LmCardTableBodyCell;
2
- declare function LmCardTableBodyCell({ cell, table }: {
2
+ declare function LmCardTableBodyCell({ index, cell, table }: {
3
+ index: any;
3
4
  cell: any;
4
5
  table: any;
5
6
  }): JSX.Element;
@@ -1,5 +1,6 @@
1
1
  export default PictureTextColumn;
2
- declare function PictureTextColumn({ cell, table, checked }: {
2
+ declare function PictureTextColumn({ index, cell, table, checked }: {
3
+ index: any;
3
4
  cell: any;
4
5
  table: any;
5
6
  checked: any;
@@ -1,5 +1,6 @@
1
1
  export default PictureTextRow;
2
- declare function PictureTextRow({ cell, table, checked }: {
2
+ declare function PictureTextRow({ index, cell, table, checked }: {
3
+ index: any;
3
4
  cell: any;
4
5
  table: any;
5
6
  checked: any;
@@ -1,9 +1,3 @@
1
- export default LmCardTableRoot;
2
- declare function LmCardTableRoot({ rowConfig, cellConfig, defaultConfig, checkboxConfig, checkboxClick, ...resetProps }: {
3
- [x: string]: any;
4
- rowConfig: any;
5
- cellConfig: any;
6
- defaultConfig: any;
7
- checkboxConfig: any;
8
- checkboxClick: any;
9
- }): JSX.Element;
1
+ declare const _default: React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<any>>;
2
+ export default _default;
3
+ import React from "react";
@@ -1 +1,4 @@
1
- export declare const useCheckboxOptions: (options: any, controllable: any, filter?: string) => JSX.Element;
1
+ export declare const useCheckboxOptions: (options: any, { value, onChange: onCheckChange }: {
2
+ value?: any[];
3
+ onChange: any;
4
+ }, filter?: string) => JSX.Element;