classcard-ui 0.2.596 → 0.2.597

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.596",
3
+ "version": "0.2.597",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -20,7 +20,7 @@
20
20
  </svg>
21
21
  <svg
22
22
  v-if="name !== 'loader' && type == 'solid'"
23
- :class="(classes ? classes : '') + (cursorType ? cursorType : ' cursor-pointer')"
23
+ :class="(classes ? classes : '') + (cursorType ? cursorType : '')"
24
24
  :viewBox="viewBox"
25
25
  fill="currentColor"
26
26
  fill-rule="evenodd"
@@ -29,12 +29,17 @@
29
29
  </svg>
30
30
  <svg
31
31
  v-if="name !== 'loader' && type == 'outline'"
32
- :class="(classes ? classes : '') + (cursorType ? cursorType : ' cursor-pointer')"
32
+ :class="(classes ? classes : '') + (cursorType ? cursorType : '')"
33
33
  viewBox="0 0 24 24"
34
34
  fill="none"
35
35
  stroke="currentColor"
36
36
  >
37
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" :d="path" />
37
+ <path
38
+ stroke-linecap="round"
39
+ stroke-linejoin="round"
40
+ stroke-width="2"
41
+ :d="path"
42
+ />
38
43
  </svg>
39
44
  </div>
40
45
  </template>
@@ -60,7 +65,7 @@ export default {
60
65
  },
61
66
  cursorType: {
62
67
  type: String,
63
- default: "cursor-pointer",
68
+ default: "cursor-default",
64
69
  },
65
70
  },
66
71
  computed: {