x-next 0.0.0-alpha.4 → 0.0.0-alpha.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. package/dist/_hooks/use-overflow.d.ts +5 -0
  2. package/dist/_hooks/use-popup-manager.d.ts +11 -0
  3. package/dist/_props/css.d.ts +13 -0
  4. package/dist/_props/global.d.ts +1 -0
  5. package/dist/_utils/config.d.ts +9 -0
  6. package/dist/_utils/convert-case.d.ts +3 -0
  7. package/dist/_utils/dom.d.ts +10 -0
  8. package/dist/_utils/helpers.d.ts +12 -0
  9. package/dist/_utils/icon.d.ts +59 -0
  10. package/dist/_utils/is.d.ts +22 -0
  11. package/dist/_utils/keyboard.d.ts +24 -0
  12. package/dist/_utils/number.d.ts +0 -0
  13. package/dist/_utils/vue-eco.d.ts +28 -0
  14. package/dist/components.d.ts +1 -0
  15. package/dist/componets/button/index.vue.d.ts +162 -0
  16. package/dist/componets/button/install.d.ts +4 -0
  17. package/dist/componets/button/props.d.ts +45 -0
  18. package/dist/componets/dialog/index.vue.d.ts +221 -0
  19. package/dist/componets/dialog/props.d.ts +83 -0
  20. package/dist/componets/dialog/use-props.d.ts +33 -0
  21. package/dist/componets/dialog/use.d.ts +3 -0
  22. package/dist/componets/dialog/warp.d.ts +2 -0
  23. package/dist/componets/message/index.vue.d.ts +387 -0
  24. package/dist/componets/message/props.d.ts +31 -0
  25. package/dist/componets/message/warp.d.ts +3 -0
  26. package/dist/componets/message-box/index.d.ts +3 -0
  27. package/dist/componets/message-box/props.d.ts +52 -0
  28. package/dist/componets/message-box/warp.d.ts +2 -0
  29. package/dist/componets/notification/index.vue.d.ts +160 -0
  30. package/dist/componets/notification/props.d.ts +54 -0
  31. package/dist/componets/notification/warp.d.ts +3 -0
  32. package/dist/componets/space/index.d.ts +42 -0
  33. package/dist/componets/tag-cloud/index.d.ts +0 -0
  34. package/dist/componets/trend-chart/components/trend-chart-curve.d.ts +114 -0
  35. package/dist/componets/trend-chart/components/trend-chart-grid.d.ts +55 -0
  36. package/dist/componets/trend-chart/components/trend-chart-labels.d.ts +22 -0
  37. package/dist/componets/trend-chart/components/trend-chart.d.ts +270 -0
  38. package/dist/componets/trend-chart/helpers/genPath.d.ts +8 -0
  39. package/dist/componets/trend-chart/helpers/genPoints.d.ts +3 -0
  40. package/dist/componets/trend-chart/helpers/getPadding.d.ts +7 -0
  41. package/dist/componets/trend-chart/helpers/validatePadding.d.ts +2 -0
  42. package/dist/componets/trend-chart/index.d.ts +2 -0
  43. package/dist/componets/trend-chart/props.d.ts +206 -0
  44. package/dist/icons/animation/animation-loading.vue.d.ts +55 -0
  45. package/dist/icons/default/check-circle-fill.vue.d.ts +55 -0
  46. package/dist/icons/default/close-circle-fill.vue.d.ts +55 -0
  47. package/dist/icons/default/exclamation-circle-fill.vue.d.ts +55 -0
  48. package/dist/icons/default/info-circle-fill.vue.d.ts +55 -0
  49. package/dist/icons/default/minus-circle-fill.vue.d.ts +55 -0
  50. package/dist/icons/index.d.ts +7 -0
  51. package/dist/index.d.ts +8 -0
  52. package/dist/index.es.js +1428 -0
  53. package/dist/index.umd.js +1 -1
  54. package/dist/style.css +1 -0
  55. package/package.json +7 -5
