sone-ui-component-3.2.4 2.1.17 → 2.1.19
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/lib/sone-ui.common.js +10 -11
- package/lib/sone-ui.common.js.map +1 -1
- package/lib/sone-ui.umd.js +10 -11
- package/lib/sone-ui.umd.js.map +1 -1
- package/lib/sone-ui.umd.min.js +1 -1
- package/lib/sone-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/normalTable/src/main.vue +6 -7
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -11,21 +11,19 @@
|
|
|
11
11
|
<div class="table-menu-right" v-if="showMenuRight">
|
|
12
12
|
<slot name="menuRight"></slot>
|
|
13
13
|
<el-dropdown :hide-on-click="false" v-if="showColumnHandleBtn" @visible-change="onColumnVisibleMenu">
|
|
14
|
-
<
|
|
14
|
+
<IconButton
|
|
15
15
|
:iconfont="false"
|
|
16
16
|
:tooltipDisabled="tooltipDisabled"
|
|
17
17
|
class="sort-btn"
|
|
18
18
|
content="列展示"
|
|
19
|
-
icon="el-icon-s-operation"
|
|
20
|
-
></icon-button>
|
|
19
|
+
icon="el-icon-s-operation" />
|
|
21
20
|
<ColumnTransfer
|
|
22
21
|
ref="column-transfer"
|
|
23
22
|
:columns.sync="internalColumns"
|
|
24
23
|
@dropdownList="dropdownList"
|
|
25
24
|
@handleCheckedColumnChange="handleCheckedColumnChange"
|
|
26
25
|
@selectFixed="selectFixed"
|
|
27
|
-
@resetColumnTransfer="$emit('resetColumnTransfer')"
|
|
28
|
-
></ColumnTransfer>
|
|
26
|
+
@resetColumnTransfer="$emit('resetColumnTransfer')" />
|
|
29
27
|
</el-dropdown>
|
|
30
28
|
<slot name="transferRight"></slot>
|
|
31
29
|
</div>
|
|
@@ -212,9 +210,10 @@
|
|
|
212
210
|
<script>
|
|
213
211
|
import { deepClone } from 'sone-ui-component/src/utils/util'
|
|
214
212
|
import ColumnTransfer from './columnTransfer.vue'
|
|
213
|
+
import IconButton from "sone-ui-component/packages/IconButton/index.vue";
|
|
215
214
|
export default {
|
|
216
|
-
name: "
|
|
217
|
-
components: { ColumnTransfer },
|
|
215
|
+
name: "SoneNormalTable",
|
|
216
|
+
components: { ColumnTransfer, IconButton },
|
|
218
217
|
props: {
|
|
219
218
|
showMenuLeft: {
|
|
220
219
|
type: Boolean,
|