@mc-markets/ui 1.0.27 → 1.0.29

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.
@@ -0,0 +1,51 @@
1
+ interface DialogParam {
2
+ modelValue: boolean;
3
+ attrs?: Object;
4
+ title?: string;
5
+ width?: number | string;
6
+ draggable?: boolean;
7
+ showConfirmButton?: boolean;
8
+ showCancelButton?: boolean;
9
+ confirmButtonText?: string;
10
+ cancelButtonText?: string;
11
+ }
12
+ declare function __VLS_template(): {
13
+ attrs: Partial<{}>;
14
+ slots: {
15
+ header?(_: {
16
+ close: () => void;
17
+ titleId: string;
18
+ titleClass: string;
19
+ }): any;
20
+ default?(_: {}): any;
21
+ footer?(_: {}): any;
22
+ };
23
+ refs: {};
24
+ rootEl: any;
25
+ };
26
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
27
+ declare const __VLS_component: import('vue').DefineComponent<DialogParam, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
+ "update:modelValue": (...args: any[]) => void;
29
+ close: (...args: any[]) => void;
30
+ confirm: (...args: any[]) => void;
31
+ }, string, import('vue').PublicProps, Readonly<DialogParam> & Readonly<{
32
+ "onUpdate:modelValue"?: (...args: any[]) => any;
33
+ onClose?: (...args: any[]) => any;
34
+ onConfirm?: (...args: any[]) => any;
35
+ }>, {
36
+ modelValue: boolean;
37
+ title: string;
38
+ width: number | string;
39
+ draggable: boolean;
40
+ showConfirmButton: boolean;
41
+ showCancelButton: boolean;
42
+ confirmButtonText: string;
43
+ cancelButtonText: string;
44
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
45
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
46
+ export default _default;
47
+ type __VLS_WithTemplateSlots<T, S> = T & {
48
+ new (): {
49
+ $slots: S;
50
+ };
51
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mc-markets/ui",
3
3
  "private": false,
4
- "version": "1.0.27",
4
+ "version": "1.0.29",
5
5
  "type": "module",
6
6
  "author": "chenyu",
7
7
  "description": "Element Plus 完整导出包,提供所有组件、指令和服务",
File without changes