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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "classcard-ui",
3
- "version": "0.2.412",
3
+ "version": "0.2.413",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -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);