x-next 0.0.0-alpha.35 → 0.0.0-alpha.37

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.
Files changed (36) hide show
  1. package/dist/_container/client-only.d.ts +4 -0
  2. package/dist/_container/parent-scroll-observer.d.ts +6 -0
  3. package/dist/_container/resize-observer.d.ts +6 -0
  4. package/dist/_container/utils.d.ts +12 -0
  5. package/dist/_hooks/_types.d.ts +4 -0
  6. package/dist/_hooks/use-first-element.d.ts +5 -0
  7. package/dist/_hooks/use-index.d.ts +9 -0
  8. package/dist/_hooks/use-resize-observer.d.ts +8 -0
  9. package/dist/_utils/click.d.ts +13 -0
  10. package/dist/_utils/vue-eco.d.ts +7 -0
  11. package/dist/components/index.d.ts +3 -0
  12. package/dist/components/input/Input.d.ts +2 -2
  13. package/dist/components/input/index.d.ts +6 -6
  14. package/dist/components/popconfirm/index.d.ts +193 -0
  15. package/dist/components/popconfirm/src/Popconfirm.d.ts +104 -0
  16. package/dist/components/popconfirm/src/popup.vue.d.ts +407 -0
  17. package/dist/components/popconfirm/src/props.d.ts +45 -0
  18. package/dist/components/popconfirm/src/types.d.ts +3 -0
  19. package/dist/components/timeline/index.d.ts +58 -0
  20. package/dist/components/timeline/src/context.d.ts +12 -0
  21. package/dist/components/timeline/src/props.d.ts +31 -0
  22. package/dist/components/timeline/src/timeline-item.d.ts +12 -0
  23. package/dist/components/timeline/src/timeline.d.ts +24 -0
  24. package/dist/components/timeline/src/types.d.ts +9 -0
  25. package/dist/components/timeline-item/index.d.ts +34 -0
  26. package/dist/components/trigger/index.d.ts +487 -0
  27. package/dist/components/trigger/src/_trigger.d.ts +217 -0
  28. package/dist/components/trigger/src/constant.d.ts +8 -0
  29. package/dist/components/trigger/src/trigger.d.ts +288 -0
  30. package/dist/components/trigger/src/utils.d.ts +50 -0
  31. package/dist/index.es.js +1964 -866
  32. package/dist/index.umd.js +1 -1
  33. package/dist/style.css +1 -1
  34. package/dist/types.d.ts +10 -12
  35. package/package.json +7 -3
  36. package/volar.d.ts +9 -8
