rayyy-vue-table-components 2.0.42 → 2.0.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rayyy-vue-table-components",
3
- "version": "2.0.42",
3
+ "version": "2.0.44",
4
4
  "description": "Vue 3 + Element Plus 表格組件庫",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",
@@ -9,7 +9,6 @@
9
9
  // Element Plus 對話框樣式覆蓋
10
10
  .el-dialog.base-dialog {
11
11
  @apply p-0;
12
- max-width: 500px;
13
12
 
14
13
  .el-dialog__header {
15
14
  @apply h-12 pt-2 bg-primary-15 border-b;
@@ -42,7 +42,6 @@ const resetFilter = () => {
42
42
  <base-input
43
43
  v-model="keyword"
44
44
  :placeholder="t('search.placeholder')"
45
- :show-word-limit="true"
46
45
  :show-search="true"
47
46
  @keydown.enter="doSearch"
48
47
  @update:clearValue="clearableClick"
@@ -1,6 +1,6 @@
1
1
  <script setup lang="ts">
2
2
  import { useI18n } from 'vue-i18n'
3
- import { MainPanel, BaseBtn, SearchableListPanel } from '@/components'
3
+ import { MainPanel, BaseBtn } from '@/components'
4
4
 
5
5
  const { t } = useI18n()
6
6
 
@@ -52,7 +52,7 @@ const handleBackClick = () => {
52
52
  <style lang="scss" scoped>
53
53
  .detail-container {
54
54
  @apply h-full flex flex-col;
55
- min-height: calc(100vh - 140px);
55
+ min-height: calc(100vh - 200px);
56
56
  }
57
57
 
58
58
  .content-wrapper {