@lambo-design/schema-paging-table 1.0.0-beta.52 → 1.0.0-beta.53

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 +3 -3
  2. package/src/index.vue +6 -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.52",
3
+ "version": "1.0.0-beta.53",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -12,9 +12,9 @@
12
12
  "devDependencies": {
13
13
  "standard-version": "^9.5.0",
14
14
  "@lambo-design/shared": "^1.0.0-beta.237",
15
- "@lambo-design/core": "^4.7.1-beta.147",
15
+ "@lambo-design/core": "^4.7.1-beta.149",
16
16
  "@lambo-design/schema-form": "^1.0.0-beta.75",
17
- "@lambo-design/paging-table": "^1.0.0-beta.87"
17
+ "@lambo-design/paging-table": "^1.0.0-beta.90"
18
18
  },
19
19
  "scripts": {
20
20
  "release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
package/src/index.vue CHANGED
@@ -24,6 +24,7 @@
24
24
  :form-type="'search'"
25
25
  :fieldList="formFields"
26
26
  :labelWidth="labelWidth"
27
+ :labelPosition="labelPosition"
27
28
  :default-rows="2"
28
29
  :grid-columns="gridColumns"
29
30
  :customComponents="customComponents"
@@ -149,6 +150,11 @@ export default {
149
150
  require: false,
150
151
  default: 100
151
152
  },
153
+ labelPosition: {
154
+ type: String,
155
+ require: false,
156
+ default: "right"
157
+ },
152
158
  operColumnDropdownNum: {
153
159
  type: Number,
154
160
  require: false,