linkmore-design 1.0.98 → 1.0.99
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/CardTable/hooks/usePagination.d.ts +1 -1
- package/dist/CardTable/utils.d.ts +1 -1
- package/dist/LmFilter/components/CascaderFilter.d.ts +1 -1
- package/dist/LmFilter/components/CheckboxFilter.d.ts +1 -1
- package/dist/LmFilter/components/DateFilter.d.ts +1 -1
- package/dist/LmFilter/components/SelectFilter.d.ts +1 -1
- package/dist/LmSelect/useCheckboxOptions.d.ts +1 -1
- package/dist/LmTable/util.d.ts +24 -0
- package/dist/_util/placements.d.ts +0 -1
- package/dist/index.umd.css +4394 -2515
- package/dist/index.umd.js +271325 -281408
- package/dist/index.umd.min.css +2 -2
- package/dist/index.umd.min.js +20 -35
- package/es/LmSelect/useCheckboxOptions.d.ts +1 -1
- package/es/LmTable/Table.js +58 -84
- package/es/LmTable/components/sheelTableCell.js +1 -1
- package/es/LmTable/util.js +101 -0
- package/es/_util/placements.d.ts +0 -1
- package/lib/LmSelect/useCheckboxOptions.d.ts +1 -1
- package/lib/LmTable/Table.js +58 -84
- package/lib/LmTable/components/sheelTableCell.js +1 -1
- package/lib/LmTable/util.js +101 -0
- package/lib/_util/placements.d.ts +0 -1
- package/package.json +4 -6
- package/CHANGELOG.md +0 -12
package/dist/LmTable/util.d.ts
CHANGED
|
@@ -21,3 +21,27 @@ 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
|
+
/**
|
|
31
|
+
* 获取选中行文本
|
|
32
|
+
* @param {Object}
|
|
33
|
+
* {
|
|
34
|
+
* selection: {start: {i, j}, end: {i, j}},
|
|
35
|
+
* columnsKeysList: Array,
|
|
36
|
+
* dataSource: Array
|
|
37
|
+
* }
|
|
38
|
+
* @returns {Array}
|
|
39
|
+
*/
|
|
40
|
+
export function getSelectionRowText({ selection, columnsKeysList, dataSource }: any): any[];
|
|
41
|
+
/**
|
|
42
|
+
* 获取选中列文本
|
|
43
|
+
* @param {Object}
|
|
44
|
+
* @returns {Array}
|
|
45
|
+
*/
|
|
46
|
+
export function getSelectionColText({ selection, columns, dataSource }: any): any[];
|
|
47
|
+
export function range(start: number, end: number): Array<number>;
|