@@ -0,0 +1,4 @@
1
+ declare const _default: import('vue').DefineComponent<{}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2
+ [key: string]: any;
3
+ }>[] | null | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: import('vue').DefineComponent<{}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2
+ [key: string]: any;
3
+ }>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "scroll"[], "scroll", import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ onScroll?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: import('vue').DefineComponent<{}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
2
+ [key: string]: any;
3
+ }>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "resize"[], "resize", import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ onResize?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
+ export default _default;
@@ -0,0 +1,12 @@
1
+ export declare const getProp: (target: any, path: any, defVal?: any) => any;
2
+ export declare const setProp: (target: any, path: any, value: any) => any;
3
+ export declare const deepClone: (obj: any, set?: any) => any;
4
+ export declare const NOOP: () => void;
5
+ export declare const addUnit: (value: string | number | undefined, unit?: string) => string;
6
+ export declare const upperFirstChar: (text: string) => string | undefined;
7
+ export declare const compose: <T>(...fns: ((...v: T[]) => T)[]) => (...v: T[]) => T;
8
+ export declare const pipe: <T>(...fns: ((...v: T[]) => T)[]) => (...v: T[]) => T;
9
+ export declare const findLastIndex: (arr: never[] | undefined, callback: (item: any, i: number, origin: any[]) => boolean) => number;
10
+ export declare const getUniqueId: (size?: number) => string;
11
+ export declare const genMatrix: (list: any[], row: number) => any[];
12
+ export declare const sleep: (delay?: number) => Promise<unknown>;
@@ -0,0 +1,4 @@
1
+ import { VNode } from 'vue';
2
+ export interface SlotChildren {
3
+ value?: VNode[];
4
+ }
@@ -0,0 +1,5 @@
1
+ import { SlotChildren } from './_types.ts';
2
+ export declare const useFirstElement: () => {
3
+ children: SlotChildren;
4
+ firstElement: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
5
+ };
@@ -0,0 +1,9 @@
1
+ import { Ref } from 'vue';
2
+ export declare const useIndex: ({ itemRef, selector, index, parentClassName, }: {
3
+ itemRef: Ref<HTMLElement | undefined | null>;
4
+ selector: string;
5
+ index?: Ref<number | undefined>;
6
+ parentClassName?: string;
7
+ }) => {
8
+ innerIndex: import('vue').ComputedRef<number>;
9
+ };
@@ -0,0 +1,8 @@
1
+ import { Ref } from 'vue';
2
+ export declare const useResizeObserver: ({ elementRef, onResize, }: {
3
+ elementRef: Ref<HTMLElement | undefined>;
4
+ onResize: (args: ResizeObserverEntry) => void;
5
+ }) => {
6
+ createResizeObserver: () => void;
7
+ destroyResizeObserver: () => void;
8
+ };
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @description: 防抖函数
3
+ * @param callback
4
+ * @param delay
5
+ * @param immediate
6
+ */
7
+ export declare const debounce: (callback: (e: any) => void, delay: number, immediate?: boolean) => any;
8
+ /**
9
+ * @description: 节流函数
10
+ * @param callback
11
+ * @param delay
12
+ */
13
+ export declare const throttle: (callback: (e: any) => void, delay?: number) => any;
@@ -1,5 +1,6 @@
1
1
  import { VNodeTypes, VNode, PropType, Component, Slots, App, Plugin, DefineComponent } from 'vue';
2
2
  export type SFCWithInstall<T> = T & Plugin;
3
+ type ObjectData = Record<string, unknown>;
3
4
  /**
4
5
  * @description Vue生态操作封装
5
6
  */
@@ -25,7 +26,13 @@ export declare const isSlotsChildren: (vn: VNode, children: VNode["children"]) =
25
26
  export declare const getAllElements: (children: VNode[] | undefined, includeText?: boolean) => VNode<import('vue').RendererNode, import('vue').RendererElement, {
26
27
  [key: string]: any;
27
28
  }>[];
29
+ export declare const getFirstElement: (vn: VNode | VNode[]) => HTMLElement | null;
30
+ export declare const getFirstElementFromVNode: (vn: VNode) => HTMLElement | undefined;
31
+ export declare const getFirstElementFromChildren: (children: VNode[] | undefined) => HTMLElement | undefined;
32
+ export declare const getChildrenArray: (vn: VNode) => VNode[] | undefined;
33
+ export declare const mergeFirstChild: (children: VNode[] | undefined, extraProps: ObjectData | ((vn: VNode) => ObjectData)) => boolean;
28
34
  export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E) => SFCWithInstall<T> & E;
29
35
  export declare const generateComponent: <T extends Component | DefineComponent>(name: string, component: T) => T & {
30
36
  install(app: App): void;
31
37
  };
38
+ export {};
@@ -3,5 +3,8 @@ export * from './dialog';
3
3
  export * from './message';
4
4
  export * from './message-box';
5
5
  export * from './notification';
6
+ export * from './popconfirm';
6
7
  export * from './space';
8
+ export * from './timeline';
9
+ export * from './timeline-item';
7
10
  export * from './trend-chart';
@@ -184,10 +184,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
184
184
  };
