@deskhero/dh_ui 2.49.9 → 2.50.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/adapters/editorjs/EditorjsView.vue.d.ts +72 -0
- package/dist/adapters/tiptap/components/TextAlignButton.vue.d.ts +10 -4
- package/dist/adapters/tiptap/components/ToolbarGroup.vue.d.ts +10 -7
- package/dist/adapters/tiptap/components/button/ButtonGroup.vue.d.ts +22 -9
- package/dist/adapters/tiptap/components/tiptap-icons/HeadingFiveIcon.vue.d.ts +1 -1
- package/dist/adapters/tiptap/components/tiptap-icons/HeadingSixIcon.vue.d.ts +1 -1
- package/dist/components/ColorPicker.vue.d.ts +13 -7
- package/dist/components/IconWithText.vue.d.ts +149 -0
- package/dist/components/ImageCropper.vue.d.ts +10 -10
- package/dist/components/InputWithList/DropdownList.vue.d.ts +6 -8
- package/dist/components/InputWithList/MultipleInput.vue.d.ts +9 -18
- package/dist/components/InputWithList/SingleInput.vue.d.ts +8 -14
- package/dist/components/InputWithList/TagItem.vue.d.ts +5 -7
- package/dist/components/InputWithList.vue.d.ts +14 -25
- package/dist/components/LineChart.vue.d.ts +1 -5
- package/dist/components/Tags.vue.d.ts +7 -53
- package/dist/components/TextEditorLegacy.vue.d.ts +6 -25
- package/dist/dh_ui.es.js +22863 -22858
- package/dist/dh_ui.umd.js +358 -142
- package/dist/style.css +4 -4
- package/package.json +6 -4
- package/dist/adapters/editorjs/EditorjsTransformer.d.ts +0 -3
- package/dist/adapters/tiptap/SimpleTemplate.vue.d.ts +0 -17
- package/dist/adapters/tiptap/TiptapTransformer.d.ts +0 -3
- package/dist/adapters/tiptap/TiptapView.vue.d.ts +0 -22
- package/dist/adapters/tiptap/components/ColorHighlightDropdown.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/FileUploadButton.vue.d.ts +0 -7
- package/dist/adapters/tiptap/components/ImageUploadButton.vue.d.ts +0 -7
- package/dist/adapters/tiptap/components/Input.vue.d.ts +0 -10
- package/dist/adapters/tiptap/components/LinkDropdown.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/MarkButton.vue.d.ts +0 -6
- package/dist/adapters/tiptap/components/TextAlignDropdown.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/AlignCenterIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/AlignJustifyIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/AlignLeftIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/AlignRightIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/BanIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/CornerDownLeftIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/ExternalLinkIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/FileIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/HighlighterIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/ImagePlusIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/LinkIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/components/tiptap-icons/TrashIcon.vue.d.ts +0 -2
- package/dist/adapters/tiptap/composables/useScrollDetector.d.ts +0 -8
- package/dist/components/TextEditor.vue.d.ts +0 -39
- package/dist/components/VerificationCode.vue.d.ts +0 -47
- package/dist/factories/EditorFactory.d.ts +0 -19
- package/dist/models/EditorTransformer.d.ts +0 -5
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { SysContentRich, SysAttachment } from "@/models/Editor.model";
|
|
2
|
+
import { FileRegistration, UploadEventPayload } from "@/models/UploadedFile.model";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
data: {
|
|
5
|
+
type: import("vue").PropType<SysContentRich>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
i18n: {
|
|
9
|
+
type: import("vue").PropType<import("@/models/Editor.model").EditorI18n>;
|
|
10
|
+
};
|
|
11
|
+
readOnly: {
|
|
12
|
+
type: import("vue").PropType<boolean>;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
fileUpload: {
|
|
16
|
+
type: import("vue").PropType<(e: UploadEventPayload) => void>;
|
|
17
|
+
};
|
|
18
|
+
attachments: {
|
|
19
|
+
type: import("vue").PropType<SysAttachment[]>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
toolbarPosition: {
|
|
23
|
+
type: import("vue").PropType<"left" | "right">;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
suggestedReply: {
|
|
27
|
+
type: import("vue").PropType<SysContentRich>;
|
|
28
|
+
};
|
|
29
|
+
}, {
|
|
30
|
+
acceptSuggestion: () => void;
|
|
31
|
+
isEmpty: () => Promise<boolean>;
|
|
32
|
+
registerFiles: (payload: FileRegistration) => void;
|
|
33
|
+
insertSignature: (payload: SysContentRich, att: SysAttachment[]) => void;
|
|
34
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
35
|
+
"update:data": (value: SysContentRich) => void;
|
|
36
|
+
"update:attachments": (value: SysAttachment[]) => void;
|
|
37
|
+
"file-upload": (val: UploadEventPayload) => void;
|
|
38
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
data: {
|
|
40
|
+
type: import("vue").PropType<SysContentRich>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
i18n: {
|
|
44
|
+
type: import("vue").PropType<import("@/models/Editor.model").EditorI18n>;
|
|
45
|
+
};
|
|
46
|
+
readOnly: {
|
|
47
|
+
type: import("vue").PropType<boolean>;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
fileUpload: {
|
|
51
|
+
type: import("vue").PropType<(e: UploadEventPayload) => void>;
|
|
52
|
+
};
|
|
53
|
+
attachments: {
|
|
54
|
+
type: import("vue").PropType<SysAttachment[]>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
toolbarPosition: {
|
|
58
|
+
type: import("vue").PropType<"left" | "right">;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
suggestedReply: {
|
|
62
|
+
type: import("vue").PropType<SysContentRich>;
|
|
63
|
+
};
|
|
64
|
+
}>> & {
|
|
65
|
+
"onFile-upload"?: ((val: UploadEventPayload) => any) | undefined;
|
|
66
|
+
"onUpdate:data"?: ((value: SysContentRich) => any) | undefined;
|
|
67
|
+
"onUpdate:attachments"?: ((value: SysAttachment[]) => any) | undefined;
|
|
68
|
+
}, {
|
|
69
|
+
readOnly: boolean;
|
|
70
|
+
toolbarPosition: "left" | "right";
|
|
71
|
+
}, {}>;
|
|
72
|
+
export default _default;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
align:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
2
|
+
align: {
|
|
3
|
+
type: import("vue").PropType<"center" | "left" | "right" | "justify">;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
align: {
|
|
8
|
+
type: import("vue").PropType<"center" | "left" | "right" | "justify">;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>>, {}, {}>;
|
|
6
12
|
export default _default;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
class
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
class: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
};
|
|
5
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
class: {
|
|
7
|
+
type: import("vue").PropType<string>;
|
|
8
|
+
};
|
|
9
|
+
}>>, {}, {}>, {
|
|
5
10
|
default?(_: {}): any;
|
|
6
|
-
}
|
|
7
|
-
declare const __VLS_component: import("vue").DefineComponent<GroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<GroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
11
|
+
}>;
|
|
9
12
|
export default _default;
|
|
10
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
11
14
|
new (): {
|
|
@@ -1,13 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
class
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
class: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
};
|
|
5
|
+
orientation: {
|
|
6
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
7
|
+
};
|
|
8
|
+
role: {
|
|
9
|
+
type: import("vue").PropType<string>;
|
|
10
|
+
};
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
class: {
|
|
13
|
+
type: import("vue").PropType<string>;
|
|
14
|
+
};
|
|
15
|
+
orientation: {
|
|
16
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
17
|
+
};
|
|
18
|
+
role: {
|
|
19
|
+
type: import("vue").PropType<string>;
|
|
20
|
+
};
|
|
21
|
+
}>>, {}, {}>, {
|
|
7
22
|
default?(_: {}): any;
|
|
8
|
-
}
|
|
9
|
-
declare const __VLS_component: import("vue").DefineComponent<ButtonGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ButtonGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
23
|
+
}>;
|
|
11
24
|
export default _default;
|
|
12
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
13
26
|
new (): {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import "vue3-colorpicker/style.css";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
pureColor:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
pureColor: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
"update:pure-color": (color: string) => void;
|
|
9
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
pureColor: {
|
|
11
|
+
type: import("vue").PropType<string>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
}>> & {
|
|
9
15
|
"onUpdate:pure-color"?: ((color: string) => any) | undefined;
|
|
10
|
-
}
|
|
16
|
+
}, {}, {}>;
|
|
11
17
|
export default _default;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
title: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
iconName: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
iconUrl: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
required: false;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
text: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
textPosition: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
validator: (value: string) => boolean;
|
|
25
|
+
};
|
|
26
|
+
labelKlass: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
required: false;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
size: {
|
|
32
|
+
type: NumberConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
default: number;
|
|
35
|
+
};
|
|
36
|
+
hideText: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
required: false;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
hasBackground: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
required: false;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
active: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
required: false;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
activeOnHover: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
required: false;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
textEllipsis: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
required: false;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
isDanger: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
required: false;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
}, unknown, unknown, {}, {
|
|
67
|
+
emitError(): void;
|
|
68
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "error"[], "error", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
69
|
+
title: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
required: false;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
iconName: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
required: false;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
79
|
+
iconUrl: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
required: false;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
text: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
required: true;
|
|
87
|
+
};
|
|
88
|
+
textPosition: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
validator: (value: string) => boolean;
|
|
92
|
+
};
|
|
93
|
+
labelKlass: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
required: false;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
size: {
|
|
99
|
+
type: NumberConstructor;
|
|
100
|
+
required: false;
|
|
101
|
+
default: number;
|
|
102
|
+
};
|
|
103
|
+
hideText: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
required: false;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
hasBackground: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
required: false;
|
|
111
|
+
default: boolean;
|
|
112
|
+
};
|
|
113
|
+
active: {
|
|
114
|
+
type: BooleanConstructor;
|
|
115
|
+
required: false;
|
|
116
|
+
default: boolean;
|
|
117
|
+
};
|
|
118
|
+
activeOnHover: {
|
|
119
|
+
type: BooleanConstructor;
|
|
120
|
+
required: false;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
|
+
textEllipsis: {
|
|
124
|
+
type: BooleanConstructor;
|
|
125
|
+
required: false;
|
|
126
|
+
default: boolean;
|
|
127
|
+
};
|
|
128
|
+
isDanger: {
|
|
129
|
+
type: BooleanConstructor;
|
|
130
|
+
required: false;
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
}>> & {
|
|
134
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
135
|
+
}, {
|
|
136
|
+
title: string;
|
|
137
|
+
iconName: string;
|
|
138
|
+
size: number;
|
|
139
|
+
active: boolean;
|
|
140
|
+
isDanger: boolean;
|
|
141
|
+
activeOnHover: boolean;
|
|
142
|
+
iconUrl: string;
|
|
143
|
+
textPosition: string;
|
|
144
|
+
labelKlass: string;
|
|
145
|
+
hideText: boolean;
|
|
146
|
+
hasBackground: boolean;
|
|
147
|
+
textEllipsis: boolean;
|
|
148
|
+
}, {}>;
|
|
149
|
+
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "cropperjs/dist/cropper.css";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
image: {
|
|
4
4
|
type: {
|
|
5
|
-
new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File;
|
|
5
|
+
new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): File;
|
|
6
6
|
prototype: File;
|
|
7
7
|
};
|
|
8
8
|
required: false;
|
|
@@ -28,13 +28,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
28
28
|
required: false;
|
|
29
29
|
default: boolean;
|
|
30
30
|
};
|
|
31
|
-
}
|
|
32
|
-
update: (value: HTMLCanvasElement) =>
|
|
33
|
-
sizeError: () =>
|
|
34
|
-
}, string, import("vue").
|
|
31
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
32
|
+
update: (value: HTMLCanvasElement) => void;
|
|
33
|
+
sizeError: () => void;
|
|
34
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
35
|
image: {
|
|
36
36
|
type: {
|
|
37
|
-
new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File;
|
|
37
|
+
new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): File;
|
|
38
38
|
prototype: File;
|
|
39
39
|
};
|
|
40
40
|
required: false;
|
|
@@ -60,14 +60,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
60
60
|
required: false;
|
|
61
61
|
default: boolean;
|
|
62
62
|
};
|
|
63
|
-
}>> &
|
|
63
|
+
}>> & {
|
|
64
64
|
onUpdate?: ((value: HTMLCanvasElement) => any) | undefined;
|
|
65
65
|
onSizeError?: (() => any) | undefined;
|
|
66
|
-
}
|
|
66
|
+
}, {
|
|
67
67
|
image: File;
|
|
68
68
|
height: number;
|
|
69
69
|
width: number;
|
|
70
70
|
showPreview: boolean;
|
|
71
71
|
isRound: boolean;
|
|
72
|
-
}, {}
|
|
72
|
+
}, {}>;
|
|
73
73
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
import { InputWithListOption } from "@/models/InputWithList.model";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
open: {
|
|
5
5
|
type: BooleanConstructor;
|
|
6
6
|
default: boolean;
|
|
@@ -37,9 +37,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
37
37
|
type: StringConstructor;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
|
-
}
|
|
41
|
-
select: (...args: any[]) => void;
|
|
42
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
41
|
open: {
|
|
44
42
|
type: BooleanConstructor;
|
|
45
43
|
default: boolean;
|
|
@@ -76,17 +74,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
76
74
|
type: StringConstructor;
|
|
77
75
|
default: string;
|
|
78
76
|
};
|
|
79
|
-
}>> &
|
|
77
|
+
}>> & {
|
|
80
78
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
81
|
-
}
|
|
79
|
+
}, {
|
|
80
|
+
multiple: boolean;
|
|
82
81
|
options: InputWithListOption[];
|
|
83
82
|
open: boolean;
|
|
84
|
-
multiple: boolean;
|
|
85
83
|
selectedValues: string[];
|
|
86
84
|
selectedValue: string;
|
|
87
85
|
labelKey: string;
|
|
88
86
|
valueKey: string;
|
|
89
87
|
isLoading: boolean;
|
|
90
88
|
loadingText: string;
|
|
91
|
-
}, {}
|
|
89
|
+
}, {}>;
|
|
92
90
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
modelValue: {
|
|
4
4
|
type: PropType<string[]>;
|
|
5
5
|
default: () => never[];
|
|
@@ -32,16 +32,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32
32
|
type: PropType<(value: string) => boolean>;
|
|
33
33
|
default: null;
|
|
34
34
|
};
|
|
35
|
-
}
|
|
36
|
-
input: (...args: any[]) => void;
|
|
37
|
-
focus: (...args: any[]) => void;
|
|
38
|
-
remove: (...args: any[]) => void;
|
|
39
|
-
blur: (...args: any[]) => void;
|
|
40
|
-
keydown: (...args: any[]) => void;
|
|
41
|
-
clear: (...args: any[]) => void;
|
|
42
|
-
"update:modelValue": (...args: any[]) => void;
|
|
43
|
-
create: (...args: any[]) => void;
|
|
44
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "blur" | "focus" | "keydown" | "update:modelValue" | "clear" | "create" | "remove")[], "input" | "blur" | "focus" | "keydown" | "update:modelValue" | "clear" | "create" | "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
36
|
modelValue: {
|
|
46
37
|
type: PropType<string[]>;
|
|
47
38
|
default: () => never[];
|
|
@@ -74,23 +65,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
74
65
|
type: PropType<(value: string) => boolean>;
|
|
75
66
|
default: null;
|
|
76
67
|
};
|
|
77
|
-
}>> &
|
|
78
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
68
|
+
}>> & {
|
|
79
69
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
80
|
-
onRemove?: ((...args: any[]) => any) | undefined;
|
|
81
70
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
71
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
82
72
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
83
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
84
73
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
74
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
85
75
|
onCreate?: ((...args: any[]) => any) | undefined;
|
|
86
|
-
|
|
87
|
-
|
|
76
|
+
onRemove?: ((...args: any[]) => any) | undefined;
|
|
77
|
+
}, {
|
|
88
78
|
placeholder: string;
|
|
79
|
+
disabled: boolean;
|
|
89
80
|
modelValue: string[];
|
|
90
81
|
errors: string[];
|
|
91
82
|
tagClassFunction: (value: string) => string;
|
|
92
83
|
allowCreate: boolean;
|
|
93
84
|
createOnKeys: string[];
|
|
94
85
|
validateValue: (value: string) => boolean;
|
|
95
|
-
}, {}
|
|
86
|
+
}, {}>;
|
|
96
87
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
modelValue: {
|
|
4
4
|
type: StringConstructor;
|
|
5
5
|
default: string;
|
|
@@ -16,13 +16,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
16
16
|
type: PropType<string[]>;
|
|
17
17
|
default: () => never[];
|
|
18
18
|
};
|
|
19
|
-
}
|
|
20
|
-
input: (...args: any[]) => void;
|
|
21
|
-
focus: (...args: any[]) => void;
|
|
22
|
-
blur: (...args: any[]) => void;
|
|
23
|
-
clear: (...args: any[]) => void;
|
|
24
|
-
"update:modelValue": (...args: any[]) => void;
|
|
25
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "blur" | "focus" | "update:modelValue" | "clear")[], "input" | "blur" | "focus" | "update:modelValue" | "clear", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
20
|
modelValue: {
|
|
27
21
|
type: StringConstructor;
|
|
28
22
|
default: string;
|
|
@@ -39,16 +33,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
39
33
|
type: PropType<string[]>;
|
|
40
34
|
default: () => never[];
|
|
41
35
|
};
|
|
42
|
-
}>> &
|
|
43
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
36
|
+
}>> & {
|
|
44
37
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
45
38
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
46
|
-
|
|
39
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
47
40
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
48
|
-
|
|
49
|
-
|
|
41
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
}, {
|
|
50
43
|
placeholder: string;
|
|
44
|
+
disabled: boolean;
|
|
51
45
|
modelValue: string;
|
|
52
46
|
errors: string[];
|
|
53
|
-
}, {}
|
|
47
|
+
}, {}>;
|
|
54
48
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
label: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
@@ -11,9 +11,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11
11
|
type: StringConstructor;
|
|
12
12
|
default: string;
|
|
13
13
|
};
|
|
14
|
-
}
|
|
15
|
-
remove: (...args: any[]) => void;
|
|
16
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "remove"[], "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
15
|
label: {
|
|
18
16
|
type: StringConstructor;
|
|
19
17
|
required: true;
|
|
@@ -26,10 +24,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26
24
|
type: StringConstructor;
|
|
27
25
|
default: string;
|
|
28
26
|
};
|
|
29
|
-
}>> &
|
|
27
|
+
}>> & {
|
|
30
28
|
onRemove?: ((...args: any[]) => any) | undefined;
|
|
31
|
-
}
|
|
29
|
+
}, {
|
|
32
30
|
disabled: boolean;
|
|
33
31
|
tagClass: string;
|
|
34
|
-
}, {}
|
|
32
|
+
}, {}>;
|
|
35
33
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
import { InputWithListOption } from "@/models/InputWithList.model";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
modelValue: {
|
|
5
5
|
type: PropType<string | string[]>;
|
|
6
6
|
default: string;
|
|
@@ -65,21 +65,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
65
65
|
type: PropType<(value: string) => string>;
|
|
66
66
|
default: null;
|
|
67
67
|
};
|
|
68
|
-
}
|
|
68
|
+
}, {
|
|
69
69
|
clear: () => void;
|
|
70
70
|
focus: () => void | undefined;
|
|
71
|
-
},
|
|
72
|
-
search: (...args: any[]) => void;
|
|
73
|
-
select: (...args: any[]) => void;
|
|
74
|
-
focus: (...args: any[]) => void;
|
|
75
|
-
remove: (...args: any[]) => void;
|
|
76
|
-
blur: (...args: any[]) => void;
|
|
77
|
-
change: (...args: any[]) => void;
|
|
78
|
-
focusout: (...args: any[]) => void;
|
|
79
|
-
clear: (...args: any[]) => void;
|
|
80
|
-
"update:modelValue": (...args: any[]) => void;
|
|
81
|
-
create: (...args: any[]) => void;
|
|
82
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
71
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "select" | "blur" | "change" | "focus" | "focusout" | "update:modelValue" | "clear" | "create" | "remove")[], "search" | "select" | "blur" | "change" | "focus" | "focusout" | "update:modelValue" | "clear" | "create" | "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
83
72
|
modelValue: {
|
|
84
73
|
type: PropType<string | string[]>;
|
|
85
74
|
default: string;
|
|
@@ -144,24 +133,24 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
144
133
|
type: PropType<(value: string) => string>;
|
|
145
134
|
default: null;
|
|
146
135
|
};
|
|
147
|
-
}>> &
|
|
148
|
-
onSearch?: ((...args: any[]) => any) | undefined;
|
|
149
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
150
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
151
|
-
onRemove?: ((...args: any[]) => any) | undefined;
|
|
152
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
136
|
+
}>> & {
|
|
153
137
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
138
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
154
139
|
onFocusout?: ((...args: any[]) => any) | undefined;
|
|
155
|
-
|
|
140
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
141
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
156
142
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
143
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
157
144
|
onCreate?: ((...args: any[]) => any) | undefined;
|
|
158
|
-
|
|
159
|
-
|
|
145
|
+
onRemove?: ((...args: any[]) => any) | undefined;
|
|
146
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
147
|
+
}, {
|
|
160
148
|
placeholder: string;
|
|
149
|
+
disabled: boolean;
|
|
150
|
+
multiple: boolean;
|
|
161
151
|
options: InputWithListOption[];
|
|
162
152
|
modelValue: string | string[];
|
|
163
153
|
errors: string[];
|
|
164
|
-
multiple: boolean;
|
|
165
154
|
tagClassFunction: (value: string) => string;
|
|
166
155
|
allowCreate: boolean;
|
|
167
156
|
createOnKeys: string[];
|
|
@@ -172,5 +161,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
172
161
|
loadingText: string;
|
|
173
162
|
searchDebounce: number;
|
|
174
163
|
minSearchLength: number;
|
|
175
|
-
}, {}
|
|
164
|
+
}, {}>;
|
|
176
165
|
export default _default;
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
title: string;
|
|
3
|
-
height: number;
|
|
4
|
-
width: number;
|
|
5
|
-
dataSets: Record<string, any>;
|
|
6
2
|
$props: {
|
|
7
3
|
readonly title?: string | undefined;
|
|
8
4
|
readonly height?: number | undefined;
|
|
9
5
|
readonly width?: number | undefined;
|
|
10
6
|
readonly dataSets?: Record<string, any> | undefined;
|
|
11
7
|
};
|
|
12
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
13
9
|
export default _default;
|