@deskhero/dh_ui 2.49.1 → 2.49.8

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.
Files changed (49) hide show
  1. package/README.md +100 -100
  2. package/dist/adapters/editorjs/EditorjsTransformer.d.ts +3 -0
  3. package/dist/adapters/editorjs/EditorjsView.vue.d.ts +72 -0
  4. package/dist/adapters/tiptap/SimpleTemplate.vue.d.ts +29 -0
  5. package/dist/adapters/tiptap/TiptapAdapter.d.ts +26 -0
  6. package/dist/adapters/tiptap/TiptapTransformer.d.ts +3 -0
  7. package/dist/adapters/tiptap/TiptapView.vue.d.ts +73 -0
  8. package/dist/adapters/tiptap/components/TextAlignButton.vue.d.ts +12 -0
  9. package/dist/adapters/tiptap/components/ToolbarGroup.vue.d.ts +17 -0
  10. package/dist/adapters/tiptap/components/button/ButtonGroup.vue.d.ts +29 -0
  11. package/dist/adapters/tiptap/components/tiptap-icons/HeadingFiveIcon.vue.d.ts +2 -0
  12. package/dist/adapters/tiptap/components/tiptap-icons/HeadingSixIcon.vue.d.ts +2 -0
  13. package/dist/adapters/tiptap/composables/useMenuNavigation.d.ts +18 -0
  14. package/dist/adapters/tiptap/composables/useScrollDetector.d.ts +8 -0
  15. package/dist/assets/fonts/Rubik-Bold.ttf +0 -0
  16. package/dist/assets/fonts/Rubik-Bold.woff2 +0 -0
  17. package/dist/assets/fonts/Rubik-Medium.ttf +0 -0
  18. package/dist/assets/fonts/Rubik-Medium.woff2 +0 -0
  19. package/dist/assets/fonts/Rubik-Regular.ttf +0 -0
  20. package/dist/assets/fonts/Rubik-Regular.woff2 +0 -0
  21. package/dist/components/ColorPicker.vue.d.ts +17 -0
  22. package/dist/components/IconWithText.vue.d.ts +149 -0
  23. package/dist/components/ImageCropper.vue.d.ts +73 -0
  24. package/dist/components/InputWithList/DropdownList.vue.d.ts +90 -0
  25. package/dist/components/InputWithList/MultipleInput.vue.d.ts +87 -0
  26. package/dist/components/InputWithList/SingleInput.vue.d.ts +48 -0
  27. package/dist/components/InputWithList/TagItem.vue.d.ts +33 -0
  28. package/dist/components/InputWithList/configs/input-with-list.config.d.ts +8 -0
  29. package/dist/components/InputWithList.vue.d.ts +165 -0
  30. package/dist/components/LineChart.vue.d.ts +9 -0
  31. package/dist/components/Tags.vue.d.ts +91 -0
  32. package/dist/components/TextEditor.vue.d.ts +81 -0
  33. package/dist/components/TextEditorLegacy.vue.d.ts +40 -0
  34. package/dist/components/VerificationCode.vue.d.ts +45 -0
  35. package/dist/components/configs/input-with-list.config.d.ts +8 -0
  36. package/dist/dh_ui.es.js +68747 -0
  37. package/dist/dh_ui.umd.js +739 -0
  38. package/dist/factories/EditorFactory.d.ts +19 -0
  39. package/dist/favicon.ico +0 -0
  40. package/dist/helpers/inputWithListUtils.d.ts +4 -0
  41. package/dist/index.d.ts +39 -0
  42. package/dist/main.d.ts +1 -0
  43. package/dist/models/EditorJSi18n.model.d.ts +109 -0
  44. package/dist/models/EditorTransformer.d.ts +5 -0
  45. package/dist/models/InputList.model.d.ts +4 -0
  46. package/dist/models/InputWithList.model.d.ts +1 -0
  47. package/dist/style.css +9 -0
  48. package/dist/tools/editorCode.d.ts +21 -0
  49. package/package.json +185 -184
