@deskhero/dh_ui 2.8.0 → 2.9.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 +21 -3
- package/dist/dh_ui.es.js +364 -354
- package/dist/dh_ui.umd.js +25 -25
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -25,7 +25,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
25
25
|
required: false;
|
|
26
26
|
default: boolean;
|
|
27
27
|
};
|
|
28
|
-
|
|
28
|
+
buttonAction: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
buttonActionE2e: {
|
|
29
33
|
type: StringConstructor;
|
|
30
34
|
default: string;
|
|
31
35
|
};
|
|
@@ -33,6 +37,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
37
|
type: StringConstructor;
|
|
34
38
|
default: string;
|
|
35
39
|
};
|
|
40
|
+
buttonDismissE2e: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
36
44
|
zIndex: {
|
|
37
45
|
type: NumberConstructor;
|
|
38
46
|
default: number;
|
|
@@ -83,7 +91,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
91
|
required: false;
|
|
84
92
|
default: boolean;
|
|
85
93
|
};
|
|
86
|
-
|
|
94
|
+
buttonAction: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
buttonActionE2e: {
|
|
87
99
|
type: StringConstructor;
|
|
88
100
|
default: string;
|
|
89
101
|
};
|
|
@@ -91,6 +103,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
103
|
type: StringConstructor;
|
|
92
104
|
default: string;
|
|
93
105
|
};
|
|
106
|
+
buttonDismissE2e: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
94
110
|
zIndex: {
|
|
95
111
|
type: NumberConstructor;
|
|
96
112
|
default: number;
|
|
@@ -121,8 +137,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
137
|
notificationType: string;
|
|
122
138
|
message: string;
|
|
123
139
|
dismissible: boolean;
|
|
124
|
-
|
|
140
|
+
buttonAction: string;
|
|
141
|
+
buttonActionE2e: string;
|
|
125
142
|
buttonDismiss: string;
|
|
143
|
+
buttonDismissE2e: string;
|
|
126
144
|
animationEnter: string;
|
|
127
145
|
animationUp: string;
|
|
128
146
|
animationSpeed: string;
|