n20-common-lib 2.4.14 → 2.4.15

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": "n20-common-lib",
3
- "version": "2.4.14",
3
+ "version": "2.4.15",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -12,8 +12,8 @@
12
12
  v-bind="Object.assign({ size: size }, $attrs, sizeBind)"
13
13
  show-overflow
14
14
  show-header-overflow
15
- :row-config="{ isHover: true, useKey: false }"
16
- :column-config="{ resizable: false, useKey: true }"
15
+ :row-config="{ isHover: true, useKey: true }"
16
+ :column-config="{ resizable: true, useKey: true }"
17
17
  :sort-config="{
18
18
  multiple: false,
19
19
  remote: true,
@@ -148,7 +148,7 @@ export default {
148
148
  const orders = sortList.map((item) => {
149
149
  return {
150
150
  column: item.field,
151
- asc: item.order === 'desc'
151
+ asc: item.order === 'asc'
152
152
  }
153
153
  })
154
154
  this.$emit('sort-change-method', orders)