ci-plus 1.8.7 → 1.8.8

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": "ci-plus",
3
- "version": "1.8.7",
3
+ "version": "1.8.8",
4
4
  "description": "ci组件库",
5
5
  "main": "./index.ts",
6
6
  "scripts": {
@@ -33,11 +33,15 @@
33
33
  </div>
34
34
  <div class="ifshow">
35
35
  <el-button :type="element.hide ? 'primary' : ''" @click="handleShow(element)" size="small">
36
- {{ element.hide ? t('sortableTable.sortableTableDialog.show') : t('sortableTable.sortableTableDialog.hide') }}
36
+ {{
37
+ element.hide
38
+ ? t('sortableTable.sortableTableDialog.show')
39
+ : t('sortableTable.sortableTableDialog.hide')
40
+ }}
37
41
  </el-button>
38
42
  </div>
39
43
  <div class="widths">
40
- {{t('sortableTable.sortableTableDialog.width')}}:
44
+ {{ t('sortableTable.sortableTableDialog.width') }}:
41
45
  <el-input class="w-50 m-2" v-model="element.col.width" size="small" width="50"></el-input>
42
46
  </div>
43
47
  <sortable-table-drag-item v-if="element.children" v-model="element.children" />
@@ -47,8 +51,8 @@
47
51
  <script setup lang="ts">
48
52
  import SvgIcon from '../../svgIcon/index'
49
53
  import { computed } from 'vue'
50
- import { ElInput, ElButton , ElIcon} from 'element-plus'
51
- import t from '../utils/lang/index'
54
+ import { ElInput, ElButton, ElIcon } from 'element-plus'
55
+ import t from '../../utils/lang/index'
52
56
  import { VueDraggable } from 'vue-draggable-plus'
53
57
  import { SortColumn, SortableTableIns } from './interface'
54
58
  import { Rank } from '@element-plus/icons-vue'