@deskhero/dh_ui 2.54.1 → 2.54.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.
@@ -1,293 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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
- isActive: {
14
- type: BooleanConstructor;
15
- required: false;
16
- default: boolean;
17
- };
18
- title: {
19
- type: StringConstructor;
20
- required: false;
21
- default: string;
22
- };
23
- message: {
24
- type: StringConstructor;
25
- required: false;
26
- default: string;
27
- };
28
- dismissible: {
29
- type: BooleanConstructor;
30
- required: false;
31
- default: boolean;
32
- };
33
- showCloseIcon: {
34
- type: BooleanConstructor;
35
- default: boolean;
36
- };
37
- buttonAction: {
38
- type: StringConstructor;
39
- default: string;
40
- };
41
- buttonActionE2e: {
42
- type: StringConstructor;
43
- default: string;
44
- };
45
- buttonDismiss: {
46
- type: StringConstructor;
47
- default: string;
48
- };
49
- buttonDismissE2e: {
50
- type: StringConstructor;
51
- default: string;
52
- };
53
- disableClick: {
54
- type: BooleanConstructor;
55
- default: boolean;
56
- };
57
- zIndex: {
58
- type: NumberConstructor;
59
- default: number;
60
- };
61
- show: {
62
- type: BooleanConstructor;
63
- default: boolean;
64
- };
65
- animationEnter: {
66
- type: StringConstructor;
67
- default: string;
68
- };
69
- animationUp: {
70
- type: StringConstructor;
71
- default: string;
72
- };
73
- animationSpeed: {
74
- type: StringConstructor;
75
- default: string;
76
- };
77
- showDismissButton: {
78
- type: BooleanConstructor;
79
- default: boolean;
80
- };
81
- width: {
82
- type: StringConstructor;
83
- default: string;
84
- };
85
- }>, {}, {}, {}, {
86
- close(confirmation?: boolean): void;
87
- limitTitle(_title: string, _type: string): string;
88
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "action"[], "action", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
89
- notificationType: {
90
- type: StringConstructor;
91
- required: true;
92
- default: string;
93
- validator: (value: string) => boolean;
94
- };
95
- icon: {
96
- type: StringConstructor;
97
- required: true;
98
- default: string;
99
- };
100
- isActive: {
101
- type: BooleanConstructor;
102
- required: false;
103
- default: boolean;
104
- };
105
- title: {
106
- type: StringConstructor;
107
- required: false;
108
- default: string;
109
- };
110
- message: {
111
- type: StringConstructor;
112
- required: false;
113
- default: string;
114
- };
115
- dismissible: {
116
- type: BooleanConstructor;
117
- required: false;
118
- default: boolean;
119
- };
120
- showCloseIcon: {
121
- type: BooleanConstructor;
122
- default: boolean;
123
- };
124
- buttonAction: {
125
- type: StringConstructor;
126
- default: string;
127
- };
128
- buttonActionE2e: {
129
- type: StringConstructor;
130
- default: string;
131
- };
132
- buttonDismiss: {
133
- type: StringConstructor;
134
- default: string;
135
- };
136
- buttonDismissE2e: {
137
- type: StringConstructor;
138
- default: string;
139
- };
140
- disableClick: {
141
- type: BooleanConstructor;
142
- default: boolean;
143
- };
144
- zIndex: {
145
- type: NumberConstructor;
146
- default: number;
147
- };
148
- show: {
149
- type: BooleanConstructor;
150
- default: boolean;
151
- };
152
- animationEnter: {
153
- type: StringConstructor;
154
- default: string;
155
- };
156
- animationUp: {
157
- type: StringConstructor;
158
- default: string;
159
- };
160
- animationSpeed: {
161
- type: StringConstructor;
162
- default: string;
163
- };
164
- showDismissButton: {
165
- type: BooleanConstructor;
166
- default: boolean;
167
- };
168
- width: {
169
- type: StringConstructor;
170
- default: string;
171
- };
172
- }>> & Readonly<{
173
- onAction?: ((...args: any[]) => any) | undefined;
174
- }>, {
175
- title: string;
176
- message: string;
177
- icon: string;
178
- width: string;
179
- zIndex: number;
180
- show: boolean;
181
- notificationType: string;
182
- isActive: boolean;
183
- dismissible: boolean;
184
- showCloseIcon: boolean;
185
- buttonAction: string;
186
- buttonActionE2e: string;
187
- buttonDismiss: string;
188
- buttonDismissE2e: string;
189
- disableClick: boolean;
190
- animationEnter: string;
191
- animationUp: string;
192
- animationSpeed: string;
193
- showDismissButton: boolean;
194
- }, {}, {
195
- DhIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
196
- iconName: {
197
- type: StringConstructor;
198
- required: true;
199
- default: string;
200
- };
201
- alt: {
202
- type: StringConstructor;
203
- required: false;
204
- default: string;
205
- };
206
- title: {
207
- type: StringConstructor;
208
- required: false;
209
- default: string;
210
- };
211
- size: {
212
- type: NumberConstructor;
213
- required: true;
214
- default: number;
215
- };
216
- active: {
217
- type: BooleanConstructor;
218
- required: false;
219
- default: boolean;
220
- };
221
- isDanger: {
222
- type: BooleanConstructor;
223
- required: false;
224
- default: boolean;
225
- };
226
- activeOnHover: {
227
- type: BooleanConstructor;
228
- required: false;
229
- default: boolean;
230
- };
231
- customColor: {
232
- type: StringConstructor;
233
- required: false;
234
- default: string;
235
- };
236
- }>, {}, {}, {}, {
237
- getIconUrl(): string;
238
- emitError(): void;
239
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "error"[], "error", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
240
- iconName: {
241
- type: StringConstructor;
242
- required: true;
243
- default: string;
244
- };
245
- alt: {
246
- type: StringConstructor;
247
- required: false;
248
- default: string;
249
- };
250
- title: {
251
- type: StringConstructor;
252
- required: false;
253
- default: string;
254
- };
255
- size: {
256
- type: NumberConstructor;
257
- required: true;
258
- default: number;
259
- };
260
- active: {
261
- type: BooleanConstructor;
262
- required: false;
263
- default: boolean;
264
- };
265
- isDanger: {
266
- type: BooleanConstructor;
267
- required: false;
268
- default: boolean;
269
- };
270
- activeOnHover: {
271
- type: BooleanConstructor;
272
- required: false;
273
- default: boolean;
274
- };
275
- customColor: {
276
- type: StringConstructor;
277
- required: false;
278
- default: string;
279
- };
280
- }>> & Readonly<{
281
- onError?: ((...args: any[]) => any) | undefined;
282
- }>, {
283
- title: string;
284
- iconName: string;
285
- alt: string;
286
- size: number;
287
- active: boolean;
288
- isDanger: boolean;
289
- activeOnHover: boolean;
290
- customColor: string;
291
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
292
- }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
293
- export default _default;
@@ -1,62 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- modelValue: {
3
- type: StringConstructor;
4
- default: string;
5
- };
6
- placeholder: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- tipChars: {
11
- type: StringConstructor;
12
- default: string;
13
- };
14
- tipNumbers: {
15
- type: StringConstructor;
16
- default: string;
17
- };
18
- tipSymbols: {
19
- type: StringConstructor;
20
- default: string;
21
- };
22
- passwordTooltipDisabled: {
23
- type: BooleanConstructor;
24
- default: boolean;
25
- };
26
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("submit" | "update:modelValue")[], "submit" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
27
- modelValue: {
28
- type: StringConstructor;
29
- default: string;
30
- };
31
- placeholder: {
32
- type: StringConstructor;
33
- default: string;
34
- };
35
- tipChars: {
36
- type: StringConstructor;
37
- default: string;
38
- };
39
- tipNumbers: {
40
- type: StringConstructor;
41
- default: string;
42
- };
43
- tipSymbols: {
44
- type: StringConstructor;
45
- default: string;
46
- };
47
- passwordTooltipDisabled: {
48
- type: BooleanConstructor;
49
- default: boolean;
50
- };
51
- }>> & Readonly<{
52
- onSubmit?: ((...args: any[]) => any) | undefined;
53
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
54
- }>, {
55
- placeholder: string;
56
- modelValue: string;
57
- tipChars: string;
58
- tipNumbers: string;
59
- tipSymbols: string;
60
- passwordTooltipDisabled: boolean;
61
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
62
- export default _default;
@@ -1,9 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- $props: {
3
- readonly label?: string | undefined;
4
- readonly type?: string | undefined;
5
- readonly value?: string | undefined;
6
- };
7
- $emit: (event: "clickBox", ...args: any[]) => void;
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
- export default _default;
@@ -1,8 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- $props: {
3
- readonly type?: string | undefined;
4
- readonly list?: unknown[] | undefined;
5
- readonly orientation?: string | undefined;
6
- };
7
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
- export default _default;
@@ -1,13 +0,0 @@
1
- export default interface DropdownMenuItem {
2
- id?: number;
3
- action?: string;
4
- iconName: string;
5
- iconUrl?: string;
6
- text: string;
7
- subText?: string;
8
- url?: string;
9
- dataE2eTag?: string;
10
- isSelected?: boolean;
11
- fqdn?: string;
12
- disabled?: boolean;
13
- }
@@ -1,4 +0,0 @@
1
- export declare enum CLEAR_ICON_POSITION {
2
- CLOSE_INSIDE = "close-inside",
3
- TRASH_OUTSIDE = "trash-outside"
4
- }