@@ -0,0 +1,5 @@
1
+ import { Ref } from 'vue';
2
+ export declare const useOverflow: (containerRef: Ref<HTMLElement | undefined>, targetRef?: Ref<HTMLElement | undefined>) => {
3
+ setOverflowHidden: () => void;
4
+ resetOverflow: () => void;
5
+ };
@@ -0,0 +1,11 @@
1
+ import { Ref } from 'vue';
2
+ export type PopupType = 'popup' | 'dialog' | 'message';
3
+ export default function usePopupManager(type: PopupType, { visible, runOnMounted, }?: {
4
+ visible?: Ref<boolean>;
5
+ runOnMounted?: boolean;
6
+ }): {
7
+ zIndex: Readonly<Ref<number, number>>;
8
+ open: () => void;
9
+ close: () => void;
10
+ isLastDialog: () => boolean;
11
+ };
@@ -0,0 +1,13 @@
1
+ type NamedColor = 'aliceblue' | 'antiquewhite' | 'aqua' | 'aquamarine' | 'azure' | 'beige' | 'bisque' | 'black' | 'blanchedalmond' | 'blue' | 'blueviolet' | 'brown' | 'burlywood' | 'cadetblue' | 'chartreuse' | 'chocolate' | 'coral' | 'cornflowerblue' | 'cornsilk' | 'crimson' | 'cyan' | 'darkblue' | 'darkcyan' | 'darkgoldenrod' | 'darkgray' | 'darkgreen' | 'darkgrey' | 'darkkhaki' | 'darkmagenta' | 'darkolivegreen' | 'darkorange' | 'darkorchid' | 'darkred' | 'darksalmon' | 'darkseagreen' | 'darkslateblue' | 'darkslategray' | 'darkslategrey' | 'darkturquoise' | 'darkviolet' | 'deeppink' | 'deepskyblue' | 'dimgray' | 'dimgrey' | 'dodgerblue' | 'firebrick' | 'floralwhite' | 'forestgreen' | 'fuchsia' | 'gainsboro' | 'ghostwhite' | 'gold' | 'goldenrod' | 'gray' | 'green' | 'greenyellow' | 'grey' | 'honeydew' | 'hotpink' | 'indianred' | 'indigo' | 'ivory' | 'khaki' | 'lavender' | 'lavenderblush' | 'lawngreen' | 'lemonchiffon' | 'lightblue' | 'lightcoral' | 'lightcyan' | 'lightgoldenrodyellow' | 'lightgray' | 'lightgreen' | 'lightgrey' | 'lightpink' | 'lightsalmon' | 'lightseagreen' | 'lightskyblue' | 'lightslategray' | 'lightslategrey' | 'lightsteelblue' | 'lightyellow' | 'lime' | 'limegreen' | 'linen' | 'magenta' | 'maroon' | 'mediumaquamarine' | 'mediumblue' | 'mediumorchid' | 'mediumpurple' | 'mediumseagreen' | 'mediumslateblue' | 'mediumspringgreen' | 'mediumturquoise' | 'mediumvioletred' | 'midnightblue' | 'mintcream' | 'mistyrose' | 'moccasin' | 'navajowhite' | 'navy' | 'oldlace' | 'olive' | 'olivedrab' | 'orange' | 'orangered' | 'orchid' | 'palegoldenrod' | 'palegreen' | 'paleturquoise' | 'palevioletred' | 'papayawhip' | 'peachpuff' | 'peru' | 'pink' | 'plum' | 'powderblue' | 'purple' | 'red' | 'rosybrown' | 'royalblue' | 'saddlebrown' | 'salmon' | 'sandybrown' | 'seagreen' | 'seashell' | 'sienna' | 'silver' | 'skyblue' | 'slateblue' | 'slategray' | 'slategrey' | 'snow' | 'springgreen' | 'steelblue' | 'tan' | 'teal' | 'thistle' | 'tomato' | 'turquoise' | 'violet' | 'wheat' | 'white' | 'whitesmoke' | 'yellow' | 'yellowgreen';
2
+ type HexColor = `#${string}`;
3
+ type RgbColor = `rgb(${number}, ${number}, ${number})`;
4
+ type RgbaColor = `rgba(${number}, ${number}, ${number}, ${number})`;
5
+ type HslColor = `hsl(${number}, ${number}%, ${number}%)`;
6
+ type HslaColor = `hsla(${number}, ${number}%, ${number}%, ${number})`;
7
+ export type CSSColor = NamedColor | HexColor | RgbColor | RgbaColor | HslColor | HslaColor;
8
+ type CSSUnit = 'px' | 'em' | 'rem' | 'vw' | 'vh' | 'vmin' | 'vmax' | '%' | 'pt' | 'cm' | 'mm' | 'in' | 'pc' | 'ex' | 'ch';
9
+ export type LengthValue = `${number}${CSSUnit}`;
10
+ type GlobalValues = 'auto' | 'inherit' | 'initial' | 'unset';
11
+ type PaddingMarginValue = LengthValue | `${number}` | GlobalValues;
12
+ export type PaddingMargin = PaddingMarginValue | [PaddingMarginValue, PaddingMarginValue] | [PaddingMarginValue, PaddingMarginValue, PaddingMarginValue] | [PaddingMarginValue, PaddingMarginValue, PaddingMarginValue, PaddingMarginValue];
13
+ export {};
@@ -0,0 +1 @@
1
+ export type ComponentSize = 'mini' | 'small' | 'medium' | 'large';
@@ -0,0 +1,9 @@
1
+ export declare const COMPONENT_INSTALLED_KEY: unique symbol;
2
+ export declare const getClassPrefix: (name?: string) => string;
3
+ export declare const getComponentPrefix: (name: string) => string;
4
+ export declare const getClassNameMixin: (name: string) => {
5
+ block: string;
6
+ element: (className: string) => string;
7
+ modifier: (className: string) => string;
8
+ is: (className: string) => string;
9
+ };
@@ -0,0 +1,3 @@
1
+ export declare const toKebabCase: (string: string) => string;
2
+ export declare const toPascalCase: (string: string) => string;
3
+ export declare const toCamelCase: (string: string) => string;
@@ -0,0 +1,10 @@
1
+ import { CSSProperties } from 'vue';
2
+ export declare const NOOP: () => void;
3
+ export declare const querySelector: (selectors: string, container?: Document | HTMLElement) => HTMLElement | undefined;
4
+ export declare const getScrollBarWidth: (element: HTMLElement) => number;
5
+ export declare const isScroll: (element: HTMLElement) => boolean;
6
+ export declare const getStyle: (element: HTMLElement, styleName: keyof CSSProperties) => string;
7
+ export declare const setStyle: (element: HTMLElement, styleName: CSSProperties | keyof CSSProperties, value?: string | number) => void;
8
+ export declare const getElement: (target: string | HTMLElement | undefined, container?: Document | HTMLElement) => HTMLElement | undefined;
9
+ export declare const on: <K extends keyof HTMLElementEventMap>(element: HTMLElement | Window, event: K, handler: (ev: HTMLElementEventMap[K]) => void, options?: boolean | AddEventListenerOptions) => void;
10
+ export declare const off: <K extends keyof HTMLElementEventMap>(element: HTMLElement | Window, type: K, handler: (ev: HTMLElementEventMap[K]) => void, options?: boolean | EventListenerOptions) => void;
@@ -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,59 @@
1
+ /**
2
+ * 首字母大写及-符号仅跟的字母大写
3
+ * @param str
4
+ */
5
+ export declare const toPascalCase: (str: string) => string;
6
+ export declare function createIconComponent(name: string): import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
+ size: {
8
+ type: (NumberConstructor | StringConstructor)[];
9
+ default: undefined;
10
+ };
11
+ rotate: {
12
+ type: NumberConstructor;
13
+ default: undefined;
14
+ };
15
+ spin: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ color: {
20
+ type: StringConstructor;
21
+ default: undefined;
22
+ };
23
+ fillColor: {
24
+ type: ArrayConstructor;
25
+ default: undefined;
26
+ };
27
+ }>, {
28
+ cls: import('vue').ComputedRef<(string | {
29
+ "x-icon-loading": boolean;
30
+ })[]>;
31
+ styles: import('vue').ComputedRef<import('vue').CSSProperties>;
32
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
33
+ size: {
34
+ type: (NumberConstructor | StringConstructor)[];
35
+ default: undefined;
36
+ };
37
+ rotate: {
38
+ type: NumberConstructor;
39
+ default: undefined;
40
+ };
41
+ spin: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ color: {
46
+ type: StringConstructor;
47
+ default: undefined;
48
+ };
49
+ fillColor: {
50
+ type: ArrayConstructor;
51
+ default: undefined;
52
+ };
53
+ }>> & Readonly<{}>, {
54
+ size: string | number;
55
+ rotate: number;
56
+ spin: boolean;
57
+ color: string;
58
+ fillColor: unknown[];
59
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,22 @@
1
+ import { ComponentPublicInstance, VNodeNormalizedChildren, VNode } from 'vue';
2
+ import { Dayjs } from 'dayjs';
3
+ export declare function isArray(obj: any): obj is any[];
4
+ export declare function isNull(obj: any): obj is null;
5
+ export declare function isBoolean(obj: unknown): obj is boolean;
6
+ export declare function isObject<T>(obj: T): obj is Extract<T, Record<string, any>>;
7
+ export declare const isPromise: <T>(obj: unknown) => obj is Promise<T>;
8
+ export declare function isString(obj: any): obj is string;
9
+ export declare function isNumber(obj: any): obj is number;
10
+ export declare function isRegExp(obj: any): boolean;
11
+ export declare function isDate(obj: any): boolean;
12
+ export declare function isColor(color: any): boolean;
13
+ export declare function isUndefined(obj: any): obj is undefined;
14
+ export declare function isFunction(obj: any): obj is (...args: any[]) => any;
15
+ export declare function isEmptyObject(obj: any): boolean;
16
+ export declare function isExist(obj: any): boolean;
17
+ export declare function isWindow(el: any): el is Window;
18
+ export declare const isComponentInstance: (value: any) => value is ComponentPublicInstance;
19
+ export declare const isArrayChildren: (children: VNodeNormalizedChildren) => children is VNode[];
20
+ export declare const isQuarter: (fromat: string) => boolean;
21
+ export declare function isDayjs(time: any): time is Dayjs;
22
+ export declare function isClient(): boolean;
@@ -0,0 +1,24 @@
1
+ export declare const KEYBOARD_KEY: {
2
+ ENTER: string;
3
+ ESC: string;
4
+ BACKSPACE: string;
5
+ TAB: string;
6
+ SPACE: string;
7
+ ARROW_UP: string;
8
+ ARROW_DOWN: string;
9
+ ARROW_LEFT: string;
10
+ ARROW_RIGHT: string;
11
+ };
12
+ export interface CodeKey {
13
+ /** Keyboard key */
14
+ key: string;
15
+ /** Ctrl / ⌃ */
16
+ ctrl?: boolean;
17
+ /** Shift key */
18
+ shift?: boolean;
19
+ /** Alt / ⌥ */
20
+ alt?: boolean;
21
+ /** meta ⌘ / ⊞ */
22
+ meta?: boolean;
23
+ }
24
+ export declare const getKeyDownHandler: (codeKeyMap: Map<CodeKey | string, (e: Event) => void>) => (event: KeyboardEvent) => void;
File without changes
@@ -0,0 +1,28 @@
1
+ import { VNodeTypes, VNode, PropType, Component, Slots, Plugin } from 'vue';
2
+ export type SFCWithInstall<T> = T & Plugin;
3
+ /**
4
+ * @description Vue生态操作封装
5
+ */
6
+ export declare const definePropType: <T>(val: unknown) => PropType<T>;
7
+ export declare enum ShapeFlags {
8
+ ELEMENT = 1,
9
+ FUNCTIONAL_COMPONENT = 2,
10
+ STATEFUL_COMPONENT = 4,
11
+ COMPONENT = 6,
12
+ TEXT_CHILDREN = 8,
13
+ ARRAY_CHILDREN = 16,
14
+ SLOTS_CHILDREN = 32,
15
+ TELEPORT = 64,
16
+ SUSPENSE = 128,
17
+ COMPONENT_SHOULD_KEEP_ALIVE = 256,
18
+ COMPONENT_KEPT_ALIVE = 512
19
+ }
20
+ export declare const isElement: (vn: VNode) => boolean;
21
+ export declare const isComponent: (vn: VNode, type?: VNodeTypes) => type is Component;
22
+ export declare const isTextChildren: (child: VNode, children: VNode["children"]) => children is string;
23
+ export declare const isArrayChildren: (vn: VNode, children: VNode["children"]) => children is VNode[];
24
+ export declare const isSlotsChildren: (vn: VNode, children: VNode["children"]) => children is Slots;
25
+ export declare const getAllElements: (children: VNode[] | undefined, includeText?: boolean) => VNode<import('vue').RendererNode, import('vue').RendererElement, {
26
+ [key: string]: any;
27
+ }>[];
28
+ export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E) => SFCWithInstall<T> & E;
@@ -0,0 +1 @@
1
+ export { default as Button } from './componets/button/install';
@@ -0,0 +1,162 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ disabled: BooleanConstructor;
3
+ block: BooleanConstructor;
4
+ loading: BooleanConstructor;
5
+ loadingFill: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ debounce: {
10
+ type: NumberConstructor;
11
+ default: number;
12
+ };
13
+ shape: {
14
+ type: import('vue').PropType<import('./props').ButtonShape>;
15
+ default: undefined;
16
+ };
17
+ link: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ type: {
22
+ type: import('vue').PropType<import('./props').ButtonType>;
23
+ default: undefined;
24
+ };
25
+ status: {
26
+ type: import('vue').PropType<import('./props').ButtonStatus>;
27
+ default: undefined;
28
+ };
29
+ plain: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
33
+ size: {
34
+ type: import('vue').PropType<import('./props').ButtonSize>;
35
+ default: string;
36
+ };
37
+ border: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ }>, {
42
+ cn: {
43
+ block: string;
44
+ element: (className: string) => string;
45
+ modifier: (className: string) => string;
46
+ is: (className: string) => string;
47
+ };
48
+ cls: import('vue').ComputedRef<(string | false | undefined)[]>;
49
+ handleClick: (event: MouseEvent) => Promise<void>;
50
+ isLoading: import('vue').ComputedRef<boolean>;
51
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
52
+ disabled: BooleanConstructor;
53
+ block: BooleanConstructor;
54
+ loading: BooleanConstructor;
55
+ loadingFill: {
56
+ type: BooleanConstructor;
57
+ default: boolean;
58
+ };
59
+ debounce: {
60
+ type: NumberConstructor;
61
+ default: number;
62
+ };
63
+ shape: {
64
+ type: import('vue').PropType<import('./props').ButtonShape>;
65
+ default: undefined;
66
+ };
67
+ link: {
68
+ type: BooleanConstructor;
69
+ default: boolean;
70
+ };
71
+ type: {
72
+ type: import('vue').PropType<import('./props').ButtonType>;
73
+ default: undefined;
74
+ };
75
+ status: {
76
+ type: import('vue').PropType<import('./props').ButtonStatus>;
77
+ default: undefined;
78
+ };
79
+ plain: {
80
+ type: BooleanConstructor;
81
+ default: boolean;
82
+ };
83
+ size: {
84
+ type: import('vue').PropType<import('./props').ButtonSize>;
85
+ default: string;
86
+ };
87
+ border: {
88
+ type: BooleanConstructor;
89
+ default: boolean;
90
+ };
91
+ }>> & Readonly<{
92
+ onClick?: ((...args: any[]) => any) | undefined;
93
+ }>, {
94
+ size: import('./props').ButtonSize;
95
+ type: import('./props').ButtonType;
96
+ link: boolean;
97
+ disabled: boolean;
98
+ block: boolean;
99
+ loading: boolean;
100
+ loadingFill: boolean;
101
+ debounce: number;
102
+ shape: import('./props').ButtonShape;
103
+ status: import('./props').ButtonStatus;
104
+ plain: boolean;
105
+ border: boolean;
106
+ }, {}, {
107
+ AnimationLoading: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
108
+ size: {
109
+ type: (NumberConstructor | StringConstructor)[];
110
+ default: undefined;
111
+ };
112
+ rotate: {
113
+ type: NumberConstructor;
114
+ default: undefined;
115
+ };
116
+ spin: {
117
+ type: BooleanConstructor;
118
+ default: boolean;
119
+ };
120
+ color: {
121
+ type: StringConstructor;
122
+ default: undefined;
123
+ };
124
+ fillColor: {
125
+ type: ArrayConstructor;
126
+ default: undefined;
127
+ };
128
+ }>, {
129
+ cls: import('vue').ComputedRef<(string | {
130
+ "x-icon-loading": boolean;
131
+ })[]>;
132
+ styles: import('vue').ComputedRef<import('vue').CSSProperties>;
133
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
134
+ size: {
135
+ type: (NumberConstructor | StringConstructor)[];
136
+ default: undefined;
137
+ };
138
+ rotate: {
139
+ type: NumberConstructor;
140
+ default: undefined;
141
+ };
142
+ spin: {
143
+ type: BooleanConstructor;
144
+ default: boolean;
145
+ };
146
+ color: {
147
+ type: StringConstructor;
148
+ default: undefined;
149
+ };
150
+ fillColor: {
151
+ type: ArrayConstructor;
152
+ default: undefined;
153
+ };
154
+ }>> & Readonly<{}>, {
155
+ size: string | number;
156
+ rotate: number;
157
+ spin: boolean;
158
+ color: string;
159
+ fillColor: unknown[];
160
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
161
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
162
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { Plugin } from 'vue';
2
+ import { default as Button } from './index.vue';
3
+ declare const _default: typeof Button & Plugin;
4
+ export default _default;
@@ -0,0 +1,45 @@
1
+ export type ButtonSize = 'mini' | 'small' | 'medium' | 'large' | 'huge';
2
+ export type ButtonStatus = 'success' | 'warning' | 'strong' | 'danger' | 'info';
3
+ export type ButtonType = 'primary' | 'secondary' | 'dashed' | 'outline' | 'text';
4
+ export type ButtonShape = 'round' | 'circle' | 'square';
5
+ export declare const buttonProps: {
6
+ disabled: BooleanConstructor;
7
+ block: BooleanConstructor;
8
+ loading: BooleanConstructor;
9
+ loadingFill: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ debounce: {
14
+ type: NumberConstructor;
15
+ default: number;
16
+ };
17
+ shape: {
18
+ type: import('vue').PropType<ButtonShape>;
19
+ default: undefined;
20
+ };
21
+ link: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ type: {
26
+ type: import('vue').PropType<ButtonType>;
27
+ default: undefined;
28
+ };
29
+ status: {
30
+ type: import('vue').PropType<ButtonStatus>;
31
+ default: undefined;
32
+ };
33
+ plain: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ size: {
38
+ type: import('vue').PropType<ButtonSize>;
39
+ default: string;
40
+ };
41
+ border: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ };
@@ -0,0 +1,221 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ renderTo: {
3
+ type: import('vue').PropType<string | HTMLElement>;
4
+ default: string;
5
+ };
6
+ disabled: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ modelValue: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ top: {
15
+ type: (NumberConstructor | StringConstructor)[];
16
+ default: string;
17
+ };
18
+ center: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ width: {
23
+ type: (NumberConstructor | StringConstructor)[];
24
+ default: number;
25
+ };
26
+ height: {
27
+ type: (NumberConstructor | StringConstructor)[];
28
+ default: number;
29
+ };
30
+ minWidth: {
31
+ type: (NumberConstructor | StringConstructor)[];
32
+ default: number;
33
+ };
34
+ minHeight: {
35
+ type: (NumberConstructor | StringConstructor)[];
36
+ default: number;
37
+ };
38
+ title: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ mask: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ destroyOnClosed: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ onBeforeCancel: {
51
+ type: FunctionConstructor;
52
+ };
53
+ maskToClose: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ escToClose: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
61
+ fullscreen: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ messageBox: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ popupClass: {
70
+ type: StringConstructor;
71
+ default: undefined;
72
+ };
73
+ showClose: {
74
+ type: BooleanConstructor;
75
+ default: boolean;
76
+ };
77
+ showHeaderBottomLine: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ }>, {
82
+ cls: import('vue').ComputedRef<(string | false | undefined)[]>;
83
+ ns: string;
84
+ cn: {
85
+ block: string;
86
+ element: (className: string) => string;
87
+ modifier: (className: string) => string;
88
+ is: (className: string) => string;
89
+ };
90
+ cnOMB: {
91
+ block: string;
92
+ element: (className: string) => string;
93
+ modifier: (className: string) => string;
94
+ is: (className: string) => string;
95
+ };
96
+ messageBoxNs: string;
97
+ containerStyle: import('vue').ComputedRef<import('vue').CSSProperties>;
98
+ dialogStyle: import('vue').ComputedRef<import('vue').CSSProperties>;
99
+ dialogRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
100
+ teleportContainer: import('vue').ComputedRef<HTMLElement | undefined>;
101
+ teleportDisabled: import('vue').ComputedRef<boolean>;
102
+ modelVisible: import('vue').ComputedRef<boolean>;
103
+ mergeVisible: import('vue').ComputedRef<boolean>;
104
+ interceptClose: (action: "cancel" | "ok", e?: Event) => void;
105
+ afterLeave: () => void;
106
+ afterEnter: () => void;
107
+ handleMaskClick: () => void;
108
+ handleCancel: (e: Event) => void;
109
+ handleOk: (e: Event) => void;
110
+ loadingObj: {
111
+ ok: boolean;
112
+ cancel: boolean;
113
+ };
114
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("close" | "open" | "closed" | "opened" | "update:modelValue")[], "close" | "open" | "closed" | "opened" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
115
+ renderTo: {
116
+ type: import('vue').PropType<string | HTMLElement>;
117
+ default: string;
118
+ };
119
+ disabled: {
120
+ type: BooleanConstructor;
121
+ default: boolean;
122
+ };
123
+ modelValue: {
124
+ type: BooleanConstructor;
125
+ default: boolean;
126
+ };
127
+ top: {
128
+ type: (NumberConstructor | StringConstructor)[];
129
+ default: string;
130
+ };
131
+ center: {
132
+ type: BooleanConstructor;
133
+ default: boolean;
134
+ };
135
+ width: {
136
+ type: (NumberConstructor | StringConstructor)[];
137
+ default: number;
138
+ };
139
+ height: {
140
+ type: (NumberConstructor | StringConstructor)[];
141
+ default: number;
142
+ };
143
+ minWidth: {
144
+ type: (NumberConstructor | StringConstructor)[];
145
+ default: number;
146
+ };
147
+ minHeight: {
148
+ type: (NumberConstructor | StringConstructor)[];
149
+ default: number;
150
+ };
151
+ title: {
152
+ type: StringConstructor;
153
+ default: string;
154
+ };
155
+ mask: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
159
+ destroyOnClosed: {
160
+ type: BooleanConstructor;
161
+ default: boolean;
162
+ };
163
+ onBeforeCancel: {
164
+ type: FunctionConstructor;
165
+ };
166
+ maskToClose: {
167
+ type: BooleanConstructor;
168
+ default: boolean;
169
+ };
170
+ escToClose: {
171
+ type: BooleanConstructor;
172
+ default: boolean;
173
+ };
174
+ fullscreen: {
175
+ type: BooleanConstructor;
176
+ default: boolean;
177
+ };
178
+ messageBox: {
179
+ type: BooleanConstructor;
180
+ default: boolean;
181
+ };
182
+ popupClass: {
183
+ type: StringConstructor;
184
+ default: undefined;
185
+ };
186
+ showClose: {
187
+ type: BooleanConstructor;
188
+ default: boolean;
189
+ };
190
+ showHeaderBottomLine: {
191
+ type: BooleanConstructor;
192
+ default: boolean;
193
+ };
194
+ }>> & Readonly<{
195
+ onClose?: ((...args: any[]) => any) | undefined;
196
+ onOpen?: ((...args: any[]) => any) | undefined;
197
+ onClosed?: ((...args: any[]) => any) | undefined;
198
+ onOpened?: ((...args: any[]) => any) | undefined;
199
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
200
+ }>, {
201
+ title: string;
202
+ mask: boolean;
203
+ disabled: boolean;
204
+ height: string | number;
205
+ minHeight: string | number;
206
+ minWidth: string | number;
207
+ top: string | number;
208
+ width: string | number;
209
+ center: boolean;
210
+ renderTo: string | HTMLElement;
211
+ modelValue: boolean;
212
+ destroyOnClosed: boolean;
213
+ maskToClose: boolean;
214
+ escToClose: boolean;
215
+ fullscreen: boolean;
216
+ messageBox: boolean;
217
+ popupClass: string;
218
+ showClose: boolean;
219
+ showHeaderBottomLine: boolean;
220
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
221
+ export default _default;