@deskhero/dh_ui 2.7.0 → 2.7.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.
- package/dist/components/Notification.vue.d.ts +9 -0
- package/dist/dh_ui.es.js +5428 -5497
- package/dist/dh_ui.umd.js +72 -105
- package/dist/style.css +1 -1
- package/package.json +4 -4
|
@@ -49,6 +49,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
49
|
type: StringConstructor;
|
|
50
50
|
default: string;
|
|
51
51
|
};
|
|
52
|
+
animationSpeed: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
52
56
|
}, unknown, unknown, {}, {
|
|
53
57
|
close(confirmation?: boolean): void;
|
|
54
58
|
limitTitle(_title: string, _type: string): string;
|
|
@@ -103,6 +107,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
103
107
|
type: StringConstructor;
|
|
104
108
|
default: string;
|
|
105
109
|
};
|
|
110
|
+
animationSpeed: {
|
|
111
|
+
type: StringConstructor;
|
|
112
|
+
default: string;
|
|
113
|
+
};
|
|
106
114
|
}>> & {
|
|
107
115
|
onAction?: ((...args: any[]) => any) | undefined;
|
|
108
116
|
}, {
|
|
@@ -117,5 +125,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
117
125
|
buttonDismiss: string;
|
|
118
126
|
animationEnter: string;
|
|
119
127
|
animationUp: string;
|
|
128
|
+
animationSpeed: string;
|
|
120
129
|
}, {}>;
|
|
121
130
|
export default _default;
|