rayyy-vue-table-components 2.0.31 → 2.0.32

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.
@@ -325,7 +325,6 @@ export interface TransferDialogInstance<T = Record<string, unknown>> {
325
325
  $emit: TransferDialogEmits<T>
326
326
  }
327
327
 
328
- // ==================== 表單相關組件類型 ====================
329
328
 
330
329
  // ==================== BaseInput 組件類型 ====================
331
330
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rayyy-vue-table-components",
3
- "version": "2.0.31",
3
+ "version": "2.0.32",
4
4
  "description": "Vue 3 + Element Plus 表格組件庫",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",
@@ -25,8 +25,6 @@
25
25
 
26
26
  .sub-title {
27
27
  @apply pb-2 font-bold text-base;
28
- }
29
- .sub-title_border {
30
28
  @apply border-b mb-4 border-b-text-border/10 border-solid;
31
29
  @apply border-t-0 border-x-0;
32
30
  }
@@ -78,12 +78,7 @@ const handleSubmit = () => {
78
78
  </template>
79
79
 
80
80
  <div class="p-2" v-loading="bodyLoading">
81
- <div
82
- class="sub-title"
83
- :class="{
84
- 'sub-title_border': !_.isEmpty(subTitle),
85
- }"
86
- >
81
+ <div v-if="!_.isEmpty(subTitle)" class="sub-title">
87
82
  {{ subTitle }}
88
83
  </div>
89
84
 
@@ -326,7 +326,6 @@ export interface TransferDialogInstance<T = Record<string, unknown>> {
326
326
  $emit: TransferDialogEmits<T>
327
327
  }
328
328
 
329
- // ==================== 表單相關組件類型 ====================
330
329
 
331
330
  // ==================== BaseInput 組件類型 ====================
332
331