classcard-ui 0.2.1517 → 0.2.1518
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 +118 -149
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +118 -149
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +2 -2
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CCalendar/CCalendar.vue +3 -2
package/package.json
CHANGED
|
@@ -91,9 +91,10 @@
|
|
|
91
91
|
:datetime="formatForDateTime(date)"
|
|
92
92
|
class="flex h-5 items-center justify-center rounded-full p-1.5 text-sm"
|
|
93
93
|
:class="{
|
|
94
|
-
'bg-gray-900 font-semibold text-white':
|
|
95
|
-
'bg-indigo-100 font-semibold text-indigo-700':
|
|
94
|
+
'bg-gray-900 font-semibold text-white':
|
|
96
95
|
isSelected(date) && !isToday(date),
|
|
96
|
+
'bg-indigo-100 font-semibold text-indigo-700':
|
|
97
|
+
isToday(date),
|
|
97
98
|
'text-gray-900':
|
|
98
99
|
!isToday(date) &&
|
|
99
100
|
!isSelected(date) &&
|