classcard-ui 0.2.1516 → 0.2.1517

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.1516",
3
+ "version": "0.2.1517",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -15,7 +15,10 @@
15
15
  </div>
16
16
  <button
17
17
  type="button"
18
- class="inline-flex items-center rounded-md border border-gray-300 bg-white px-3 py-2 text-sm font-medium text-gray-700 shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"
18
+ :class="[
19
+ 'inline-flex items-center rounded-md border border-gray-300 bg-white px-3 py-2 text-sm font-medium text-gray-700 shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2',
20
+ extraClasses,
21
+ ]"
19
22
  @click="initFilestack()"
20
23
  :id="id"
21
24
  v-if="displayMode == 'overlay' && icon"
@@ -25,6 +28,7 @@
25
28
  :class="icon.class"
26
29
  :name="icon.name"
27
30
  :viewBox="icon.viewBox"
31
+ cursorType="cursor-pointer"
28
32
  ></c-icon>
29
33
  {{ buttonText }}
30
34
  </button>
@@ -116,6 +120,10 @@ export default {
116
120
  id: {
117
121
  type: String,
118
122
  },
123
+ extraClasses: {
124
+ type: String,
125
+ default: "",
126
+ },
119
127
  buttonText: {
120
128
  type: String,
121
129
  default: "Upload",