@deskhero/dh_ui 2.5.2 → 2.5.3
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/AdvancedFilter.vue.d.ts +55 -0
- package/dist/components/ImageCropper.vue.d.ts +60 -0
- package/dist/dh_ui.es.js +4376 -4379
- package/dist/dh_ui.umd.js +56 -56
- package/dist/index.d.ts +33 -0
- package/dist/main.d.ts +1 -0
- package/dist/tools/editorCode.d.ts +21 -0
- package/package.json +1 -1
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
mainText: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
filterMissingText: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
matchText: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
excludeText: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
}, unknown, {
|
|
19
|
+
activeFilter: boolean;
|
|
20
|
+
isFilterMissing: boolean;
|
|
21
|
+
isMatch: boolean;
|
|
22
|
+
isExclude: boolean;
|
|
23
|
+
}, {}, {
|
|
24
|
+
toggleFilter(): void;
|
|
25
|
+
matchFilter(): void;
|
|
26
|
+
excludeFilter(): void;
|
|
27
|
+
missingFilter(): void;
|
|
28
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("match" | "exclude" | "filter_missing")[], "match" | "exclude" | "filter_missing", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
mainText: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
filterMissingText: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
matchText: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
excludeText: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
}>> & {
|
|
46
|
+
onMatch?: ((...args: any[]) => any) | undefined;
|
|
47
|
+
onExclude?: ((...args: any[]) => any) | undefined;
|
|
48
|
+
onFilter_missing?: ((...args: any[]) => any) | undefined;
|
|
49
|
+
}, {
|
|
50
|
+
mainText: string;
|
|
51
|
+
filterMissingText: string;
|
|
52
|
+
matchText: string;
|
|
53
|
+
excludeText: string;
|
|
54
|
+
}>;
|
|
55
|
+
export default _default;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import "cropperjs/dist/cropper.css";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
image: {
|
|
4
|
+
type: {
|
|
5
|
+
new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): File;
|
|
6
|
+
prototype: File;
|
|
7
|
+
};
|
|
8
|
+
required: false;
|
|
9
|
+
default: null;
|
|
10
|
+
};
|
|
11
|
+
width: {
|
|
12
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
13
|
+
required: false;
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
showPreview: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
required: false;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
isRound: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
required: false;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
update: (value: HTMLCanvasElement) => void;
|
|
28
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
image: {
|
|
30
|
+
type: {
|
|
31
|
+
new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): File;
|
|
32
|
+
prototype: File;
|
|
33
|
+
};
|
|
34
|
+
required: false;
|
|
35
|
+
default: null;
|
|
36
|
+
};
|
|
37
|
+
width: {
|
|
38
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
39
|
+
required: false;
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
42
|
+
showPreview: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
required: false;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
isRound: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
required: false;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
}>> & {
|
|
53
|
+
onUpdate?: ((value: HTMLCanvasElement) => any) | undefined;
|
|
54
|
+
}, {
|
|
55
|
+
image: File;
|
|
56
|
+
width: string | number;
|
|
57
|
+
showPreview: boolean;
|
|
58
|
+
isRound: boolean;
|
|
59
|
+
}>;
|
|
60
|
+
export default _default;
|