@lambo-design/schema-paging-table 1.0.0-beta.12 → 1.0.0-beta.13

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/index.vue +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/schema-paging-table",
3
- "version": "1.0.0-beta.12",
3
+ "version": "1.0.0-beta.13",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -11,9 +11,9 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "@lambo-design/core": "^4.7.1-beta.105",
14
- "@lambo-design/schema-form": "^1.0.0-beta.29",
15
- "@lambo-design/shared": "^1.0.0-beta.97",
16
- "@lambo-design/paging-table": "^1.0.0-beta.72"
14
+ "@lambo-design/shared": "^1.0.0-beta.98",
15
+ "@lambo-design/paging-table": "^1.0.0-beta.72",
16
+ "@lambo-design/schema-form": "^1.0.0-beta.29"
17
17
  },
18
18
  "scripts": {}
19
19
  }
package/src/index.vue CHANGED
@@ -5,6 +5,7 @@
5
5
  :columns="tableColumn"
6
6
  :searchParams="tableSearchParams"
7
7
  :transformResponse="transformResponse"
8
+ :showTableOption="showTableOption"
8
9
  @on-row-click="onRowClick"
9
10
  @on-selection-change="onSelectionChange"
10
11
  @on-select="onSelect"
@@ -97,6 +98,10 @@ export default {
97
98
  return []
98
99
  }
99
100
  },
101
+ showTableOption: {
102
+ type: Boolean,
103
+ default: true
104
+ },
100
105
  rowKey: {
101
106
  type: String,
102
107
  require: false,