next-element-vue 0.3.1 → 0.3.2
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/index.css +2 -2
- package/dist/index.js +71 -34
- package/dist/index.min.js +3 -3
- package/dist/index.umd.js +71 -34
- package/dist/index.umd.min.js +3 -3
- package/dist/packages/components/crud-table/src/config.d.ts +3 -0
- package/dist/packages/components/crud-table-virtualized/src/index.test.d.ts +2 -2
- package/dist/packages/components/labelimg/src/hooks/canvas-context-hook.d.ts +1 -0
- package/dist/packages/components/labelimg/src/widgets/tool-header.d.ts +18 -0
- package/dist/packages/hooks/use-locale/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -117,6 +117,7 @@ export interface TableColumnProps extends SearchColumnProps, FormColunmProps {
|
|
|
117
117
|
headerAlign?: string;
|
|
118
118
|
align?: string;
|
|
119
119
|
sortable?: boolean;
|
|
120
|
+
cellUnit?: string;
|
|
120
121
|
children?: TableColumnProps[];
|
|
121
122
|
}
|
|
122
123
|
export declare const header_menu_slots_key: string[];
|
|
@@ -153,6 +154,8 @@ declare const _default: {
|
|
|
153
154
|
settingBtn: boolean;
|
|
154
155
|
operations: boolean;
|
|
155
156
|
operationsWidth: number;
|
|
157
|
+
operationsHeaderAlign: string;
|
|
158
|
+
operationsColumnAlign: string;
|
|
156
159
|
operationsBtnPlain: boolean;
|
|
157
160
|
operationsBtnText: boolean;
|
|
158
161
|
operationsBtnSize: string;
|
|
@@ -59,11 +59,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
}>> & {
|
|
60
60
|
[x: `on${Capitalize<any>}`]: (...args: any[]) => any;
|
|
61
61
|
}, {
|
|
62
|
-
|
|
62
|
+
data: unknown[];
|
|
63
63
|
style: import("vue").CSSProperties;
|
|
64
|
+
className: string;
|
|
64
65
|
options: Record<string, any>;
|
|
65
66
|
loading: boolean;
|
|
66
|
-
data: unknown[];
|
|
67
67
|
page: Record<string, any>;
|
|
68
68
|
}, {}>;
|
|
69
69
|
export default _default;
|
|
@@ -34,6 +34,7 @@ export declare const DrawRectCanvas: (canvas: HTMLCanvasElement, callback?: Func
|
|
|
34
34
|
ctx: CanvasRenderingContext2D;
|
|
35
35
|
clearCanvas: () => void;
|
|
36
36
|
drawRect: (color?: string) => void;
|
|
37
|
+
removeEventAll: () => void;
|
|
37
38
|
};
|
|
38
39
|
export declare const colors: string[];
|
|
39
40
|
export declare const DrawBaseCanvas: (options: DrawBaseCanvasProps) => {
|
|
@@ -3,15 +3,33 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
5
5
|
};
|
|
6
|
+
imageIndex: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
imageLength: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
6
14
|
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("fullscreen" | "save")[], "fullscreen" | "save", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
15
|
isFullscreen: {
|
|
8
16
|
type: BooleanConstructor;
|
|
9
17
|
default: boolean;
|
|
10
18
|
};
|
|
19
|
+
imageIndex: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
imageLength: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
11
27
|
}>> & {
|
|
12
28
|
onFullscreen?: (...args: any[]) => any;
|
|
13
29
|
onSave?: (...args: any[]) => any;
|
|
14
30
|
}, {
|
|
15
31
|
isFullscreen: boolean;
|
|
32
|
+
imageIndex: number;
|
|
33
|
+
imageLength: number;
|
|
16
34
|
}, {}>;
|
|
17
35
|
export default _default;
|