@deskhero/dh_ui 2.2.1 → 2.2.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.
Files changed (40) hide show
  1. package/dist/dh_ui.es.js +28078 -36837
  2. package/dist/dh_ui.umd.js +93 -93
  3. package/dist/style.css +1 -1
  4. package/package.json +26 -18
  5. package/dist/node_modules/multi-range-slider-vue/MultiRangeSlider.vue.d.ts +0 -132
  6. package/dist/src/App.vue.d.ts +0 -2
  7. package/dist/src/components/AdvancedDatePicker.vue.d.ts +0 -10
  8. package/dist/src/components/AdvancedFilter.vue.d.ts +0 -55
  9. package/dist/src/components/Button.vue.d.ts +0 -60
  10. package/dist/src/components/Copiable.vue.d.ts +0 -17
  11. package/dist/src/components/DatePicker.vue.d.ts +0 -22
  12. package/dist/src/components/DropdownMenu.vue.d.ts +0 -86
  13. package/dist/src/components/DropdownMenuItem.vue.d.ts +0 -39
  14. package/dist/src/components/Error.vue.d.ts +0 -16
  15. package/dist/src/components/ExpansionPanel.vue.d.ts +0 -25
  16. package/dist/src/components/FileUpload.vue.d.ts +0 -81
  17. package/dist/src/components/Icon.vue.d.ts +0 -62
  18. package/dist/src/components/ImageCropper.vue.d.ts +0 -60
  19. package/dist/src/components/InputDropdown.vue.d.ts +0 -54
  20. package/dist/src/components/InputDropdownMultiple.vue.d.ts +0 -43
  21. package/dist/src/components/InputGroup.vue.d.ts +0 -50
  22. package/dist/src/components/InputList.vue.d.ts +0 -37
  23. package/dist/src/components/Modal.vue.d.ts +0 -109
  24. package/dist/src/components/Notification.vue.d.ts +0 -103
  25. package/dist/src/components/NumberRange.vue.d.ts +0 -160
  26. package/dist/src/components/PasswordField.vue.d.ts +0 -62
  27. package/dist/src/components/RadioBox.vue.d.ts +0 -18
  28. package/dist/src/components/RadioBoxGroup.vue.d.ts +0 -17
  29. package/dist/src/components/SearchInput.vue.d.ts +0 -27
  30. package/dist/src/components/Stepper.vue.d.ts +0 -23
  31. package/dist/src/components/Switch.vue.d.ts +0 -33
  32. package/dist/src/components/TextEditor.vue.d.ts +0 -66
  33. package/dist/src/components/Tooltip.vue.d.ts +0 -46
  34. package/dist/src/components/VerificationCode.vue.d.ts +0 -45
  35. package/dist/src/index.d.ts +0 -32
  36. package/dist/src/main.d.ts +0 -1
  37. package/dist/src/models/DropdownMenuItem.model.d.ts +0 -13
  38. package/dist/src/models/InputList.model.d.ts +0 -4
  39. package/dist/src/tools/editorFiles.d.ts +0 -40
  40. package/dist/src/tools/editorImage.d.ts +0 -44
