classcard-ui 0.2.221 → 0.2.225
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 +67 -64
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +67 -64
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CAvatarGroup/CAvatarGroup.vue +3 -3
- package/src/components/CButton/CButton.vue +2 -0
- package/src/components/CDatepicker/CDatepicker.vue +1 -0
- package/src/icons.js +2 -0
- package/src/stories/CButton.stories.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div :class="description ? 'items-start' : 'items-center'" class="flex">
|
|
3
|
-
<div class="flex -space-x-1
|
|
3
|
+
<div class="flex -space-x-1" v-if="images">
|
|
4
4
|
<img
|
|
5
5
|
v-for="(image, index) in images"
|
|
6
6
|
:key="index"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
/>
|
|
12
12
|
</div>
|
|
13
13
|
<div
|
|
14
|
-
class="flex -space-x-1
|
|
14
|
+
class="flex -space-x-1"
|
|
15
15
|
v-if="nameInitials && nameInitialsWithColors.length > 4"
|
|
16
16
|
>
|
|
17
17
|
<div
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
</div>
|
|
38
38
|
</div>
|
|
39
39
|
<div
|
|
40
|
-
class="flex -space-x-1
|
|
40
|
+
class="flex -space-x-1"
|
|
41
41
|
v-if="nameInitials && nameInitialsWithColors.length <= 4"
|
|
42
42
|
>
|
|
43
43
|
<div
|
|
@@ -83,6 +83,8 @@ export default {
|
|
|
83
83
|
this.type == "danger",
|
|
84
84
|
"text-white hover:bg-green-800 bg-green-700 focus:ring-green-600":
|
|
85
85
|
this.type == "success",
|
|
86
|
+
"text-green-800 border border-solid border-gray-300 bg-white hover:bg-gray-50 focus:ring-indigo-600":
|
|
87
|
+
this.type == "secondary-success",
|
|
86
88
|
"text-gray-700 hover:bg-gray-200 bg-gray-100":
|
|
87
89
|
this.type == "secondary-gray",
|
|
88
90
|
"bg-red-100 text-red-800 hover:bg-red-200 focus:ring-red-200":
|
package/src/icons.js
CHANGED
|
@@ -191,5 +191,7 @@ export default {
|
|
|
191
191
|
"check-circle-outline": "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z",
|
|
192
192
|
"play-solid":
|
|
193
193
|
"M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z",
|
|
194
|
+
"phone-outgoing-solid":
|
|
195
|
+
"M17.924 2.617a.997.997 0 00-.215-.322l-.004-.004A.997.997 0 0017 2h-4a1 1 0 100 2h1.586l-3.293 3.293a1 1 0 001.414 1.414L16 5.414V7a1 1 0 102 0V3a.997.997 0 00-.076-.383z M2 3a1 1 0 011-1h2.153a1 1 0 01.986.836l.74 4.435a1 1 0 01-.54 1.06l-1.548.773a11.037 11.037 0 006.105 6.105l.774-1.548a1 1 0 011.059-.54l4.435.74a1 1 0 01.836.986V17a1 1 0 01-1 1h-2C7.82 18 2 12.18 2 5V3z",
|
|
194
196
|
save: "M7.707 10.293a1 1 0 10-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L11 11.586V6h5a2 2 0 012 2v7a2 2 0 01-2 2H4a2 2 0 01-2-2V8a2 2 0 012-2h5v5.586l-1.293-1.293zM9 4a1 1 0 012 0v2H9V4z",
|
|
195
197
|
};
|