mrxy-yk 1.9.9 → 1.9.11
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.
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { TableColumnCtx } from 'element-plus';
|
|
2
|
-
import { VNode, PublicProps } from 'vue';
|
|
3
2
|
import { DefaultRow } from 'element-plus/es/components/table/src/table/defaults';
|
|
3
|
+
import { TableColumnProps } from './type';
|
|
4
|
+
import { PublicProps, VNode } from 'vue';
|
|
4
5
|
declare const __VLS_export: <T = DefaultRow>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
|
-
props: PublicProps & __VLS_PrettifyLocal<{
|
|
6
|
-
emptyStr?: string;
|
|
7
|
-
formatter?: ((row: T, column: TableColumnCtx<T>, cellValue: any, index: number) => VNode) | string;
|
|
8
|
-
}> & (typeof globalThis extends {
|
|
6
|
+
props: PublicProps & __VLS_PrettifyLocal<TableColumnProps<T>> & (typeof globalThis extends {
|
|
9
7
|
__VLS_PROPS_FALLBACK: infer P;
|
|
10
8
|
} ? P : {});
|
|
11
9
|
expose: (exposed: {}) => void;
|
|
@@ -78,9 +78,9 @@ export namespace PieModule {
|
|
|
78
78
|
// 颜色
|
|
79
79
|
color?: string[]
|
|
80
80
|
// 环形饼图内外圆心半径
|
|
81
|
-
radius?:
|
|
81
|
+
radius?: string | number | (string | number)[]
|
|
82
82
|
// 圆心位置
|
|
83
|
-
center?:
|
|
83
|
+
center?: string | number | (string | number)[]
|
|
84
84
|
/**
|
|
85
85
|
* 格式化图例
|
|
86
86
|
* @example
|