sone-ui-component-3.2.4 2.1.56 → 2.1.57

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": "sone-ui-component-3.2.4",
3
- "version": "2.1.56",
3
+ "version": "2.1.57",
4
4
  "private": false,
5
5
  "main": "lib/sone-ui.common.js",
6
6
  "files": [
@@ -14,8 +14,8 @@
14
14
  height: showCollapse && !isBottomCollapse ? rowHeight * rowHideCount + 4 + 'px' : 'auto',
15
15
  'overflow-y': showCollapse && isBottomCollapse ? 'auto' : 'hidden'
16
16
  }"
17
- label-position="top"
18
- label-width="80px"
17
+ :label-position="labelPosition"
18
+ :label-width="labelWidth"
19
19
  :show-message="false"
20
20
  :model="form"
21
21
  :disabled="disabled"
@@ -299,6 +299,14 @@ export default {
299
299
  type: Number,
300
300
  default: 3,
301
301
  },
302
+ labelPosition: {
303
+ type: String,
304
+ default: 'top'
305
+ },
306
+ labelWidth: {
307
+ type: String,
308
+ default: '80px'
309
+ }
302
310
  },
303
311
  data() {
304
312
  return {
package/src/index.js CHANGED
@@ -57,7 +57,7 @@ if (typeof window !== 'undefined' && window.Vue) {
57
57
  }
58
58
 
59
59
  export default {
60
- version: '2.1.56',
60
+ version: '2.1.57',
61
61
  locale: locale.use,
62
62
  i18n: locale.i18n,
63
63
  install,