br-dionysus 1.19.0 → 1.19.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/README.md CHANGED
@@ -482,9 +482,9 @@ const formInline = useFormInline<{
482
482
  </template>
483
483
 
484
484
  <script setup lang="ts">
485
- import { ref, watch } from 'vue'
485
+ import { ref } from 'vue'
486
486
 
487
- const test = ref<number>(0)
487
+ const test = ref<number | null>(null)
488
488
  const numberInput = (val: number) => {
489
489
  console.log('m1', val)
490
490
  console.log('m2', test.value)
@@ -493,12 +493,6 @@ const numberChange = (val: number) => {
493
493
  console.log('m3', val)
494
494
  console.log('m4', test.value)
495
495
  }
496
- watch(
497
- () => test.value,
498
- () => {
499
- console.log('m5', test.value)
500
- }
501
- )
502
496
 
503
497
  const test2 = ref<number>(0)
504
498
  const numberInput2 = (val: number) => {
@@ -509,12 +503,6 @@ const numberChange2 = (val: number) => {
509
503
  console.log('e3', val)
510
504
  console.log('e4', test2.value)
511
505
  }
512
- watch(
513
- () => test2.value,
514
- () => {
515
- console.log('e5', test2.value)
516
- }
517
- )
518
506
  </script>
519
507
 
520
508
  <style scoped>
@@ -664,30 +652,32 @@ import DemoTest7 from 'packages/MSelectTable/docs/DemoTest7.vue'
664
652
 
665
653
  ### 2) Attributes
666
654
 
667
- | 参数 | 说明 | 类型 | 可选 | 是否必填 | 默认值 |
668
- |-------------------|----------------------------------------------------------|-------------------------------------|---------------------------|:----:|---------------------------------|
669
- | value / v-model | 绑定值 | number,string, Array<number,string> | - | 否 | '' |
670
- | name | 显示值,有值时覆盖所有显示逻辑,直接显示name | number,string, Array<number,string> | - | 否 | '' |
671
- | placeholder | 占位符 | string | - | 否 | 请选择 |
672
- | disabled | 是否禁用 | boolean | - | 否 | false |
673
- | size | 大小 | enum | large \| default \| small | 否 | default |
674
- | options | 下拉表的 表内数据,详情见Option接口 | Option[] | - | 否 | [] |
675
- | total | 总数量 当有值时,出现分页器 | number | null | 否 | null |
676
- | filterMethod | 自定义搜索方法 (使用时必须传递filterable) | Function | null | 否 | null |
677
- | filterable | 是否开启筛选 (如果开启但没有传递自定义搜索方法 效果为筛选当前页数据的 keywords[label]) | boolean | - | 否 | false |
678
- | remote | 是否使用远程搜索 | boolean | - | 否 | false |
679
- | remoteMethod | 自定义远程搜索方法 (使用时必须传递filterable和remote) | Function | - | 否 | {} |
680
- | tableTitle | 下拉表的 表头定义,详情见TableTitle接口 | TableTitle[] | - | 否 | [] |
681
- | multiple | 是否开启多选 | boolean | - | 否 | false |
682
- | keywords | 关键字配置(value-key 配置)映射关键字 | Option | - | 否 | {label: 'label' ,value:'value'} |
683
- | reserveSelection | 是否打开翻页多选 需要是多选才有效 | boolean | - | 否 | false |
684
- | tableHeight | 表格高度 | string | number | 否 | 200 |
685
- | isAffirmBtn | 是否有确认按钮 当使用此按钮时 selected事件无效 需使用selectMultiple事件 | boolean | - | 否 | false |
686
- | scrollbarAlwaysOn | 是否常态显示滚动条 | boolean | - | 否 | false |
687
- | allowCreate | 是否能够创建条目 | boolean | - | 否 | false |
688
- | popupWidth | 弹窗的宽度 | string,number | - | 否 | 500 |
689
- | border | 表格边框 | boolean | - | 否 | false |
690
- | keywords | 定义默认的 label 和value | { label: string, value: string } | - | 否 | { label: label, value: value } |
655
+ | 参数 | 说明 | 类型 | 可选 | 是否必填 | 默认值 |
656
+ |-------------------|----------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|---------------------------|:----:|---------------------------------|
657
+ | value / v-model | 绑定值 | number,string, Array<number,string> | - | 否 | '' |
658
+ | name | 显示值,有值时覆盖所有显示逻辑,直接显示name | number,string, Array<number,string> | - | 否 | '' |
659
+ | placeholder | 占位符 | string | - | 否 | 请选择 |
660
+ | disabled | 是否禁用 | boolean | - | 否 | false |
661
+ | size | 大小 | enum | large \| default \| small | 否 | default |
662
+ | options | 下拉表的 表内数据,详情见Option接口 | Option[] | - | 否 | [] |
663
+ | total | 总数量 当有值时,出现分页器 | number | null | 否 | null |
664
+ | filterMethod | 自定义搜索方法 (使用时必须传递filterable) | Function | null | 否 | null |
665
+ | filterable | 是否开启筛选 (如果开启但没有传递自定义搜索方法 效果为筛选当前页数据的 keywords[label]) | boolean | - | 否 | false |
666
+ | remote | 是否使用远程搜索 | boolean | - | 否 | false |
667
+ | remoteMethod | 自定义远程搜索方法 (使用时必须传递filterable和remote) | Function | - | 否 | {} |
668
+ | tableTitle | 下拉表的 表头定义,详情见TableTitle接口 | TableTitle[] | - | 否 | [] |
669
+ | multiple | 是否开启多选 | boolean | - | 否 | false |
670
+ | keywords | 关键字配置(value-key 配置)映射关键字 | Option | - | 否 | {label: 'label' ,value:'value'} |
671
+ | reserveSelection | 是否打开翻页多选 需要是多选才有效 | boolean | - | 否 | false |
672
+ | tableHeight | 表格高度 | string | number | 否 | 200 |
673
+ | isAffirmBtn | 是否有确认按钮 当使用此按钮时 selected事件无效 需使用selectMultiple事件 | boolean | - | 否 | false |
674
+ | scrollbarAlwaysOn | 是否常态显示滚动条 | boolean | - | 否 | false |
675
+ | allowCreate | 是否能够创建条目 | boolean | - | 否 | false |
676
+ | popupWidth | 弹窗的宽度 | string,number | - | 否 | 500 |
677
+ | border | 表格边框 | boolean | - | 否 | false |
678
+ | keywords | 定义默认的 label 和value | { label: string, value: string } | - | 否 | { label: label, value: value } |
679
+ | rowStyle | 行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style | Record<string, any> \| ((data: { row: any, rowIndex: number }) => Record<string, any>); | - | 否 | {} |
680
+ | keywords | 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style | Record<string, any> \| ((data: { row: any, column: any, rowIndex: number, columnIndex: number }) => Record<string, any>) | - | 否 | {} |
691
681
 
692
682
  #### Options(选项接口)
693
683
 
@@ -3300,9 +3290,9 @@ const formInline = useFormInline<{
3300
3290
  </template>
3301
3291
 
3302
3292
  <script setup lang="ts">
3303
- import { ref, watch } from 'vue'
3293
+ import { ref } from 'vue'
3304
3294
 
3305
- const test = ref<number>(0)
3295
+ const test = ref<number | null>(null)
3306
3296
  const numberInput = (val: number) => {
3307
3297
  console.log('m1', val)
3308
3298
  console.log('m2', test.value)
@@ -3311,12 +3301,6 @@ const numberChange = (val: number) => {
3311
3301
  console.log('m3', val)
3312
3302
  console.log('m4', test.value)
3313
3303
  }
3314
- watch(
3315
- () => test.value,
3316
- () => {
3317
- console.log('m5', test.value)
3318
- }
3319
- )
3320
3304
 
3321
3305
  const test2 = ref<number>(0)
3322
3306
  const numberInput2 = (val: number) => {
@@ -3327,12 +3311,6 @@ const numberChange2 = (val: number) => {
3327
3311
  console.log('e3', val)
3328
3312
  console.log('e4', test2.value)
3329
3313
  }
3330
- watch(
3331
- () => test2.value,
3332
- () => {
3333
- console.log('e5', test2.value)
3334
- }
3335
- )
3336
3314
  </script>
3337
3315
 
3338
3316
  <style scoped>
@@ -3482,30 +3460,32 @@ import DemoTest7 from 'packages/MSelectTable/docs/DemoTest7.vue'
3482
3460
 
3483
3461
  ### 2) Attributes
3484
3462
 
3485
- | 参数 | 说明 | 类型 | 可选 | 是否必填 | 默认值 |
3486
- |-------------------|----------------------------------------------------------|-------------------------------------|---------------------------|:----:|---------------------------------|
3487
- | value / v-model | 绑定值 | number,string, Array<number,string> | - | 否 | '' |
3488
- | name | 显示值,有值时覆盖所有显示逻辑,直接显示name | number,string, Array<number,string> | - | 否 | '' |
3489
- | placeholder | 占位符 | string | - | 否 | 请选择 |
3490
- | disabled | 是否禁用 | boolean | - | 否 | false |
3491
- | size | 大小 | enum | large \| default \| small | 否 | default |
3492
- | options | 下拉表的 表内数据,详情见Option接口 | Option[] | - | 否 | [] |
3493
- | total | 总数量 当有值时,出现分页器 | number | null | 否 | null |
3494
- | filterMethod | 自定义搜索方法 (使用时必须传递filterable) | Function | null | 否 | null |
3495
- | filterable | 是否开启筛选 (如果开启但没有传递自定义搜索方法 效果为筛选当前页数据的 keywords[label]) | boolean | - | 否 | false |
3496
- | remote | 是否使用远程搜索 | boolean | - | 否 | false |
3497
- | remoteMethod | 自定义远程搜索方法 (使用时必须传递filterable和remote) | Function | - | 否 | {} |
3498
- | tableTitle | 下拉表的 表头定义,详情见TableTitle接口 | TableTitle[] | - | 否 | [] |
3499
- | multiple | 是否开启多选 | boolean | - | 否 | false |
3500
- | keywords | 关键字配置(value-key 配置)映射关键字 | Option | - | 否 | {label: 'label' ,value:'value'} |
3501
- | reserveSelection | 是否打开翻页多选 需要是多选才有效 | boolean | - | 否 | false |
3502
- | tableHeight | 表格高度 | string | number | 否 | 200 |
3503
- | isAffirmBtn | 是否有确认按钮 当使用此按钮时 selected事件无效 需使用selectMultiple事件 | boolean | - | 否 | false |
3504
- | scrollbarAlwaysOn | 是否常态显示滚动条 | boolean | - | 否 | false |
3505
- | allowCreate | 是否能够创建条目 | boolean | - | 否 | false |
3506
- | popupWidth | 弹窗的宽度 | string,number | - | 否 | 500 |
3507
- | border | 表格边框 | boolean | - | 否 | false |
3508
- | keywords | 定义默认的 label 和value | { label: string, value: string } | - | 否 | { label: label, value: value } |
3463
+ | 参数 | 说明 | 类型 | 可选 | 是否必填 | 默认值 |
3464
+ |-------------------|----------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|---------------------------|:----:|---------------------------------|
3465
+ | value / v-model | 绑定值 | number,string, Array<number,string> | - | 否 | '' |
3466
+ | name | 显示值,有值时覆盖所有显示逻辑,直接显示name | number,string, Array<number,string> | - | 否 | '' |
3467
+ | placeholder | 占位符 | string | - | 否 | 请选择 |
3468
+ | disabled | 是否禁用 | boolean | - | 否 | false |
3469
+ | size | 大小 | enum | large \| default \| small | 否 | default |
3470
+ | options | 下拉表的 表内数据,详情见Option接口 | Option[] | - | 否 | [] |
3471
+ | total | 总数量 当有值时,出现分页器 | number | null | 否 | null |
3472
+ | filterMethod | 自定义搜索方法 (使用时必须传递filterable) | Function | null | 否 | null |
3473
+ | filterable | 是否开启筛选 (如果开启但没有传递自定义搜索方法 效果为筛选当前页数据的 keywords[label]) | boolean | - | 否 | false |
3474
+ | remote | 是否使用远程搜索 | boolean | - | 否 | false |
3475
+ | remoteMethod | 自定义远程搜索方法 (使用时必须传递filterable和remote) | Function | - | 否 | {} |
3476
+ | tableTitle | 下拉表的 表头定义,详情见TableTitle接口 | TableTitle[] | - | 否 | [] |
3477
+ | multiple | 是否开启多选 | boolean | - | 否 | false |
3478
+ | keywords | 关键字配置(value-key 配置)映射关键字 | Option | - | 否 | {label: 'label' ,value:'value'} |
3479
+ | reserveSelection | 是否打开翻页多选 需要是多选才有效 | boolean | - | 否 | false |
3480
+ | tableHeight | 表格高度 | string | number | 否 | 200 |
3481
+ | isAffirmBtn | 是否有确认按钮 当使用此按钮时 selected事件无效 需使用selectMultiple事件 | boolean | - | 否 | false |
3482
+ | scrollbarAlwaysOn | 是否常态显示滚动条 | boolean | - | 否 | false |
3483
+ | allowCreate | 是否能够创建条目 | boolean | - | 否 | false |
3484
+ | popupWidth | 弹窗的宽度 | string,number | - | 否 | 500 |
3485
+ | border | 表格边框 | boolean | - | 否 | false |
3486
+ | keywords | 定义默认的 label 和value | { label: string, value: string } | - | 否 | { label: label, value: value } |
3487
+ | rowStyle | 行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style | Record<string, any> \| ((data: { row: any, rowIndex: number }) => Record<string, any>); | - | 否 | {} |
3488
+ | keywords | 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style | Record<string, any> \| ((data: { row: any, column: any, rowIndex: number, columnIndex: number }) => Record<string, any>) | - | 否 | {} |
3509
3489
 
3510
3490
  #### Options(选项接口)
3511
3491
 
package/attributes.json CHANGED
@@ -1 +1 @@
1
- {"m-dialog/modelValue":{"type":"boolean","description":""},"m-dialog/width":{"type":"string | number","description":"对话框的宽度,默认值为 50%"},"m-dialog/insideHeight":{"type":"number | null","description":"对话框内部空间的高度,默认为null"},"m-dialog/minInsideHeight":{"type":"number","description":"对话框内部空间的最小高度,默认为0(当同时存在maxHeight和minInsideHeight时,以maxHeight为准)"},"m-dialog/maxInsideHeight":{"type":"number","description":"对话框内部空间的最大高度,默认为Infinity"},"m-dialog/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-dialog/draggable":{"type":"boolean","description":"是否可拖动"},"m-dialog/insideClassName":{"type":"string","description":"对话框内部空间的className"},"m-dialog/drawerMode":{"type":"boolean","description":"抽屉模式"},"m-dialog/resized":{"type":"[contentsSize: { width: number, height: number }]","description":"窗口大小改变完成事件"},"m-dialog/update:insideHeight":{"type":"[number]","description":"更新内部容器高度"},"m-dialog/update:modelValue":{"type":"[boolean]","description":""},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","description":"组件尺寸"},"m-inline/configKey":{"type":"string","description":"配置key"},"m-inline/model":{"type":"Record<string, any> | null","description":"筛选对象"},"m-inline/switch":{"type":"[status: boolean]","description":"切换折叠展开事件"},"m-input-number/modelValue":{"type":"string | number","description":""},"m-input-number/placeholder":{"type":"string","description":""},"m-input-number/disabled":{"type":"boolean","description":"是否禁用数值输入框"},"m-input-number/size":{"type":"string","description":"数值输入框尺寸"},"m-input-number/min":{"type":"number","description":"设置数值输入框允许的最小值"},"m-input-number/max":{"type":"number","description":"设置数值输入框允许的最大值"},"m-input-number/step":{"type":"number","description":"数值输入框步长"},"m-input-number/stepStrictly":{"type":"boolean","description":"是否只能输入 step 的倍数"},"m-input-number/thousandthPlace":{"type":"boolean","description":"输入框是否显示千分位"},"m-input-number/noBorder":{"type":"boolean","description":"是否不要边框"},"m-input-number/noSpacing":{"type":"boolean","description":"不要边距"},"m-input-number/update:modelValue":{"type":"any","description":""},"m-input-number/change":{"type":"any","description":""},"m-input-number/focus":{"type":"any","description":""},"m-input-number/blur":{"type":"any","description":""},"m-select/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select/multiple":{"type":"boolean","description":"多选"},"m-select/modelValue":{"type":"any","description":"选中项绑定值"},"m-select/update:modelValue":{"type":"[value: number | string | boolean | Array<number | string | boolean>]","description":""},"m-select/change":{"type":"[value: any]","description":""},"m-select-table/modelValue":{"type":"string | number | Array<number | string>","description":""},"m-select-table/name":{"type":"string | number | Array<number | string>","description":"显示值"},"m-select-table/placeholder":{"type":"string","description":""},"m-select-table/disabled":{"type":"boolean","description":""},"m-select-table/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table/total":{"type":"number | null","description":"总数据量,当有值时,出现分页器"},"m-select-table/filterMethod":{"type":"Function | null","description":"自定义搜索"},"m-select-table/filterable":{"type":"boolean","description":"是否使用搜索"},"m-select-table/remote":{"type":"boolean","description":"是否使用 远程搜索"},"m-select-table/remoteMethod":{"type":"Function","description":"自定义远程搜索"},"m-select-table/options":{"type":"Option[]","description":""},"m-select-table/tableTitle":{"type":"TableTitle[]","description":""},"m-select-table/multiple":{"type":"boolean","description":"是否多选"},"m-select-table/keywords":{"type":"{ label: string, value: string }","description":"定义默认的 label 和value"},"m-select-table/reserveSelection":{"type":"boolean","description":"是否开启翻页多选"},"m-select-table/tableHeight":{"type":"string | number","description":""},"m-select-table/isAffirmBtn":{"type":"boolean","description":"是否有确认按钮"},"m-select-table/scrollbarAlwaysOn":{"type":"boolean","description":"是否常态显示滚动条"},"m-select-table/allowCreate":{"type":"boolean","description":"是否能够创建条目"},"m-select-table/border":{"type":"boolean","description":"表格边框"},"m-select-table/popupWidth":{"type":"number | string","description":"弹窗的宽度"},"m-select-table/update:modelValue":{"type":"[value: string | number | boolean | Array<string | number | boolean>]","description":""},"m-select-table/selected":{"type":"[values: string | number | boolean | Array<string | number | boolean>, rows: Option[] | Option]","description":"单选或多选之后的回调"},"m-select-table/selectMultiple":{"type":"[values: Array<string | number>, rows: Option[]]","description":"多选确认按钮时的回调 配合isAffirmBtn使用"},"m-select-table/toPage":{"type":"[page: Page, query?: string | number | Array<string | number>]","description":"当没有使用filterMethod时候才会有回调否则没有"},"m-select-table/selectChange":{"type":"[values: string | number | Array<string | number>]","description":"勾选数据change事件,选中值不发生变化"},"m-select-table/clear":{"type":"[]","description":"用户点击清空按钮时触发"},"m-select-table/removeTag":{"type":"[value: any, index: number]","description":"多选模式下移除tag时触发(标记,待处理)"},"m-select-table-v1/modelValue":{"type":"string | number","description":""},"m-select-table-v1/placeholder":{"type":"string","description":""},"m-select-table-v1/disabled":{"type":"boolean","description":""},"m-select-table-v1/options":{"type":"Option[]","description":""},"m-select-table-v1/tableTitle":{"type":"any[]","description":""},"m-select-table-v1/remoteMethod":{"type":"Function","description":""},"m-select-table-v1/allowCreate":{"type":"boolean","description":""},"m-select-table-v1/focusShow":{"type":"boolean","description":""},"m-select-table-v1/isSelect":{"type":"boolean","description":""},"m-select-table-v1/clearable":{"type":"boolean","description":""},"m-select-table-v1/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table-v1/labelKey":{"type":"string","description":""},"m-select-table-v1/scrollbarAlwaysOn":{"type":"boolean","description":""},"m-select-table-v1/total":{"type":"number | null","description":""},"m-select-table-v1/update:modelValue":{"type":"any","description":""},"m-select-table-v1/selectMultiple":{"type":"any","description":""},"m-select-table-v1/change":{"type":"any","description":""},"m-select-table-v1/selected":{"type":"any","description":""},"m-select-table-v1/clear":{"type":"any","description":""},"m-select-v2/modelValue":{"type":"ValueType","description":""},"m-select-v2/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select-v2/multiple":{"type":"boolean","description":"多选"},"m-select-v2/showAll":{"type":"boolean","description":"是否显示全选"},"m-select-v2/options":{"type":"Option[]","description":"选项"},"m-select-v2/update:modelValue":{"type":"[data: ValueType]","description":""},"m-batch-edit/selectionCell":{"type":"string","description":"选中列"},"m-batch-edit/size":{"type":"'small' | 'large' | ''","description":"组件大小"},"m-batch-edit/tableData":{"type":"Record<string, any>[]","description":"表格数据"},"m-batch-edit/tableTitle":{"type":"TableTitle[] | null","description":"表格列配置"},"m-batch-edit/relevancyTable":{"type":"InstanceType<typeof import('./../../MTable').MTable> | null","description":"关联表格(与tableTitle属性互斥,同时存在时只有tableTitle生效)"},"m-batch-edit/update:tableData":{"type":"[data: Record<string, any>[]]","description":""},"m-table/size":{"type":"'small' | 'large' | ''","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Record<string, any>[]","description":""},"m-table/filtersValue":{"type":"Record<string, Array<string | number>> | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table/expandProp":{"type":"string","description":"展开图标列(如使用这个属性则必须存在rowKey属性) (标记,约束条件后面解决)"},"m-table/expandRowKeys":{"type":"any[]","description":"可以通过该属性设置 Table 目前的展开行,需要设置 row-key 属性才能使用,该属性为展开行的 keys 数组。"},"m-table/rowKey":{"type":"string |((row: any) => string)","description":"行数据的 Key,用来优化 Table 的渲染; 在使用reserve-selection功能与显示树形数据时,该属性是必填的。 类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使用 Function。"},"m-table/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table/selectionCell":{"type":"string | number | symbol","description":"选中列"},"m-table/summaryMethod":{"type":"((data: { columns: any[], data: any[] }) => string[]) | null","description":"自定义的合计计算方法"},"m-table/circleTotal":{"type":"boolean","description":"是否圈选合计"},"m-table/isCircleCopy":{"type":"boolean","description":"是否启用圈选复制"},"m-table/isBuiltInSelection":{"type":"boolean","description":"启用内置多选(如同时启用了circleTotal,rowKey可实现勾选合计功能)"},"m-table/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: Record<string, any>,\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<Record<string, any>>\n ]","description":"表格粘贴方法"},"m-table/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"m-table/privateExpandChange":{"type":"[row: any, expandedRows: any[]]","description":"expandProp模式下 当用户对某一行展开或者关闭的时候会触发该事件"},"m-table/update:selectionCell":{"type":"[ string | number | symbol ]","description":"选中单元格更新"},"m-table/copyData":{"type":"[ data: { text: string, selection: { startX: number, startY: number, endX: number, endY: number } } ]","description":"复制事件"},"m-table/sortChange":{"type":"[ data: { column: Record<string, any>, prop: string, order: any } ]","description":"当表格的排序条件发生变化的时候会触发该事件"},"m-table-column/filtersValue":{"type":"Record<string, Array<string | number>> | null","description":"列筛选过滤条件(当为null时,不显示筛选图标)"},"m-table-column/filters":{"type":"Array<{ text: string | number, value: string | number }>","description":"过滤选项"},"m-table-column/filterMethod":{"type":"Function | null","description":"过滤方法"},"m-table-column/children":{"type":"Array<PropChildren>","description":""},"m-table-column/isBatchEdit":{"type":"boolean","description":"是否允许批改"},"m-table-column/update:filtersValue":{"type":"any","description":""},"m-table-column-set/modelValue":{"type":"TableConfig","description":"配置"},"m-table-column-set/foldMode":{"type":"boolean","description":"是否为折叠模式"},"m-table-column-set/link":{"type":"boolean","description":"是否为链接按钮"},"m-table-column-set/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-column-set/update:modelValue":{"type":"any","description":""},"m-table-column-set/change":{"type":"any","description":""},"m-table-v2/size":{"type":"'small' | 'large' | 'default'","description":""},"m-table-v2/data":{"type":"Array<{\n [key: string]: any\n }>","description":""},"m-table-v2/height":{"type":"number","description":"表格高度"},"m-table-v2/border":{"type":"boolean","description":"显示边框"},"m-table-v2/columns":{"type":"TableV2Title[]","description":"表格列配置"},"m-table-v2/filtersValue":{"type":"FilterValue | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table-v2/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table-v2/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-v2/fixed":{"type":"boolean","description":"单元格宽度是自适应还是固定"},"m-table-v2/estimatedRowHeight":{"type":"number | null","description":"渲染动态的单元格的预估高度"},"m-table-v2/headerHeight":{"type":"number | number[] | null","description":"Header 的高度由height设置。 如果传入数组,它会使 header row 等于数组长度"},"m-table-v2/cellWidthAdaptive":{"type":"boolean","description":"单元格宽度自适应"},"m-table-v2/expandColumnKey":{"type":"string","description":"展开列的key"},"m-table-v2/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any }>\n ]","description":""},"m-table-v2/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"m-tree-exhibit/data":{"type":"TreeItem[]","description":""},"m-tree-exhibit/nodeClick":{"type":"[Node]","description":"节点点击事件"},"m-tree-exhibit/descriptionClick":{"type":"[url: string]","description":"描述链接点击事件"},"skin-config/change":{"type":"any","description":""},"tab-page/modelValue":{"type":"MenuItem[]","description":""},"tab-page/activeKey":{"type":"string","description":""},"tab-page/showRightClickMenu":{"type":"boolean","description":""},"tab-page/primaryColor":{"type":"string","description":""},"tab-page/primaryBackgroundColor":{"type":"string | null","description":""},"tab-page/close":{"type":"any","description":""},"tab-page/click":{"type":"any","description":""}}
1
+ {"m-dialog/modelValue":{"type":"boolean","description":""},"m-dialog/width":{"type":"string | number","description":"对话框的宽度,默认值为 50%"},"m-dialog/insideHeight":{"type":"number | null","description":"对话框内部空间的高度,默认为null"},"m-dialog/minInsideHeight":{"type":"number","description":"对话框内部空间的最小高度,默认为0(当同时存在maxHeight和minInsideHeight时,以maxHeight为准)"},"m-dialog/maxInsideHeight":{"type":"number","description":"对话框内部空间的最大高度,默认为Infinity"},"m-dialog/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-dialog/draggable":{"type":"boolean","description":"是否可拖动"},"m-dialog/insideClassName":{"type":"string","description":"对话框内部空间的className"},"m-dialog/drawerMode":{"type":"boolean","description":"抽屉模式"},"m-dialog/resized":{"type":"[contentsSize: { width: number, height: number }]","description":"窗口大小改变完成事件"},"m-dialog/update:insideHeight":{"type":"[number]","description":"更新内部容器高度"},"m-dialog/update:modelValue":{"type":"[boolean]","description":""},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","description":"组件尺寸"},"m-inline/configKey":{"type":"string","description":"配置key"},"m-inline/model":{"type":"Record<string, any> | null","description":"筛选对象"},"m-inline/switch":{"type":"[status: boolean]","description":"切换折叠展开事件"},"m-input-number/modelValue":{"type":"string | number","description":""},"m-input-number/placeholder":{"type":"string","description":""},"m-input-number/disabled":{"type":"boolean","description":"是否禁用数值输入框"},"m-input-number/size":{"type":"string","description":"数值输入框尺寸"},"m-input-number/min":{"type":"number","description":"设置数值输入框允许的最小值"},"m-input-number/max":{"type":"number","description":"设置数值输入框允许的最大值"},"m-input-number/step":{"type":"number","description":"数值输入框步长"},"m-input-number/stepStrictly":{"type":"boolean","description":"是否只能输入 step 的倍数"},"m-input-number/thousandthPlace":{"type":"boolean","description":"输入框是否显示千分位"},"m-input-number/noBorder":{"type":"boolean","description":"是否不要边框"},"m-input-number/noSpacing":{"type":"boolean","description":"不要边距"},"m-input-number/update:modelValue":{"type":"[value: string | number | null]","description":""},"m-input-number/change":{"type":"[value?: number]","description":""},"m-input-number/focus":{"type":"[value: string | number | null]","description":""},"m-input-number/blur":{"type":"[value: string | number | null]","description":""},"m-input-number/input":{"type":"[value: string | number | null]","description":""},"m-select/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select/multiple":{"type":"boolean","description":"多选"},"m-select/modelValue":{"type":"any","description":"选中项绑定值"},"m-select/update:modelValue":{"type":"[value: number | string | boolean | Array<number | string | boolean>]","description":""},"m-select/change":{"type":"[value: any]","description":""},"m-select-table/modelValue":{"type":"string | number | Array<number | string>","description":""},"m-select-table/name":{"type":"string | number | Array<number | string>","description":"显示值"},"m-select-table/placeholder":{"type":"string","description":""},"m-select-table/disabled":{"type":"boolean","description":""},"m-select-table/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table/total":{"type":"number | null","description":"总数据量,当有值时,出现分页器"},"m-select-table/filterMethod":{"type":"Function | null","description":"自定义搜索"},"m-select-table/filterable":{"type":"boolean","description":"是否使用搜索"},"m-select-table/remote":{"type":"boolean","description":"是否使用 远程搜索"},"m-select-table/remoteMethod":{"type":"Function","description":"自定义远程搜索"},"m-select-table/options":{"type":"Option[]","description":""},"m-select-table/tableTitle":{"type":"TableTitle[]","description":""},"m-select-table/multiple":{"type":"boolean","description":"是否多选"},"m-select-table/keywords":{"type":"{ label: string, value: string }","description":"定义默认的 label 和value"},"m-select-table/reserveSelection":{"type":"boolean","description":"是否开启翻页多选"},"m-select-table/tableHeight":{"type":"string | number","description":""},"m-select-table/isAffirmBtn":{"type":"boolean","description":"是否有确认按钮"},"m-select-table/scrollbarAlwaysOn":{"type":"boolean","description":"是否常态显示滚动条"},"m-select-table/allowCreate":{"type":"boolean","description":"是否能够创建条目"},"m-select-table/border":{"type":"boolean","description":"表格边框"},"m-select-table/popupWidth":{"type":"number | string","description":"弹窗的宽度"},"m-select-table/rowStyle":{"type":"Record<string, any>|((data: { row: any, rowIndex: number }) => Record<string, any>)","description":"行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style"},"m-select-table/cellStyle":{"type":"Record<string, any>|((data: { row: any, column: any, rowIndex: number, columnIndex: number }) => Record<string, any>)","description":"单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style"},"m-select-table/update:modelValue":{"type":"[value: string | number | boolean | Array<string | number | boolean>]","description":""},"m-select-table/selected":{"type":"[values: string | number | boolean | Array<string | number | boolean>, rows: Option[] | Option]","description":"单选或多选之后的回调"},"m-select-table/selectMultiple":{"type":"[values: Array<string | number>, rows: Option[]]","description":"多选确认按钮时的回调 配合isAffirmBtn使用"},"m-select-table/toPage":{"type":"[page: Page, query?: string | number | Array<string | number>]","description":"当没有使用filterMethod时候才会有回调否则没有"},"m-select-table/selectChange":{"type":"[values: string | number | Array<string | number>]","description":"勾选数据change事件,选中值不发生变化"},"m-select-table/clear":{"type":"[]","description":"用户点击清空按钮时触发"},"m-select-table/removeTag":{"type":"[value: any, index: number]","description":"多选模式下移除tag时触发(标记,待处理)"},"m-select-table-v1/modelValue":{"type":"string | number","description":""},"m-select-table-v1/placeholder":{"type":"string","description":""},"m-select-table-v1/disabled":{"type":"boolean","description":""},"m-select-table-v1/options":{"type":"Option[]","description":""},"m-select-table-v1/tableTitle":{"type":"any[]","description":""},"m-select-table-v1/remoteMethod":{"type":"Function","description":""},"m-select-table-v1/allowCreate":{"type":"boolean","description":""},"m-select-table-v1/focusShow":{"type":"boolean","description":""},"m-select-table-v1/isSelect":{"type":"boolean","description":""},"m-select-table-v1/clearable":{"type":"boolean","description":""},"m-select-table-v1/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table-v1/labelKey":{"type":"string","description":""},"m-select-table-v1/scrollbarAlwaysOn":{"type":"boolean","description":""},"m-select-table-v1/total":{"type":"number | null","description":""},"m-select-table-v1/update:modelValue":{"type":"any","description":""},"m-select-table-v1/selectMultiple":{"type":"any","description":""},"m-select-table-v1/change":{"type":"any","description":""},"m-select-table-v1/selected":{"type":"any","description":""},"m-select-table-v1/clear":{"type":"any","description":""},"m-select-v2/modelValue":{"type":"ValueType","description":""},"m-select-v2/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select-v2/multiple":{"type":"boolean","description":"多选"},"m-select-v2/showAll":{"type":"boolean","description":"是否显示全选"},"m-select-v2/options":{"type":"Option[]","description":"选项"},"m-select-v2/update:modelValue":{"type":"[data: ValueType]","description":""},"m-batch-edit/selectionCell":{"type":"string","description":"选中列"},"m-batch-edit/size":{"type":"'small' | 'large' | ''","description":"组件大小"},"m-batch-edit/tableData":{"type":"Record<string, any>[]","description":"表格数据"},"m-batch-edit/tableTitle":{"type":"TableTitle[] | null","description":"表格列配置"},"m-batch-edit/relevancyTable":{"type":"InstanceType<typeof import('./../../MTable').MTable> | null","description":"关联表格(与tableTitle属性互斥,同时存在时只有tableTitle生效)"},"m-batch-edit/update:tableData":{"type":"[data: Record<string, any>[]]","description":""},"m-table/size":{"type":"'small' | 'large' | ''","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Record<string, any>[]","description":""},"m-table/filtersValue":{"type":"Record<string, Array<string | number>> | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table/expandProp":{"type":"string","description":"展开图标列(如使用这个属性则必须存在rowKey属性) (标记,约束条件后面解决)"},"m-table/expandRowKeys":{"type":"any[]","description":"可以通过该属性设置 Table 目前的展开行,需要设置 row-key 属性才能使用,该属性为展开行的 keys 数组。"},"m-table/rowKey":{"type":"string |((row: any) => string)","description":"行数据的 Key,用来优化 Table 的渲染; 在使用reserve-selection功能与显示树形数据时,该属性是必填的。 类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使用 Function。"},"m-table/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table/selectionCell":{"type":"string | number | symbol","description":"选中列"},"m-table/summaryMethod":{"type":"((data: { columns: any[], data: any[] }) => string[]) | null","description":"自定义的合计计算方法"},"m-table/circleTotal":{"type":"boolean","description":"是否圈选合计"},"m-table/isCircleCopy":{"type":"boolean","description":"是否启用圈选复制"},"m-table/isBuiltInSelection":{"type":"boolean","description":"启用内置多选(如同时启用了circleTotal,rowKey可实现勾选合计功能)"},"m-table/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: Record<string, any>,\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<Record<string, any>>\n ]","description":"表格粘贴方法"},"m-table/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"m-table/privateExpandChange":{"type":"[row: any, expandedRows: any[]]","description":"expandProp模式下 当用户对某一行展开或者关闭的时候会触发该事件"},"m-table/update:selectionCell":{"type":"[ string | number | symbol ]","description":"选中单元格更新"},"m-table/copyData":{"type":"[ data: { text: string, selection: { startX: number, startY: number, endX: number, endY: number } } ]","description":"复制事件"},"m-table/sortChange":{"type":"[ data: { column: Record<string, any>, prop: string, order: any } ]","description":"当表格的排序条件发生变化的时候会触发该事件"},"m-table-column/filtersValue":{"type":"Record<string, Array<string | number>> | null","description":"列筛选过滤条件(当为null时,不显示筛选图标)"},"m-table-column/filters":{"type":"Array<{ text: string | number, value: string | number }>","description":"过滤选项"},"m-table-column/filterMethod":{"type":"Function | null","description":"过滤方法"},"m-table-column/children":{"type":"Array<PropChildren>","description":""},"m-table-column/isBatchEdit":{"type":"boolean","description":"是否允许批改"},"m-table-column/update:filtersValue":{"type":"any","description":""},"m-table-column-set/modelValue":{"type":"TableConfig","description":"配置"},"m-table-column-set/foldMode":{"type":"boolean","description":"是否为折叠模式"},"m-table-column-set/link":{"type":"boolean","description":"是否为链接按钮"},"m-table-column-set/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-column-set/update:modelValue":{"type":"any","description":""},"m-table-column-set/change":{"type":"any","description":""},"m-table-v2/size":{"type":"'small' | 'large' | 'default'","description":""},"m-table-v2/data":{"type":"Array<{\n [key: string]: any\n }>","description":""},"m-table-v2/height":{"type":"number","description":"表格高度"},"m-table-v2/border":{"type":"boolean","description":"显示边框"},"m-table-v2/columns":{"type":"TableV2Title[]","description":"表格列配置"},"m-table-v2/filtersValue":{"type":"FilterValue | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table-v2/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table-v2/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-v2/fixed":{"type":"boolean","description":"单元格宽度是自适应还是固定"},"m-table-v2/estimatedRowHeight":{"type":"number | null","description":"渲染动态的单元格的预估高度"},"m-table-v2/headerHeight":{"type":"number | number[] | null","description":"Header 的高度由height设置。 如果传入数组,它会使 header row 等于数组长度"},"m-table-v2/cellWidthAdaptive":{"type":"boolean","description":"单元格宽度自适应"},"m-table-v2/expandColumnKey":{"type":"string","description":"展开列的key"},"m-table-v2/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any }>\n ]","description":""},"m-table-v2/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"m-tree-exhibit/data":{"type":"TreeItem[]","description":""},"m-tree-exhibit/nodeClick":{"type":"[Node]","description":"节点点击事件"},"m-tree-exhibit/descriptionClick":{"type":"[url: string]","description":"描述链接点击事件"},"skin-config/change":{"type":"any","description":""},"tab-page/modelValue":{"type":"MenuItem[]","description":""},"tab-page/activeKey":{"type":"string","description":""},"tab-page/showRightClickMenu":{"type":"boolean","description":""},"tab-page/primaryColor":{"type":"string","description":""},"tab-page/primaryBackgroundColor":{"type":"string | null","description":""},"tab-page/close":{"type":"any","description":""},"tab-page/click":{"type":"any","description":""}}
@@ -1577,10 +1577,11 @@ export declare const MInputNumber: DefineComponent<__VLS_WithDefaults_2<__VLS_Ty
1577
1577
  /** 不要边距 */
1578
1578
  noSpacing: boolean;
1579
1579
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1580
- "update:modelValue": (...args: any[]) => void;
1581
- change: (...args: any[]) => void;
1582
- focus: (...args: any[]) => void;
1583
- blur: (...args: any[]) => void;
1580
+ input: (value: string | number | null) => void;
1581
+ "update:modelValue": (value: string | number | null) => void;
1582
+ change: (value?: number | undefined) => void;
1583
+ focus: (value: string | number | null) => void;
1584
+ blur: (value: string | number | null) => void;
1584
1585
  }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<{
1585
1586
  modelValue: string | number;
1586
1587
  placeholder?: string | undefined;
@@ -1624,10 +1625,11 @@ export declare const MInputNumber: DefineComponent<__VLS_WithDefaults_2<__VLS_Ty
1624
1625
  /** 不要边距 */
1625
1626
  noSpacing: boolean;
1626
1627
  }>>> & {
1627
- onFocus?: ((...args: any[]) => any) | undefined;
1628
- onBlur?: ((...args: any[]) => any) | undefined;
1629
- onChange?: ((...args: any[]) => any) | undefined;
1630
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1628
+ onFocus?: ((value: string | number | null) => any) | undefined;
1629
+ onBlur?: ((value: string | number | null) => any) | undefined;
1630
+ onChange?: ((value?: number | undefined) => any) | undefined;
1631
+ onInput?: ((value: string | number | null) => any) | undefined;
1632
+ "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
1631
1633
  }, {
1632
1634
  size: string;
1633
1635
  modelValue: string | number;
@@ -1737,6 +1739,18 @@ export declare const MSelectTable: __VLS_WithTemplateSlots_7<DefineComponent<__V
1737
1739
  border?: boolean | undefined;
1738
1740
  /** 弹窗的宽度 */
1739
1741
  popupWidth?: string | number | undefined;
1742
+ /** 行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style */
1743
+ rowStyle?: Record<string, any> | ((data: {
1744
+ row: any;
1745
+ rowIndex: number;
1746
+ }) => Record<string, any>) | undefined;
1747
+ /** 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style */
1748
+ cellStyle?: Record<string, any> | ((data: {
1749
+ row: any;
1750
+ column: any;
1751
+ rowIndex: number;
1752
+ columnIndex: number;
1753
+ }) => Record<string, any>) | undefined;
1740
1754
  }>, {
1741
1755
  modelValue: string;
1742
1756
  name: string;
@@ -1762,6 +1776,8 @@ export declare const MSelectTable: __VLS_WithTemplateSlots_7<DefineComponent<__V
1762
1776
  allowCreate: boolean;
1763
1777
  border: boolean;
1764
1778
  popupWidth: number;
1779
+ rowStyle: () => {};
1780
+ cellStyle: () => {};
1765
1781
  }>, {
1766
1782
  defaultBackFillValue: () => false | undefined;
1767
1783
  clear: () => void;
@@ -1815,6 +1831,18 @@ export declare const MSelectTable: __VLS_WithTemplateSlots_7<DefineComponent<__V
1815
1831
  border?: boolean | undefined;
1816
1832
  /** 弹窗的宽度 */
1817
1833
  popupWidth?: string | number | undefined;
1834
+ /** 行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style */
1835
+ rowStyle?: Record<string, any> | ((data: {
1836
+ row: any;
1837
+ rowIndex: number;
1838
+ }) => Record<string, any>) | undefined;
1839
+ /** 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style */
1840
+ cellStyle?: Record<string, any> | ((data: {
1841
+ row: any;
1842
+ column: any;
1843
+ rowIndex: number;
1844
+ columnIndex: number;
1845
+ }) => Record<string, any>) | undefined;
1818
1846
  }>, {
1819
1847
  modelValue: string;
1820
1848
  name: string;
@@ -1840,6 +1868,8 @@ export declare const MSelectTable: __VLS_WithTemplateSlots_7<DefineComponent<__V
1840
1868
  allowCreate: boolean;
1841
1869
  border: boolean;
1842
1870
  popupWidth: number;
1871
+ rowStyle: () => {};
1872
+ cellStyle: () => {};
1843
1873
  }>>> & {
1844
1874
  "onUpdate:modelValue"?: ((value: string | number | boolean | (string | number | boolean)[]) => any) | undefined;
1845
1875
  onClear?: (() => any) | undefined;
@@ -1859,6 +1889,12 @@ export declare const MSelectTable: __VLS_WithTemplateSlots_7<DefineComponent<__V
1859
1889
  filterMethod: Function | null;
1860
1890
  tableTitle: TableTitle<any>[];
1861
1891
  border: boolean;
1892
+ cellStyle: Record<string, any> | ((data: {
1893
+ row: any;
1894
+ column: any;
1895
+ rowIndex: number;
1896
+ columnIndex: number;
1897
+ }) => Record<string, any>);
1862
1898
  filterable: boolean;
1863
1899
  options: Option<string | number | boolean, string | number>[];
1864
1900
  remote: boolean;
@@ -1873,6 +1909,10 @@ export declare const MSelectTable: __VLS_WithTemplateSlots_7<DefineComponent<__V
1873
1909
  scrollbarAlwaysOn: boolean;
1874
1910
  allowCreate: boolean;
1875
1911
  popupWidth: string | number;
1912
+ rowStyle: Record<string, any> | ((data: {
1913
+ row: any;
1914
+ rowIndex: number;
1915
+ }) => Record<string, any>);
1876
1916
  }, {}>, {
1877
1917
  auxiliary?(_: {}): any;
1878
1918
  }>;