@juzhenfe/page-model 3.17.9 → 3.18.0
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/dist/components/table/type.d.ts +6 -0
- package/dist/index.es.js +50 -44
- package/dist/index.min.css +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/types/common.d.ts +5 -2
- package/package.json +1 -1
package/dist/types/common.d.ts
CHANGED
|
@@ -326,10 +326,13 @@ declare global {
|
|
|
326
326
|
*/
|
|
327
327
|
props?: ConvertFunctionContext<TableBaseItemProps, CTX>
|
|
328
328
|
/**
|
|
329
|
-
*
|
|
329
|
+
* 自定义输入渲染
|
|
330
330
|
*/
|
|
331
331
|
renderFn?: (this: CTX, data: MODEL, index: number) => JSX.Element
|
|
332
|
-
|
|
332
|
+
/**
|
|
333
|
+
* 自定义文本渲染
|
|
334
|
+
*/
|
|
335
|
+
textRenderFn?: (this: CTX, data: MODEL, index: number) => JSX.Element
|
|
333
336
|
/**
|
|
334
337
|
* 是否启用过滤
|
|
335
338
|
*/
|