sprintify-ui 0.10.77 → 0.10.79
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),
|
|
@@ -26110,13 +26110,13 @@ const J1 = ["onClick"], ew = { class: "px-2 flex items-center" }, tw = { class:
|
|
|
26110
26110
|
type: Boolean
|
|
26111
26111
|
}
|
|
26112
26112
|
}
|
|
26113
|
-
}), ek = { class: "
|
|
26113
|
+
}), ek = { class: "md:col-span-1" }, tk = { class: "text-base font-semibold leading-6 text-slate-900" }, nk = {
|
|
26114
26114
|
key: 0,
|
|
26115
26115
|
class: "mt-1 text-sm leading-normal opacity-50"
|
|
26116
26116
|
}, ok = { class: "mt-5 md:col-span-2 md:mt-0" };
|
|
26117
26117
|
function rk(t, n, e, o, r, a) {
|
|
26118
26118
|
return b(), z("div", {
|
|
26119
|
-
class: H(["
|
|
26119
|
+
class: H(["md:grid md:grid-cols-3 md:gap-8", [t.bordered ? "mb-8 border-b border-slate-300" : ""]])
|
|
26120
26120
|
}, [
|
|
26121
26121
|
B("div", ek, [
|
|
26122
26122
|
B("h3", tk, le(t.title), 1),
|
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>
|
|
@@ -28,8 +28,8 @@ const Template = (args) => ({
|
|
|
28
28
|
return { args };
|
|
29
29
|
},
|
|
30
30
|
template: `
|
|
31
|
-
<div class="bg-slate-100 py-10">
|
|
32
|
-
|
|
31
|
+
<div class="bg-slate-100 py-10 px-5">
|
|
32
|
+
<div class="border border-dashed rounded border-slate-400">
|
|
33
33
|
<BasePanel v-bind="args">
|
|
34
34
|
<BaseCard>
|
|
35
35
|
<BaseCardRow>
|
|
@@ -47,7 +47,7 @@ const Template = (args) => ({
|
|
|
47
47
|
</BaseCardRow>
|
|
48
48
|
</BaseCard>
|
|
49
49
|
</BasePanel>
|
|
50
|
-
|
|
50
|
+
</div>
|
|
51
51
|
</div>
|
|
52
52
|
`,
|
|
53
53
|
});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
class="
|
|
3
|
+
class="md:grid md:grid-cols-3 md:gap-8"
|
|
4
4
|
:class="[bordered ? 'mb-8 border-b border-slate-300' : '']"
|
|
5
5
|
>
|
|
6
|
-
<div class="
|
|
6
|
+
<div class="md:col-span-1">
|
|
7
7
|
<h3 class="text-base font-semibold leading-6 text-slate-900">
|
|
8
8
|
{{ title }}
|
|
9
9
|
</h3>
|