rayyy-vue-table-components 2.0.41 → 2.0.43
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/index.es.js +2 -2
- package/dist/index.umd.js +1 -1
- package/dist/rayyy-vue-table-components.css +1 -1
- package/dist/src/components/tables/SortTable.vue.d.ts +3 -1
- package/package.json +1 -1
- package/src/assets/styles/_dialogs.scss +0 -1
- package/src/components/items/SearchBar.vue +0 -1
- package/src/components/tables/SortTable.vue +1 -0
|
@@ -31,7 +31,9 @@ declare const _default: <T extends Record<string, unknown>>(__VLS_props: NonNull
|
|
|
31
31
|
} & Partial<{}>> & import('vue').PublicProps;
|
|
32
32
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
33
33
|
attrs: any;
|
|
34
|
-
slots: {
|
|
34
|
+
slots: {
|
|
35
|
+
firstButton?(_: {}): any;
|
|
36
|
+
};
|
|
35
37
|
emit: {
|
|
36
38
|
(e: "open:transfer"): void;
|
|
37
39
|
(e: "click:downloadExcelFile"): void;
|
package/package.json
CHANGED
|
@@ -66,6 +66,7 @@ const state = reactive({
|
|
|
66
66
|
<div class="w-full mb-4">
|
|
67
67
|
<div class="flex items-center h-12 bg-gray-200 px-1.5 rounded-t justify-end">
|
|
68
68
|
<div class="flex items-center mr-4">
|
|
69
|
+
<slot name="firstButton"></slot>
|
|
69
70
|
<div
|
|
70
71
|
class="cursor-pointer text-text text-xl flex items-center justify-center hover:text-blue-600"
|
|
71
72
|
@click="openTransferDialog"
|