@mxmweb/xviewer 1.4.15 → 1.4.16
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/assets/style.css +1 -1
- package/index.js +1612 -1602
- package/lib_enter.d.ts +2 -0
- package/package.json +1 -1
- package/stats.html +1 -1
package/lib_enter.d.ts
CHANGED
|
@@ -227,6 +227,8 @@ declare interface ViewType {
|
|
|
227
227
|
*/
|
|
228
228
|
headerSize?: 'sm' | 'md' | 'lg';
|
|
229
229
|
allowMultiSelect?: boolean;
|
|
230
|
+
/** 表格多选:按行判断是否禁用勾选(与数据源行上的 selectDisabled 二选一或叠加,仅 TS 配置有效) */
|
|
231
|
+
getRowSelectDisabled?: (row: any) => boolean;
|
|
230
232
|
size?: 'sm' | 'md';
|
|
231
233
|
total?: number;
|
|
232
234
|
requestPagesize?: number;
|