@@ -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;
@@ -0,0 +1,73 @@
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: NumberConstructor[];
13
+ required: false;
14
+ default: number;
15
+ };
16
+ height: {
17
+ type: NumberConstructor[];
18
+ required: false;
19
+ default: number;
20
+ };
21
+ showPreview: {
22
+ type: BooleanConstructor;
23
+ required: false;
24
+ default: boolean;
25
+ };
26
+ isRound: {
27
+ type: BooleanConstructor;
28
+ required: false;
29
+ default: boolean;
30
+ };
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
+ image: {
36
+ type: {
37
+ new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): File;
38
+ prototype: File;
39
+ };
40
+ required: false;
41
+ default: null;
42
+ };
43
+ width: {
44
+ type: NumberConstructor[];
45
+ required: false;
46
+ default: number;
47
+ };
48
+ height: {
49
+ type: NumberConstructor[];
50
+ required: false;
51
+ default: number;
52
+ };
53
+ showPreview: {
54
+ type: BooleanConstructor;
55
+ required: false;
56
+ default: boolean;
57
+ };
58
+ isRound: {
59
+ type: BooleanConstructor;
60
+ required: false;
61
+ default: boolean;
62
+ };
63
+ }>> & {
64
+ onUpdate?: ((value: HTMLCanvasElement) => any) | undefined;
65
+ onSizeError?: (() => any) | undefined;
66
+ }, {
67
+ image: File;
68
+ height: number;
69
+ width: number;
70
+ showPreview: boolean;
71
+ isRound: boolean;
72
+ }, {}>;
73
+ export default _default;
@@ -0,0 +1,90 @@
1
+ import { PropType } from "vue";
2
+ import { InputWithListOption } from "@/models/InputWithList.model";
3
+ declare const _default: import("vue").DefineComponent<{
4
+ open: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ options: {
9
+ type: PropType<InputWithListOption[]>;
10
+ default: () => never[];
11
+ };
12
+ selectedValues: {
13
+ type: PropType<string[]>;
14
+ default: () => never[];
15
+ };
16
+ selectedValue: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ multiple: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ labelKey: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ valueKey: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ isLoading: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ loadingText: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
41
+ open: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ options: {
46
+ type: PropType<InputWithListOption[]>;
47
+ default: () => never[];
48
+ };
49
+ selectedValues: {
50
+ type: PropType<string[]>;
51
+ default: () => never[];
52
+ };
53
+ selectedValue: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ multiple: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
61
+ labelKey: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ valueKey: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ isLoading: {
70
+ type: BooleanConstructor;
71
+ default: boolean;
72
+ };
73
+ loadingText: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ }>> & {
78
+ onSelect?: ((...args: any[]) => any) | undefined;
79
+ }, {
80
+ multiple: boolean;
81
+ options: InputWithListOption[];
82
+ open: boolean;
83
+ selectedValues: string[];
84
+ selectedValue: string;
85
+ labelKey: string;
86
+ valueKey: string;
87
+ isLoading: boolean;
88
+ loadingText: string;
89
+ }, {}>;
90
+ export default _default;
@@ -0,0 +1,87 @@
1
+ import { PropType } from "vue";
2
+ declare const _default: import("vue").DefineComponent<{
3
+ modelValue: {
4
+ type: PropType<string[]>;
5
+ default: () => never[];
6
+ };
7
+ placeholder: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ disabled: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ errors: {
16
+ type: PropType<string[]>;
17
+ default: () => never[];
18
+ };
19
+ tagClassFunction: {
20
+ type: PropType<(value: string) => string>;
21
+ default: null;
22
+ };
23
+ allowCreate: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ createOnKeys: {
28
+ type: PropType<string[]>;
29
+ default: () => string[];
30
+ };
31
+ validateValue: {
32
+ type: PropType<(value: string) => boolean>;
33
+ default: null;
34
+ };
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<{
36
+ modelValue: {
37
+ type: PropType<string[]>;
38
+ default: () => never[];
39
+ };
40
+ placeholder: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
44
+ disabled: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ errors: {
49
+ type: PropType<string[]>;
50
+ default: () => never[];
51
+ };
52
+ tagClassFunction: {
53
+ type: PropType<(value: string) => string>;
54
+ default: null;
55
+ };
56
+ allowCreate: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ createOnKeys: {
61
+ type: PropType<string[]>;
62
+ default: () => string[];
63
+ };
64
+ validateValue: {
65
+ type: PropType<(value: string) => boolean>;
66
+ default: null;
67
+ };
68
+ }>> & {
69
+ onFocus?: ((...args: any[]) => any) | undefined;
70
+ onBlur?: ((...args: any[]) => any) | undefined;
71
+ onInput?: ((...args: any[]) => any) | undefined;
72
+ onKeydown?: ((...args: any[]) => any) | undefined;
73
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
74
+ onClear?: ((...args: any[]) => any) | undefined;
75
+ onCreate?: ((...args: any[]) => any) | undefined;
76
+ onRemove?: ((...args: any[]) => any) | undefined;
77
+ }, {
78
+ placeholder: string;
79
+ disabled: boolean;
80
+ modelValue: string[];
81
+ errors: string[];
82
+ tagClassFunction: (value: string) => string;
83
+ allowCreate: boolean;
84
+ createOnKeys: string[];
85
+ validateValue: (value: string) => boolean;
86
+ }, {}>;
87
+ export default _default;
@@ -0,0 +1,48 @@
1
+ import { PropType } from "vue";
2
+ declare const _default: import("vue").DefineComponent<{
3
+ modelValue: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ placeholder: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ disabled: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ errors: {
16
+ type: PropType<string[]>;
17
+ default: () => never[];
18
+ };
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<{
20
+ modelValue: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ placeholder: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ disabled: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ errors: {
33
+ type: PropType<string[]>;
34
+ default: () => never[];
35
+ };
36
+ }>> & {
37
+ onFocus?: ((...args: any[]) => any) | undefined;
38
+ onBlur?: ((...args: any[]) => any) | undefined;
39
+ onInput?: ((...args: any[]) => any) | undefined;
40
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
41
+ onClear?: ((...args: any[]) => any) | undefined;
42
+ }, {
43
+ placeholder: string;
44
+ disabled: boolean;
45
+ modelValue: string;
46
+ errors: string[];
47
+ }, {}>;
48
+ export default _default;
@@ -0,0 +1,33 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ label: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ disabled: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ tagClass: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "remove"[], "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
+ label: {
16
+ type: StringConstructor;
17
+ required: true;
18
+ };
19
+ disabled: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ tagClass: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ }>> & {
28
+ onRemove?: ((...args: any[]) => any) | undefined;
29
+ }, {
30
+ disabled: boolean;
31
+ tagClass: string;
32
+ }, {}>;
33
+ export default _default;
@@ -0,0 +1,8 @@
1
+ export declare const INPUT_CONFIG: {
2
+ readonly DEBOUNCE_DELAY: 300;
3
+ readonly MIN_SEARCH_LENGTH: 0;
4
+ readonly DEFAULT_PLACEHOLDER: "Type or select";
5
+ readonly DEFAULT_LOADING_TEXT: "Loading...";
6
+ readonly CREATE_KEYS: readonly ["enter", ",", "space"];
7
+ readonly BLUR_DELAY: 50;
8
+ };
@@ -0,0 +1,165 @@
1
+ import { PropType } from "vue";
2
+ import { InputWithListOption } from "@/models/InputWithList.model";
3
+ declare const _default: import("vue").DefineComponent<{
4
+ modelValue: {
5
+ type: PropType<string | string[]>;
6
+ default: string;
7
+ };
8
+ options: {
9
+ type: PropType<InputWithListOption[]>;
10
+ default: () => never[];
11
+ };
12
+ placeholder: {
13
+ type: StringConstructor;
14
+ default: "Type or select";
15
+ };
16
+ labelKey: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ valueKey: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ multiple: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ disabled: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ errors: {
33
+ type: PropType<string[]>;
34
+ default: () => never[];
35
+ };
36
+ isLoading: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ loadingText: {
41
+ type: StringConstructor;
42
+ default: "Loading...";
43
+ };
44
+ searchDebounce: {
45
+ type: NumberConstructor;
46
+ default: 300;
47
+ };
48
+ minSearchLength: {
49
+ type: NumberConstructor;
50
+ default: 0;
51
+ };
52
+ allowCreate: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
56
+ createOnKeys: {
57
+ type: PropType<string[]>;
58
+ default: () => readonly ["enter", ",", "space"];
59
+ };
60
+ validateValue: {
61
+ type: PropType<(value: string) => boolean>;
62
+ default: null;
63
+ };
64
+ tagClassFunction: {
65
+ type: PropType<(value: string) => string>;
66
+ default: null;
67
+ };
68
+ }, {
69
+ clear: () => void;
70
+ focus: () => void | undefined;
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<{
72
+ modelValue: {
73
+ type: PropType<string | string[]>;
74
+ default: string;
75
+ };
76
+ options: {
77
+ type: PropType<InputWithListOption[]>;
78
+ default: () => never[];
79
+ };
80
+ placeholder: {
81
+ type: StringConstructor;
82
+ default: "Type or select";
83
+ };
84
+ labelKey: {
85
+ type: StringConstructor;
86
+ default: string;
87
+ };
88
+ valueKey: {
89
+ type: StringConstructor;
90
+ default: string;
91
+ };
92
+ multiple: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ disabled: {
97
+ type: BooleanConstructor;
98
+ default: boolean;
99
+ };
100
+ errors: {
101
+ type: PropType<string[]>;
102
+ default: () => never[];
103
+ };
104
+ isLoading: {
105
+ type: BooleanConstructor;
106
+ default: boolean;
107
+ };
108
+ loadingText: {
109
+ type: StringConstructor;
110
+ default: "Loading...";
111
+ };
112
+ searchDebounce: {
113
+ type: NumberConstructor;
114
+ default: 300;
115
+ };
116
+ minSearchLength: {
117
+ type: NumberConstructor;
118
+ default: 0;
119
+ };
120
+ allowCreate: {
121
+ type: BooleanConstructor;
122
+ default: boolean;
123
+ };
124
+ createOnKeys: {
125
+ type: PropType<string[]>;
126
+ default: () => readonly ["enter", ",", "space"];
127
+ };
128
+ validateValue: {
129
+ type: PropType<(value: string) => boolean>;
130
+ default: null;
131
+ };
132
+ tagClassFunction: {
133
+ type: PropType<(value: string) => string>;
134
+ default: null;
135
+ };
136
+ }>> & {
137
+ onChange?: ((...args: any[]) => any) | undefined;
138
+ onFocus?: ((...args: any[]) => any) | undefined;
139
+ onFocusout?: ((...args: any[]) => any) | undefined;
140
+ onBlur?: ((...args: any[]) => any) | undefined;
141
+ onSelect?: ((...args: any[]) => any) | undefined;
142
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
143
+ onClear?: ((...args: any[]) => any) | undefined;
144
+ onCreate?: ((...args: any[]) => any) | undefined;
145
+ onRemove?: ((...args: any[]) => any) | undefined;
146
+ onSearch?: ((...args: any[]) => any) | undefined;
147
+ }, {
148
+ placeholder: string;
149
+ disabled: boolean;
150
+ multiple: boolean;
151
+ options: InputWithListOption[];
152
+ modelValue: string | string[];
153
+ errors: string[];
154
+ tagClassFunction: (value: string) => string;
155
+ allowCreate: boolean;
156
+ createOnKeys: string[];
157
+ validateValue: (value: string) => boolean;
158
+ labelKey: string;
159
+ valueKey: string;
160
+ isLoading: boolean;
161
+ loadingText: string;
162
+ searchDebounce: number;
163
+ minSearchLength: number;
164
+ }, {}>;
165
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly title?: string | undefined;
4
+ readonly height?: number | undefined;
5
+ readonly width?: number | undefined;
6
+ readonly dataSets?: Record<string, any> | undefined;
7
+ };
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
+ export default _default;