yxuse 1.0.89 → 1.0.91
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/api.cjs.js +1 -1
- package/lib/api.es.js +5 -5
- package/lib/components.cjs.js +1 -1
- package/lib/components.es.js +3 -3
- package/lib/directives.cjs.js +1 -1
- package/lib/directives.es.js +4 -19
- package/lib/icons.cjs.js +1 -1
- package/lib/icons.es.js +1 -1
- package/lib/index.cjs.js +1 -1
- package/lib/index.cjs2.js +26 -3
- package/lib/index.cjs2.js.gz +0 -0
- package/lib/index.cjs3.js +1 -1
- package/lib/index.cjs4.js +1 -1
- package/lib/index.cjs5.js +1 -1
- package/lib/index.cjs6.js +3 -3
- package/lib/index.cjs6.js.gz +0 -0
- package/lib/index.cjs7.js +1 -0
- package/lib/index.es.js +11 -10
- package/lib/index.es2.js +7429 -888
- package/lib/index.es2.js.gz +0 -0
- package/lib/index.es3.js +9 -9
- package/lib/index.es4.js +1 -1
- package/lib/index.es5.js +15 -15
- package/lib/index.es6.js +3148 -721
- package/lib/index.es6.js.gz +0 -0
- package/lib/index.es7.js +24 -0
- package/lib/theme.cjs.js +1 -1
- package/lib/theme.es.js +2 -2
- package/lib/utils.cjs.js +1 -1
- package/lib/utils.es.js +3 -3
- package/lib/vue.runtime.esm-bundler.cjs.js +8 -0
- package/lib/vue.runtime.esm-bundler.cjs.js.gz +0 -0
- package/lib/vue.runtime.esm-bundler.es.js +4820 -0
- package/lib/vue.runtime.esm-bundler.es.js.gz +0 -0
- package/package.json +1 -1
- package/types/components/YxTable/index.d.ts +1 -79
- package/types/components/YxTable/type.d.ts +2 -2
- package/types/index.d.ts +16 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,81 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
tableData: {
|
|
3
|
-
type: import("vue").PropType<any[]>;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
|
-
rowKey: {
|
|
7
|
-
type: import("vue").PropType<string>;
|
|
8
|
-
required: true;
|
|
9
|
-
};
|
|
10
|
-
columns: {
|
|
11
|
-
type: import("vue").PropType<import("./type").TableColumn[]>;
|
|
12
|
-
required: true;
|
|
13
|
-
};
|
|
14
|
-
pageInfo: {
|
|
15
|
-
type: import("vue").PropType<import("./type").PageInfo>;
|
|
16
|
-
};
|
|
17
|
-
searchFormConfig: {
|
|
18
|
-
type: import("vue").PropType<import("./type").FormConfig[]>;
|
|
19
|
-
};
|
|
20
|
-
searchParams: {
|
|
21
|
-
type: import("vue").PropType<{
|
|
22
|
-
[key: string]: any;
|
|
23
|
-
}>;
|
|
24
|
-
};
|
|
25
|
-
sort: {
|
|
26
|
-
type: import("vue").PropType<boolean>;
|
|
27
|
-
};
|
|
28
|
-
sortHandle: {
|
|
29
|
-
type: import("vue").PropType<string>;
|
|
30
|
-
};
|
|
31
|
-
load: {
|
|
32
|
-
type: import("vue").PropType<Function>;
|
|
33
|
-
};
|
|
34
|
-
}, {
|
|
35
|
-
tableRef: import("vue").Ref<any>;
|
|
36
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
|
-
"operate-handle": (type: string, data: object) => void;
|
|
38
|
-
"sort-end": (oldIndex: number, newIndex: number) => void;
|
|
39
|
-
"update-page": (type: string, value: number) => void;
|
|
40
|
-
"size-change": (type: string, value: number) => void;
|
|
41
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
42
|
-
tableData: {
|
|
43
|
-
type: import("vue").PropType<any[]>;
|
|
44
|
-
required: true;
|
|
45
|
-
};
|
|
46
|
-
rowKey: {
|
|
47
|
-
type: import("vue").PropType<string>;
|
|
48
|
-
required: true;
|
|
49
|
-
};
|
|
50
|
-
columns: {
|
|
51
|
-
type: import("vue").PropType<import("./type").TableColumn[]>;
|
|
52
|
-
required: true;
|
|
53
|
-
};
|
|
54
|
-
pageInfo: {
|
|
55
|
-
type: import("vue").PropType<import("./type").PageInfo>;
|
|
56
|
-
};
|
|
57
|
-
searchFormConfig: {
|
|
58
|
-
type: import("vue").PropType<import("./type").FormConfig[]>;
|
|
59
|
-
};
|
|
60
|
-
searchParams: {
|
|
61
|
-
type: import("vue").PropType<{
|
|
62
|
-
[key: string]: any;
|
|
63
|
-
}>;
|
|
64
|
-
};
|
|
65
|
-
sort: {
|
|
66
|
-
type: import("vue").PropType<boolean>;
|
|
67
|
-
};
|
|
68
|
-
sortHandle: {
|
|
69
|
-
type: import("vue").PropType<string>;
|
|
70
|
-
};
|
|
71
|
-
load: {
|
|
72
|
-
type: import("vue").PropType<Function>;
|
|
73
|
-
};
|
|
74
|
-
}>> & {
|
|
75
|
-
"onOperate-handle"?: ((type: string, data: object) => any) | undefined;
|
|
76
|
-
"onSort-end"?: ((oldIndex: number, newIndex: number) => any) | undefined;
|
|
77
|
-
"onUpdate-page"?: ((type: string, value: number) => any) | undefined;
|
|
78
|
-
"onSize-change"?: ((type: string, value: number) => any) | undefined;
|
|
79
|
-
}, {}, {}>;
|
|
1
|
+
export { default as YxTable } from "./index.vue";
|
|
80
2
|
export * from "./type";
|
|
81
3
|
export * from "./index.vue";
|
package/types/index.d.ts
CHANGED
|
@@ -6,3 +6,19 @@ export * as components from "./components";
|
|
|
6
6
|
export * from "./directives";
|
|
7
7
|
export declare const BC: BroadcastChannel;
|
|
8
8
|
export * from "./components/type";
|
|
9
|
+
import * as utils from "./utils";
|
|
10
|
+
import * as icons from "./icons";
|
|
11
|
+
import * as api from "./api";
|
|
12
|
+
import * as theme from "./theme";
|
|
13
|
+
import * as components from "./components";
|
|
14
|
+
import * as directives from "./directives";
|
|
15
|
+
declare const _default: {
|
|
16
|
+
utils: typeof utils;
|
|
17
|
+
icons: typeof icons;
|
|
18
|
+
api: typeof api;
|
|
19
|
+
theme: typeof theme;
|
|
20
|
+
components: typeof components;
|
|
21
|
+
directives: typeof directives;
|
|
22
|
+
BC: BroadcastChannel;
|
|
23
|
+
};
|
|
24
|
+
export default _default;
|