sprintify-ui 0.10.77 → 0.10.78
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/sprintify-ui.es.js
CHANGED
|
@@ -9259,7 +9259,7 @@ const uv = {
|
|
|
9259
9259
|
B("div", dv, [
|
|
9260
9260
|
B("div", {
|
|
9261
9261
|
class: H(["mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full sm:mx-0 sm:h-10 sm:w-10", {
|
|
9262
|
-
"bg-
|
|
9262
|
+
"bg-blue-100": t.color == "info",
|
|
9263
9263
|
"bg-red-100": t.color == "danger",
|
|
9264
9264
|
"bg-yellow-100": t.color == "warning",
|
|
9265
9265
|
"bg-green-100": t.color == "success"
|
|
@@ -9279,7 +9279,7 @@ const uv = {
|
|
|
9279
9279
|
icon: "heroicons:check-circle-20-solid"
|
|
9280
9280
|
})) : (b(), ee(c(Ye), {
|
|
9281
9281
|
key: 3,
|
|
9282
|
-
class: "h-5 w-5 text-
|
|
9282
|
+
class: "h-5 w-5 text-blue-600",
|
|
9283
9283
|
icon: "heroicons:information-circle-20-solid"
|
|
9284
9284
|
}))
|
|
9285
9285
|
], 2),
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<div
|
|
8
8
|
class="mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full sm:mx-0 sm:h-10 sm:w-10"
|
|
9
9
|
:class="{
|
|
10
|
-
'bg-
|
|
10
|
+
'bg-blue-100': color == 'info',
|
|
11
11
|
'bg-red-100': color == 'danger',
|
|
12
12
|
'bg-yellow-100': color == 'warning',
|
|
13
13
|
'bg-green-100': color == 'success',
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
/>
|
|
31
31
|
<BaseIcon
|
|
32
32
|
v-else
|
|
33
|
-
class="h-5 w-5 text-
|
|
33
|
+
class="h-5 w-5 text-blue-600"
|
|
34
34
|
icon="heroicons:information-circle-20-solid"
|
|
35
35
|
/>
|
|
36
36
|
</div>
|