@designcrowd/fe-shared-lib 1.5.5 → 1.5.6-add-shield-tick-v2
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 +1 -1
- package/src/atoms/components/Icon/icons/shield-tick.vue +6 -0
- package/src/atoms/components/SparkleIcon/SparkleIcon.vue +5 -5
- package/public/css/tailwind-brandCrowd.css +0 -2472
- package/public/css/tailwind-brandPage.css +0 -2156
- package/public/css/tailwind-crazyDomains.css +0 -2472
- package/public/css/tailwind-designCom.css +0 -2472
- package/public/css/tailwind-designCrowd.css +0 -2472
package/package.json
CHANGED
|
@@ -43,8 +43,8 @@ const props = withDefaults(defineProps<SparkleIconProps>(), {
|
|
|
43
43
|
animated: false,
|
|
44
44
|
withSpinner: false,
|
|
45
45
|
size: 'md',
|
|
46
|
-
color: '
|
|
47
|
-
colorClass: '',
|
|
46
|
+
color: '',
|
|
47
|
+
colorClass: 'tw-text-primary-500',
|
|
48
48
|
});
|
|
49
49
|
|
|
50
50
|
// Generate unique ID for gradient to avoid conflicts with multiple instances
|
|
@@ -73,10 +73,10 @@ const sizeValue = computed(() => {
|
|
|
73
73
|
|
|
74
74
|
// Computed color style - only apply inline color if no colorClass is provided
|
|
75
75
|
const colorStyle = computed(() => {
|
|
76
|
-
if (props.
|
|
77
|
-
return
|
|
76
|
+
if (props.color) {
|
|
77
|
+
return { color: props.color };
|
|
78
78
|
}
|
|
79
|
-
return
|
|
79
|
+
return undefined;
|
|
80
80
|
});
|
|
81
81
|
|
|
82
82
|
// Computed viewBox - use larger viewBox for spinner variant
|