rayyy-vue-table-components 1.2.36 → 1.2.37
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 +160 -160
- package/dist/index.umd.js +4 -4
- package/dist/rayyy-vue-table-components.css +1 -1
- package/dist/src/components/items/SearchBar.vue.d.ts +1 -1
- package/dist/src/components/layout/SearchableListPanel.vue.d.ts +1 -1
- package/dist/src/types/components.d.ts +3 -3
- package/package.json +1 -1
- package/src/components/items/SearchBar.vue +1 -1
- package/src/components/layout/SearchableListPanel.vue +2 -2
- package/src/types/components.d.ts +3 -3
|
@@ -354,7 +354,7 @@ export interface SearchBarSlots {
|
|
|
354
354
|
/** 按鈕 slot */
|
|
355
355
|
button: () => VNode[]
|
|
356
356
|
/** 自定義篩選 slot */
|
|
357
|
-
|
|
357
|
+
customerFilter: () => VNode[]
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
// ==================== SearchableListPanel 組件類型 ====================
|
|
@@ -409,8 +409,8 @@ export interface SearchableListPanelSlots {
|
|
|
409
409
|
customButton: () => VNode[]
|
|
410
410
|
/** 最後一個按鈕 slot */
|
|
411
411
|
lastButton: () => VNode[]
|
|
412
|
-
/**
|
|
413
|
-
|
|
412
|
+
/** 篩選按鈕 slot */
|
|
413
|
+
filterButton: () => VNode[]
|
|
414
414
|
/** 主要內容 slot */
|
|
415
415
|
main: () => VNode[]
|
|
416
416
|
}
|
package/package.json
CHANGED
|
@@ -66,8 +66,8 @@ const changePageSize = (limit: number) => {
|
|
|
66
66
|
<slot name="customButton" v-if="showAllFeatures || showEdit"> </slot>
|
|
67
67
|
<slot name="lastButton"></slot>
|
|
68
68
|
</template>
|
|
69
|
-
<template #
|
|
70
|
-
<slot name="
|
|
69
|
+
<template #customerFilter>
|
|
70
|
+
<slot name="filterButton"></slot>
|
|
71
71
|
</template>
|
|
72
72
|
</search-bar>
|
|
73
73
|
</template>
|
|
@@ -355,7 +355,7 @@ export interface SearchBarSlots {
|
|
|
355
355
|
/** 按鈕 slot */
|
|
356
356
|
button: () => VNode[]
|
|
357
357
|
/** 自定義篩選 slot */
|
|
358
|
-
|
|
358
|
+
customerFilter: () => VNode[]
|
|
359
359
|
}
|
|
360
360
|
|
|
361
361
|
// ==================== SearchableListPanel 組件類型 ====================
|
|
@@ -410,8 +410,8 @@ export interface SearchableListPanelSlots {
|
|
|
410
410
|
customButton: () => VNode[]
|
|
411
411
|
/** 最後一個按鈕 slot */
|
|
412
412
|
lastButton: () => VNode[]
|
|
413
|
-
/**
|
|
414
|
-
|
|
413
|
+
/** 篩選按鈕 slot */
|
|
414
|
+
filterButton: () => VNode[]
|
|
415
415
|
/** 主要內容 slot */
|
|
416
416
|
main: () => VNode[]
|
|
417
417
|
}
|