sone-ui-component-3.2.4 2.1.35 → 2.1.36

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.35",
3
+ "version": "2.1.36",
4
4
  "private": false,
5
5
  "main": "lib/sone-ui.common.js",
6
6
  "files": [
@@ -124,10 +124,16 @@ export default {
124
124
  showDialogFullScreen: {
125
125
  type: Boolean,
126
126
  default: true,
127
+ },
128
+ width: {
129
+ type: String,
130
+ default: '',
127
131
  }
128
132
  },
129
133
  computed: {
130
134
  dialogSize() {
135
+ if(this.width) return this.width;
136
+
131
137
  if (this.size == "mini") {
132
138
  return "400px";
133
139
  }
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.35',
60
+ version: '2.1.36',
61
61
  locale: locale.use,
62
62
  i18n: locale.i18n,
63
63
  install,