classcard-ui 0.2.412 → 0.2.413
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/dist/classcard-ui.common.js +58 -53
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +58 -53
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CUpload/CUpload.vue +5 -0
package/package.json
CHANGED
|
@@ -106,6 +106,10 @@ export default {
|
|
|
106
106
|
type: Boolean,
|
|
107
107
|
default: false,
|
|
108
108
|
},
|
|
109
|
+
isCircle: {
|
|
110
|
+
type: Boolean,
|
|
111
|
+
default: false,
|
|
112
|
+
},
|
|
109
113
|
},
|
|
110
114
|
data() {
|
|
111
115
|
return {};
|
|
@@ -127,6 +131,7 @@ export default {
|
|
|
127
131
|
aspectRatio: this.aspectRatio ? this.aspectRatio : 1 / 1,
|
|
128
132
|
force: this.aspectRatio ? true : false,
|
|
129
133
|
},
|
|
134
|
+
circle: this.isCircle,
|
|
130
135
|
},
|
|
131
136
|
};
|
|
132
137
|
const picker = client.picker(options);
|