yxuse 3.0.47 → 3.0.48
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 +2 -4
- package/lib/index.cjs6.js +1 -1
- package/lib/index.cjs6.js.gz +0 -0
- package/lib/index.cjs6.js.map +1 -1
- package/lib/index.es6.js +5 -0
- package/lib/index.es6.js.gz +0 -0
- package/lib/index.es6.js.map +1 -1
- package/package.json +1 -1
- package/types/components/YxTable/type.d.ts +4 -0
package/package.json
CHANGED
|
@@ -63,6 +63,10 @@ export interface YxTableColumn {
|
|
|
63
63
|
formatter?: Function;
|
|
64
64
|
/** 插槽名称 */
|
|
65
65
|
slotName?: string;
|
|
66
|
+
/** 头部插槽名称 */
|
|
67
|
+
headerSlotName?: string;
|
|
68
|
+
/**自定义header render方法 */
|
|
69
|
+
headerRender?: (scope: any) => any;
|
|
66
70
|
/** 动态组件配置 */
|
|
67
71
|
config?: Record<string, any>;
|
|
68
72
|
/** 动态组修改回调 */
|