@deskhero/dh_ui 2.29.1 → 2.30.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 +9 -0
- package/dist/dh_ui.es.js +3137 -3128
- package/dist/dh_ui.umd.js +28 -28
- package/dist/style.css +1 -1
- package/dist/tools/editorImage.d.ts +1 -1
- package/package.json +1 -1
|
@@ -61,6 +61,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
type: StringConstructor;
|
|
62
62
|
default: string;
|
|
63
63
|
};
|
|
64
|
+
showDismissButton: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
64
68
|
}, unknown, unknown, {}, {
|
|
65
69
|
close(confirmation?: boolean): void;
|
|
66
70
|
limitTitle(_title: string, _type: string): string;
|
|
@@ -127,6 +131,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
127
131
|
type: StringConstructor;
|
|
128
132
|
default: string;
|
|
129
133
|
};
|
|
134
|
+
showDismissButton: {
|
|
135
|
+
type: BooleanConstructor;
|
|
136
|
+
default: boolean;
|
|
137
|
+
};
|
|
130
138
|
}>> & {
|
|
131
139
|
onAction?: ((...args: any[]) => any) | undefined;
|
|
132
140
|
}, {
|
|
@@ -144,5 +152,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
152
|
animationEnter: string;
|
|
145
153
|
animationUp: string;
|
|
146
154
|
animationSpeed: string;
|
|
155
|
+
showDismissButton: boolean;
|
|
147
156
|
}, {}>;
|
|
148
157
|
export default _default;
|