classcard-ui 0.2.269 → 0.2.270

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.269",
3
+ "version": "0.2.270",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -5,7 +5,19 @@
5
5
  :class="classes"
6
6
  :type="type"
7
7
  @click="handleButtonClick"
8
- class="relative inline-flex items-center px-4 py-2 rounded-l-md text-sm font-medium focus:z-10 focus:outline-none focus:ring-1"
8
+ class="
9
+ relative
10
+ inline-flex
11
+ items-center
12
+ px-4
13
+ py-2
14
+ rounded-l-md
15
+ text-sm
16
+ font-medium
17
+ focus:z-10
18
+ focus:outline-none
19
+ focus:ring-1
20
+ "
9
21
  >
10
22
  {{ selectedValue ? selectedValue : label }}
11
23
  </button>
@@ -15,7 +27,20 @@
15
27
  @blur="close()"
16
28
  :type="type"
17
29
  :class="classes"
18
- class="relative inline-flex items-center px-2 py-2 rounded-r-md text-sm font-medium t focus:z-10 focus:outline-none focus:ring-1"
30
+ class="
31
+ relative
32
+ inline-flex
33
+ items-center
34
+ px-2
35
+ py-2
36
+ rounded-r-md
37
+ text-sm
38
+ font-medium
39
+ t
40
+ focus:z-10
41
+ focus:outline-none
42
+ focus:ring-1
43
+ "
19
44
  >
20
45
  <span class="sr-only">Open options</span>
21
46
  <c-icon name="chevron-down" type="solid" class="h-5 w-5"></c-icon>
@@ -23,7 +48,18 @@
23
48
  <div
24
49
  v-if="toggleDropdown"
25
50
  :class="dropdownPositionClass"
26
- class="origin-top-right absolute right-0 z-10 mt-2 -mr-1 w-56 rounded-md shadow-lg bg-white ring-1 ring-gray-900 ring-opacity-5"
51
+ class="
52
+ origin-top-right
53
+ absolute
54
+ right-0
55
+ z-10
56
+ mt-2
57
+ w-56
58
+ rounded-md
59
+ shadow-lg
60
+ bg-white
61
+ ring-1 ring-gray-900 ring-opacity-5
62
+ "
27
63
  >
28
64
  <div
29
65
  class="py-1"
@@ -35,7 +71,15 @@
35
71
  v-for="item in items"
36
72
  v-bind:key="item.items"
37
73
  @mousedown="selectOption($event, item.value)"
38
- class="block px-4 py-2 text-sm text-left text-gray-700 hover:bg-gray-100 hover:text-gray-900 cursor-pointer"
74
+ class="
75
+ block
76
+ px-4
77
+ py-2
78
+ text-sm text-left text-gray-700
79
+ hover:bg-gray-100
80
+ hover:text-gray-900
81
+ cursor-pointer
82
+ "
39
83
  role="menuitem"
40
84
  >
41
85
  {{ item.text }}