@deskhero/dh_ui 2.35.0 → 2.36.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/components/Notification.vue.d.ts +29 -0
- package/dist/dh_ui.es.js +416 -399
- package/dist/dh_ui.umd.js +26 -26
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -10,6 +10,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10
10
|
required: true;
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
|
+
isActive: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
13
18
|
title: {
|
|
14
19
|
type: StringConstructor;
|
|
15
20
|
required: false;
|
|
@@ -25,6 +30,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
25
30
|
required: false;
|
|
26
31
|
default: boolean;
|
|
27
32
|
};
|
|
33
|
+
showCloseIcon: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
28
37
|
buttonAction: {
|
|
29
38
|
type: StringConstructor;
|
|
30
39
|
default: string;
|
|
@@ -65,6 +74,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
74
|
type: BooleanConstructor;
|
|
66
75
|
default: boolean;
|
|
67
76
|
};
|
|
77
|
+
width: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
default: string;
|
|
80
|
+
};
|
|
68
81
|
}, unknown, unknown, {}, {
|
|
69
82
|
close(confirmation?: boolean): void;
|
|
70
83
|
limitTitle(_title: string, _type: string): string;
|
|
@@ -80,6 +93,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
93
|
required: true;
|
|
81
94
|
default: string;
|
|
82
95
|
};
|
|
96
|
+
isActive: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
required: false;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
83
101
|
title: {
|
|
84
102
|
type: StringConstructor;
|
|
85
103
|
required: false;
|
|
@@ -95,6 +113,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
113
|
required: false;
|
|
96
114
|
default: boolean;
|
|
97
115
|
};
|
|
116
|
+
showCloseIcon: {
|
|
117
|
+
type: BooleanConstructor;
|
|
118
|
+
default: boolean;
|
|
119
|
+
};
|
|
98
120
|
buttonAction: {
|
|
99
121
|
type: StringConstructor;
|
|
100
122
|
default: string;
|
|
@@ -135,16 +157,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
157
|
type: BooleanConstructor;
|
|
136
158
|
default: boolean;
|
|
137
159
|
};
|
|
160
|
+
width: {
|
|
161
|
+
type: StringConstructor;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
138
164
|
}>> & {
|
|
139
165
|
onAction?: ((...args: any[]) => any) | undefined;
|
|
140
166
|
}, {
|
|
141
167
|
title: string;
|
|
142
168
|
icon: string;
|
|
169
|
+
width: string;
|
|
143
170
|
zIndex: number;
|
|
144
171
|
show: boolean;
|
|
145
172
|
notificationType: string;
|
|
173
|
+
isActive: boolean;
|
|
146
174
|
message: string;
|
|
147
175
|
dismissible: boolean;
|
|
176
|
+
showCloseIcon: boolean;
|
|
148
177
|
buttonAction: string;
|
|
149
178
|
buttonActionE2e: string;
|
|
150
179
|
buttonDismiss: string;
|