br-dionysus 1.6.4 → 1.6.6
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 +72 -40
- package/attributes.json +1 -1
- package/dist/br-dionysus.es.js +3353 -3343
- package/dist/br-dionysus.umd.js +8 -8
- package/dist/index.css +1 -1
- package/dist/packages/Hook/useTableConfig/useTableConfig.d.ts +1 -1
- package/dist/packages/MTable/src/MTable.vue.d.ts +6 -1
- package/dist/packages/MTable/src/token.d.ts +8 -0
- package/package.json +1 -1
- package/packages/Hook/useTableConfig/useTableConfig.ts +2 -2
- package/packages/MTable/docs/demo.vue +36 -20
- package/packages/MTable/src/MTable.vue +67 -48
- package/packages/MTable/src/token.ts +9 -0
- package/packages/MTableColumn/src/MTableColumn.vue +22 -1
- package/tags.json +1 -1
- package/web-types.json +1 -1
package/README.md
CHANGED
|
@@ -922,34 +922,37 @@ const options: Option[] = [{
|
|
|
922
922
|
|
|
923
923
|
<template>
|
|
924
924
|
<div class="g-box">
|
|
925
|
+
<p>{{ tableConfig }}</p>
|
|
925
926
|
<MTable
|
|
927
|
+
class="style.box"
|
|
926
928
|
:data="tableData"
|
|
927
|
-
|
|
928
|
-
|
|
929
|
+
border
|
|
930
|
+
@headerDragend="headerDragend"
|
|
931
|
+
:filtersValue="filtersValue"
|
|
932
|
+
scrollbarAlwaysOn
|
|
929
933
|
v-model:tableConfig="tableConfig"
|
|
930
934
|
>
|
|
931
|
-
<
|
|
932
|
-
|
|
933
|
-
|
|
935
|
+
<MTableColumn
|
|
936
|
+
v-for="item in tableTitle"
|
|
937
|
+
:key="item.prop"
|
|
938
|
+
:prop="item.prop"
|
|
939
|
+
:label="item.label"
|
|
940
|
+
:align="item.align"
|
|
941
|
+
:minWidth="item.minWidth"
|
|
942
|
+
:className="item.className"
|
|
943
|
+
:filters="item.filters"
|
|
944
|
+
:headerAlign="item.headerAlign"
|
|
945
|
+
:fixed="item.fixed"
|
|
946
|
+
v-model:filtersValue="filtersValue"
|
|
947
|
+
showOverflowTooltip
|
|
934
948
|
/>
|
|
935
|
-
<el-table-column
|
|
936
|
-
prop="address"
|
|
937
|
-
label="Address"
|
|
938
|
-
></el-table-column>
|
|
939
|
-
<el-table-column
|
|
940
|
-
prop="name"
|
|
941
|
-
label="name"
|
|
942
|
-
>
|
|
943
|
-
<template #default="scope">
|
|
944
|
-
<el-input v-model="scope.row.name"></el-input>
|
|
945
|
-
</template>
|
|
946
|
-
</el-table-column>
|
|
947
949
|
</MTable>
|
|
948
950
|
</div>
|
|
949
951
|
</template>
|
|
950
952
|
|
|
951
953
|
<script setup lang="ts">
|
|
952
954
|
import { ref } from 'vue'
|
|
955
|
+
import { useTableConfig } from 'packages/index'
|
|
953
956
|
|
|
954
957
|
interface User {
|
|
955
958
|
date: string;
|
|
@@ -958,9 +961,22 @@ interface User {
|
|
|
958
961
|
tag: string;
|
|
959
962
|
}
|
|
960
963
|
|
|
961
|
-
const
|
|
964
|
+
const tableData = ref<User[]>([])
|
|
965
|
+
const { tableTitle, headerDragend, tableConfig, filtersValue }= useTableConfig('MTableDemo', [{
|
|
966
|
+
label: 'Date',
|
|
967
|
+
prop: 'date',
|
|
968
|
+
minWidth: 200
|
|
969
|
+
}, {
|
|
970
|
+
label: 'Address',
|
|
971
|
+
prop: 'address',
|
|
972
|
+
minWidth: 200
|
|
973
|
+
}, {
|
|
974
|
+
label: 'name',
|
|
975
|
+
prop: 'name',
|
|
976
|
+
minWidth: 200
|
|
977
|
+
}], tableData)
|
|
962
978
|
|
|
963
|
-
|
|
979
|
+
tableData.value = [
|
|
964
980
|
{
|
|
965
981
|
date: '2016-05-03',
|
|
966
982
|
name: 'Tom',
|
|
@@ -985,7 +1001,7 @@ const tableData = ref(<User[]>[
|
|
|
985
1001
|
address: 'No. 189, Grove St, Los Angeles',
|
|
986
1002
|
tag: 'Office'
|
|
987
1003
|
}
|
|
988
|
-
]
|
|
1004
|
+
]
|
|
989
1005
|
|
|
990
1006
|
const pasteData = (obj: any, data: any) => {
|
|
991
1007
|
tableData.value = data
|
|
@@ -2996,34 +3012,37 @@ const options: Option[] = [{
|
|
|
2996
3012
|
|
|
2997
3013
|
<template>
|
|
2998
3014
|
<div class="g-box">
|
|
3015
|
+
<p>{{ tableConfig }}</p>
|
|
2999
3016
|
<MTable
|
|
3017
|
+
class="style.box"
|
|
3000
3018
|
:data="tableData"
|
|
3001
|
-
|
|
3002
|
-
|
|
3019
|
+
border
|
|
3020
|
+
@headerDragend="headerDragend"
|
|
3021
|
+
:filtersValue="filtersValue"
|
|
3022
|
+
scrollbarAlwaysOn
|
|
3003
3023
|
v-model:tableConfig="tableConfig"
|
|
3004
3024
|
>
|
|
3005
|
-
<
|
|
3006
|
-
|
|
3007
|
-
|
|
3025
|
+
<MTableColumn
|
|
3026
|
+
v-for="item in tableTitle"
|
|
3027
|
+
:key="item.prop"
|
|
3028
|
+
:prop="item.prop"
|
|
3029
|
+
:label="item.label"
|
|
3030
|
+
:align="item.align"
|
|
3031
|
+
:minWidth="item.minWidth"
|
|
3032
|
+
:className="item.className"
|
|
3033
|
+
:filters="item.filters"
|
|
3034
|
+
:headerAlign="item.headerAlign"
|
|
3035
|
+
:fixed="item.fixed"
|
|
3036
|
+
v-model:filtersValue="filtersValue"
|
|
3037
|
+
showOverflowTooltip
|
|
3008
3038
|
/>
|
|
3009
|
-
<el-table-column
|
|
3010
|
-
prop="address"
|
|
3011
|
-
label="Address"
|
|
3012
|
-
></el-table-column>
|
|
3013
|
-
<el-table-column
|
|
3014
|
-
prop="name"
|
|
3015
|
-
label="name"
|
|
3016
|
-
>
|
|
3017
|
-
<template #default="scope">
|
|
3018
|
-
<el-input v-model="scope.row.name"></el-input>
|
|
3019
|
-
</template>
|
|
3020
|
-
</el-table-column>
|
|
3021
3039
|
</MTable>
|
|
3022
3040
|
</div>
|
|
3023
3041
|
</template>
|
|
3024
3042
|
|
|
3025
3043
|
<script setup lang="ts">
|
|
3026
3044
|
import { ref } from 'vue'
|
|
3045
|
+
import { useTableConfig } from 'packages/index'
|
|
3027
3046
|
|
|
3028
3047
|
interface User {
|
|
3029
3048
|
date: string;
|
|
@@ -3032,9 +3051,22 @@ interface User {
|
|
|
3032
3051
|
tag: string;
|
|
3033
3052
|
}
|
|
3034
3053
|
|
|
3035
|
-
const
|
|
3054
|
+
const tableData = ref<User[]>([])
|
|
3055
|
+
const { tableTitle, headerDragend, tableConfig, filtersValue }= useTableConfig('MTableDemo', [{
|
|
3056
|
+
label: 'Date',
|
|
3057
|
+
prop: 'date',
|
|
3058
|
+
minWidth: 200
|
|
3059
|
+
}, {
|
|
3060
|
+
label: 'Address',
|
|
3061
|
+
prop: 'address',
|
|
3062
|
+
minWidth: 200
|
|
3063
|
+
}, {
|
|
3064
|
+
label: 'name',
|
|
3065
|
+
prop: 'name',
|
|
3066
|
+
minWidth: 200
|
|
3067
|
+
}], tableData)
|
|
3036
3068
|
|
|
3037
|
-
|
|
3069
|
+
tableData.value = [
|
|
3038
3070
|
{
|
|
3039
3071
|
date: '2016-05-03',
|
|
3040
3072
|
name: 'Tom',
|
|
@@ -3059,7 +3091,7 @@ const tableData = ref(<User[]>[
|
|
|
3059
3091
|
address: 'No. 189, Grove St, Los Angeles',
|
|
3060
3092
|
tag: 'Office'
|
|
3061
3093
|
}
|
|
3062
|
-
]
|
|
3094
|
+
]
|
|
3063
3095
|
|
|
3064
3096
|
const pasteData = (obj: any, data: any) => {
|
|
3065
3097
|
tableData.value = data
|
package/attributes.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"m-dialog/modelValue":{"type":"boolean","description":""},"m-dialog/width":{"type":"string | number","description":"对话框的宽度,默认值为 50%"},"m-dialog/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-dialog/draggable":{"type":"boolean","description":"是否可拖动"},"m-dialog/resized":{"type":"[contentsSize: { width: number, height: number }]","description":"窗口大小改变完成事件"},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","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-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":"Option","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/selected":{"type":"[values: string | number | Array<string | number>, 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]","description":"当没有使用filterMethod时候才会有回调否则没有"},"m-select-table/update:modelValue":{"type":"[value: string | number | Array<string | number>]","description":""},"m-select-table/clear":{"type":"[]","description":"用户点击清空按钮时触发"},"m-select-table/removeTag":{"type":"[tag: any]","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/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: any]","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Array<{\n [key: string]: string | number\n }>","description":""},"m-table/filtersValue":{"type":"FilterValue","description":""},"m-table/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table/pasteData":{"type":"[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/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":""},"m-table-column/filtersValue":{"type":"FilterValue","description":"过滤值"},"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/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/update:modelValue":{"type":"any","description":""},"m-table-column-set/change":{"type":"any","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/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-dialog/draggable":{"type":"boolean","description":"是否可拖动"},"m-dialog/resized":{"type":"[contentsSize: { width: number, height: number }]","description":"窗口大小改变完成事件"},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","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-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":"Option","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/selected":{"type":"[values: string | number | Array<string | number>, 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]","description":"当没有使用filterMethod时候才会有回调否则没有"},"m-select-table/update:modelValue":{"type":"[value: string | number | Array<string | number>]","description":""},"m-select-table/clear":{"type":"[]","description":"用户点击清空按钮时触发"},"m-select-table/removeTag":{"type":"[tag: any]","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/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: any]","description":""},"m-table/size":{"type":"'small' | 'large' | ''","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Array<{\n [key: string]: string | number\n }>","description":""},"m-table/filtersValue":{"type":"FilterValue","description":""},"m-table/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table/pasteData":{"type":"[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/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":""},"m-table-column/filtersValue":{"type":"FilterValue","description":"过滤值"},"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/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/update:modelValue":{"type":"any","description":""},"m-table-column-set/change":{"type":"any","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":""}}
|