g-ui-web 1.4.62 → 1.4.64
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/lib/floating-ai/index.d.ts +33 -0
- package/lib/floating-ai/src/index.vue.d.ts +20 -0
- package/lib/g-ui-web.cjs +1 -1
- package/lib/g-ui-web.iife.js +1 -1
- package/lib/g-ui-web.iife.js.gz +0 -0
- package/lib/g-ui-web.js +22 -11
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +1 -1
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
|
@@ -19,6 +19,15 @@ declare const GFloatingAi: ({
|
|
|
19
19
|
type: StringConstructor;
|
|
20
20
|
default: string;
|
|
21
21
|
};
|
|
22
|
+
autoHide: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
screenSize: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
validator: (val: string) => boolean;
|
|
30
|
+
};
|
|
22
31
|
}>> & Readonly<{
|
|
23
32
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
24
33
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -30,6 +39,8 @@ declare const GFloatingAi: ({
|
|
|
30
39
|
size: number;
|
|
31
40
|
url: string;
|
|
32
41
|
position: Record<string, any>;
|
|
42
|
+
autoHide: boolean;
|
|
43
|
+
screenSize: string;
|
|
33
44
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
34
45
|
P: {};
|
|
35
46
|
B: {};
|
|
@@ -57,6 +68,15 @@ declare const GFloatingAi: ({
|
|
|
57
68
|
type: StringConstructor;
|
|
58
69
|
default: string;
|
|
59
70
|
};
|
|
71
|
+
autoHide: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
screenSize: {
|
|
76
|
+
type: StringConstructor;
|
|
77
|
+
default: string;
|
|
78
|
+
validator: (val: string) => boolean;
|
|
79
|
+
};
|
|
60
80
|
}>> & Readonly<{
|
|
61
81
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
62
82
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -65,6 +85,8 @@ declare const GFloatingAi: ({
|
|
|
65
85
|
size: number;
|
|
66
86
|
url: string;
|
|
67
87
|
position: Record<string, any>;
|
|
88
|
+
autoHide: boolean;
|
|
89
|
+
screenSize: string;
|
|
68
90
|
}>;
|
|
69
91
|
__isFragment?: never;
|
|
70
92
|
__isTeleport?: never;
|
|
@@ -89,6 +111,15 @@ declare const GFloatingAi: ({
|
|
|
89
111
|
type: StringConstructor;
|
|
90
112
|
default: string;
|
|
91
113
|
};
|
|
114
|
+
autoHide: {
|
|
115
|
+
type: BooleanConstructor;
|
|
116
|
+
default: boolean;
|
|
117
|
+
};
|
|
118
|
+
screenSize: {
|
|
119
|
+
type: StringConstructor;
|
|
120
|
+
default: string;
|
|
121
|
+
validator: (val: string) => boolean;
|
|
122
|
+
};
|
|
92
123
|
}>> & Readonly<{
|
|
93
124
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
94
125
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -100,5 +131,7 @@ declare const GFloatingAi: ({
|
|
|
100
131
|
size: number;
|
|
101
132
|
url: string;
|
|
102
133
|
position: Record<string, any>;
|
|
134
|
+
autoHide: boolean;
|
|
135
|
+
screenSize: string;
|
|
103
136
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin) & Record<string, any>;
|
|
104
137
|
export default GFloatingAi;
|
|
@@ -18,6 +18,15 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
18
18
|
type: StringConstructor;
|
|
19
19
|
default: string;
|
|
20
20
|
};
|
|
21
|
+
autoHide: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
screenSize: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
validator: (val: string) => boolean;
|
|
29
|
+
};
|
|
21
30
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
31
|
close: (...args: any[]) => void;
|
|
23
32
|
open: (...args: any[]) => void;
|
|
@@ -41,6 +50,15 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
41
50
|
type: StringConstructor;
|
|
42
51
|
default: string;
|
|
43
52
|
};
|
|
53
|
+
autoHide: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
screenSize: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: string;
|
|
60
|
+
validator: (val: string) => boolean;
|
|
61
|
+
};
|
|
44
62
|
}>> & Readonly<{
|
|
45
63
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
46
64
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -49,5 +67,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
49
67
|
size: number;
|
|
50
68
|
url: string;
|
|
51
69
|
position: Record<string, any>;
|
|
70
|
+
autoHide: boolean;
|
|
71
|
+
screenSize: string;
|
|
52
72
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
53
73
|
export default _default;
|