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/lib/sone-ui.common.js +13 -7
- package/lib/sone-ui.common.js.map +1 -1
- package/lib/sone-ui.umd.js +13 -7
- package/lib/sone-ui.umd.js.map +1 -1
- package/lib/sone-ui.umd.min.js +2 -2
- package/lib/sone-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/dialog/src/main.vue +6 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -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
|
}
|