@uf_lee/leeui 1.0.83 → 1.0.85
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/dist/leeui.es.js +2074 -2097
- package/dist/leeui.umd.js +12 -12
- package/dist/types/components/LElCom/src/LElCom.vue.d.ts +9 -1
- package/package.json +1 -1
|
@@ -1,36 +1,44 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
import type { ComData } from "./types";
|
|
3
|
-
import { Recordable } from "@/global";
|
|
3
|
+
import type { Recordable } from "@/global";
|
|
4
4
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
/** schema 配置 */
|
|
5
6
|
data: {
|
|
6
7
|
type: PropType<ComData>;
|
|
7
8
|
default: () => {};
|
|
8
9
|
};
|
|
10
|
+
/** v-model */
|
|
9
11
|
modelValue: {
|
|
10
12
|
type: PropType<any>;
|
|
11
13
|
default: () => undefined;
|
|
12
14
|
};
|
|
15
|
+
/** 当前整行数据(表格编辑用) */
|
|
13
16
|
formModel: {
|
|
14
17
|
type: PropType<Recordable>;
|
|
15
18
|
default: () => {};
|
|
16
19
|
};
|
|
20
|
+
/** 当前行索引 */
|
|
17
21
|
rowIndex: {
|
|
18
22
|
type: NumberConstructor;
|
|
19
23
|
default: number;
|
|
20
24
|
};
|
|
21
25
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
/** schema 配置 */
|
|
22
27
|
data: {
|
|
23
28
|
type: PropType<ComData>;
|
|
24
29
|
default: () => {};
|
|
25
30
|
};
|
|
31
|
+
/** v-model */
|
|
26
32
|
modelValue: {
|
|
27
33
|
type: PropType<any>;
|
|
28
34
|
default: () => undefined;
|
|
29
35
|
};
|
|
36
|
+
/** 当前整行数据(表格编辑用) */
|
|
30
37
|
formModel: {
|
|
31
38
|
type: PropType<Recordable>;
|
|
32
39
|
default: () => {};
|
|
33
40
|
};
|
|
41
|
+
/** 当前行索引 */
|
|
34
42
|
rowIndex: {
|
|
35
43
|
type: NumberConstructor;
|
|
36
44
|
default: number;
|