br-dionysus 1.2.0 → 1.3.1
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 +9 -3
- package/dist/br-dionysus.es.js +1873 -1879
- package/dist/br-dionysus.umd.js +7 -7
- package/dist/index.css +1 -1
- package/dist/packages/MSelectTable/src/MSelectTable.vue.d.ts +2 -2
- package/dist/packages/MTableColumn/src/MTableColumn.vue.d.ts +1 -1
- package/package.json +1 -1
- package/packages/Hook/useTableConfig/README.md +13 -3
- package/packages/Hook/useTableConfig/demo.vue +33 -0
- package/packages/Hook/useTableConfig/useTableConfig.ts +3 -10
- package/packages/MSelectTable/src/MSelectTable.vue +1 -0
- package/packages/MTable/src/MTable.vue +2 -6
- package/packages/SkinConfig/src/useSkin.ts +0 -4
- package/packages/list.json +6 -0
- package/src/App.vue +2 -0
- package/src/components/Preview.vue +0 -1
- package/src/router.ts +5 -0
- package/web-types.json +1 -1
package/README.md
CHANGED
|
@@ -2034,10 +2034,16 @@ const list = ref<{ name: string, className: string }[]>([
|
|
|
2034
2034
|
|
|
2035
2035
|
|
|
2036
2036
|
|
|
2037
|
+
|
|
2038
|
+
|
|
2037
2039
|
表格组合 hook
|
|
2038
2040
|
=================
|
|
2041
|
+
### 1) 基础用法
|
|
2042
|
+
|
|
2039
2043
|
|
|
2040
|
-
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
### 2) 所需参数
|
|
2041
2047
|
|
|
2042
2048
|
| 名称 | 描述 | 类型 | 可选值 | 默认值 |
|
|
2043
2049
|
|------------|--------|--------------|:---:|:---:|
|
|
@@ -2045,7 +2051,7 @@ const list = ref<{ name: string, className: string }[]>([
|
|
|
2045
2051
|
| tableTitle | 列配置 | tableTitle[] | - | - |
|
|
2046
2052
|
| tableData | 表格数据 | ref<any[]> | - | - |
|
|
2047
2053
|
|
|
2048
|
-
###
|
|
2054
|
+
### 3) 返回值
|
|
2049
2055
|
|
|
2050
2056
|
| 名称 | 描述 | 类型 |
|
|
2051
2057
|
|------------------|---------|-----------------------------------------|
|
|
@@ -2055,7 +2061,7 @@ const list = ref<{ name: string, className: string }[]>([
|
|
|
2055
2061
|
| initColumnFilter | 列的筛选 | function |
|
|
2056
2062
|
| filtersValue | 过滤条件 | { [key: string]: Array<string,number>} |
|
|
2057
2063
|
|
|
2058
|
-
###
|
|
2064
|
+
### 4) TableTitle
|
|
2059
2065
|
|
|
2060
2066
|
| 名称 | 描述 | 类型 |
|
|
2061
2067
|
|---------------|----------------------------------------------------------------------|---------------------------------------------|
|