@stlhorizon/vue-ui 1.4.1 → 1.4.2
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/index.esm.js +324 -326
- package/dist/index.js +6 -6
- package/dist/src/components/Modal.vue.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vue-ui.css +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -6476,7 +6476,7 @@ const G = {
|
|
|
6476
6476
|
_: 3
|
|
6477
6477
|
}, 8, ["href", "class", "disabled"]));
|
|
6478
6478
|
}
|
|
6479
|
-
}, wu = { class: "fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border
|
|
6479
|
+
}, wu = { class: "fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 sm:rounded-lg" }, ku = {
|
|
6480
6480
|
__name: "Modal",
|
|
6481
6481
|
props: {
|
|
6482
6482
|
modelValue: Boolean,
|
|
@@ -6517,14 +6517,14 @@ const G = {
|
|
|
6517
6517
|
default: B(() => [
|
|
6518
6518
|
e.modelValue ? (o(), d("div", {
|
|
6519
6519
|
key: 0,
|
|
6520
|
-
class: "fixed inset-0 z-50 bg-
|
|
6520
|
+
class: "fixed inset-0 z-50 bg-white backdrop-blur-sm",
|
|
6521
6521
|
onClick: s
|
|
6522
6522
|
}, [
|
|
6523
6523
|
u("div", wu, [
|
|
6524
6524
|
e.showClose ? (o(), d("button", {
|
|
6525
6525
|
key: 0,
|
|
6526
6526
|
onClick: r,
|
|
6527
|
-
class: "absolute right-4 top-4 rounded-sm
|
|
6527
|
+
class: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
|
|
6528
6528
|
}, [
|
|
6529
6529
|
j(G, {
|
|
6530
6530
|
icon: "x",
|
|
@@ -6532,9 +6532,7 @@ const G = {
|
|
|
6532
6532
|
}),
|
|
6533
6533
|
i[0] || (i[0] = u("span", { class: "sr-only" }, "Close", -1))
|
|
6534
6534
|
])) : p("", !0),
|
|
6535
|
-
|
|
6536
|
-
$(l.$slots, "default")
|
|
6537
|
-
])
|
|
6535
|
+
$(l.$slots, "default")
|
|
6538
6536
|
])
|
|
6539
6537
|
])) : p("", !0)
|
|
6540
6538
|
]),
|
|
@@ -6542,26 +6540,26 @@ const G = {
|
|
|
6542
6540
|
})
|
|
6543
6541
|
]));
|
|
6544
6542
|
}
|
|
6545
|
-
},
|
|
6543
|
+
}, Su = { class: "flex flex-col space-y-1.5 text-center sm:text-left" }, Cu = {
|
|
6546
6544
|
key: 0,
|
|
6547
6545
|
class: "text-lg font-semibold leading-none tracking-tight"
|
|
6548
|
-
},
|
|
6546
|
+
}, $u = {
|
|
6549
6547
|
key: 1,
|
|
6550
6548
|
class: "text-sm text-muted-foreground"
|
|
6551
|
-
},
|
|
6549
|
+
}, zu = {
|
|
6552
6550
|
__name: "ModalHeader",
|
|
6553
6551
|
props: {
|
|
6554
6552
|
title: String,
|
|
6555
6553
|
description: String
|
|
6556
6554
|
},
|
|
6557
6555
|
setup(e) {
|
|
6558
|
-
return (a, t) => (o(), d("div",
|
|
6559
|
-
e.title ? (o(), d("h2",
|
|
6560
|
-
e.description ? (o(), d("p",
|
|
6556
|
+
return (a, t) => (o(), d("div", Su, [
|
|
6557
|
+
e.title ? (o(), d("h2", Cu, x(e.title), 1)) : p("", !0),
|
|
6558
|
+
e.description ? (o(), d("p", $u, x(e.description), 1)) : p("", !0),
|
|
6561
6559
|
$(a.$slots, "default")
|
|
6562
6560
|
]));
|
|
6563
6561
|
}
|
|
6564
|
-
},
|
|
6562
|
+
}, Au = {
|
|
6565
6563
|
__name: "ModalBody",
|
|
6566
6564
|
props: {
|
|
6567
6565
|
variant: {
|
|
@@ -6587,7 +6585,7 @@ const G = {
|
|
|
6587
6585
|
$(r.$slots, "default")
|
|
6588
6586
|
], 2));
|
|
6589
6587
|
}
|
|
6590
|
-
},
|
|
6588
|
+
}, Iu = {
|
|
6591
6589
|
__name: "ModalFooter",
|
|
6592
6590
|
props: {
|
|
6593
6591
|
variant: {
|
|
@@ -6613,13 +6611,13 @@ const G = {
|
|
|
6613
6611
|
$(r.$slots, "default")
|
|
6614
6612
|
], 2));
|
|
6615
6613
|
}
|
|
6616
|
-
},
|
|
6614
|
+
}, Pu = ["aria-live"], Tu = { class: "flex items-start space-x-3" }, ju = {
|
|
6617
6615
|
key: 0,
|
|
6618
6616
|
class: "flex-shrink-0"
|
|
6619
|
-
},
|
|
6617
|
+
}, Bu = { class: "flex-1 min-w-0" }, Ou = {
|
|
6620
6618
|
key: 0,
|
|
6621
6619
|
class: "text-sm font-medium"
|
|
6622
|
-
},
|
|
6620
|
+
}, Vu = {
|
|
6623
6621
|
__name: "Notification",
|
|
6624
6622
|
props: {
|
|
6625
6623
|
title: String,
|
|
@@ -6695,15 +6693,15 @@ const G = {
|
|
|
6695
6693
|
role: "alert",
|
|
6696
6694
|
"aria-live": e.variant === "destructive" ? "assertive" : "polite"
|
|
6697
6695
|
}, [
|
|
6698
|
-
u("div",
|
|
6699
|
-
e.showIcon ? (o(), d("div",
|
|
6696
|
+
u("div", Tu, [
|
|
6697
|
+
e.showIcon ? (o(), d("div", ju, [
|
|
6700
6698
|
j(G, {
|
|
6701
6699
|
name: v.value,
|
|
6702
6700
|
class: m(h.value)
|
|
6703
6701
|
}, null, 8, ["name", "class"])
|
|
6704
6702
|
])) : p("", !0),
|
|
6705
|
-
u("div",
|
|
6706
|
-
e.title ? (o(), d("div",
|
|
6703
|
+
u("div", Bu, [
|
|
6704
|
+
e.title ? (o(), d("div", Ou, x(e.title), 1)) : p("", !0),
|
|
6707
6705
|
e.message ? (o(), d("div", {
|
|
6708
6706
|
key: 1,
|
|
6709
6707
|
class: m(["text-sm", { "mt-1": e.title }])
|
|
@@ -6721,23 +6719,23 @@ const G = {
|
|
|
6721
6719
|
})
|
|
6722
6720
|
])) : p("", !0)
|
|
6723
6721
|
])
|
|
6724
|
-
], 10,
|
|
6722
|
+
], 10, Pu)) : p("", !0)
|
|
6725
6723
|
]),
|
|
6726
6724
|
_: 3
|
|
6727
6725
|
}));
|
|
6728
6726
|
}
|
|
6729
6727
|
}, We = M([]);
|
|
6730
|
-
let
|
|
6731
|
-
const
|
|
6728
|
+
let Fu = 0;
|
|
6729
|
+
const Eu = {
|
|
6732
6730
|
duration: 2e3,
|
|
6733
6731
|
position: "top-center",
|
|
6734
6732
|
dismissible: !0,
|
|
6735
6733
|
closeButton: !1
|
|
6736
|
-
},
|
|
6737
|
-
const t =
|
|
6734
|
+
}, Nu = () => `toast-${++Fu}-${Date.now()}`, pe = (e, a = {}) => {
|
|
6735
|
+
const t = Nu(), n = {
|
|
6738
6736
|
id: t,
|
|
6739
6737
|
message: e,
|
|
6740
|
-
...
|
|
6738
|
+
...Eu,
|
|
6741
6739
|
...a,
|
|
6742
6740
|
createdAt: Date.now()
|
|
6743
6741
|
};
|
|
@@ -6797,20 +6795,20 @@ const Nu = {
|
|
|
6797
6795
|
component: Ma(e)
|
|
6798
6796
|
})
|
|
6799
6797
|
}
|
|
6800
|
-
),
|
|
6798
|
+
), _u = () => ({
|
|
6801
6799
|
toasts: We,
|
|
6802
6800
|
dismiss: Le,
|
|
6803
6801
|
dismissAll: Gn
|
|
6804
|
-
}),
|
|
6802
|
+
}), Du = ["aria-live"], Mu = { class: "flex-1 grid gap-1" }, Lu = {
|
|
6805
6803
|
key: 0,
|
|
6806
6804
|
class: "text-lg font-extrabold"
|
|
6807
|
-
},
|
|
6805
|
+
}, Ru = {
|
|
6808
6806
|
key: 1,
|
|
6809
6807
|
class: "text-md opacity-90"
|
|
6810
|
-
},
|
|
6808
|
+
}, Hu = {
|
|
6811
6809
|
key: 2,
|
|
6812
6810
|
class: "text-md opacity-90"
|
|
6813
|
-
},
|
|
6811
|
+
}, Wu = ["onClick"], qu = ["onClick"], Uu = {
|
|
6814
6812
|
__name: "Toast",
|
|
6815
6813
|
props: {
|
|
6816
6814
|
position: {
|
|
@@ -6847,7 +6845,7 @@ const Nu = {
|
|
|
6847
6845
|
}
|
|
6848
6846
|
},
|
|
6849
6847
|
setup(e) {
|
|
6850
|
-
const a = e, { toasts: t, dismiss: n } =
|
|
6848
|
+
const a = e, { toasts: t, dismiss: n } = _u(), r = {
|
|
6851
6849
|
"top-left": "top-0 left-0 flex-col",
|
|
6852
6850
|
"top-center": "top-0 left-1/2 -translate-x-1/2 flex-col",
|
|
6853
6851
|
"top-right": "top-0 right-0 flex-col",
|
|
@@ -6919,10 +6917,10 @@ const Nu = {
|
|
|
6919
6917
|
icon: h(g),
|
|
6920
6918
|
class: m([S(g), "h-4 w-4 shrink-0"])
|
|
6921
6919
|
}, null, 8, ["icon", "class"])) : p("", !0),
|
|
6922
|
-
u("div",
|
|
6923
|
-
g.title ? (o(), d("div",
|
|
6924
|
-
g.message ? (o(), d("div",
|
|
6925
|
-
g.description ? (o(), d("div",
|
|
6920
|
+
u("div", Mu, [
|
|
6921
|
+
g.title ? (o(), d("div", Lu, x(g.title), 1)) : p("", !0),
|
|
6922
|
+
g.message ? (o(), d("div", Ru, x(g.message), 1)) : p("", !0),
|
|
6923
|
+
g.description ? (o(), d("div", Hu, x(g.description), 1)) : p("", !0),
|
|
6926
6924
|
g.component ? (o(), N(ie(g.component), Re({
|
|
6927
6925
|
key: 3,
|
|
6928
6926
|
ref_for: !0
|
|
@@ -6932,7 +6930,7 @@ const Nu = {
|
|
|
6932
6930
|
key: 1,
|
|
6933
6931
|
onClick: g.action.onClick,
|
|
6934
6932
|
class: "inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-xs font-medium ring-offset-background transition-colors hover:bg-secondary focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none disabled:opacity-50"
|
|
6935
|
-
}, x(g.action.label), 9,
|
|
6933
|
+
}, x(g.action.label), 9, Wu)) : p("", !0),
|
|
6936
6934
|
T(g) ? (o(), d("button", {
|
|
6937
6935
|
key: 2,
|
|
6938
6936
|
onClick: (b) => _(n)(g.id),
|
|
@@ -6942,33 +6940,33 @@ const Nu = {
|
|
|
6942
6940
|
icon: "x",
|
|
6943
6941
|
class: "h-4 w-4"
|
|
6944
6942
|
})
|
|
6945
|
-
], 8,
|
|
6946
|
-
], 10,
|
|
6943
|
+
], 8, qu)) : p("", !0)
|
|
6944
|
+
], 10, Du))), 128))
|
|
6947
6945
|
]),
|
|
6948
6946
|
_: 1
|
|
6949
6947
|
})
|
|
6950
6948
|
], 2)
|
|
6951
6949
|
]));
|
|
6952
6950
|
}
|
|
6953
|
-
},
|
|
6951
|
+
}, Yu = { class: "relative" }, Gu = { class: "absolute left-3 top-1/2 transform -translate-y-1/2 pointer-events-none" }, Ku = ["value", "placeholder", "disabled"], Xu = {
|
|
6954
6952
|
key: 0,
|
|
6955
6953
|
class: "absolute right-3 top-1/2 transform -translate-y-1/2"
|
|
6956
|
-
},
|
|
6954
|
+
}, Ju = ["aria-label"], Qu = {
|
|
6957
6955
|
key: 1,
|
|
6958
6956
|
class: "animate-spin"
|
|
6959
|
-
},
|
|
6957
|
+
}, Zu = {
|
|
6960
6958
|
key: 0,
|
|
6961
6959
|
class: "max-h-64 overflow-y-auto"
|
|
6962
|
-
},
|
|
6960
|
+
}, ec = ["onClick", "onMouseenter"], tc = { class: "flex-1 text-left" }, ac = ["innerHTML"], nc = ["innerHTML"], rc = {
|
|
6963
6961
|
key: 1,
|
|
6964
6962
|
class: "text-xs text-slate-400 ml-3"
|
|
6965
|
-
},
|
|
6963
|
+
}, sc = {
|
|
6966
6964
|
key: 1,
|
|
6967
6965
|
class: "px-4 py-3 text-sm text-slate-500 text-center"
|
|
6968
|
-
},
|
|
6966
|
+
}, lc = {
|
|
6969
6967
|
key: 2,
|
|
6970
6968
|
class: "border-t border-slate-200 p-2"
|
|
6971
|
-
},
|
|
6969
|
+
}, oc = {
|
|
6972
6970
|
__name: "Search",
|
|
6973
6971
|
props: {
|
|
6974
6972
|
modelValue: { type: String, default: "" },
|
|
@@ -7082,8 +7080,8 @@ const Nu = {
|
|
|
7082
7080
|
ref_key: "searchRef",
|
|
7083
7081
|
ref: i
|
|
7084
7082
|
}, [
|
|
7085
|
-
u("div",
|
|
7086
|
-
u("div",
|
|
7083
|
+
u("div", Yu, [
|
|
7084
|
+
u("div", Gu, [
|
|
7087
7085
|
j(t, {
|
|
7088
7086
|
class: m(ae.value)
|
|
7089
7087
|
}, null, 8, ["class"])
|
|
@@ -7099,8 +7097,8 @@ const Nu = {
|
|
|
7099
7097
|
onFocus: T,
|
|
7100
7098
|
onBlur: z,
|
|
7101
7099
|
onKeydown: b
|
|
7102
|
-
}, null, 42,
|
|
7103
|
-
e.modelValue || e.loading ? (o(), d("div",
|
|
7100
|
+
}, null, 42, Ku),
|
|
7101
|
+
e.modelValue || e.loading ? (o(), d("div", Xu, [
|
|
7104
7102
|
!e.loading && e.clearable ? (o(), d("button", {
|
|
7105
7103
|
key: 0,
|
|
7106
7104
|
onClick: w,
|
|
@@ -7108,7 +7106,7 @@ const Nu = {
|
|
|
7108
7106
|
"aria-label": e.clearLabel
|
|
7109
7107
|
}, [
|
|
7110
7108
|
j(n, { class: "w-4 h-4" })
|
|
7111
|
-
], 8,
|
|
7109
|
+
], 8, Ju)) : e.loading ? (o(), d("div", Qu, [
|
|
7112
7110
|
j(r, { class: "w-4 h-4 text-slate-400" })
|
|
7113
7111
|
])) : p("", !0)
|
|
7114
7112
|
])) : p("", !0)
|
|
@@ -7126,7 +7124,7 @@ const Nu = {
|
|
|
7126
7124
|
key: 0,
|
|
7127
7125
|
class: m(oe.value)
|
|
7128
7126
|
}, [
|
|
7129
|
-
e.results.length > 0 ? (o(), d("div",
|
|
7127
|
+
e.results.length > 0 ? (o(), d("div", Zu, [
|
|
7130
7128
|
(o(!0), d(Y, null, K(e.results, (Z, U) => (o(), d("button", {
|
|
7131
7129
|
key: Z.id || U,
|
|
7132
7130
|
class: m(q(U)),
|
|
@@ -7137,21 +7135,21 @@ const Nu = {
|
|
|
7137
7135
|
key: 0,
|
|
7138
7136
|
class: "w-4 h-4 mr-3 flex-shrink-0"
|
|
7139
7137
|
})) : p("", !0),
|
|
7140
|
-
u("div",
|
|
7138
|
+
u("div", tc, [
|
|
7141
7139
|
u("div", {
|
|
7142
7140
|
class: "font-medium text-slate-900",
|
|
7143
7141
|
innerHTML: y(Z.title)
|
|
7144
|
-
}, null, 8,
|
|
7142
|
+
}, null, 8, ac),
|
|
7145
7143
|
Z.description ? (o(), d("div", {
|
|
7146
7144
|
key: 0,
|
|
7147
7145
|
class: "text-sm text-slate-500 truncate",
|
|
7148
7146
|
innerHTML: y(Z.description)
|
|
7149
|
-
}, null, 8,
|
|
7147
|
+
}, null, 8, nc)) : p("", !0)
|
|
7150
7148
|
]),
|
|
7151
|
-
Z.category ? (o(), d("div",
|
|
7152
|
-
], 42,
|
|
7153
|
-
])) : e.showNoResults ? (o(), d("div",
|
|
7154
|
-
O.$slots.footer ? (o(), d("div",
|
|
7149
|
+
Z.category ? (o(), d("div", rc, x(Z.category), 1)) : p("", !0)
|
|
7150
|
+
], 42, ec))), 128))
|
|
7151
|
+
])) : e.showNoResults ? (o(), d("div", sc, x(e.noResultsText), 1)) : p("", !0),
|
|
7152
|
+
O.$slots.footer ? (o(), d("div", lc, [
|
|
7155
7153
|
$(O.$slots, "footer")
|
|
7156
7154
|
])) : p("", !0)
|
|
7157
7155
|
], 2)) : p("", !0)
|
|
@@ -7160,7 +7158,7 @@ const Nu = {
|
|
|
7160
7158
|
})
|
|
7161
7159
|
], 512));
|
|
7162
7160
|
}
|
|
7163
|
-
},
|
|
7161
|
+
}, ic = { class: "w-full" }, uc = ["min", "max", "step"], cc = { class: "flex justify-between text-xs text-slate-500 mt-1" }, dc = {
|
|
7164
7162
|
__name: "Slider",
|
|
7165
7163
|
props: {
|
|
7166
7164
|
modelValue: { type: Number, default: 0 },
|
|
@@ -7177,7 +7175,7 @@ const Nu = {
|
|
|
7177
7175
|
const s = () => {
|
|
7178
7176
|
n("update:modelValue", Number(r.value));
|
|
7179
7177
|
};
|
|
7180
|
-
return (l, i) => (o(), d("div",
|
|
7178
|
+
return (l, i) => (o(), d("div", ic, [
|
|
7181
7179
|
it(u("input", {
|
|
7182
7180
|
type: "range",
|
|
7183
7181
|
min: e.min,
|
|
@@ -7186,27 +7184,27 @@ const Nu = {
|
|
|
7186
7184
|
"onUpdate:modelValue": i[0] || (i[0] = (c) => r.value = c),
|
|
7187
7185
|
onInput: s,
|
|
7188
7186
|
class: "w-full accent-blue-500 cursor-pointer"
|
|
7189
|
-
}, null, 40,
|
|
7187
|
+
}, null, 40, uc), [
|
|
7190
7188
|
[La, r.value]
|
|
7191
7189
|
]),
|
|
7192
|
-
u("div",
|
|
7190
|
+
u("div", cc, [
|
|
7193
7191
|
u("span", null, x(e.min), 1),
|
|
7194
7192
|
u("span", null, x(r.value), 1),
|
|
7195
7193
|
u("span", null, x(e.max), 1)
|
|
7196
7194
|
])
|
|
7197
7195
|
]));
|
|
7198
7196
|
}
|
|
7199
|
-
},
|
|
7197
|
+
}, fc = { class: "flex items-center space-x-4" }, mc = {
|
|
7200
7198
|
__name: "Stepper",
|
|
7201
7199
|
setup(e) {
|
|
7202
|
-
return (a, t) => (o(), d("div",
|
|
7200
|
+
return (a, t) => (o(), d("div", fc, [
|
|
7203
7201
|
$(a.$slots, "default")
|
|
7204
7202
|
]));
|
|
7205
7203
|
}
|
|
7206
|
-
},
|
|
7204
|
+
}, vc = { class: "flex items-center" }, gc = { class: "ml-2" }, hc = { class: "font-medium" }, bc = {
|
|
7207
7205
|
key: 0,
|
|
7208
7206
|
class: "text-sm text-slate-400"
|
|
7209
|
-
},
|
|
7207
|
+
}, pc = {
|
|
7210
7208
|
__name: "StepperItem",
|
|
7211
7209
|
props: {
|
|
7212
7210
|
step: { type: Number, required: !0 },
|
|
@@ -7216,7 +7214,7 @@ const Nu = {
|
|
|
7216
7214
|
completed: { type: Boolean, default: !1 }
|
|
7217
7215
|
},
|
|
7218
7216
|
setup(e) {
|
|
7219
|
-
return (a, t) => (o(), d("div",
|
|
7217
|
+
return (a, t) => (o(), d("div", vc, [
|
|
7220
7218
|
u("div", {
|
|
7221
7219
|
class: m([
|
|
7222
7220
|
"flex items-center justify-center w-8 h-8 rounded-full border-2",
|
|
@@ -7225,13 +7223,13 @@ const Nu = {
|
|
|
7225
7223
|
}, [
|
|
7226
7224
|
u("span", null, x(e.step), 1)
|
|
7227
7225
|
], 2),
|
|
7228
|
-
u("div",
|
|
7229
|
-
u("div",
|
|
7230
|
-
e.description ? (o(), d("div",
|
|
7226
|
+
u("div", gc, [
|
|
7227
|
+
u("div", hc, x(e.title), 1),
|
|
7228
|
+
e.description ? (o(), d("div", bc, x(e.description), 1)) : p("", !0)
|
|
7231
7229
|
])
|
|
7232
7230
|
]));
|
|
7233
7231
|
}
|
|
7234
|
-
},
|
|
7232
|
+
}, yc = { class: "flex border-b border-slate-200" }, xc = ["onClick"], wc = { class: "p-4" }, kc = {
|
|
7235
7233
|
__name: "Tab",
|
|
7236
7234
|
props: {
|
|
7237
7235
|
defaultIndex: { type: Number, default: 0 }
|
|
@@ -7245,7 +7243,7 @@ const Nu = {
|
|
|
7245
7243
|
tabs: n,
|
|
7246
7244
|
registerTab: (s) => (n.value.push({ label: s }), n.value.length - 1)
|
|
7247
7245
|
}), (s, l) => (o(), d("div", null, [
|
|
7248
|
-
u("div",
|
|
7246
|
+
u("div", yc, [
|
|
7249
7247
|
(o(!0), d(Y, null, K(n.value, (i, c) => (o(), d("button", {
|
|
7250
7248
|
key: c,
|
|
7251
7249
|
onClick: (v) => r(c),
|
|
@@ -7253,14 +7251,14 @@ const Nu = {
|
|
|
7253
7251
|
"px-4 py-2 -mb-px border-b-2 font-medium text-sm transition-colors",
|
|
7254
7252
|
t.value === c ? "border-blue-500 text-blue-600" : "border-transparent text-slate-500 hover:text-slate-700 hover:border-slate-300"
|
|
7255
7253
|
])
|
|
7256
|
-
}, x(i.label), 11,
|
|
7254
|
+
}, x(i.label), 11, xc))), 128))
|
|
7257
7255
|
]),
|
|
7258
|
-
u("div",
|
|
7256
|
+
u("div", wc, [
|
|
7259
7257
|
$(s.$slots, "default")
|
|
7260
7258
|
])
|
|
7261
7259
|
]));
|
|
7262
7260
|
}
|
|
7263
|
-
},
|
|
7261
|
+
}, Sc = {
|
|
7264
7262
|
__name: "TabPanel",
|
|
7265
7263
|
props: {
|
|
7266
7264
|
label: { type: String, required: !0 }
|
|
@@ -7277,7 +7275,7 @@ const Nu = {
|
|
|
7277
7275
|
[Ra, r.value]
|
|
7278
7276
|
]);
|
|
7279
7277
|
}
|
|
7280
|
-
},
|
|
7278
|
+
}, Cc = ["aria-expanded", "aria-controls", "id", "onClick"], $c = { class: "flex items-center flex-1 min-w-0" }, zc = { class: "flex-1 text-left" }, Ac = ["id", "aria-labelledby"], Ic = ["innerHTML"], Pc = {
|
|
7281
7279
|
__name: "Accordion",
|
|
7282
7280
|
props: {
|
|
7283
7281
|
items: {
|
|
@@ -7433,12 +7431,12 @@ const Nu = {
|
|
|
7433
7431
|
id: `header-${O.id || E}`,
|
|
7434
7432
|
onClick: (Z) => l(E)
|
|
7435
7433
|
}, [
|
|
7436
|
-
u("div",
|
|
7434
|
+
u("div", $c, [
|
|
7437
7435
|
O.icon ? (o(), N(ie(O.icon), {
|
|
7438
7436
|
key: 0,
|
|
7439
7437
|
class: m(R.value)
|
|
7440
7438
|
}, null, 8, ["class"])) : p("", !0),
|
|
7441
|
-
u("div",
|
|
7439
|
+
u("div", zc, [
|
|
7442
7440
|
u("h3", {
|
|
7443
7441
|
class: m(I.value)
|
|
7444
7442
|
}, x(O.title), 3),
|
|
@@ -7453,7 +7451,7 @@ const Nu = {
|
|
|
7453
7451
|
}, [
|
|
7454
7452
|
j(t, { class: "w-5 h-5 transition-transform duration-200" })
|
|
7455
7453
|
], 2)
|
|
7456
|
-
], 10,
|
|
7454
|
+
], 10, Cc),
|
|
7457
7455
|
j(he, {
|
|
7458
7456
|
"enter-active-class": "transition-all duration-300 ease-out",
|
|
7459
7457
|
"enter-from-class": "opacity-0 max-h-0",
|
|
@@ -7477,16 +7475,16 @@ const Nu = {
|
|
|
7477
7475
|
O.content ? (o(), d("div", {
|
|
7478
7476
|
key: 0,
|
|
7479
7477
|
innerHTML: O.content
|
|
7480
|
-
}, null, 8,
|
|
7478
|
+
}, null, 8, Ic)) : p("", !0)
|
|
7481
7479
|
])
|
|
7482
|
-
], 10,
|
|
7480
|
+
], 10, Ac)) : p("", !0)
|
|
7483
7481
|
]),
|
|
7484
7482
|
_: 2
|
|
7485
7483
|
}, 1024)
|
|
7486
7484
|
], 2))), 128))
|
|
7487
7485
|
], 2));
|
|
7488
7486
|
}
|
|
7489
|
-
},
|
|
7487
|
+
}, Tc = {
|
|
7490
7488
|
__name: "AccordionItem",
|
|
7491
7489
|
props: {
|
|
7492
7490
|
variant: {
|
|
@@ -7578,7 +7576,7 @@ const Nu = {
|
|
|
7578
7576
|
})
|
|
7579
7577
|
], 2));
|
|
7580
7578
|
}
|
|
7581
|
-
},
|
|
7579
|
+
}, jc = { class: "w-full max-w-md bg-white border rounded-xl shadow-sm p-4" }, Bc = { class: "flex items-center justify-between mb-4" }, Oc = { class: "text-lg font-semibold text-slate-900" }, Vc = { class: "grid grid-cols-7 text-center text-sm font-medium text-slate-500 mb-2" }, Fc = { class: "grid grid-cols-7 gap-y-2 text-center" }, Ec = {
|
|
7582
7580
|
__name: "Calendar",
|
|
7583
7581
|
emits: ["update:modelValue"],
|
|
7584
7582
|
setup(e) {
|
|
@@ -7608,8 +7606,8 @@ const Nu = {
|
|
|
7608
7606
|
function w(g) {
|
|
7609
7607
|
r.value = new Date(n.value, t.value, g), emit("update:modelValue", r.value);
|
|
7610
7608
|
}
|
|
7611
|
-
return (g, b) => (o(), d("div",
|
|
7612
|
-
u("div",
|
|
7609
|
+
return (g, b) => (o(), d("div", jc, [
|
|
7610
|
+
u("div", Bc, [
|
|
7613
7611
|
j(ue, {
|
|
7614
7612
|
class: "p-2 rounded-lg hover:bg-slate-100",
|
|
7615
7613
|
onClick: S,
|
|
@@ -7623,7 +7621,7 @@ const Nu = {
|
|
|
7623
7621
|
]),
|
|
7624
7622
|
_: 1
|
|
7625
7623
|
}),
|
|
7626
|
-
u("div",
|
|
7624
|
+
u("div", Oc, x(l.value) + " " + x(n.value), 1),
|
|
7627
7625
|
j(ue, {
|
|
7628
7626
|
class: "p-2 rounded-lg hover:bg-slate-100",
|
|
7629
7627
|
onClick: A,
|
|
@@ -7638,10 +7636,10 @@ const Nu = {
|
|
|
7638
7636
|
_: 1
|
|
7639
7637
|
})
|
|
7640
7638
|
]),
|
|
7641
|
-
u("div",
|
|
7639
|
+
u("div", Vc, [
|
|
7642
7640
|
(o(), d(Y, null, K(s, (y) => u("div", { key: y }, x(y), 1)), 64))
|
|
7643
7641
|
]),
|
|
7644
|
-
u("div",
|
|
7642
|
+
u("div", Fc, [
|
|
7645
7643
|
(o(!0), d(Y, null, K(v.value, (y) => (o(), d("div", {
|
|
7646
7644
|
key: "prev-" + y,
|
|
7647
7645
|
class: "text-slate-400 text-sm"
|
|
@@ -7667,7 +7665,7 @@ const Nu = {
|
|
|
7667
7665
|
])
|
|
7668
7666
|
]));
|
|
7669
7667
|
}
|
|
7670
|
-
},
|
|
7668
|
+
}, Nc = { class: "flex items-start justify-between" }, _c = {
|
|
7671
7669
|
key: 0,
|
|
7672
7670
|
class: "flex items-center gap-2"
|
|
7673
7671
|
}, Kn = {
|
|
@@ -7747,7 +7745,7 @@ const Nu = {
|
|
|
7747
7745
|
class: m(s.value)
|
|
7748
7746
|
}, [
|
|
7749
7747
|
$(c.$slots, "header", {}, () => [
|
|
7750
|
-
u("div",
|
|
7748
|
+
u("div", Nc, [
|
|
7751
7749
|
u("div", null, [
|
|
7752
7750
|
e.title ? (o(), N(_t, {
|
|
7753
7751
|
key: 0,
|
|
@@ -7768,7 +7766,7 @@ const Nu = {
|
|
|
7768
7766
|
_: 1
|
|
7769
7767
|
}, 8, ["class"])) : p("", !0)
|
|
7770
7768
|
]),
|
|
7771
|
-
c.$slots.filters ? (o(), d("div",
|
|
7769
|
+
c.$slots.filters ? (o(), d("div", _c, [
|
|
7772
7770
|
$(c.$slots, "filters")
|
|
7773
7771
|
])) : p("", !0)
|
|
7774
7772
|
])
|
|
@@ -7954,19 +7952,19 @@ const Nu = {
|
|
|
7954
7952
|
], 2)) : p("", !0)
|
|
7955
7953
|
], 2));
|
|
7956
7954
|
}
|
|
7957
|
-
},
|
|
7955
|
+
}, Dc = { class: "flex items-center justify-between" }, Mc = {
|
|
7958
7956
|
key: 0,
|
|
7959
7957
|
class: "text-sm text-slate-600"
|
|
7960
|
-
},
|
|
7958
|
+
}, Lc = {
|
|
7961
7959
|
key: 1,
|
|
7962
7960
|
class: "text-sm text-slate-600"
|
|
7963
|
-
},
|
|
7961
|
+
}, Rc = {
|
|
7964
7962
|
key: 2,
|
|
7965
7963
|
class: "flex items-center gap-4"
|
|
7966
|
-
},
|
|
7964
|
+
}, Hc = {
|
|
7967
7965
|
key: 3,
|
|
7968
7966
|
class: "flex items-center gap-4"
|
|
7969
|
-
},
|
|
7967
|
+
}, Wc = { class: "flex items-center gap-2" }, qc = { class: "flex items-center gap-1" }, Uc = ["disabled"], Yc = ["disabled"], Gc = { class: "flex items-center gap-1" }, Kc = ["onClick"], Xc = ["disabled"], Jc = ["disabled"], Qc = { class: "text-sm text-slate-600 ml-4" }, Jn = {
|
|
7970
7968
|
__name: "DataTablePagination",
|
|
7971
7969
|
props: {
|
|
7972
7970
|
currentPage: {
|
|
@@ -8107,13 +8105,13 @@ const Nu = {
|
|
|
8107
8105
|
key: 0,
|
|
8108
8106
|
class: m(h.value)
|
|
8109
8107
|
}, [
|
|
8110
|
-
u("div",
|
|
8111
|
-
e.selectable && e.selectedCount > 0 ? (o(), d("div",
|
|
8112
|
-
z.$slots.footer ? (o(), d("div",
|
|
8108
|
+
u("div", Dc, [
|
|
8109
|
+
e.selectable && e.selectedCount > 0 ? (o(), d("div", Mc, x(e.selectedCount) + " of " + x(e.total) + " selected ", 1)) : (o(), d("div", Lc, " Showing " + x(i.value) + " to " + x(c.value) + " of " + x(e.total) + " entries ", 1)),
|
|
8110
|
+
z.$slots.footer ? (o(), d("div", Rc, [
|
|
8113
8111
|
$(z.$slots, "footer")
|
|
8114
8112
|
])) : p("", !0),
|
|
8115
|
-
e.showPagination ? (o(), d("div",
|
|
8116
|
-
u("div",
|
|
8113
|
+
e.showPagination ? (o(), d("div", Hc, [
|
|
8114
|
+
u("div", Wc, [
|
|
8117
8115
|
j(Un, {
|
|
8118
8116
|
for: "pageSize",
|
|
8119
8117
|
class: m(S.value),
|
|
@@ -8140,7 +8138,7 @@ const Nu = {
|
|
|
8140
8138
|
_: 1
|
|
8141
8139
|
}, 8, ["model-value", "class"])
|
|
8142
8140
|
]),
|
|
8143
|
-
u("div",
|
|
8141
|
+
u("div", qc, [
|
|
8144
8142
|
u("button", {
|
|
8145
8143
|
disabled: e.currentPage === 1,
|
|
8146
8144
|
onClick: w[1] || (w[1] = (g) => z.$emit("update:currentPage", 1)),
|
|
@@ -8160,7 +8158,7 @@ const Nu = {
|
|
|
8160
8158
|
d: "m18.75 4.5-7.5 7.5 7.5 7.5m-6-15L5.25 12l7.5 7.5"
|
|
8161
8159
|
})
|
|
8162
8160
|
], -1)
|
|
8163
|
-
])], 10,
|
|
8161
|
+
])], 10, Uc),
|
|
8164
8162
|
u("button", {
|
|
8165
8163
|
disabled: e.currentPage === 1,
|
|
8166
8164
|
onClick: w[2] || (w[2] = (g) => z.$emit("update:currentPage", e.currentPage - 1)),
|
|
@@ -8180,13 +8178,13 @@ const Nu = {
|
|
|
8180
8178
|
d: "M15.75 19.5L8.25 12l7.5-7.5"
|
|
8181
8179
|
})
|
|
8182
8180
|
], -1)
|
|
8183
|
-
])], 10,
|
|
8184
|
-
u("div",
|
|
8181
|
+
])], 10, Yc),
|
|
8182
|
+
u("div", Gc, [
|
|
8185
8183
|
(o(!0), d(Y, null, K(v.value, (g) => (o(), d("button", {
|
|
8186
8184
|
key: g,
|
|
8187
8185
|
onClick: (b) => z.$emit("update:currentPage", g),
|
|
8188
8186
|
class: m(T(g === e.currentPage, !1))
|
|
8189
|
-
}, x(g), 11,
|
|
8187
|
+
}, x(g), 11, Kc))), 128))
|
|
8190
8188
|
]),
|
|
8191
8189
|
u("button", {
|
|
8192
8190
|
disabled: e.currentPage === e.totalPages,
|
|
@@ -8207,7 +8205,7 @@ const Nu = {
|
|
|
8207
8205
|
d: "m8.25 4.5 7.5 7.5-7.5 7.5"
|
|
8208
8206
|
})
|
|
8209
8207
|
], -1)
|
|
8210
|
-
])], 10,
|
|
8208
|
+
])], 10, Xc),
|
|
8211
8209
|
u("button", {
|
|
8212
8210
|
disabled: e.currentPage === e.totalPages,
|
|
8213
8211
|
onClick: w[4] || (w[4] = (g) => z.$emit("update:currentPage", e.totalPages)),
|
|
@@ -8227,17 +8225,17 @@ const Nu = {
|
|
|
8227
8225
|
d: "m5.25 4.5 7.5 7.5-7.5 7.5m6-15 7.5 7.5-7.5 7.5"
|
|
8228
8226
|
})
|
|
8229
8227
|
], -1)
|
|
8230
|
-
])], 10,
|
|
8228
|
+
])], 10, Jc)
|
|
8231
8229
|
]),
|
|
8232
|
-
u("div",
|
|
8230
|
+
u("div", Qc, " Page " + x(e.currentPage) + " of " + x(e.totalPages), 1)
|
|
8233
8231
|
])) : p("", !0)
|
|
8234
8232
|
])
|
|
8235
8233
|
], 2)) : p("", !0);
|
|
8236
8234
|
}
|
|
8237
|
-
},
|
|
8235
|
+
}, Zc = { class: "overflow-x-auto" }, ed = ["onClick"], td = { class: "flex items-center gap-2" }, ad = {
|
|
8238
8236
|
key: 0,
|
|
8239
8237
|
class: "flex flex-col"
|
|
8240
|
-
},
|
|
8238
|
+
}, nd = { key: 0 }, rd = ["colspan"], sd = { class: "text-center py-8" }, ld = { class: "text-slate-500" }, od = {
|
|
8241
8239
|
__name: "DataTable",
|
|
8242
8240
|
props: {
|
|
8243
8241
|
data: {
|
|
@@ -8474,7 +8472,7 @@ const Nu = {
|
|
|
8474
8472
|
]),
|
|
8475
8473
|
_: 3
|
|
8476
8474
|
}, 8, ["title", "description", "variant", "padding"])) : p("", !0),
|
|
8477
|
-
u("div",
|
|
8475
|
+
u("div", Zc, [
|
|
8478
8476
|
u("table", {
|
|
8479
8477
|
class: m(O.value)
|
|
8480
8478
|
}, [
|
|
@@ -8497,9 +8495,9 @@ const Nu = {
|
|
|
8497
8495
|
class: m(U(J)),
|
|
8498
8496
|
onClick: (be) => oe(J)
|
|
8499
8497
|
}, [
|
|
8500
|
-
u("div",
|
|
8498
|
+
u("div", td, [
|
|
8501
8499
|
u("span", null, x(J.label), 1),
|
|
8502
|
-
J.sortable ? (o(), d("div",
|
|
8500
|
+
J.sortable ? (o(), d("div", ad, [
|
|
8503
8501
|
(o(), d("svg", {
|
|
8504
8502
|
class: m([ee(J, "asc"), "w-3 h-3 transition-colors"]),
|
|
8505
8503
|
fill: "none",
|
|
@@ -8528,7 +8526,7 @@ const Nu = {
|
|
|
8528
8526
|
])], 2))
|
|
8529
8527
|
])) : p("", !0)
|
|
8530
8528
|
])
|
|
8531
|
-
], 10,
|
|
8529
|
+
], 10, ed))), 128)),
|
|
8532
8530
|
V.$slots.actions ? (o(), d("th", {
|
|
8533
8531
|
key: 1,
|
|
8534
8532
|
class: m(se.value)
|
|
@@ -8564,13 +8562,13 @@ const Nu = {
|
|
|
8564
8562
|
])
|
|
8565
8563
|
}))
|
|
8566
8564
|
]), 1032, ["item", "columns", "index", "selectable", "is-selected", "striped", "hoverable", "clickable-rows", "density"]))), 128)),
|
|
8567
|
-
z.value.length === 0 ? (o(), d("tr",
|
|
8565
|
+
z.value.length === 0 ? (o(), d("tr", nd, [
|
|
8568
8566
|
u("td", {
|
|
8569
8567
|
colspan: w.value,
|
|
8570
8568
|
class: m(Te.value)
|
|
8571
8569
|
}, [
|
|
8572
8570
|
$(V.$slots, "empty", {}, () => [
|
|
8573
|
-
u("div",
|
|
8571
|
+
u("div", sd, [
|
|
8574
8572
|
H[4] || (H[4] = u("div", { class: "text-slate-400 mb-2" }, [
|
|
8575
8573
|
u("svg", {
|
|
8576
8574
|
class: "w-12 h-12 mx-auto",
|
|
@@ -8586,10 +8584,10 @@ const Nu = {
|
|
|
8586
8584
|
})
|
|
8587
8585
|
])
|
|
8588
8586
|
], -1)),
|
|
8589
|
-
u("p",
|
|
8587
|
+
u("p", ld, x(e.emptyText), 1)
|
|
8590
8588
|
])
|
|
8591
8589
|
])
|
|
8592
|
-
], 10,
|
|
8590
|
+
], 10, rd)
|
|
8593
8591
|
])) : p("", !0)
|
|
8594
8592
|
], 2)
|
|
8595
8593
|
], 2)
|
|
@@ -8615,7 +8613,7 @@ const Nu = {
|
|
|
8615
8613
|
}, 8, ["current-page", "total-pages", "total", "page-size", "show-pagination", "selectable", "selected-count", "variant", "padding"])) : p("", !0)
|
|
8616
8614
|
], 2));
|
|
8617
8615
|
}
|
|
8618
|
-
},
|
|
8616
|
+
}, id = {
|
|
8619
8617
|
__name: "DataTableCell",
|
|
8620
8618
|
props: {
|
|
8621
8619
|
item: {
|
|
@@ -8703,16 +8701,16 @@ const Nu = {
|
|
|
8703
8701
|
])
|
|
8704
8702
|
], 2));
|
|
8705
8703
|
}
|
|
8706
|
-
},
|
|
8704
|
+
}, ud = { class: "flex-1 min-w-64" }, cd = { class: "relative" }, dd = {
|
|
8707
8705
|
key: 0,
|
|
8708
8706
|
class: "min-w-32"
|
|
8709
|
-
},
|
|
8707
|
+
}, fd = ["value"], md = {
|
|
8710
8708
|
key: 1,
|
|
8711
8709
|
class: "flex items-center gap-2"
|
|
8712
|
-
},
|
|
8710
|
+
}, vd = {
|
|
8713
8711
|
key: 2,
|
|
8714
8712
|
class: "flex items-center gap-2"
|
|
8715
|
-
},
|
|
8713
|
+
}, gd = { class: "flex items-center gap-2 ml-auto" }, hd = { class: "flex items-center gap-2 flex-wrap" }, bd = {
|
|
8716
8714
|
__name: "DataTableFilters",
|
|
8717
8715
|
props: {
|
|
8718
8716
|
searchQuery: {
|
|
@@ -8910,8 +8908,8 @@ const Nu = {
|
|
|
8910
8908
|
u("div", {
|
|
8911
8909
|
class: m(h.value)
|
|
8912
8910
|
}, [
|
|
8913
|
-
u("div",
|
|
8914
|
-
u("div",
|
|
8911
|
+
u("div", ud, [
|
|
8912
|
+
u("div", cd, [
|
|
8915
8913
|
j(Z, {
|
|
8916
8914
|
icon: "magnifying-glass",
|
|
8917
8915
|
class: m(S.value)
|
|
@@ -8937,7 +8935,7 @@ const Nu = {
|
|
|
8937
8935
|
}, 8, ["class"])) : p("", !0)
|
|
8938
8936
|
])
|
|
8939
8937
|
]),
|
|
8940
|
-
e.statusOptions.length > 0 ? (o(), d("div",
|
|
8938
|
+
e.statusOptions.length > 0 ? (o(), d("div", dd, [
|
|
8941
8939
|
j(ea, {
|
|
8942
8940
|
"model-value": e.selectedStatus,
|
|
8943
8941
|
onChange: E[2] || (E[2] = (U) => O.$emit("update:selectedStatus", U.target.value)),
|
|
@@ -8948,12 +8946,12 @@ const Nu = {
|
|
|
8948
8946
|
(o(!0), d(Y, null, K(e.statusOptions, (U) => (o(), d("option", {
|
|
8949
8947
|
key: U.value,
|
|
8950
8948
|
value: U.value
|
|
8951
|
-
}, x(U.label), 9,
|
|
8949
|
+
}, x(U.label), 9, fd))), 128))
|
|
8952
8950
|
]),
|
|
8953
8951
|
_: 1
|
|
8954
8952
|
}, 8, ["model-value", "class"])
|
|
8955
8953
|
])) : p("", !0),
|
|
8956
|
-
e.showDateFilter ? (o(), d("div",
|
|
8954
|
+
e.showDateFilter ? (o(), d("div", md, [
|
|
8957
8955
|
j(et, {
|
|
8958
8956
|
type: "date",
|
|
8959
8957
|
"model-value": e.dateFrom,
|
|
@@ -8970,10 +8968,10 @@ const Nu = {
|
|
|
8970
8968
|
class: m(w.value)
|
|
8971
8969
|
}, null, 8, ["model-value", "class"])
|
|
8972
8970
|
])) : p("", !0),
|
|
8973
|
-
O.$slots.filters ? (o(), d("div",
|
|
8971
|
+
O.$slots.filters ? (o(), d("div", vd, [
|
|
8974
8972
|
$(O.$slots, "filters")
|
|
8975
8973
|
])) : p("", !0),
|
|
8976
|
-
u("div",
|
|
8974
|
+
u("div", gd, [
|
|
8977
8975
|
c.value ? (o(), N(ue, {
|
|
8978
8976
|
key: 0,
|
|
8979
8977
|
onClick: q,
|
|
@@ -9012,7 +9010,7 @@ const Nu = {
|
|
|
9012
9010
|
key: 0,
|
|
9013
9011
|
class: m(D.value)
|
|
9014
9012
|
}, [
|
|
9015
|
-
u("div",
|
|
9013
|
+
u("div", hd, [
|
|
9016
9014
|
u("span", {
|
|
9017
9015
|
class: m(R.value)
|
|
9018
9016
|
}, "Active filters:", 2),
|
|
@@ -9039,16 +9037,16 @@ const Nu = {
|
|
|
9039
9037
|
]);
|
|
9040
9038
|
};
|
|
9041
9039
|
}
|
|
9042
|
-
},
|
|
9040
|
+
}, pd = { class: "flex items-center gap-3" }, yd = {
|
|
9043
9041
|
key: 0,
|
|
9044
9042
|
class: "flex items-center gap-3"
|
|
9045
|
-
},
|
|
9043
|
+
}, xd = { class: "text-sm text-slate-600" }, wd = { class: "flex items-center gap-2" }, kd = { class: "flex items-center gap-3" }, Sd = ["onClick", "title"], Cd = {
|
|
9046
9044
|
key: 1,
|
|
9047
9045
|
class: "relative"
|
|
9048
|
-
},
|
|
9046
|
+
}, $d = { class: "p-3" }, zd = { class: "space-y-1" }, Ad = { class: "flex items-center gap-2 cursor-pointer w-full" }, Id = ["checked", "onChange"], Pd = ["disabled"], Td = {
|
|
9049
9047
|
key: 3,
|
|
9050
9048
|
class: "flex items-center gap-2"
|
|
9051
|
-
},
|
|
9049
|
+
}, jd = [
|
|
9052
9050
|
{
|
|
9053
9051
|
key: "delete",
|
|
9054
9052
|
label: "Delete",
|
|
@@ -9065,13 +9063,13 @@ const Nu = {
|
|
|
9065
9063
|
},
|
|
9066
9064
|
variant: "primary"
|
|
9067
9065
|
}
|
|
9068
|
-
],
|
|
9066
|
+
], Bd = {
|
|
9069
9067
|
name: "DataTableToolBar"
|
|
9070
|
-
},
|
|
9068
|
+
}, Od = /* @__PURE__ */ Object.assign(Bd, {
|
|
9071
9069
|
props: {
|
|
9072
9070
|
selectedItems: { type: Array, default: () => [] },
|
|
9073
9071
|
totalItems: { type: Number, default: 0 },
|
|
9074
|
-
bulkActions: { type: Array, default: () =>
|
|
9072
|
+
bulkActions: { type: Array, default: () => jd },
|
|
9075
9073
|
showDensityToggle: { type: Boolean, default: !0 },
|
|
9076
9074
|
showColumnToggle: { type: Boolean, default: !0 },
|
|
9077
9075
|
showRefresh: { type: Boolean, default: !0 },
|
|
@@ -9197,10 +9195,10 @@ const Nu = {
|
|
|
9197
9195
|
return o(), d("div", {
|
|
9198
9196
|
class: m(T.value)
|
|
9199
9197
|
}, [
|
|
9200
|
-
u("div",
|
|
9201
|
-
i.value > 0 ? (o(), d("div",
|
|
9202
|
-
u("span",
|
|
9203
|
-
u("div",
|
|
9198
|
+
u("div", pd, [
|
|
9199
|
+
i.value > 0 ? (o(), d("div", yd, [
|
|
9200
|
+
u("span", xd, x(i.value) + " selected ", 1),
|
|
9201
|
+
u("div", wd, [
|
|
9204
9202
|
(o(!0), d(Y, null, K(e.bulkActions, (ee) => (o(), N(ue, {
|
|
9205
9203
|
key: ee.key,
|
|
9206
9204
|
onClick: (V) => Q.$emit("bulk-action", { action: ee.key, items: e.selectedItems }),
|
|
@@ -9222,7 +9220,7 @@ const Nu = {
|
|
|
9222
9220
|
class: m(z.value)
|
|
9223
9221
|
}, x(e.totalItems) + " " + x(e.totalItems === 1 ? "item" : "items"), 3)) : p("", !0)
|
|
9224
9222
|
]),
|
|
9225
|
-
u("div",
|
|
9223
|
+
u("div", kd, [
|
|
9226
9224
|
e.showDensityToggle ? (o(), d("div", {
|
|
9227
9225
|
key: 0,
|
|
9228
9226
|
class: m(w.value)
|
|
@@ -9238,9 +9236,9 @@ const Nu = {
|
|
|
9238
9236
|
icon: ee.icon,
|
|
9239
9237
|
class: "w-4 h-4"
|
|
9240
9238
|
}, null, 8, ["icon"])
|
|
9241
|
-
], 10,
|
|
9239
|
+
], 10, Sd)), 64))
|
|
9242
9240
|
], 2)) : p("", !0),
|
|
9243
|
-
e.showColumnToggle ? (o(), d("div",
|
|
9241
|
+
e.showColumnToggle ? (o(), d("div", Cd, [
|
|
9244
9242
|
u("button", {
|
|
9245
9243
|
onClick: aa(oe, ["stop"]),
|
|
9246
9244
|
class: m(g.value),
|
|
@@ -9261,22 +9259,22 @@ const Nu = {
|
|
|
9261
9259
|
onClick: se[0] || (se[0] = aa(() => {
|
|
9262
9260
|
}, ["stop"]))
|
|
9263
9261
|
}, [
|
|
9264
|
-
u("div",
|
|
9262
|
+
u("div", $d, [
|
|
9265
9263
|
u("div", {
|
|
9266
9264
|
class: m(y.value)
|
|
9267
9265
|
}, " Show Columns ", 2),
|
|
9268
|
-
u("div",
|
|
9266
|
+
u("div", zd, [
|
|
9269
9267
|
(o(!0), d(Y, null, K(e.toggleableColumns, (ee) => (o(), d("div", {
|
|
9270
9268
|
key: ee.key,
|
|
9271
9269
|
class: m(I.value)
|
|
9272
9270
|
}, [
|
|
9273
|
-
u("label",
|
|
9271
|
+
u("label", Ad, [
|
|
9274
9272
|
u("input", {
|
|
9275
9273
|
type: "checkbox",
|
|
9276
9274
|
checked: Z(ee.key),
|
|
9277
9275
|
onChange: (V) => U(ee.key, V.target.checked),
|
|
9278
9276
|
class: m(D.value)
|
|
9279
|
-
}, null, 42,
|
|
9277
|
+
}, null, 42, Id),
|
|
9280
9278
|
u("span", {
|
|
9281
9279
|
class: m(R.value)
|
|
9282
9280
|
}, x(ee.label), 3)
|
|
@@ -9300,15 +9298,15 @@ const Nu = {
|
|
|
9300
9298
|
class: m(E())
|
|
9301
9299
|
}, null, 8, ["class"]),
|
|
9302
9300
|
se[3] || (se[3] = u("span", null, "Refresh", -1))
|
|
9303
|
-
], 10,
|
|
9304
|
-
Q.$slots.actions ? (o(), d("div",
|
|
9301
|
+
], 10, Pd)) : p("", !0),
|
|
9302
|
+
Q.$slots.actions ? (o(), d("div", Td, [
|
|
9305
9303
|
$(Q.$slots, "actions")
|
|
9306
9304
|
])) : p("", !0)
|
|
9307
9305
|
])
|
|
9308
9306
|
], 2);
|
|
9309
9307
|
};
|
|
9310
9308
|
}
|
|
9311
|
-
}),
|
|
9309
|
+
}), Vd = { class: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12" }, Fd = { class: "grid grid-cols-1 md:grid-cols-4 gap-8" }, Ed = { class: "col-span-1 md:col-span-2" }, Nd = { class: "space-y-2" }, _d = { class: "flex space-x-4" }, Dd = { class: "flex flex-col md:flex-row justify-between items-center" }, Md = { class: "flex space-x-6 mt-4 md:mt-0" }, Ld = {
|
|
9312
9310
|
__name: "Footer",
|
|
9313
9311
|
props: {
|
|
9314
9312
|
className: {
|
|
@@ -9322,9 +9320,9 @@ const Nu = {
|
|
|
9322
9320
|
return o(), d("footer", {
|
|
9323
9321
|
class: m(_(k)("bg-gray-50 border-t border-gray-200", e.className))
|
|
9324
9322
|
}, [
|
|
9325
|
-
u("div",
|
|
9326
|
-
u("div",
|
|
9327
|
-
u("div",
|
|
9323
|
+
u("div", Vd, [
|
|
9324
|
+
u("div", Fd, [
|
|
9325
|
+
u("div", Ed, [
|
|
9328
9326
|
$(a.$slots, "brand", {}, () => [
|
|
9329
9327
|
j(n, { class: "mb-4" }),
|
|
9330
9328
|
j(r, { class: "text-gray-600 max-w-md" }, {
|
|
@@ -9346,7 +9344,7 @@ const Nu = {
|
|
|
9346
9344
|
])]),
|
|
9347
9345
|
_: 1
|
|
9348
9346
|
}),
|
|
9349
|
-
u("div",
|
|
9347
|
+
u("div", Nd, [
|
|
9350
9348
|
j(l, {
|
|
9351
9349
|
href: "#",
|
|
9352
9350
|
class: "block text-gray-600 hover:text-gray-900"
|
|
@@ -9388,7 +9386,7 @@ const Nu = {
|
|
|
9388
9386
|
])]),
|
|
9389
9387
|
_: 1
|
|
9390
9388
|
}),
|
|
9391
|
-
u("div",
|
|
9389
|
+
u("div", _d, [
|
|
9392
9390
|
j(l, {
|
|
9393
9391
|
href: "#",
|
|
9394
9392
|
class: "text-gray-600 hover:text-gray-900"
|
|
@@ -9418,7 +9416,7 @@ const Nu = {
|
|
|
9418
9416
|
])
|
|
9419
9417
|
]),
|
|
9420
9418
|
j(c, { class: "my-8" }),
|
|
9421
|
-
u("div",
|
|
9419
|
+
u("div", Dd, [
|
|
9422
9420
|
$(a.$slots, "copyright", {}, () => [
|
|
9423
9421
|
j(r, { class: "text-gray-600" }, {
|
|
9424
9422
|
default: B(() => [
|
|
@@ -9428,7 +9426,7 @@ const Nu = {
|
|
|
9428
9426
|
})
|
|
9429
9427
|
]),
|
|
9430
9428
|
$(a.$slots, "legal", {}, () => [
|
|
9431
|
-
u("div",
|
|
9429
|
+
u("div", Md, [
|
|
9432
9430
|
j(l, {
|
|
9433
9431
|
href: "#",
|
|
9434
9432
|
class: "text-gray-600 hover:text-gray-900"
|
|
@@ -9454,19 +9452,19 @@ const Nu = {
|
|
|
9454
9452
|
], 2);
|
|
9455
9453
|
};
|
|
9456
9454
|
}
|
|
9457
|
-
},
|
|
9455
|
+
}, Rd = { class: "flex items-center justify-between h-16 px-6" }, Hd = { class: "flex items-center" }, Wd = {
|
|
9458
9456
|
key: 0,
|
|
9459
9457
|
class: "flex items-center space-x-3 mr-6"
|
|
9460
|
-
},
|
|
9458
|
+
}, qd = { class: "flex items-center space-x-2 text-sm" }, Ud = { class: "text-gray-500" }, Yd = { class: "text-gray-900 font-medium" }, Gd = { class: "flex items-center space-x-4" }, Kd = { class: "relative" }, Xd = {
|
|
9461
9459
|
key: 0,
|
|
9462
9460
|
class: "absolute -top-1 -right-1 w-4 h-4 bg-red-500 text-white text-xs rounded-full flex items-center justify-center"
|
|
9463
|
-
},
|
|
9461
|
+
}, Jd = {
|
|
9464
9462
|
key: 0,
|
|
9465
9463
|
class: "absolute right-6 top-16 mt-2 w-80 bg-white rounded-lg shadow-lg border border-gray-200 z-50"
|
|
9466
|
-
},
|
|
9464
|
+
}, Qd = { class: "max-h-96 overflow-y-auto" }, Zd = { class: "flex items-start space-x-3" }, ef = { class: "flex-1" }, tf = { class: "text-sm text-gray-900" }, af = { class: "text-xs text-gray-500 mt-1" }, nf = { class: "relative" }, rf = { class: "w-8 h-8 bg-gray-300 rounded-full flex items-center justify-center" }, sf = { class: "text-gray-600 text-sm font-medium" }, lf = { class: "hidden md:block text-left" }, of = { class: "text-sm font-medium text-gray-900" }, uf = { class: "text-xs text-gray-500" }, cf = {
|
|
9467
9465
|
key: 0,
|
|
9468
9466
|
class: "absolute right-0 mt-2 w-48 bg-white rounded-lg shadow-lg border border-gray-200 z-50"
|
|
9469
|
-
},
|
|
9467
|
+
}, df = { class: "p-4 border-b border-gray-200" }, ff = { class: "text-sm font-medium text-gray-900" }, mf = { class: "text-xs text-gray-500" }, vf = { class: "py-2" }, gf = ["onClick"], hf = {
|
|
9470
9468
|
__name: "Header",
|
|
9471
9469
|
props: {
|
|
9472
9470
|
sidebarWidth: { type: Number, default: 256 },
|
|
@@ -9512,16 +9510,16 @@ const Nu = {
|
|
|
9512
9510
|
)),
|
|
9513
9511
|
style: ke({ left: `${e.sidebarWidth}px` })
|
|
9514
9512
|
}, [
|
|
9515
|
-
u("div",
|
|
9516
|
-
u("div",
|
|
9517
|
-
e.sidebarCollapsed ? (o(), d("div",
|
|
9513
|
+
u("div", Rd, [
|
|
9514
|
+
u("div", Hd, [
|
|
9515
|
+
e.sidebarCollapsed ? (o(), d("div", Wd, [...b[1] || (b[1] = [
|
|
9518
9516
|
u("div", { class: "w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center" }, [
|
|
9519
9517
|
u("span", { class: "text-white font-bold text-sm" }, "UI")
|
|
9520
9518
|
], -1),
|
|
9521
9519
|
u("h1", { class: "text-xl font-semibold text-gray-900" }, "Dashboard", -1)
|
|
9522
9520
|
])])) : p("", !0),
|
|
9523
|
-
u("nav",
|
|
9524
|
-
u("span",
|
|
9521
|
+
u("nav", qd, [
|
|
9522
|
+
u("span", Ud, x(e.currentSection), 1),
|
|
9525
9523
|
b[2] || (b[2] = u("svg", {
|
|
9526
9524
|
class: "w-4 h-4 text-gray-400",
|
|
9527
9525
|
fill: "none",
|
|
@@ -9535,11 +9533,11 @@ const Nu = {
|
|
|
9535
9533
|
d: "M9 5l7 7-7 7"
|
|
9536
9534
|
})
|
|
9537
9535
|
], -1)),
|
|
9538
|
-
u("span",
|
|
9536
|
+
u("span", Yd, x(e.currentPage), 1)
|
|
9539
9537
|
])
|
|
9540
9538
|
]),
|
|
9541
|
-
u("div",
|
|
9542
|
-
u("div",
|
|
9539
|
+
u("div", Gd, [
|
|
9540
|
+
u("div", Kd, [
|
|
9543
9541
|
b[3] || (b[3] = u("div", { class: "absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none" }, [
|
|
9544
9542
|
u("svg", {
|
|
9545
9543
|
class: "w-4 h-4 text-gray-400",
|
|
@@ -9587,22 +9585,22 @@ const Nu = {
|
|
|
9587
9585
|
d: "M13 3h2.586a1 1 0 01.707.293l6.414 6.414a1 1 0 01.293.707V19a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h4L13 3z"
|
|
9588
9586
|
})
|
|
9589
9587
|
], -1)),
|
|
9590
|
-
i.value > 0 ? (o(), d("span",
|
|
9588
|
+
i.value > 0 ? (o(), d("span", Xd, x(i.value), 1)) : p("", !0)
|
|
9591
9589
|
]),
|
|
9592
|
-
s.value ? (o(), d("div",
|
|
9590
|
+
s.value ? (o(), d("div", Jd, [
|
|
9593
9591
|
b[6] || (b[6] = u("div", { class: "p-4 border-b border-gray-200" }, [
|
|
9594
9592
|
u("h3", { class: "text-lg font-semibold text-gray-900" }, "Notifications")
|
|
9595
9593
|
], -1)),
|
|
9596
|
-
u("div",
|
|
9594
|
+
u("div", Qd, [
|
|
9597
9595
|
(o(!0), d(Y, null, K(e.notifications, (I) => (o(), d("div", {
|
|
9598
9596
|
key: I.id,
|
|
9599
9597
|
class: "p-4 border-b border-gray-100 hover:bg-gray-50 cursor-pointer"
|
|
9600
9598
|
}, [
|
|
9601
|
-
u("div",
|
|
9599
|
+
u("div", Zd, [
|
|
9602
9600
|
b[5] || (b[5] = u("div", { class: "flex-shrink-0 w-2 h-2 mt-2 bg-blue-500 rounded-full" }, null, -1)),
|
|
9603
|
-
u("div",
|
|
9604
|
-
u("p",
|
|
9605
|
-
u("p",
|
|
9601
|
+
u("div", ef, [
|
|
9602
|
+
u("p", tf, x(I.title), 1),
|
|
9603
|
+
u("p", af, x(I.time), 1)
|
|
9606
9604
|
])
|
|
9607
9605
|
])
|
|
9608
9606
|
]))), 128))
|
|
@@ -9611,17 +9609,17 @@ const Nu = {
|
|
|
9611
9609
|
u("button", { class: "text-sm text-blue-600 hover:text-blue-800" }, "View all notifications")
|
|
9612
9610
|
], -1))
|
|
9613
9611
|
])) : p("", !0),
|
|
9614
|
-
u("div",
|
|
9612
|
+
u("div", nf, [
|
|
9615
9613
|
u("button", {
|
|
9616
9614
|
onClick: h,
|
|
9617
9615
|
class: "flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-50 transition-colors"
|
|
9618
9616
|
}, [
|
|
9619
|
-
u("div",
|
|
9620
|
-
u("span",
|
|
9617
|
+
u("div", rf, [
|
|
9618
|
+
u("span", sf, x(c.value), 1)
|
|
9621
9619
|
]),
|
|
9622
|
-
u("div",
|
|
9623
|
-
u("p",
|
|
9624
|
-
u("p",
|
|
9620
|
+
u("div", lf, [
|
|
9621
|
+
u("p", of, x(e.user.name), 1),
|
|
9622
|
+
u("p", uf, x(e.user.role), 1)
|
|
9625
9623
|
]),
|
|
9626
9624
|
b[8] || (b[8] = u("svg", {
|
|
9627
9625
|
class: "w-4 h-4 text-gray-400",
|
|
@@ -9637,12 +9635,12 @@ const Nu = {
|
|
|
9637
9635
|
})
|
|
9638
9636
|
], -1))
|
|
9639
9637
|
]),
|
|
9640
|
-
l.value ? (o(), d("div",
|
|
9641
|
-
u("div",
|
|
9642
|
-
u("p",
|
|
9643
|
-
u("p",
|
|
9638
|
+
l.value ? (o(), d("div", cf, [
|
|
9639
|
+
u("div", df, [
|
|
9640
|
+
u("p", ff, x(e.user.name), 1),
|
|
9641
|
+
u("p", mf, x(e.user.email), 1)
|
|
9644
9642
|
]),
|
|
9645
|
-
u("div",
|
|
9643
|
+
u("div", vf, [
|
|
9646
9644
|
(o(!0), d(Y, null, K(e.profileMenuItems, (I) => (o(), d(Y, {
|
|
9647
9645
|
key: I.name
|
|
9648
9646
|
}, [
|
|
@@ -9673,7 +9671,7 @@ const Nu = {
|
|
|
9673
9671
|
class: "w-4 h-4 mr-3 text-gray-400"
|
|
9674
9672
|
}, null, 8, ["icon"]),
|
|
9675
9673
|
L(" " + x(I.label), 1)
|
|
9676
|
-
], 8,
|
|
9674
|
+
], 8, gf))
|
|
9677
9675
|
], 64))), 128))
|
|
9678
9676
|
]),
|
|
9679
9677
|
u("div", { class: "border-t border-gray-200 py-2" }, [
|
|
@@ -9704,16 +9702,16 @@ const Nu = {
|
|
|
9704
9702
|
], 6);
|
|
9705
9703
|
};
|
|
9706
9704
|
}
|
|
9707
|
-
},
|
|
9705
|
+
}, bf = {
|
|
9708
9706
|
key: 0,
|
|
9709
9707
|
class: "flex items-center justify-start p-4 border-b border-gray-200"
|
|
9710
|
-
},
|
|
9708
|
+
}, pf = { class: "text-xl font-semibold text-gray-900" }, yf = { class: "p-4 space-y-2" }, xf = {
|
|
9711
9709
|
key: 0,
|
|
9712
9710
|
class: "mt-6 mb-2"
|
|
9713
|
-
},
|
|
9711
|
+
}, wf = { class: "px-3 text-lg font-semibold text-gray-600 uppercase tracking-wider" }, kf = { class: "truncate text-sm" }, Sf = {
|
|
9714
9712
|
key: 0,
|
|
9715
9713
|
class: "ml-auto inline-flex items-center justify-center px-2 py-1 text-xs font-medium rounded-full bg-red-100 text-red-800"
|
|
9716
|
-
},
|
|
9714
|
+
}, Cf = {
|
|
9717
9715
|
__name: "Sidebar",
|
|
9718
9716
|
props: {
|
|
9719
9717
|
sidebarWidth: {
|
|
@@ -9747,15 +9745,15 @@ const Nu = {
|
|
|
9747
9745
|
)),
|
|
9748
9746
|
style: ke({ width: e.sidebarWidth + "px" })
|
|
9749
9747
|
}, [
|
|
9750
|
-
e.header ? (o(), d("div",
|
|
9751
|
-
u("h2",
|
|
9748
|
+
e.header ? (o(), d("div", bf, [
|
|
9749
|
+
u("h2", pf, x(e.header.title), 1)
|
|
9752
9750
|
])) : p("", !0),
|
|
9753
|
-
u("nav",
|
|
9751
|
+
u("nav", yf, [
|
|
9754
9752
|
(o(!0), d(Y, null, K(e.navigationItems, (v) => (o(), d(Y, {
|
|
9755
9753
|
key: v.name
|
|
9756
9754
|
}, [
|
|
9757
|
-
v.type === "section" ? (o(), d("div",
|
|
9758
|
-
u("h3",
|
|
9755
|
+
v.type === "section" ? (o(), d("div", xf, [
|
|
9756
|
+
u("h3", wf, x(v.label), 1)
|
|
9759
9757
|
])) : v.type === "link" ? (o(), N(c, {
|
|
9760
9758
|
key: 1,
|
|
9761
9759
|
to: v.route,
|
|
@@ -9771,8 +9769,8 @@ const Nu = {
|
|
|
9771
9769
|
size: "md",
|
|
9772
9770
|
class: "mr-3 text-5xl flex-shrink-0"
|
|
9773
9771
|
}, null, 8, ["icon"]),
|
|
9774
|
-
u("span",
|
|
9775
|
-
v.badge ? (o(), d("span",
|
|
9772
|
+
u("span", kf, x(v.label), 1),
|
|
9773
|
+
v.badge ? (o(), d("span", Sf, x(v.badge), 1)) : p("", !0)
|
|
9776
9774
|
]),
|
|
9777
9775
|
_: 2
|
|
9778
9776
|
}, 1032, ["to", "onClick", "class"])) : p("", !0)
|
|
@@ -9781,7 +9779,7 @@ const Nu = {
|
|
|
9781
9779
|
], 6);
|
|
9782
9780
|
};
|
|
9783
9781
|
}
|
|
9784
|
-
},
|
|
9782
|
+
}, $f = {
|
|
9785
9783
|
__name: "Timeline",
|
|
9786
9784
|
props: {
|
|
9787
9785
|
orientation: {
|
|
@@ -9800,13 +9798,13 @@ const Nu = {
|
|
|
9800
9798
|
$(a.$slots, "default")
|
|
9801
9799
|
], 2));
|
|
9802
9800
|
}
|
|
9803
|
-
},
|
|
9801
|
+
}, zf = {
|
|
9804
9802
|
key: 0,
|
|
9805
9803
|
class: "absolute left-3 top-0 w-0.5 h-full bg-slate-200"
|
|
9806
|
-
},
|
|
9804
|
+
}, Af = { class: "z-10 flex items-center justify-center w-6 h-6 rounded-full border-2 border-blue-500 bg-white text-blue-500" }, If = { class: "text-slate-900 font-medium" }, Pf = {
|
|
9807
9805
|
key: 0,
|
|
9808
9806
|
class: "text-slate-500 text-sm"
|
|
9809
|
-
},
|
|
9807
|
+
}, Tf = { class: "mt-2 text-slate-600 text-sm" }, jf = {
|
|
9810
9808
|
__name: "TimelineItem",
|
|
9811
9809
|
props: {
|
|
9812
9810
|
title: {
|
|
@@ -9830,8 +9828,8 @@ const Nu = {
|
|
|
9830
9828
|
e.orientation === "vertical" ? "items-start mb-8 last:mb-0" : "flex-col items-center mx-8 last:mx-0"
|
|
9831
9829
|
])
|
|
9832
9830
|
}, [
|
|
9833
|
-
e.orientation === "vertical" ? (o(), d("div",
|
|
9834
|
-
u("div",
|
|
9831
|
+
e.orientation === "vertical" ? (o(), d("div", zf)) : p("", !0),
|
|
9832
|
+
u("div", Af, [
|
|
9835
9833
|
$(a.$slots, "icon", {}, () => [
|
|
9836
9834
|
t[0] || (t[0] = u("div", { class: "w-2 h-2 rounded-full bg-blue-500" }, null, -1))
|
|
9837
9835
|
])
|
|
@@ -9842,17 +9840,17 @@ const Nu = {
|
|
|
9842
9840
|
e.orientation === "horizontal" ? "mt-2 text-center" : ""
|
|
9843
9841
|
])
|
|
9844
9842
|
}, [
|
|
9845
|
-
u("h3",
|
|
9843
|
+
u("h3", If, [
|
|
9846
9844
|
$(a.$slots, "title", {}, () => [
|
|
9847
9845
|
L(x(e.title), 1)
|
|
9848
9846
|
])
|
|
9849
9847
|
]),
|
|
9850
|
-
e.subtitle ? (o(), d("p",
|
|
9848
|
+
e.subtitle ? (o(), d("p", Pf, [
|
|
9851
9849
|
$(a.$slots, "subtitle", {}, () => [
|
|
9852
9850
|
L(x(e.subtitle), 1)
|
|
9853
9851
|
])
|
|
9854
9852
|
])) : p("", !0),
|
|
9855
|
-
u("div",
|
|
9853
|
+
u("div", Tf, [
|
|
9856
9854
|
$(a.$slots, "default")
|
|
9857
9855
|
])
|
|
9858
9856
|
], 2)
|
|
@@ -9863,7 +9861,7 @@ const Nu = {
|
|
|
9863
9861
|
for (const [n, r] of a)
|
|
9864
9862
|
t[n] = r;
|
|
9865
9863
|
return t;
|
|
9866
|
-
},
|
|
9864
|
+
}, Bf = {
|
|
9867
9865
|
name: "AuthLayout",
|
|
9868
9866
|
props: {
|
|
9869
9867
|
title: {
|
|
@@ -9952,20 +9950,20 @@ const Nu = {
|
|
|
9952
9950
|
currentYear: f(() => (/* @__PURE__ */ new Date()).getFullYear())
|
|
9953
9951
|
};
|
|
9954
9952
|
}
|
|
9955
|
-
},
|
|
9953
|
+
}, Of = { class: "container mx-auto px-4 relative z-10" }, Vf = { class: "grid lg:grid-cols-10 gap-8 items-center min-h-screen" }, Ff = { class: "lg:col-span-6 text-white text-center lg:text-left space-y-6" }, Ef = { class: "mb-6" }, Nf = { class: "text-4xl lg:text-6xl font-bold mb-2" }, _f = { class: "text-white" }, Df = { class: "flex items-center justify-center lg:justify-start mb-6" }, Mf = { class: "text-3xl lg:text-4xl font-bold text-white" }, Lf = { class: "lg:col-span-4" }, Rf = { class: "bg-white rounded-lg shadow-xl p-6 lg:p-8 max-w-md mx-auto" }, Hf = {
|
|
9956
9954
|
key: 0,
|
|
9957
9955
|
class: "mb-6"
|
|
9958
|
-
},
|
|
9956
|
+
}, Wf = { class: "text-center" }, qf = { class: "text-2xl font-bold text-gray-900" }, Uf = {
|
|
9959
9957
|
key: 0,
|
|
9960
9958
|
class: "text-gray-600 mt-2"
|
|
9961
|
-
},
|
|
9959
|
+
}, Yf = { class: "space-y-6" }, Gf = {
|
|
9962
9960
|
key: 1,
|
|
9963
9961
|
class: "mt-6"
|
|
9964
|
-
},
|
|
9962
|
+
}, Kf = {
|
|
9965
9963
|
key: 0,
|
|
9966
9964
|
class: "mt-6 text-center"
|
|
9967
|
-
},
|
|
9968
|
-
function
|
|
9965
|
+
}, Xf = { class: "absolute bottom-4 right-4 text-right" }, Jf = { class: "flex items-end justify-end mb-2" }, Qf = { class: "text-right mr-3" }, Zf = { class: "text-red-500 font-bold text-xs" }, em = { class: "text-white text-xs" }, tm = { class: "text-white/70 text-xs" }, am = { class: "w-8 h-8 bg-red-500 rounded flex items-center justify-center text-white font-bold text-xs" }, nm = { class: "text-white/70 text-xs" }, rm = { class: "absolute bottom-4 left-4 flex gap-2" }, sm = ["href"];
|
|
9966
|
+
function lm(e, a, t, n, r, s) {
|
|
9969
9967
|
const l = te("router-view"), i = te("font-awesome-icon");
|
|
9970
9968
|
return o(), d("div", {
|
|
9971
9969
|
class: "min-h-screen relative flex items-center justify-center",
|
|
@@ -9978,70 +9976,70 @@ function om(e, a, t, n, r, s) {
|
|
|
9978
9976
|
opacity: t.backgroundOpacity
|
|
9979
9977
|
})
|
|
9980
9978
|
}, null, 4),
|
|
9981
|
-
u("div",
|
|
9982
|
-
u("div",
|
|
9983
|
-
u("div",
|
|
9984
|
-
u("div",
|
|
9985
|
-
u("div",
|
|
9979
|
+
u("div", Of, [
|
|
9980
|
+
u("div", Vf, [
|
|
9981
|
+
u("div", Ff, [
|
|
9982
|
+
u("div", Ef, [
|
|
9983
|
+
u("div", Nf, [
|
|
9986
9984
|
u("span", {
|
|
9987
9985
|
style: ke({ color: t.primaryColor })
|
|
9988
9986
|
}, x(t.primaryLogoPrefix), 5),
|
|
9989
|
-
u("span",
|
|
9987
|
+
u("span", _f, x(t.primaryLogoText), 1)
|
|
9990
9988
|
]),
|
|
9991
9989
|
u("div", {
|
|
9992
9990
|
class: "h-0.5 w-30 mx-auto lg:mx-0",
|
|
9993
9991
|
style: ke({ backgroundColor: t.primaryColor })
|
|
9994
9992
|
}, null, 4)
|
|
9995
9993
|
]),
|
|
9996
|
-
u("div",
|
|
9994
|
+
u("div", Df, [
|
|
9997
9995
|
u("div", {
|
|
9998
9996
|
class: "flex items-center justify-center w-15 h-15 rounded-lg mr-4 text-white font-bold text-xl",
|
|
9999
9997
|
style: ke({ backgroundColor: t.primaryColor })
|
|
10000
9998
|
}, x(t.secondaryLogoPrefix), 5),
|
|
10001
|
-
u("span",
|
|
9999
|
+
u("span", Mf, x(t.secondaryLogoText), 1)
|
|
10002
10000
|
]),
|
|
10003
10001
|
a[0] || (a[0] = u("div", { class: "max-w-md mx-auto lg:mx-0" }, [
|
|
10004
10002
|
u("p", { class: "text-sm lg:text-base font-light text-white/70 italic leading-relaxed" })
|
|
10005
10003
|
], -1))
|
|
10006
10004
|
]),
|
|
10007
|
-
u("div",
|
|
10008
|
-
u("div",
|
|
10009
|
-
e.$slots["card-header"] || t.title ? (o(), d("div",
|
|
10005
|
+
u("div", Lf, [
|
|
10006
|
+
u("div", Rf, [
|
|
10007
|
+
e.$slots["card-header"] || t.title ? (o(), d("div", Hf, [
|
|
10010
10008
|
$(e.$slots, "card-header", {}, () => [
|
|
10011
|
-
u("div",
|
|
10012
|
-
u("h1",
|
|
10013
|
-
t.subtitle ? (o(), d("p",
|
|
10009
|
+
u("div", Wf, [
|
|
10010
|
+
u("h1", qf, x(t.title), 1),
|
|
10011
|
+
t.subtitle ? (o(), d("p", Uf, x(t.subtitle), 1)) : p("", !0)
|
|
10014
10012
|
])
|
|
10015
10013
|
])
|
|
10016
10014
|
])) : p("", !0),
|
|
10017
|
-
u("div",
|
|
10015
|
+
u("div", Yf, [
|
|
10018
10016
|
j(l)
|
|
10019
10017
|
]),
|
|
10020
|
-
e.$slots["card-footer"] ? (o(), d("div",
|
|
10018
|
+
e.$slots["card-footer"] ? (o(), d("div", Gf, [
|
|
10021
10019
|
$(e.$slots, "card-footer")
|
|
10022
10020
|
])) : p("", !0)
|
|
10023
10021
|
]),
|
|
10024
|
-
e.$slots.links ? (o(), d("div",
|
|
10022
|
+
e.$slots.links ? (o(), d("div", Kf, [
|
|
10025
10023
|
$(e.$slots, "links")
|
|
10026
10024
|
])) : p("", !0)
|
|
10027
10025
|
])
|
|
10028
10026
|
])
|
|
10029
10027
|
]),
|
|
10030
|
-
u("div",
|
|
10031
|
-
u("div",
|
|
10032
|
-
u("div",
|
|
10033
|
-
u("div",
|
|
10034
|
-
u("div",
|
|
10035
|
-
u("div",
|
|
10028
|
+
u("div", Xf, [
|
|
10029
|
+
u("div", Jf, [
|
|
10030
|
+
u("div", Qf, [
|
|
10031
|
+
u("div", Zf, x(t.companyName), 1),
|
|
10032
|
+
u("div", em, x(t.companyType), 1),
|
|
10033
|
+
u("div", tm, x(t.companyTagline), 1)
|
|
10036
10034
|
]),
|
|
10037
|
-
u("div",
|
|
10035
|
+
u("div", am, x(t.companyInitials), 1)
|
|
10038
10036
|
]),
|
|
10039
|
-
u("div",
|
|
10037
|
+
u("div", nm, [
|
|
10040
10038
|
u("div", null, x(t.appName) + " (" + x(t.appVersion) + ")", 1),
|
|
10041
10039
|
u("div", null, x(t.copyright), 1)
|
|
10042
10040
|
])
|
|
10043
10041
|
]),
|
|
10044
|
-
u("div",
|
|
10042
|
+
u("div", rm, [
|
|
10045
10043
|
(o(!0), d(Y, null, K(t.socialLinks, (c) => (o(), d("a", {
|
|
10046
10044
|
key: c.name,
|
|
10047
10045
|
href: c.url,
|
|
@@ -10053,14 +10051,14 @@ function om(e, a, t, n, r, s) {
|
|
|
10053
10051
|
j(i, {
|
|
10054
10052
|
icon: ["fab", c.icon]
|
|
10055
10053
|
}, null, 8, ["icon"])
|
|
10056
|
-
], 10,
|
|
10054
|
+
], 10, sm))), 128))
|
|
10057
10055
|
])
|
|
10058
10056
|
], 4);
|
|
10059
10057
|
}
|
|
10060
|
-
const
|
|
10058
|
+
const om = /* @__PURE__ */ Qn(Bf, [["render", lm]]), im = { class: "min-h-screen bg-gray-50" }, um = { class: "flex-1" }, cm = {
|
|
10061
10059
|
key: 0,
|
|
10062
10060
|
class: "bg-white border-b border-gray-200"
|
|
10063
|
-
},
|
|
10061
|
+
}, dm = { class: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4" }, fm = { class: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8" }, mm = {
|
|
10064
10062
|
__name: "DefaultLayout",
|
|
10065
10063
|
props: {
|
|
10066
10064
|
navigationItems: {
|
|
@@ -10084,7 +10082,7 @@ const im = /* @__PURE__ */ Qn(Of, [["render", om]]), um = { class: "min-h-screen
|
|
|
10084
10082
|
setup(e) {
|
|
10085
10083
|
return (a, t) => {
|
|
10086
10084
|
const n = te("Logo"), r = te("MainNavigation"), s = te("Button"), l = te("Header"), i = te("Breadcrumb"), c = te("Text"), v = te("Footer");
|
|
10087
|
-
return o(), d("div",
|
|
10085
|
+
return o(), d("div", im, [
|
|
10088
10086
|
j(l, null, {
|
|
10089
10087
|
logo: B(() => [
|
|
10090
10088
|
$(a.$slots, "logo", {}, () => [
|
|
@@ -10117,15 +10115,15 @@ const im = /* @__PURE__ */ Qn(Of, [["render", om]]), um = { class: "min-h-screen
|
|
|
10117
10115
|
]),
|
|
10118
10116
|
_: 3
|
|
10119
10117
|
}),
|
|
10120
|
-
u("main",
|
|
10121
|
-
e.showBreadcrumb ? (o(), d("div",
|
|
10122
|
-
u("div",
|
|
10118
|
+
u("main", um, [
|
|
10119
|
+
e.showBreadcrumb ? (o(), d("div", cm, [
|
|
10120
|
+
u("div", dm, [
|
|
10123
10121
|
$(a.$slots, "breadcrumb", {}, () => [
|
|
10124
10122
|
j(i, { items: e.breadcrumbItems }, null, 8, ["items"])
|
|
10125
10123
|
])
|
|
10126
10124
|
])
|
|
10127
10125
|
])) : p("", !0),
|
|
10128
|
-
u("div",
|
|
10126
|
+
u("div", fm, [
|
|
10129
10127
|
$(a.$slots, "default")
|
|
10130
10128
|
])
|
|
10131
10129
|
]),
|
|
@@ -10146,14 +10144,14 @@ const im = /* @__PURE__ */ Qn(Of, [["render", om]]), um = { class: "min-h-screen
|
|
|
10146
10144
|
]);
|
|
10147
10145
|
};
|
|
10148
10146
|
}
|
|
10149
|
-
},
|
|
10147
|
+
}, vm = {
|
|
10150
10148
|
template: `
|
|
10151
10149
|
<svg viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
10152
10150
|
<circle cx="100" cy="100" r="80" fill="#f1f5f9" stroke="#cbd5e1" stroke-width="2"/>
|
|
10153
10151
|
<text x="100" y="110" text-anchor="middle" font-size="48" font-weight="bold" fill="#64748b">404</text>
|
|
10154
10152
|
</svg>
|
|
10155
10153
|
`
|
|
10156
|
-
},
|
|
10154
|
+
}, gm = {
|
|
10157
10155
|
template: `
|
|
10158
10156
|
<svg viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
10159
10157
|
<circle cx="100" cy="100" r="80" fill="#fef2f2" stroke="#fecaca" stroke-width="2"/>
|
|
@@ -10166,7 +10164,7 @@ const im = /* @__PURE__ */ Qn(Of, [["render", om]]), um = { class: "min-h-screen
|
|
|
10166
10164
|
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m9-.75a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 3.75h.008v.008H12v-.008Z" />
|
|
10167
10165
|
</svg>
|
|
10168
10166
|
`
|
|
10169
|
-
},
|
|
10167
|
+
}, hm = {
|
|
10170
10168
|
name: "ErrorPage",
|
|
10171
10169
|
components: {
|
|
10172
10170
|
Button: ue
|
|
@@ -10253,12 +10251,12 @@ const im = /* @__PURE__ */ Qn(Of, [["render", om]]), um = { class: "min-h-screen
|
|
|
10253
10251
|
404: {
|
|
10254
10252
|
title: "Page Not Found",
|
|
10255
10253
|
message: "Sorry, we couldn't find the page you're looking for.",
|
|
10256
|
-
icon:
|
|
10254
|
+
icon: vm
|
|
10257
10255
|
},
|
|
10258
10256
|
500: {
|
|
10259
10257
|
title: "Server Error",
|
|
10260
10258
|
message: "Something went wrong on our end. Please try again later.",
|
|
10261
|
-
icon:
|
|
10259
|
+
icon: gm
|
|
10262
10260
|
},
|
|
10263
10261
|
403: {
|
|
10264
10262
|
title: "Access Denied",
|
|
@@ -10325,8 +10323,8 @@ const im = /* @__PURE__ */ Qn(Of, [["render", om]]), um = { class: "min-h-screen
|
|
|
10325
10323
|
helpClasses: D
|
|
10326
10324
|
};
|
|
10327
10325
|
}
|
|
10328
|
-
},
|
|
10329
|
-
function
|
|
10326
|
+
}, bm = { class: "flex justify-center" }, pm = { class: "flex items-center gap-3" }, ym = { class: "text-2xl font-bold text-slate-900" }, xm = { class: "flex flex-col sm:flex-row gap-3 justify-center" }, wm = { class: "text-sm text-slate-600" }, km = ["href"];
|
|
10327
|
+
function Sm(e, a, t, n, r, s) {
|
|
10330
10328
|
const l = te("Button");
|
|
10331
10329
|
return o(), d("div", {
|
|
10332
10330
|
class: m(n.layoutClasses)
|
|
@@ -10347,13 +10345,13 @@ function Cm(e, a, t, n, r, s) {
|
|
|
10347
10345
|
class: m(n.headerClasses)
|
|
10348
10346
|
}, [
|
|
10349
10347
|
$(e.$slots, "header", {}, () => [
|
|
10350
|
-
u("div",
|
|
10348
|
+
u("div", bm, [
|
|
10351
10349
|
$(e.$slots, "logo", {}, () => [
|
|
10352
|
-
u("div",
|
|
10350
|
+
u("div", pm, [
|
|
10353
10351
|
a[1] || (a[1] = u("div", { class: "w-10 h-10 bg-blue-600 rounded-xl flex items-center justify-center" }, [
|
|
10354
10352
|
u("span", { class: "text-white font-bold text-lg" }, "STL")
|
|
10355
10353
|
], -1)),
|
|
10356
|
-
u("span",
|
|
10354
|
+
u("span", ym, x(t.brandName), 1)
|
|
10357
10355
|
])
|
|
10358
10356
|
])
|
|
10359
10357
|
])
|
|
@@ -10399,7 +10397,7 @@ function Cm(e, a, t, n, r, s) {
|
|
|
10399
10397
|
class: m(n.actionsClasses)
|
|
10400
10398
|
}, [
|
|
10401
10399
|
$(e.$slots, "actions", {}, () => [
|
|
10402
|
-
u("div",
|
|
10400
|
+
u("div", xm, [
|
|
10403
10401
|
t.showHomeButton ? (o(), N(l, {
|
|
10404
10402
|
key: 0,
|
|
10405
10403
|
href: t.homeUrl,
|
|
@@ -10441,13 +10439,13 @@ function Cm(e, a, t, n, r, s) {
|
|
|
10441
10439
|
class: m(n.helpClasses)
|
|
10442
10440
|
}, [
|
|
10443
10441
|
$(e.$slots, "help", {}, () => [
|
|
10444
|
-
u("p",
|
|
10442
|
+
u("p", wm, [
|
|
10445
10443
|
L(x(t.helpText) + " ", 1),
|
|
10446
10444
|
t.supportUrl ? (o(), d("a", {
|
|
10447
10445
|
key: 0,
|
|
10448
10446
|
href: t.supportUrl,
|
|
10449
10447
|
class: "text-blue-600 hover:text-blue-700 underline ml-1"
|
|
10450
|
-
}, " Contact Support ", 8,
|
|
10448
|
+
}, " Contact Support ", 8, km)) : p("", !0)
|
|
10451
10449
|
])
|
|
10452
10450
|
])
|
|
10453
10451
|
], 2)) : p("", !0)
|
|
@@ -10455,7 +10453,7 @@ function Cm(e, a, t, n, r, s) {
|
|
|
10455
10453
|
], 2)
|
|
10456
10454
|
], 2);
|
|
10457
10455
|
}
|
|
10458
|
-
const
|
|
10456
|
+
const Cm = /* @__PURE__ */ Qn(hm, [["render", Sm]]), Na = {
|
|
10459
10457
|
Avatar: Po,
|
|
10460
10458
|
Badge: jo,
|
|
10461
10459
|
Button: ue,
|
|
@@ -10494,37 +10492,37 @@ const $m = /* @__PURE__ */ Qn(bm, [["render", Cm]]), Na = {
|
|
|
10494
10492
|
InputGroup: du,
|
|
10495
10493
|
ListItem: pu,
|
|
10496
10494
|
MenuItem: xu,
|
|
10497
|
-
Modal:
|
|
10498
|
-
ModalHeader:
|
|
10499
|
-
ModalBody:
|
|
10500
|
-
ModalFooter:
|
|
10501
|
-
Notification:
|
|
10502
|
-
Toast:
|
|
10503
|
-
Search:
|
|
10504
|
-
Slider:
|
|
10505
|
-
Stepper:
|
|
10506
|
-
StepperItem:
|
|
10507
|
-
Tab:
|
|
10508
|
-
TabPanel:
|
|
10509
|
-
Accordion:
|
|
10510
|
-
AccordionItem:
|
|
10511
|
-
Calendar:
|
|
10512
|
-
DataTable:
|
|
10495
|
+
Modal: ku,
|
|
10496
|
+
ModalHeader: zu,
|
|
10497
|
+
ModalBody: Au,
|
|
10498
|
+
ModalFooter: Iu,
|
|
10499
|
+
Notification: Vu,
|
|
10500
|
+
Toast: Uu,
|
|
10501
|
+
Search: oc,
|
|
10502
|
+
Slider: dc,
|
|
10503
|
+
Stepper: mc,
|
|
10504
|
+
StepperItem: pc,
|
|
10505
|
+
Tab: kc,
|
|
10506
|
+
TabPanel: Sc,
|
|
10507
|
+
Accordion: Pc,
|
|
10508
|
+
AccordionItem: Tc,
|
|
10509
|
+
Calendar: Ec,
|
|
10510
|
+
DataTable: od,
|
|
10513
10511
|
DataTableHeader: Kn,
|
|
10514
10512
|
DataTableRow: Xn,
|
|
10515
|
-
DataTableCell:
|
|
10513
|
+
DataTableCell: id,
|
|
10516
10514
|
DataTablePagination: Jn,
|
|
10517
|
-
DataTableFilters:
|
|
10518
|
-
DataTableToolBar:
|
|
10519
|
-
Footer:
|
|
10520
|
-
Header:
|
|
10521
|
-
Sidebar:
|
|
10522
|
-
Timeline:
|
|
10523
|
-
TimelineItem:
|
|
10524
|
-
AuthLayout:
|
|
10525
|
-
DefaultLayout:
|
|
10526
|
-
ErrorLayout:
|
|
10527
|
-
},
|
|
10515
|
+
DataTableFilters: bd,
|
|
10516
|
+
DataTableToolBar: Od,
|
|
10517
|
+
Footer: Ld,
|
|
10518
|
+
Header: hf,
|
|
10519
|
+
Sidebar: Cf,
|
|
10520
|
+
Timeline: $f,
|
|
10521
|
+
TimelineItem: jf,
|
|
10522
|
+
AuthLayout: om,
|
|
10523
|
+
DefaultLayout: mm,
|
|
10524
|
+
ErrorLayout: Cm
|
|
10525
|
+
}, Im = {
|
|
10528
10526
|
install(e, a = {}) {
|
|
10529
10527
|
const { prefix: t = "" } = a;
|
|
10530
10528
|
Object.keys(Na).forEach((n) => {
|
|
@@ -10534,16 +10532,16 @@ const $m = /* @__PURE__ */ Qn(bm, [["render", Cm]]), Na = {
|
|
|
10534
10532
|
}
|
|
10535
10533
|
};
|
|
10536
10534
|
export {
|
|
10537
|
-
|
|
10538
|
-
|
|
10535
|
+
Pc as Accordion,
|
|
10536
|
+
Tc as AccordionItem,
|
|
10539
10537
|
xi as Alert,
|
|
10540
|
-
|
|
10538
|
+
om as AuthLayout,
|
|
10541
10539
|
Po as Avatar,
|
|
10542
10540
|
jo as Badge,
|
|
10543
10541
|
Si as Breadcrumb,
|
|
10544
10542
|
ue as Button,
|
|
10545
10543
|
$i as ButtonGroup,
|
|
10546
|
-
|
|
10544
|
+
Ec as Calendar,
|
|
10547
10545
|
Oi as Card,
|
|
10548
10546
|
Fi as CardBody,
|
|
10549
10547
|
Ni as CardContent,
|
|
@@ -10551,23 +10549,23 @@ export {
|
|
|
10551
10549
|
Vi as CardHeader,
|
|
10552
10550
|
_i as CardTitle,
|
|
10553
10551
|
Zt as Checkbox,
|
|
10554
|
-
|
|
10555
|
-
|
|
10556
|
-
|
|
10552
|
+
od as DataTable,
|
|
10553
|
+
id as DataTableCell,
|
|
10554
|
+
bd as DataTableFilters,
|
|
10557
10555
|
Kn as DataTableHeader,
|
|
10558
10556
|
Jn as DataTablePagination,
|
|
10559
10557
|
Xn as DataTableRow,
|
|
10560
|
-
|
|
10558
|
+
Od as DataTableToolBar,
|
|
10561
10559
|
Li as DatePicker,
|
|
10562
|
-
|
|
10560
|
+
mm as DefaultLayout,
|
|
10563
10561
|
Lo as Divider,
|
|
10564
10562
|
Hi as Dropdown,
|
|
10565
10563
|
qi as DropdownItem,
|
|
10566
|
-
|
|
10564
|
+
Cm as ErrorLayout,
|
|
10567
10565
|
tu as FileUpload,
|
|
10568
|
-
|
|
10566
|
+
Ld as Footer,
|
|
10569
10567
|
iu as FormField,
|
|
10570
|
-
|
|
10568
|
+
hf as Header,
|
|
10571
10569
|
G as Icon,
|
|
10572
10570
|
qo as Image,
|
|
10573
10571
|
et as Input,
|
|
@@ -10577,33 +10575,33 @@ export {
|
|
|
10577
10575
|
pu as ListItem,
|
|
10578
10576
|
ei as Logo,
|
|
10579
10577
|
xu as MenuItem,
|
|
10580
|
-
|
|
10581
|
-
|
|
10582
|
-
|
|
10583
|
-
|
|
10584
|
-
|
|
10578
|
+
ku as Modal,
|
|
10579
|
+
Au as ModalBody,
|
|
10580
|
+
Iu as ModalFooter,
|
|
10581
|
+
zu as ModalHeader,
|
|
10582
|
+
Vu as Notification,
|
|
10585
10583
|
Yn as Option,
|
|
10586
10584
|
ni as ProgressBar,
|
|
10587
10585
|
li as Radio,
|
|
10588
|
-
|
|
10586
|
+
oc as Search,
|
|
10589
10587
|
ea as Select,
|
|
10590
|
-
|
|
10591
|
-
|
|
10588
|
+
Cf as Sidebar,
|
|
10589
|
+
dc as Slider,
|
|
10592
10590
|
qn as Spinner,
|
|
10593
|
-
|
|
10594
|
-
|
|
10591
|
+
mc as Stepper,
|
|
10592
|
+
pc as StepperItem,
|
|
10595
10593
|
ui as Switch,
|
|
10596
|
-
|
|
10597
|
-
|
|
10594
|
+
kc as Tab,
|
|
10595
|
+
Sc as TabPanel,
|
|
10598
10596
|
ci as Text,
|
|
10599
10597
|
fi as Textarea,
|
|
10600
|
-
|
|
10601
|
-
|
|
10602
|
-
|
|
10598
|
+
$f as Timeline,
|
|
10599
|
+
jf as TimelineItem,
|
|
10600
|
+
Uu as Toast,
|
|
10603
10601
|
mi as Tooltip,
|
|
10604
10602
|
_t as Typography,
|
|
10605
10603
|
k as cn,
|
|
10606
|
-
|
|
10604
|
+
Im as default,
|
|
10607
10605
|
Fa as toast,
|
|
10608
|
-
|
|
10606
|
+
_u as useToaster
|
|
10609
10607
|
};
|