@@ -1,62 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- iconName: {
3
- type: StringConstructor;
4
- required: true;
5
- default: string;
6
- };
7
- size: {
8
- type: NumberConstructor;
9
- required: true;
10
- default: number;
11
- };
12
- active: {
13
- type: BooleanConstructor;
14
- required: false;
15
- default: boolean;
16
- };
17
- isDanger: {
18
- type: BooleanConstructor;
19
- required: false;
20
- default: boolean;
21
- };
22
- activeOnHover: {
23
- type: BooleanConstructor;
24
- required: false;
25
- default: boolean;
26
- };
27
- }, unknown, unknown, {}, {
28
- getIconUrl(): string;
29
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
30
- iconName: {
31
- type: StringConstructor;
32
- required: true;
33
- default: string;
34
- };
35
- size: {
36
- type: NumberConstructor;
37
- required: true;
38
- default: number;
39
- };
40
- active: {
41
- type: BooleanConstructor;
42
- required: false;
43
- default: boolean;
44
- };
45
- isDanger: {
46
- type: BooleanConstructor;
47
- required: false;
48
- default: boolean;
49
- };
50
- activeOnHover: {
51
- type: BooleanConstructor;
52
- required: false;
53
- default: boolean;
54
- };
55
- }>>, {
56
- iconName: string;
57
- size: number;
58
- active: boolean;
59
- isDanger: boolean;
60
- activeOnHover: boolean;
61
- }>;
62
- export default _default;
@@ -1,60 +0,0 @@
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
- width: string | number;
56
- image: File;
57
- showPreview: boolean;
58
- isRound: boolean;
59
- }>;
60
- export default _default;
@@ -1,54 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- $props: Readonly<import("vue").ExtractPropTypes<{
3
- options: {
4
- type: ArrayConstructor;
5
- required: true;
6
- };
7
- labelProp: {
8
- type: StringConstructor;
9
- required: false;
10
- default: string;
11
- };
12
- valueProp: {
13
- type: StringConstructor;
14
- required: false;
15
- default: string;
16
- };
17
- icon: {
18
- type: StringConstructor;
19
- required: true;
20
- };
21
- placeholderInput: {
22
- type: StringConstructor;
23
- required: false;
24
- default: string;
25
- };
26
- tabindex: {
27
- type: NumberConstructor;
28
- required: false;
29
- default: number;
30
- };
31
- inputValue: {
32
- type: StringConstructor;
33
- required: false;
34
- default: string;
35
- };
36
- inputWidth: {
37
- type: StringConstructor;
38
- required: false;
39
- default: string;
40
- };
41
- selectedOption: {
42
- type: ObjectConstructor;
43
- required: false;
44
- default: null;
45
- };
46
- isClearable: {
47
- type: BooleanConstructor;
48
- required: false;
49
- default: boolean;
50
- };
51
- }>>;
52
- $emit: (event: "clear" | "update", ...args: any[]) => void;
53
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
54
- export default _default;
@@ -1,43 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- $props: Readonly<import("vue").ExtractPropTypes<{
3
- labelProp: {
4
- type: StringConstructor;
5
- required: false;
6
- default: string;
7
- };
8
- valueProp: {
9
- type: StringConstructor;
10
- required: false;
11
- default: string;
12
- };
13
- icon: {
14
- type: StringConstructor;
15
- required: true;
16
- };
17
- placeholderInput: {
18
- type: StringConstructor;
19
- required: false;
20
- default: string;
21
- };
22
- tabindex: {
23
- type: NumberConstructor;
24
- required: false;
25
- default: number;
26
- };
27
- inputWidth: {
28
- type: StringConstructor;
29
- required: false;
30
- default: string;
31
- };
32
- value: {
33
- type: ArrayConstructor;
34
- required: true;
35
- };
36
- options: {
37
- type: ArrayConstructor;
38
- required: true;
39
- };
40
- }>>;
41
- $emit: (event: "update", ...args: any[]) => void;
42
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
43
- export default _default;
@@ -1,50 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- $props: Readonly<import("vue").ExtractPropTypes<{
3
- modelValue: {
4
- type: (StringConstructor | NumberConstructor)[];
5
- default: string;
6
- };
7
- inputType: {
8
- type: StringConstructor;
9
- default: string;
10
- required: true;
11
- };
12
- iconName: {
13
- type: StringConstructor;
14
- required: false;
15
- default: string;
16
- };
17
- sideContent: {
18
- type: StringConstructor;
19
- required: false;
20
- default: string;
21
- };
22
- widthProp: {
23
- type: StringConstructor;
24
- default: string;
25
- required: false;
26
- };
27
- heightProp: {
28
- type: StringConstructor;
29
- default: string;
30
- required: false;
31
- };
32
- direction: {
33
- type: StringConstructor;
34
- default: string;
35
- required: false;
36
- };
37
- placeholder: {
38
- type: StringConstructor;
39
- default: string;
40
- required: false;
41
- };
42
- e2e: {
43
- type: StringConstructor;
44
- default: string;
45
- required: false;
46
- };
47
- }>>;
48
- $emit: (event: "update:modelValue", ...args: any[]) => void;
49
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
50
- export default _default;
@@ -1,37 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- $props: Readonly<import("vue").ExtractPropTypes<{
3
- list: {
4
- type: ArrayConstructor;
5
- required: true;
6
- };
7
- maxHeight: {
8
- type: StringConstructor;
9
- default: string;
10
- };
11
- labelProp: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- valueProp: {
16
- type: StringConstructor;
17
- default: string;
18
- };
19
- canClear: {
20
- type: BooleanConstructor;
21
- required: false;
22
- default: boolean;
23
- };
24
- placeholder: {
25
- type: StringConstructor;
26
- required: false;
27
- default: string;
28
- };
29
- modelValue: {
30
- type: (ArrayConstructor | ObjectConstructor)[];
31
- required: false;
32
- default: null;
33
- };
34
- }>>;
35
- $emit: (event: "clear" | "select" | "update" | "deselect", ...args: any[]) => void;
36
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
37
- export default _default;
@@ -1,109 +0,0 @@
1
- import { type PropType } from "vue";
2
- declare const _default: import("vue").DefineComponent<{
3
- hasCloseButton: {
4
- type: BooleanConstructor;
5
- default: boolean;
6
- };
7
- hasSideBar: {
8
- type: BooleanConstructor;
9
- default: boolean;
10
- };
11
- hasSideBarButtonBottom: {
12
- type: BooleanConstructor;
13
- default: boolean;
14
- };
15
- hasHeader: {
16
- type: BooleanConstructor;
17
- default: boolean;
18
- };
19
- hasFooter: {
20
- type: BooleanConstructor;
21
- default: boolean;
22
- };
23
- hasFooterButtonRight: {
24
- type: BooleanConstructor;
25
- default: boolean;
26
- };
27
- hasBodyScrolling: {
28
- type: BooleanConstructor;
29
- default: boolean;
30
- };
31
- sideBarPosition: {
32
- type: PropType<"left" | "right">;
33
- default: string;
34
- };
35
- hasCloseConfirmation: {
36
- type: BooleanConstructor;
37
- default: boolean;
38
- };
39
- bodyClass: {
40
- type: PropType<"" | "content-horizontally-centered">;
41
- default: string;
42
- };
43
- fitContent: {
44
- type: BooleanConstructor;
45
- default: boolean;
46
- };
47
- }, unknown, unknown, {}, {
48
- closed(): void;
49
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
50
- hasCloseButton: {
51
- type: BooleanConstructor;
52
- default: boolean;
53
- };
54
- hasSideBar: {
55
- type: BooleanConstructor;
56
- default: boolean;
57
- };
58
- hasSideBarButtonBottom: {
59
- type: BooleanConstructor;
60
- default: boolean;
61
- };
62
- hasHeader: {
63
- type: BooleanConstructor;
64
- default: boolean;
65
- };
66
- hasFooter: {
67
- type: BooleanConstructor;
68
- default: boolean;
69
- };
70
- hasFooterButtonRight: {
71
- type: BooleanConstructor;
72
- default: boolean;
73
- };
74
- hasBodyScrolling: {
75
- type: BooleanConstructor;
76
- default: boolean;
77
- };
78
- sideBarPosition: {
79
- type: PropType<"left" | "right">;
80
- default: string;
81
- };
82
- hasCloseConfirmation: {
83
- type: BooleanConstructor;
84
- default: boolean;
85
- };
86
- bodyClass: {
87
- type: PropType<"" | "content-horizontally-centered">;
88
- default: string;
89
- };
90
- fitContent: {
91
- type: BooleanConstructor;
92
- default: boolean;
93
- };
94
- }>> & {
95
- onClose?: ((...args: any[]) => any) | undefined;
96
- }, {
97
- hasCloseButton: boolean;
98
- hasSideBar: boolean;
99
- hasSideBarButtonBottom: boolean;
100
- hasHeader: boolean;
101
- hasFooter: boolean;
102
- hasFooterButtonRight: boolean;
103
- hasBodyScrolling: boolean;
104
- sideBarPosition: "left" | "right";
105
- hasCloseConfirmation: boolean;
106
- bodyClass: "" | "content-horizontally-centered";
107
- fitContent: boolean;
108
- }>;
109
- export default _default;
@@ -1,103 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- notificationType: {
3
- type: StringConstructor;
4
- required: true;
5
- default: string;
6
- validator: (value: string) => boolean;
7
- };
8
- icon: {
9
- type: StringConstructor;
10
- required: true;
11
- default: string;
12
- };
13
- title: {
14
- type: StringConstructor;
15
- required: false;
16
- default: string;
17
- };
18
- message: {
19
- type: StringConstructor;
20
- required: false;
21
- default: string;
22
- };
23
- dismissible: {
24
- type: BooleanConstructor;
25
- required: false;
26
- default: boolean;
27
- };
28
- notificationButton: {
29
- type: StringConstructor;
30
- default: string;
31
- };
32
- buttonDismiss: {
33
- type: StringConstructor;
34
- default: string;
35
- };
36
- zIndex: {
37
- type: NumberConstructor;
38
- default: number;
39
- };
40
- show: {
41
- type: BooleanConstructor;
42
- default: boolean;
43
- };
44
- }, unknown, unknown, {}, {
45
- close(confirmation?: boolean): void;
46
- limitTitle(_title: string, _type: string): string;
47
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "action"[], "action", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
48
- notificationType: {
49
- type: StringConstructor;
50
- required: true;
51
- default: string;
52
- validator: (value: string) => boolean;
53
- };
54
- icon: {
55
- type: StringConstructor;
56
- required: true;
57
- default: string;
58
- };
59
- title: {
60
- type: StringConstructor;
61
- required: false;
62
- default: string;
63
- };
64
- message: {
65
- type: StringConstructor;
66
- required: false;
67
- default: string;
68
- };
69
- dismissible: {
70
- type: BooleanConstructor;
71
- required: false;
72
- default: boolean;
73
- };
74
- notificationButton: {
75
- type: StringConstructor;
76
- default: string;
77
- };
78
- buttonDismiss: {
79
- type: StringConstructor;
80
- default: string;
81
- };
82
- zIndex: {
83
- type: NumberConstructor;
84
- default: number;
85
- };
86
- show: {
87
- type: BooleanConstructor;
88
- default: boolean;
89
- };
90
- }>> & {
91
- onAction?: ((...args: any[]) => any) | undefined;
92
- }, {
93
- zIndex: number;
94
- title: string;
95
- icon: string;
96
- show: boolean;
97
- notificationType: string;
98
- message: string;
99
- dismissible: boolean;
100
- notificationButton: string;
101
- buttonDismiss: string;
102
- }>;
103
- export default _default;
@@ -1,160 +0,0 @@
1
- import "../../node_modules/multi-range-slider-vue/MultiRangeSliderBarOnly.css";
2
- import { type PropType } from "vue";
3
- import type { AnyObject } from "chart.js/types/basic";
4
- declare const _default: import("vue").DefineComponent<{
5
- numberRange: {
6
- type: PropType<AnyObject[]>;
7
- default: () => {
8
- key: number;
9
- count: number;
10
- }[];
11
- };
12
- width: {
13
- type: NumberConstructor;
14
- default: number;
15
- };
16
- height: {
17
- type: NumberConstructor;
18
- default: number;
19
- };
20
- chartId: {
21
- type: StringConstructor;
22
- default: string;
23
- };
24
- datasetIdKey: {
25
- type: StringConstructor;
26
- default: string;
27
- };
28
- includeForm: {
29
- type: BooleanConstructor;
30
- default: boolean;
31
- };
32
- isMatch: {
33
- type: BooleanConstructor;
34
- default: boolean;
35
- };
36
- isExclude: {
37
- type: BooleanConstructor;
38
- default: boolean;
39
- };
40
- isDisable: {
41
- type: BooleanConstructor;
42
- default: boolean;
43
- };
44
- }, unknown, {
45
- chartData: {
46
- labels: never[];
47
- datasets: {
48
- labels: string;
49
- data: never[];
50
- backgroundColor: string[];
51
- borderRadius: number;
52
- hoverBackgroundColor: string;
53
- }[];
54
- };
55
- chartOptions: {
56
- responsive: boolean;
57
- plugins: {
58
- legend: {
59
- display: boolean;
60
- };
61
- };
62
- scales: {
63
- x: {
64
- display: boolean;
65
- grid: {
66
- display: boolean;
67
- };
68
- ticks: {
69
- display: boolean;
70
- };
71
- };
72
- y: {
73
- display: boolean;
74
- grid: {
75
- display: boolean;
76
- };
77
- ticks: {
78
- display: boolean;
79
- };
80
- };
81
- };
82
- };
83
- min: number;
84
- max: number;
85
- validated: boolean;
86
- activeColor: string;
87
- inactiveColor: string;
88
- }, {
89
- getRangeLength(): number;
90
- getFirstKey(): unknown;
91
- getLastKey(): unknown;
92
- getMinKey(): string;
93
- getMaxKey(): string;
94
- getLastIndex(): number;
95
- }, {
96
- updateRange(): void;
97
- updateBarChart(e: any): void;
98
- matchFilter(): void;
99
- excludeFilter(): void;
100
- missingFilter(): void;
101
- changeMin(e: Event): void;
102
- changeMax(e: Event): void;
103
- setChartData(chart_data: {
104
- key: number;
105
- count: number;
106
- }[]): void;
107
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update"[], "update", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
108
- numberRange: {
109
- type: PropType<AnyObject[]>;
110
- default: () => {
111
- key: number;
112
- count: number;
113
- }[];
114
- };
115
- width: {
116
- type: NumberConstructor;
117
- default: number;
118
- };
119
- height: {
120
- type: NumberConstructor;
121
- default: number;
122
- };
123
- chartId: {
124
- type: StringConstructor;
125
- default: string;
126
- };
127
- datasetIdKey: {
128
- type: StringConstructor;
129
- default: string;
130
- };
131
- includeForm: {
132
- type: BooleanConstructor;
133
- default: boolean;
134
- };
135
- isMatch: {
136
- type: BooleanConstructor;
137
- default: boolean;
138
- };
139
- isExclude: {
140
- type: BooleanConstructor;
141
- default: boolean;
142
- };
143
- isDisable: {
144
- type: BooleanConstructor;
145
- default: boolean;
146
- };
147
- }>> & {
148
- onUpdate?: ((...args: any[]) => any) | undefined;
149
- }, {
150
- datasetIdKey: string;
151
- chartId: string;
152
- width: number;
153
- height: number;
154
- numberRange: AnyObject[];
155
- includeForm: boolean;
156
- isMatch: boolean;
157
- isExclude: boolean;
158
- isDisable: boolean;
159
- }>;
160
- export default _default;