@qin-ui/antd-vue-pro 2.1.9 → 2.1.10
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/es/antd-vue-pro.css +6 -6
- package/es/index.d.ts +4 -4
- package/es/table/index.js +1 -1
- package/package.json +1 -1
package/es/antd-vue-pro.css
CHANGED
|
@@ -36,23 +36,23 @@
|
|
|
36
36
|
.pro-table_column-control_button[data-v-d503f78a] svg {
|
|
37
37
|
transform: scale(1.2, 1.4);
|
|
38
38
|
}
|
|
39
|
-
.pro-table_header[data-v-
|
|
39
|
+
.pro-table_header[data-v-f18ecc37] {
|
|
40
40
|
display: flex;
|
|
41
41
|
align-items: center;
|
|
42
42
|
justify-content: flex-end;
|
|
43
43
|
}
|
|
44
|
-
.pro-table_header[data-v-
|
|
44
|
+
.pro-table_header[data-v-f18ecc37]:empty {
|
|
45
45
|
display: none;
|
|
46
46
|
}
|
|
47
|
-
.pro-table_header + .pro-table_header_content[data-v-
|
|
47
|
+
.pro-table_header + .pro-table_header_content[data-v-f18ecc37] {
|
|
48
48
|
margin-top: 16px;
|
|
49
49
|
}
|
|
50
|
-
.pro-table_header_button-bar[data-v-
|
|
50
|
+
.pro-table_header_button-bar[data-v-f18ecc37] {
|
|
51
51
|
flex: 1;
|
|
52
52
|
}
|
|
53
|
-
.pro-table_header_toolbar[data-v-
|
|
53
|
+
.pro-table_header_toolbar[data-v-f18ecc37] {
|
|
54
54
|
margin-left: 12px;
|
|
55
55
|
}
|
|
56
|
-
.pro-table[data-v-
|
|
56
|
+
.pro-table[data-v-f18ecc37] [class*='-pagination'] [class*='-pagination-total-text'] {
|
|
57
57
|
flex: 1;
|
|
58
58
|
}
|
package/es/index.d.ts
CHANGED
|
@@ -411,9 +411,9 @@ declare const _default_2: <T extends Table<any> = Table>(__VLS_props: NonNullabl
|
|
|
411
411
|
bodyCell?: (props: {
|
|
412
412
|
text: any;
|
|
413
413
|
value: any;
|
|
414
|
-
record: T extends Table<infer
|
|
414
|
+
record: T extends Table<any, infer R extends Data> ? R : never;
|
|
415
415
|
index: number;
|
|
416
|
-
column: Column<T extends Table<infer
|
|
416
|
+
column: Column<T extends Table<any, infer R extends Data> ? R : never>;
|
|
417
417
|
}) => void;
|
|
418
418
|
}> & Readonly<Partial<Record<"table" | "search-form" | "button-bar" | "toolbar", Slot>>>, "default">> & Omit<Omit<Readonly<{
|
|
419
419
|
emptyText?: any;
|
|
@@ -441,9 +441,9 @@ declare const _default_2: <T extends Table<any> = Table>(__VLS_props: NonNullabl
|
|
|
441
441
|
bodyCell?: (props: {
|
|
442
442
|
text: any;
|
|
443
443
|
value: any;
|
|
444
|
-
record: T extends Table<infer
|
|
444
|
+
record: T extends Table<any, infer R extends Data> ? R : never;
|
|
445
445
|
index: number;
|
|
446
|
-
column: Column<T extends Table<infer
|
|
446
|
+
column: Column<T extends Table<any, infer R extends Data> ? R : never>;
|
|
447
447
|
}) => void;
|
|
448
448
|
}> & Readonly<Partial<Record<"table" | "search-form" | "button-bar" | "toolbar", Slot>>>, "default">;
|
|
449
449
|
emit: ((evt: "update:size", value: ButtonSize) => void) & ((evt: "update:loading", value: boolean) => void);
|
package/es/table/index.js
CHANGED
|
@@ -690,7 +690,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
690
690
|
};
|
|
691
691
|
}
|
|
692
692
|
});
|
|
693
|
-
const BaseTable = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
693
|
+
const BaseTable = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f18ecc37"]]);
|
|
694
694
|
const useTable = useTable$1;
|
|
695
695
|
export {
|
|
696
696
|
BaseTable as default,
|