qy-ui-for-ls 0.4.74 → 0.4.76
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/components/table-plus/index.d.ts +9 -9
- package/dist/components/table-plus/src/index.vue.d.ts +4 -4
- package/dist/components/tree/index.d.ts +3 -0
- package/dist/components/tree/src/index.vue.d.ts +2 -0
- package/dist/qy-ui-for-ls.es.js +12819 -12835
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -95,8 +95,8 @@ declare const QyTablePlus: ({
|
|
|
95
95
|
type: PropType<boolean>;
|
|
96
96
|
default: boolean;
|
|
97
97
|
};
|
|
98
|
-
|
|
99
|
-
type: PropType<boolean>;
|
|
98
|
+
selectionFixed: {
|
|
99
|
+
type: PropType<boolean | "right" | "left">;
|
|
100
100
|
default: boolean;
|
|
101
101
|
};
|
|
102
102
|
radioRowClick: {
|
|
@@ -1042,7 +1042,7 @@ declare const QyTablePlus: ({
|
|
|
1042
1042
|
treeOptions: TreeProps;
|
|
1043
1043
|
isOldApi: boolean;
|
|
1044
1044
|
hideSelection: boolean;
|
|
1045
|
-
|
|
1045
|
+
selectionFixed: boolean | "left" | "right";
|
|
1046
1046
|
radioRowClick: boolean;
|
|
1047
1047
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1048
1048
|
P: {};
|
|
@@ -1138,8 +1138,8 @@ declare const QyTablePlus: ({
|
|
|
1138
1138
|
type: PropType<boolean>;
|
|
1139
1139
|
default: boolean;
|
|
1140
1140
|
};
|
|
1141
|
-
|
|
1142
|
-
type: PropType<boolean>;
|
|
1141
|
+
selectionFixed: {
|
|
1142
|
+
type: PropType<boolean | "right" | "left">;
|
|
1143
1143
|
default: boolean;
|
|
1144
1144
|
};
|
|
1145
1145
|
radioRowClick: {
|
|
@@ -2075,7 +2075,7 @@ declare const QyTablePlus: ({
|
|
|
2075
2075
|
treeOptions: TreeProps;
|
|
2076
2076
|
isOldApi: boolean;
|
|
2077
2077
|
hideSelection: boolean;
|
|
2078
|
-
|
|
2078
|
+
selectionFixed: boolean | "left" | "right";
|
|
2079
2079
|
radioRowClick: boolean;
|
|
2080
2080
|
}>;
|
|
2081
2081
|
__isFragment?: never;
|
|
@@ -2168,8 +2168,8 @@ declare const QyTablePlus: ({
|
|
|
2168
2168
|
type: PropType<boolean>;
|
|
2169
2169
|
default: boolean;
|
|
2170
2170
|
};
|
|
2171
|
-
|
|
2172
|
-
type: PropType<boolean>;
|
|
2171
|
+
selectionFixed: {
|
|
2172
|
+
type: PropType<boolean | "right" | "left">;
|
|
2173
2173
|
default: boolean;
|
|
2174
2174
|
};
|
|
2175
2175
|
radioRowClick: {
|
|
@@ -3115,7 +3115,7 @@ declare const QyTablePlus: ({
|
|
|
3115
3115
|
treeOptions: TreeProps;
|
|
3116
3116
|
isOldApi: boolean;
|
|
3117
3117
|
hideSelection: boolean;
|
|
3118
|
-
|
|
3118
|
+
selectionFixed: boolean | "left" | "right";
|
|
3119
3119
|
radioRowClick: boolean;
|
|
3120
3120
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3121
3121
|
$slots: Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
@@ -30,7 +30,7 @@ export interface ProTableProps {
|
|
|
30
30
|
treeOptions?: TreeProps;
|
|
31
31
|
isOldApi?: boolean;
|
|
32
32
|
hideSelection?: boolean;
|
|
33
|
-
|
|
33
|
+
selectionFixed?: boolean | 'left' | 'right';
|
|
34
34
|
radioRowClick?: boolean;
|
|
35
35
|
}
|
|
36
36
|
declare function __VLS_template(): Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
@@ -69,7 +69,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
69
69
|
beforeReset: () => void;
|
|
70
70
|
isOldApi: boolean;
|
|
71
71
|
hideSelection: boolean;
|
|
72
|
-
|
|
72
|
+
selectionFixed: boolean;
|
|
73
73
|
radioRowClick: boolean;
|
|
74
74
|
}>>, {
|
|
75
75
|
element: Ref< CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
@@ -1006,7 +1006,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
1006
1006
|
beforeReset: () => void;
|
|
1007
1007
|
isOldApi: boolean;
|
|
1008
1008
|
hideSelection: boolean;
|
|
1009
|
-
|
|
1009
|
+
selectionFixed: boolean;
|
|
1010
1010
|
radioRowClick: boolean;
|
|
1011
1011
|
}>>> & Readonly<{
|
|
1012
1012
|
onSearch?: (() => any) | undefined;
|
|
@@ -1036,7 +1036,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
1036
1036
|
treeOptions: TreeProps;
|
|
1037
1037
|
isOldApi: boolean;
|
|
1038
1038
|
hideSelection: boolean;
|
|
1039
|
-
|
|
1039
|
+
selectionFixed: boolean | "left" | "right";
|
|
1040
1040
|
radioRowClick: boolean;
|
|
1041
1041
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1042
1042
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
@@ -33,6 +33,7 @@ declare const QyTree: ({
|
|
|
33
33
|
type: ObjectConstructor;
|
|
34
34
|
default: () => {
|
|
35
35
|
label: string;
|
|
36
|
+
value: string;
|
|
36
37
|
children: string;
|
|
37
38
|
};
|
|
38
39
|
};
|
|
@@ -90,6 +91,7 @@ declare const QyTree: ({
|
|
|
90
91
|
type: ObjectConstructor;
|
|
91
92
|
default: () => {
|
|
92
93
|
label: string;
|
|
94
|
+
value: string;
|
|
93
95
|
children: string;
|
|
94
96
|
};
|
|
95
97
|
};
|
|
@@ -144,6 +146,7 @@ declare const QyTree: ({
|
|
|
144
146
|
type: ObjectConstructor;
|
|
145
147
|
default: () => {
|
|
146
148
|
label: string;
|
|
149
|
+
value: string;
|
|
147
150
|
children: string;
|
|
148
151
|
};
|
|
149
152
|
};
|
|
@@ -38,6 +38,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
38
38
|
type: ObjectConstructor;
|
|
39
39
|
default: () => {
|
|
40
40
|
label: string;
|
|
41
|
+
value: string;
|
|
41
42
|
children: string;
|
|
42
43
|
};
|
|
43
44
|
};
|
|
@@ -78,6 +79,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
78
79
|
type: ObjectConstructor;
|
|
79
80
|
default: () => {
|
|
80
81
|
label: string;
|
|
82
|
+
value: string;
|
|
81
83
|
children: string;
|
|
82
84
|
};
|
|
83
85
|
};
|