185
185
  }>> & Readonly<{
186
186
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
187
- onInput?: ((...args: any[]) => any) | undefined;
187
+ onFocus?: ((...args: any[]) => any) | undefined;
188
188
  onBlur?: ((...args: any[]) => any) | undefined;
189
189
  onChange?: ((...args: any[]) => any) | undefined;
190
- onFocus?: ((...args: any[]) => any) | undefined;
190
+ onInput?: ((...args: any[]) => any) | undefined;
191
191
  onClear?: ((...args: any[]) => any) | undefined;
192
192
  onPressEnter?: ((...args: any[]) => any) | undefined;
193
193
  }>, {
@@ -93,10 +93,10 @@ export declare const XInput: {
93
93
  };
94
94
  }>> & Readonly<{
95
95
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
96
- onInput?: ((...args: any[]) => any) | undefined;
96
+ onFocus?: ((...args: any[]) => any) | undefined;
97
97
  onBlur?: ((...args: any[]) => any) | undefined;
98
98
  onChange?: ((...args: any[]) => any) | undefined;
99
- onFocus?: ((...args: any[]) => any) | undefined;
99
+ onInput?: ((...args: any[]) => any) | undefined;
100
100
  onClear?: ((...args: any[]) => any) | undefined;
101
101
  onPressEnter?: ((...args: any[]) => any) | undefined;
102
102
  }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("clear" | "input" | "blur" | "change" | "focus" | "update:modelValue" | "pressEnter")[], import('vue').PublicProps, {
@@ -226,10 +226,10 @@ export declare const XInput: {
226
226
  };
227
227
  }>> & Readonly<{
228
228
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
229
- onInput?: ((...args: any[]) => any) | undefined;
229
+ onFocus?: ((...args: any[]) => any) | undefined;
230
230
  onBlur?: ((...args: any[]) => any) | undefined;
231
231
  onChange?: ((...args: any[]) => any) | undefined;
232
- onFocus?: ((...args: any[]) => any) | undefined;
232
+ onInput?: ((...args: any[]) => any) | undefined;
233
233
  onClear?: ((...args: any[]) => any) | undefined;
234
234
  onPressEnter?: ((...args: any[]) => any) | undefined;
235
235
  }>, () => any, {}, {}, {}, {
@@ -356,10 +356,10 @@ export declare const XInput: {
356
356
  };
357
357
  }>> & Readonly<{
358
358
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
359
- onInput?: ((...args: any[]) => any) | undefined;
359
+ onFocus?: ((...args: any[]) => any) | undefined;
360
360
  onBlur?: ((...args: any[]) => any) | undefined;
361
361
  onChange?: ((...args: any[]) => any) | undefined;
362
- onFocus?: ((...args: any[]) => any) | undefined;
362
+ onInput?: ((...args: any[]) => any) | undefined;
363
363
  onClear?: ((...args: any[]) => any) | undefined;
364
364
  onPressEnter?: ((...args: any[]) => any) | undefined;
365
365
  }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("clear" | "input" | "blur" | "change" | "focus" | "update:modelValue" | "pressEnter")[], "clear" | "input" | "blur" | "change" | "focus" | "update:modelValue" | "pressEnter", {
@@ -0,0 +1,193 @@
1
+ export declare const XPopconfirm: {
2
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3
+ modelValue: {
4
+ type: BooleanConstructor;
5
+ default: undefined;
6
+ };
7
+ disabled: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ width: {
12
+ type: (NumberConstructor | StringConstructor)[];
13
+ default: number;
14
+ };
15
+ type: {
16
+ type: import('vue').PropType<import('./src/types').PopconfirmTypes>;
17
+ default: string;
18
+ };
19
+ content: (NumberConstructor | StringConstructor)[];
20
+ position: {
21
+ type: import('vue').PropType<import('./src/types').Position>;
22
+ default: string;
23
+ };
24
+ okText: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ cancelText: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ onBeforeOk: {
33
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
34
+ default: undefined;
35
+ };
36
+ onBeforeCancel: {
37
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
38
+ default: undefined;
39
+ };
40
+ renderTo: {
41
+ type: import('vue').PropType<string | HTMLElement>;
42
+ };
43
+ popupClass: StringConstructor;
44
+ }>> & Readonly<{
45
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
46
+ onCancel?: ((...args: any[]) => any) | undefined;
47
+ onOk?: ((...args: any[]) => any) | undefined;
48
+ onChange?: ((...args: any[]) => any) | undefined;
49
+ }>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
50
+ [key: string]: any;
51
+ }>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "ok")[], import('vue').PublicProps, {
52
+ type: import('./src/types').PopconfirmTypes;
53
+ disabled: boolean;
54
+ position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
55
+ width: string | number;
56
+ modelValue: boolean;
57
+ onBeforeCancel: (e: Event) => boolean | Promise<boolean>;
58
+ okText: string;
59
+ cancelText: string;
60
+ onBeforeOk: (e: Event) => boolean | Promise<boolean>;
61
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
62
+ P: {};
63
+ B: {};
64
+ D: {};
65
+ C: {};
66
+ M: {};
67
+ Defaults: {};
68
+ }, Readonly<import('vue').ExtractPropTypes<{
69
+ modelValue: {
70
+ type: BooleanConstructor;
71
+ default: undefined;
72
+ };
73
+ disabled: {
74
+ type: BooleanConstructor;
75
+ default: boolean;
76
+ };
77
+ width: {
78
+ type: (NumberConstructor | StringConstructor)[];
79
+ default: number;
80
+ };
81
+ type: {
82
+ type: import('vue').PropType<import('./src/types').PopconfirmTypes>;
83
+ default: string;
84
+ };
85
+ content: (NumberConstructor | StringConstructor)[];
86
+ position: {
87
+ type: import('vue').PropType<import('./src/types').Position>;
88
+ default: string;
89
+ };
90
+ okText: {
91
+ type: StringConstructor;
92
+ default: string;
93
+ };
94
+ cancelText: {
95
+ type: StringConstructor;
96
+ default: string;
97
+ };
98
+ onBeforeOk: {
99
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
100
+ default: undefined;
101
+ };
102
+ onBeforeCancel: {
103
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
104
+ default: undefined;
105
+ };
106
+ renderTo: {
107
+ type: import('vue').PropType<string | HTMLElement>;
108
+ };
109
+ popupClass: StringConstructor;
110
+ }>> & Readonly<{
111
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
112
+ onCancel?: ((...args: any[]) => any) | undefined;
113
+ onOk?: ((...args: any[]) => any) | undefined;
114
+ onChange?: ((...args: any[]) => any) | undefined;
115
+ }>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
116
+ [key: string]: any;
117
+ }>[] | undefined, {}, {}, {}, {
118
+ type: import('./src/types').PopconfirmTypes;
119
+ disabled: boolean;
120
+ position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
121
+ width: string | number;
122
+ modelValue: boolean;
123
+ onBeforeCancel: (e: Event) => boolean | Promise<boolean>;
124
+ okText: string;
125
+ cancelText: string;
126
+ onBeforeOk: (e: Event) => boolean | Promise<boolean>;
127
+ }>;
128
+ __isFragment?: never;
129
+ __isTeleport?: never;
130
+ __isSuspense?: never;
131
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
132
+ modelValue: {
133
+ type: BooleanConstructor;
134
+ default: undefined;
135
+ };
136
+ disabled: {
137
+ type: BooleanConstructor;
138
+ default: boolean;
139
+ };
140
+ width: {
141
+ type: (NumberConstructor | StringConstructor)[];
142
+ default: number;
143
+ };
144
+ type: {
145
+ type: import('vue').PropType<import('./src/types').PopconfirmTypes>;
146
+ default: string;
147
+ };
148
+ content: (NumberConstructor | StringConstructor)[];
149
+ position: {
150
+ type: import('vue').PropType<import('./src/types').Position>;
151
+ default: string;
152
+ };
153
+ okText: {
154
+ type: StringConstructor;
155
+ default: string;
156
+ };
157
+ cancelText: {
158
+ type: StringConstructor;
159
+ default: string;
160
+ };
161
+ onBeforeOk: {
162
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
163
+ default: undefined;
164
+ };
165
+ onBeforeCancel: {
166
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
167
+ default: undefined;
168
+ };
169
+ renderTo: {
170
+ type: import('vue').PropType<string | HTMLElement>;
171
+ };
172
+ popupClass: StringConstructor;
173
+ }>> & Readonly<{
174
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
175
+ onCancel?: ((...args: any[]) => any) | undefined;
176
+ onOk?: ((...args: any[]) => any) | undefined;
177
+ onChange?: ((...args: any[]) => any) | undefined;
178
+ }>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
179
+ [key: string]: any;
180
+ }>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "ok")[], "cancel" | "change" | "update:modelValue" | "ok", {
181
+ type: import('./src/types').PopconfirmTypes;
182
+ disabled: boolean;
183
+ position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
184
+ width: string | number;
185
+ modelValue: boolean;
186
+ onBeforeCancel: (e: Event) => boolean | Promise<boolean>;
187
+ okText: string;
188
+ cancelText: string;
189
+ onBeforeOk: (e: Event) => boolean | Promise<boolean>;
190
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
191
+ install(app: import('vue').App): void;
192
+ };
193
+ export { XPopconfirm as default };
@@ -0,0 +1,104 @@
1
+ import { VNode } from 'vue';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ modelValue: {
4
+ type: BooleanConstructor;
5
+ default: undefined;
6
+ };
7
+ disabled: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ width: {
12
+ type: (NumberConstructor | StringConstructor)[];
13
+ default: number;
14
+ };
15
+ type: {
16
+ type: import('vue').PropType<import('./types').PopconfirmTypes>;
17
+ default: string;
18
+ };
19
+ content: (NumberConstructor | StringConstructor)[];
20
+ position: {
21
+ type: import('vue').PropType<import('./types').Position>;
22
+ default: string;
23
+ };
24
+ okText: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ cancelText: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ onBeforeOk: {
33
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
34
+ default: undefined;
35
+ };
36
+ onBeforeCancel: {
37
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
38
+ default: undefined;
39
+ };
40
+ renderTo: {
41
+ type: import('vue').PropType<string | HTMLElement>;
42
+ };
43
+ popupClass: StringConstructor;
44
+ }>, () => VNode<import('vue').RendererNode, import('vue').RendererElement, {
45
+ [key: string]: any;
46
+ }>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "ok")[], "cancel" | "change" | "update:modelValue" | "ok", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
47
+ modelValue: {
48
+ type: BooleanConstructor;
49
+ default: undefined;
50
+ };
51
+ disabled: {
52
+ type: BooleanConstructor;
53
+ default: boolean;
54
+ };
55
+ width: {
56
+ type: (NumberConstructor | StringConstructor)[];
57
+ default: number;
58
+ };
59
+ type: {
60
+ type: import('vue').PropType<import('./types').PopconfirmTypes>;
61
+ default: string;
62
+ };
63
+ content: (NumberConstructor | StringConstructor)[];
64
+ position: {
65
+ type: import('vue').PropType<import('./types').Position>;
66
+ default: string;
67
+ };
68
+ okText: {
69
+ type: StringConstructor;
70
+ default: string;
71
+ };
72
+ cancelText: {
73
+ type: StringConstructor;
74
+ default: string;
75
+ };
76
+ onBeforeOk: {
77
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
78
+ default: undefined;
79
+ };
80
+ onBeforeCancel: {
81
+ type: import('vue').PropType<(e: Event) => boolean | Promise<boolean>>;
82
+ default: undefined;
83
+ };
84
+ renderTo: {
85
+ type: import('vue').PropType<string | HTMLElement>;
86
+ };
87
+ popupClass: StringConstructor;
88
+ }>> & Readonly<{
89
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
90
+ onCancel?: ((...args: any[]) => any) | undefined;
91
+ onOk?: ((...args: any[]) => any) | undefined;
92
+ onChange?: ((...args: any[]) => any) | undefined;
93
+ }>, {
94
+ type: import('./types').PopconfirmTypes;
95
+ disabled: boolean;
96
+ position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
97
+ width: string | number;
98
+ modelValue: boolean;
99
+ onBeforeCancel: (e: Event) => boolean | Promise<boolean>;
100
+ okText: string;
101
+ cancelText: string;
102
+ onBeforeOk: (e: Event) => boolean | Promise<boolean>;
103
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
104
+ export default _default;