g-ui-web 1.4.66 → 1.4.68
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/g-ui-web.cjs +41 -41
- package/lib/g-ui-web.iife.js +41 -41
- package/lib/g-ui-web.iife.js.gz +0 -0
- package/lib/g-ui-web.js +3103 -3095
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +41 -41
- package/lib/multiple-dimension-table/src/index.vue.d.ts +4 -4
- package/lib/scatter/src/index.vue.d.ts +1 -1
- package/lib/text-select/src/index.vue.d.ts +2 -2
- package/lib/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -36,11 +36,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
36
36
|
default: never[];
|
|
37
37
|
};
|
|
38
38
|
height: {
|
|
39
|
-
type: (
|
|
39
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
42
42
|
maxHeight: {
|
|
43
|
-
type: (
|
|
43
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
44
44
|
default: string;
|
|
45
45
|
};
|
|
46
46
|
showOverflowTooltip: {
|
|
@@ -95,11 +95,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
95
95
|
default: never[];
|
|
96
96
|
};
|
|
97
97
|
height: {
|
|
98
|
-
type: (
|
|
98
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
99
99
|
default: string;
|
|
100
100
|
};
|
|
101
101
|
maxHeight: {
|
|
102
|
-
type: (
|
|
102
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
103
103
|
default: string;
|
|
104
104
|
};
|
|
105
105
|
showOverflowTooltip: {
|
|
@@ -26,7 +26,7 @@ declare function __VLS_template(): {
|
|
|
26
26
|
readonly __epPropKey: true;
|
|
27
27
|
};
|
|
28
28
|
readonly type: {
|
|
29
|
-
readonly type: PropType<"" | "default" | "primary" | "success" | "warning" | "info" | "
|
|
29
|
+
readonly type: PropType<"" | "default" | "primary" | "success" | "warning" | "info" | "danger" | "text">;
|
|
30
30
|
readonly required: false;
|
|
31
31
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
32
32
|
__epPropKey: true;
|
|
@@ -238,7 +238,7 @@ declare function __VLS_template(): {
|
|
|
238
238
|
readonly __epPropKey: true;
|
|
239
239
|
};
|
|
240
240
|
readonly type: {
|
|
241
|
-
readonly type: PropType<"" | "default" | "primary" | "success" | "warning" | "info" | "
|
|
241
|
+
readonly type: PropType<"" | "default" | "primary" | "success" | "warning" | "info" | "danger" | "text">;
|
|
242
242
|
readonly required: false;
|
|
243
243
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
244
244
|
__epPropKey: true;
|
package/lib/utils/index.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ interface configProps {
|
|
|
49
49
|
}
|
|
50
50
|
export declare const setAjaxConfig: (config?: configProps) => void;
|
|
51
51
|
export declare const getAjaxConfig: (key?: string) => any;
|
|
52
|
-
export declare const typeofXAxis: (item: any) => "
|
|
52
|
+
export declare const typeofXAxis: (item: any) => "string" | "function" | "number" | "object" | "boolean" | "undefined" | "bigint" | "symbol" | "null";
|
|
53
53
|
export declare const typeIsEmpty: (item: any) => boolean;
|
|
54
54
|
/**
|
|
55
55
|
* 导出表格
|