linkmore-design 1.1.1 → 1.1.2
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/LmTable/components/tableChartsModal.d.ts +2 -0
- package/dist/LmTable/util.d.ts +18 -6
- package/dist/index.umd.js +376 -255
- package/dist/index.umd.min.js +4 -4
- package/es/LmTable/Table.js +187 -135
- package/es/LmTable/components/sheelTableCell.js +10 -6
- package/es/LmTable/components/sortableItemCol.js +3 -1
- package/es/LmTable/components/tableChartsModal.d.ts +2 -0
- package/es/LmTable/components/tableChartsModal.js +31 -5
- package/es/LmTable/util.js +94 -27
- package/lib/LmTable/Table.js +187 -135
- package/lib/LmTable/components/sheelTableCell.js +10 -6
- package/lib/LmTable/components/sortableItemCol.js +3 -1
- package/lib/LmTable/components/tableChartsModal.d.ts +2 -0
- package/lib/LmTable/components/tableChartsModal.js +33 -4
- package/lib/LmTable/util.js +94 -27
- package/package.json +2 -1
- package/dist/LmTable/test/index.d.ts +0 -100
- package/es/LmTable/test/index.js +0 -254
- package/lib/LmTable/test/index.js +0 -254
package/dist/LmTable/util.d.ts
CHANGED
|
@@ -21,12 +21,6 @@ export function checkStatus(i: any, j: any, commiting: any): {
|
|
|
21
21
|
/** 是否有效拉伸 */
|
|
22
22
|
isVaildCommit: boolean;
|
|
23
23
|
};
|
|
24
|
-
/**
|
|
25
|
-
* 获取空行列表值数组
|
|
26
|
-
* @param {Array} dataSourceWithGroup
|
|
27
|
-
* @returns {Array}
|
|
28
|
-
*/
|
|
29
|
-
export function getSkipList(dataSourceWithGroup: any[]): any[];
|
|
30
24
|
/**
|
|
31
25
|
* 获取选中行文本
|
|
32
26
|
* @param {Object}
|
|
@@ -50,4 +44,22 @@ export function getSelectionColText({ selection, columns, dataSource }: any): an
|
|
|
50
44
|
* @returns {number}
|
|
51
45
|
*/
|
|
52
46
|
export function getDataSourceIndex({ key, dataSource }: any): number;
|
|
47
|
+
/**
|
|
48
|
+
* 框选是否跨行分组
|
|
49
|
+
* @param {number} i
|
|
50
|
+
* @param {React.Ref} shellStatusRef
|
|
51
|
+
* @param {React.Ref} deepDataSourceRef
|
|
52
|
+
* @returns
|
|
53
|
+
*/
|
|
54
|
+
export function isSelectCrossRowGroup(i: number, shellStatusRef: any, deepDataSourceRef: any): boolean;
|
|
55
|
+
/**
|
|
56
|
+
* 不允许跨无效列
|
|
57
|
+
* @param {number} i
|
|
58
|
+
* @param {number} j
|
|
59
|
+
* @param {React.Ref} shellStatusRef
|
|
60
|
+
* @param {React.Ref} deepDataSourceRef
|
|
61
|
+
* @param {React.Ref} deepColumnsRef
|
|
62
|
+
* @returns
|
|
63
|
+
*/
|
|
64
|
+
export function isSelectCrossInvalidCol(i: number, j: number, shellStatusRef: any, deepDataSourceRef: any, deepColumnsRef: any): boolean;
|
|
53
65
|
export function range(start: number, end: number): Array<number>;
|