straw-ui-vue 0.1.17 → 0.1.18
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/components/st-dialog/index.d.ts +0 -6
- package/dist/components/st-dialog/st-dialog.d.ts +0 -2
- package/dist/components/st-dialog/types.d.ts +0 -8
- package/dist/components/st-drawer/index.d.ts +0 -3
- package/dist/components/st-drawer/st-drawer.d.ts +0 -1
- package/dist/components/st-drawer/types.d.ts +0 -4
- package/dist/straw-ui.js +15 -27
- package/package.json +1 -1
|
@@ -12,8 +12,6 @@ export declare const StDialog: {
|
|
|
12
12
|
}, import('vue').PublicProps, {
|
|
13
13
|
title: string;
|
|
14
14
|
center: boolean;
|
|
15
|
-
height: string;
|
|
16
|
-
width: string;
|
|
17
15
|
draggable: boolean;
|
|
18
16
|
closable: boolean;
|
|
19
17
|
fullscreen: boolean;
|
|
@@ -35,8 +33,6 @@ export declare const StDialog: {
|
|
|
35
33
|
}>, {}, {}, {}, {}, {
|
|
36
34
|
title: string;
|
|
37
35
|
center: boolean;
|
|
38
|
-
height: string;
|
|
39
|
-
width: string;
|
|
40
36
|
draggable: boolean;
|
|
41
37
|
closable: boolean;
|
|
42
38
|
fullscreen: boolean;
|
|
@@ -59,8 +55,6 @@ export declare const StDialog: {
|
|
|
59
55
|
}, string, {
|
|
60
56
|
title: string;
|
|
61
57
|
center: boolean;
|
|
62
|
-
height: string;
|
|
63
|
-
width: string;
|
|
64
58
|
draggable: boolean;
|
|
65
59
|
closable: boolean;
|
|
66
60
|
fullscreen: boolean;
|
|
@@ -20,10 +20,6 @@ export interface StDialogGroupContext {
|
|
|
20
20
|
|
|
21
21
|
/** 是否居中显示 */
|
|
22
22
|
readonly center: boolean;
|
|
23
|
-
/** 弹窗宽度 */
|
|
24
|
-
readonly width: string;
|
|
25
|
-
/** 弹窗高度 */
|
|
26
|
-
readonly height: string;
|
|
27
23
|
/** 是否显示遮罩层 */
|
|
28
24
|
readonly showOverlay: boolean;
|
|
29
25
|
/** 是否显示关闭按钮 */
|
|
@@ -223,10 +219,6 @@ export interface StDialogGroupFooterEmits {}
|
|
|
223
219
|
export interface StDialogProps {
|
|
224
220
|
/** 弹窗标题 */
|
|
225
221
|
title?: string;
|
|
226
|
-
/** 弹窗宽度 */
|
|
227
|
-
width?: string;
|
|
228
|
-
/** 弹窗高度 */
|
|
229
|
-
height?: string;
|
|
230
222
|
/** 是否显示关闭按钮 */
|
|
231
223
|
closable?: boolean;
|
|
232
224
|
/** 是否支持拖拽 */
|
|
@@ -10,7 +10,6 @@ export declare const StDrawer: {
|
|
|
10
10
|
close: () => any;
|
|
11
11
|
"update:modelValue": (value: boolean) => any;
|
|
12
12
|
}, import('vue').PublicProps, {
|
|
13
|
-
size: number | string;
|
|
14
13
|
title: string;
|
|
15
14
|
placement: import('./types.d.ts').StDrawerPlacement;
|
|
16
15
|
closable: boolean;
|
|
@@ -30,7 +29,6 @@ export declare const StDrawer: {
|
|
|
30
29
|
onClose?: () => any;
|
|
31
30
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
32
31
|
}>, {}, {}, {}, {}, {
|
|
33
|
-
size: number | string;
|
|
34
32
|
title: string;
|
|
35
33
|
placement: import('./types.d.ts').StDrawerPlacement;
|
|
36
34
|
closable: boolean;
|
|
@@ -51,7 +49,6 @@ export declare const StDrawer: {
|
|
|
51
49
|
close: () => any;
|
|
52
50
|
"update:modelValue": (value: boolean) => any;
|
|
53
51
|
}, string, {
|
|
54
|
-
size: number | string;
|
|
55
52
|
title: string;
|
|
56
53
|
placement: import('./types.d.ts').StDrawerPlacement;
|
|
57
54
|
closable: boolean;
|
|
@@ -14,7 +14,6 @@ declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {
|
|
|
14
14
|
onClose?: () => any;
|
|
15
15
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
16
16
|
}>, {
|
|
17
|
-
size: number | string;
|
|
18
17
|
title: string;
|
|
19
18
|
placement: import('./types.d.ts').StDrawerPlacement;
|
|
20
19
|
closable: boolean;
|
|
@@ -23,8 +23,6 @@ export interface StDrawerGroupContext {
|
|
|
23
23
|
readonly closeByOverlay: boolean;
|
|
24
24
|
/** 抽屉方向 */
|
|
25
25
|
readonly placement: StDrawerPlacement;
|
|
26
|
-
/** 尺寸 */
|
|
27
|
-
readonly size: number | string;
|
|
28
26
|
/** 是否显示关闭按钮 */
|
|
29
27
|
readonly closable: boolean;
|
|
30
28
|
|
|
@@ -177,8 +175,6 @@ export interface StDrawerProps {
|
|
|
177
175
|
closeByOverlay?: boolean;
|
|
178
176
|
/** 抽屉方向 */
|
|
179
177
|
placement?: StDrawerPlacement;
|
|
180
|
-
/** 尺寸 */
|
|
181
|
-
size?: number | string;
|
|
182
178
|
/** 标题 */
|
|
183
179
|
title?: string;
|
|
184
180
|
/** 是否显示关闭按钮 */
|
package/dist/straw-ui.js
CHANGED
|
@@ -4318,12 +4318,10 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
4318
4318
|
setup(n) {
|
|
4319
4319
|
let r = P();
|
|
4320
4320
|
I();
|
|
4321
|
-
let l = h(t), u = a(() => e("bg-background shadow-lg overflow-hidden rounded", "flex flex-col", l.center ? "top-1/2 left-1/2" : "top-20 left-1/2",
|
|
4321
|
+
let l = h(t), u = a(() => e("bg-background shadow-lg overflow-hidden rounded", "flex flex-col", l.isFullscreen.value ? "inset-0" : "w-120", l.center ? "top-1/2 left-1/2" : "top-20 left-1/2", r.class)), d = a(() => {
|
|
4322
4322
|
if (l.isFullscreen.value) return;
|
|
4323
|
-
let e =
|
|
4324
|
-
|
|
4325
|
-
let t = l.dragOffsetX.value || 0, n = l.dragOffsetY.value || 0;
|
|
4326
|
-
return l.center ? e.transform = `translate(calc(-50% + ${t}px), calc(-50% + ${n}px))` : e.transform = `translate(-50%, ${n}px)`, e;
|
|
4323
|
+
let e = l.dragOffsetX.value || 0, t = l.dragOffsetY.value || 0;
|
|
4324
|
+
return l.center ? { transform: `translate(calc(-50% + ${e}px), calc(-50% + ${t}px))` } : { transform: `translate(-50%, ${t}px)` };
|
|
4327
4325
|
});
|
|
4328
4326
|
return (e, t) => (w(), o(i, {
|
|
4329
4327
|
appear: "",
|
|
@@ -4364,8 +4362,6 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
4364
4362
|
__name: "st-dialog",
|
|
4365
4363
|
props: /*@__PURE__*/ g({
|
|
4366
4364
|
title: { default: "" },
|
|
4367
|
-
width: { default: "500px" },
|
|
4368
|
-
height: { default: "auto" },
|
|
4369
4365
|
closable: {
|
|
4370
4366
|
type: Boolean,
|
|
4371
4367
|
default: !0
|
|
@@ -4557,8 +4553,6 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
4557
4553
|
dragOffsetX: a(() => L.value.offsetX),
|
|
4558
4554
|
dragOffsetY: a(() => L.value.offsetY),
|
|
4559
4555
|
center: D.center,
|
|
4560
|
-
width: D.width,
|
|
4561
|
-
height: D.height,
|
|
4562
4556
|
showOverlay: D.showOverlay,
|
|
4563
4557
|
closable: D.closable,
|
|
4564
4558
|
fullscreen: D.fullscreen,
|
|
@@ -4863,12 +4857,12 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
4863
4857
|
let r = h(hr), l = X({
|
|
4864
4858
|
base: "flex flex-col bg-background shadow-lg overflow-hidden",
|
|
4865
4859
|
variants: { placement: {
|
|
4866
|
-
left: "fixed top-0 left-0 h-full",
|
|
4867
|
-
right: "fixed top-0 right-0 h-full",
|
|
4868
|
-
top: "fixed top-0 left-0 w-full",
|
|
4869
|
-
bottom: "fixed bottom-0 left-0 w-full"
|
|
4860
|
+
left: "fixed top-0 left-0 h-full rounded-r-md w-80",
|
|
4861
|
+
right: "fixed top-0 right-0 h-full rounded-l-md w-80",
|
|
4862
|
+
top: "fixed top-0 left-0 w-full rounded-b-md h-60",
|
|
4863
|
+
bottom: "fixed bottom-0 left-0 w-full rounded-t-md h-60"
|
|
4870
4864
|
} }
|
|
4871
|
-
}), u = a(() => e(l({ placement: r.placement }), n.class)), d = a(() =>
|
|
4865
|
+
}), u = a(() => e(l({ placement: r.placement }), n.class)), d = a(() => "transition-transform duration-150 ease-out"), f = a(() => {
|
|
4872
4866
|
switch (r.placement) {
|
|
4873
4867
|
case "left": return "-translate-x-full";
|
|
4874
4868
|
case "right": return "translate-x-full";
|
|
@@ -4876,7 +4870,7 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
4876
4870
|
case "bottom": return "translate-y-full";
|
|
4877
4871
|
default: return "translate-x-full";
|
|
4878
4872
|
}
|
|
4879
|
-
}),
|
|
4873
|
+
}), p = a(() => "transition-transform duration-100 ease-in"), m = a(() => {
|
|
4880
4874
|
switch (r.placement) {
|
|
4881
4875
|
case "left": return "-translate-x-full";
|
|
4882
4876
|
case "right": return "translate-x-full";
|
|
@@ -4886,20 +4880,16 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
4886
4880
|
}
|
|
4887
4881
|
});
|
|
4888
4882
|
return (e, t) => (w(), o(i, {
|
|
4889
|
-
"enter-active-class":
|
|
4890
|
-
"enter-from-class":
|
|
4891
|
-
"leave-active-class":
|
|
4892
|
-
"leave-to-class":
|
|
4883
|
+
"enter-active-class": d.value,
|
|
4884
|
+
"enter-from-class": f.value,
|
|
4885
|
+
"leave-active-class": p.value,
|
|
4886
|
+
"leave-to-class": m.value,
|
|
4893
4887
|
appear: ""
|
|
4894
4888
|
}, {
|
|
4895
4889
|
default: H(() => [N(r).visible.value ? (w(), c("div", {
|
|
4896
4890
|
key: 0,
|
|
4897
4891
|
class: y([u.value, "st-drawer-group-body"]),
|
|
4898
|
-
style: b([
|
|
4899
|
-
{ zIndex: N(r).contentZIndex.value },
|
|
4900
|
-
d.value,
|
|
4901
|
-
N(n).style
|
|
4902
|
-
]),
|
|
4892
|
+
style: b([{ zIndex: N(r).contentZIndex.value }, N(n).style]),
|
|
4903
4893
|
onClick: t[0] ||= G(() => {}, ["stop"])
|
|
4904
4894
|
}, [O(e.$slots, "default")], 6)) : s("", !0)]),
|
|
4905
4895
|
_: 3
|
|
@@ -4937,7 +4927,6 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
4937
4927
|
default: !0
|
|
4938
4928
|
},
|
|
4939
4929
|
placement: { default: "right" },
|
|
4940
|
-
size: { default: "300px" },
|
|
4941
4930
|
title: { default: "" },
|
|
4942
4931
|
closable: {
|
|
4943
4932
|
type: Boolean,
|
|
@@ -5053,7 +5042,6 @@ var tt = ["for"], nt = /* @__PURE__ */ m({
|
|
|
5053
5042
|
showOverlay: x.showOverlay,
|
|
5054
5043
|
closeByOverlay: x.closeByOverlay,
|
|
5055
5044
|
placement: x.placement,
|
|
5056
|
-
size: x.size,
|
|
5057
5045
|
closable: x.closable,
|
|
5058
5046
|
handleClose: R,
|
|
5059
5047
|
handleOverlayClick: L
|
|
@@ -10707,7 +10695,7 @@ var Ga = J(/* @__PURE__ */ m({
|
|
|
10707
10695
|
StTooltipContainer: co,
|
|
10708
10696
|
StTooltipContent: uo,
|
|
10709
10697
|
StTooltipTrigger: lo
|
|
10710
|
-
}), mo = co, ho = uo, go = lo, _o = Y(Ye, { StTreeNode: qe }), vo = qe, yo = /* @__PURE__ */ "!grid-rows-[0fr] !translate-none -bottom-1 -left-1 -mb-px -ml-px -mr-px -mt-px -right-1 -top-1 -translate-x-1/2 -translate-x-full -translate-y-1/2 -translate-y-full absolute active:cursor-grabbing active:opacity-80 active:scale-110 after:absolute after:bg-primary after:bottom-0 after:content-empty after:h-0.5 after:left-0 after:right-0 after:top-0 after:w-0.5 animate-pulse animate-spin aspect-square backdrop-blur-16 before:absolute before:bg-primary before:bottom-1 before:content-empty before:left-0 before:rounded before:top-1 before:w-0.75 bg-accent bg-background bg-black/50 bg-black/80 bg-border bg-error bg-error/10 bg-green-500 bg-info bg-info/10 bg-input bg-input/30 bg-muted bg-popover bg-primary bg-primary/10 bg-red-500 bg-secondary bg-secondary-foreground/30 bg-secondary/50 bg-sidebar bg-sidebar-primary/10 bg-success bg-success/10 bg-transparent bg-warning bg-warning/10 bg-white bg-white/10 block block-end block-start border-2 border-accent-foreground/30 border-b border-b-0 border-b-transparent border-border border-dashed border-dotted border-error border-info border-input border-l border-l-0 border-l-transparent border-none border-primary border-r border-r-0 border-r-transparent border-solid border-success border-t border-t-0 border-t-transparent border-warning bottom-0 bottom-2 bottom-4 bottom-center bottom-full bottom-left bottom-right box-border cursor-ew-resize cursor-grab cursor-grabbing cursor-not-allowed cursor-ns-resize cursor-pointer data-[active=true]:h-10.25 data-[active=true]:w-10.25 disabled:cursor-not-allowed disabled:opacity-50 duration-100 duration-150 duration-160 duration-200 duration-250 duration-300 ease-[cubic-bezier(0.16,1,0.3,1)] ease-in ease-in-out ease-out ew-resize fill-none fixed flex flex-1 flex-col flex-col-reverse flex-row flex-row-reverse flex-shrink-0 flex-wrap focus-within:border-ring focus-within:ring-2 focus-within:ring-offset-0 focus-within:ring-offset-background focus-within:ring-ring font-600 font-medium font-semibold gap-0 gap-1 gap-1.5 gap-2 gap-3 gap-default gap-lg gap-sm gap-xs grid grid-rows-[1fr] group-has-[>[data-align=block-end]]/st-input-group:py-default group-has-[>[data-align=block-start]]/st-input-group:py-default group-has-[>[data-align=inline-end]]/st-input-group:pr-default group-has-[>[data-align=inline-start]]/st-input-group:pl-default group-hover/slider:opacity-100 group/st-input-group h-0.75 h-1.5 h-10 h-2 h-2.25 h-4 h-4.5 h-5 h-50 h-6 h-6.25 h-8 h-9 h-auto h-default h-full h-px h-screen h-xs h-xxs hidden hover:bg-accent hover:bg-error/10 hover:bg-error/20 hover:bg-error/90 hover:bg-info/10 hover:bg-info/20 hover:bg-info/90 hover:bg-muted hover:bg-primary/10 hover:bg-primary/20 hover:bg-primary/90 hover:bg-secondary/50 hover:bg-secondary/70 hover:bg-secondary/80 hover:bg-sidebar-accent hover:bg-sidebar-primary/20 hover:bg-success/10 hover:bg-success/20 hover:bg-success/90 hover:bg-warning/10 hover:bg-warning/20 hover:bg-warning/90 hover:bg-white/20 hover:border-muted-foreground/20 hover:border-ring hover:scale-100 hover:scale-110 hover:shadow-md hover:shadow-sm hover:text-foreground hover:text-muted-foreground hover:text-sidebar-accent-foreground i-lucide-calendar i-lucide-calendar-clock i-lucide-check i-lucide-chevron-down i-lucide-chevron-left i-lucide-chevron-right i-lucide-chevrons-left i-lucide-chevrons-right i-lucide-clock i-lucide-eye i-lucide-eye-off i-lucide-image i-lucide-image-off i-lucide-inbox i-lucide-loader-2 i-lucide-maximize i-lucide-minimize i-lucide-minus i-lucide-plus i-lucide-x inline-end inline-flex inline-start inset-0 items-center items-start justify-between justify-center justify-end leading-5 leading-none left-0 left-1/2 left-2 left-4 left-bottom left-center left-top max-h-60 max-h-[90%] max-w-80 max-w-[90%] max-w-full mb-2 min-h-0 min-w-0 min-w-10 min-w-35 ml-2 ml-3 ml-auto mr-2 mr-lg mt-1 mt-2 mt-3 mt-xl mx-2 my-1 ns-resize object-contain object-cover object-fill object-none object-scale-down opacity-0 opacity-100 opacity-40 opacity-50 order-first order-last outline-none overflow-auto overflow-hidden overflow-x-auto overflow-x-hidden overflow-y-auto overflow-y-hidden p-0.5 p-1 p-3 p-4 p-default pb-0.5 peer-disabled:cursor-not-allowed peer-disabled:opacity-70 pl-lg pl-sm placeholder:text-muted-foreground pointer-events-none pr-0 pr-1.5 pr-lg pr-sm prefix-icon pressed-change pt-1.5 px-1 px-1.5 px-2 px-3 px-4 px-lg px-sm px-xl py-1 py-1.25 py-1.5 py-2 py-8 py-default py-sm py-xs relative resize resize-none right-0 right-2 right-4 right-bottom right-center right-top rotate-180 rotate-45 rotate-90 rounded-b-md rounded-full rounded-l-md rounded-lg rounded-md rounded-none rounded-r-md rounded-sm rounded-t-md scale-0 scale-100 scale-90 scale-94 scale-96 scale-down scroll-mt-0 scrollbar-thin scrollbar-thumb-scrollbar scrollbar-track-transparent select-none self-stretch shadow-lg shadow-sm space-y-2 stroke-secondary suffix-icon text-2.5 text-2xl text-3 text-3.25 text-4 text-8 text-accent-foreground text-center text-danger text-error text-error-foreground text-foreground text-green-500 text-info text-info-foreground text-muted-foreground text-primary text-primary-foreground text-red-500 text-right text-secondary-foreground text-sidebar-foreground text-sidebar-primary text-sm text-success text-success-foreground text-warning text-warning-foreground text-white text-xl text-xs top-0 top-1/2 top-2 top-20 top-4 top-center top-left top-right tracking-wide transition-[grid-template-rows] transition-[opacity,height,width,transform] transition-[transform,opacity] transition-all transition-colors transition-opacity transition-shadow transition-transform translate-x-0 translate-x-[calc(-50%+0.5px)] translate-x-full translate-y-[calc(-50%+0.5px)] translate-y-full truncate uppercase visible w-0.75 w-1.5 w-10 w-2 w-2.25 w-4 w-4.5 w-45 w-5 w-5% w-50 w-6.25 w-8 w-default w-full w-px w-screen w-xl whitespace-nowrap z-1 z-10 z-1000 z-50 z-999".split(" "), bo = {
|
|
10698
|
+
}), mo = co, ho = uo, go = lo, _o = Y(Ye, { StTreeNode: qe }), vo = qe, yo = /* @__PURE__ */ "!grid-rows-[0fr] !translate-none -bottom-1 -left-1 -mb-px -ml-px -mr-px -mt-px -right-1 -top-1 -translate-x-1/2 -translate-x-full -translate-y-1/2 -translate-y-full absolute active:cursor-grabbing active:opacity-80 active:scale-110 after:absolute after:bg-primary after:bottom-0 after:content-empty after:h-0.5 after:left-0 after:right-0 after:top-0 after:w-0.5 animate-pulse animate-spin aspect-square backdrop-blur-16 before:absolute before:bg-primary before:bottom-1 before:content-empty before:left-0 before:rounded before:top-1 before:w-0.75 bg-accent bg-background bg-black/50 bg-black/80 bg-border bg-error bg-error/10 bg-green-500 bg-info bg-info/10 bg-input bg-input/30 bg-muted bg-popover bg-primary bg-primary/10 bg-red-500 bg-secondary bg-secondary-foreground/30 bg-secondary/50 bg-sidebar bg-sidebar-primary/10 bg-success bg-success/10 bg-transparent bg-warning bg-warning/10 bg-white bg-white/10 block block-end block-start border-2 border-accent-foreground/30 border-b border-b-0 border-b-transparent border-border border-dashed border-dotted border-error border-info border-input border-l border-l-0 border-l-transparent border-none border-primary border-r border-r-0 border-r-transparent border-solid border-success border-t border-t-0 border-t-transparent border-warning bottom-0 bottom-2 bottom-4 bottom-center bottom-full bottom-left bottom-right box-border cursor-ew-resize cursor-grab cursor-grabbing cursor-not-allowed cursor-ns-resize cursor-pointer data-[active=true]:h-10.25 data-[active=true]:w-10.25 disabled:cursor-not-allowed disabled:opacity-50 duration-100 duration-150 duration-160 duration-200 duration-250 duration-300 ease-[cubic-bezier(0.16,1,0.3,1)] ease-in ease-in-out ease-out ew-resize fill-none fixed flex flex-1 flex-col flex-col-reverse flex-row flex-row-reverse flex-shrink-0 flex-wrap focus-within:border-ring focus-within:ring-2 focus-within:ring-offset-0 focus-within:ring-offset-background focus-within:ring-ring font-600 font-medium font-semibold gap-0 gap-1 gap-1.5 gap-2 gap-3 gap-default gap-lg gap-sm gap-xs grid grid-rows-[1fr] group-has-[>[data-align=block-end]]/st-input-group:py-default group-has-[>[data-align=block-start]]/st-input-group:py-default group-has-[>[data-align=inline-end]]/st-input-group:pr-default group-has-[>[data-align=inline-start]]/st-input-group:pl-default group-hover/slider:opacity-100 group/st-input-group h-0.75 h-1.5 h-10 h-2 h-2.25 h-4 h-4.5 h-5 h-50 h-6 h-6.25 h-60 h-8 h-9 h-auto h-default h-full h-px h-screen h-xs h-xxs hidden hover:bg-accent hover:bg-error/10 hover:bg-error/20 hover:bg-error/90 hover:bg-info/10 hover:bg-info/20 hover:bg-info/90 hover:bg-muted hover:bg-primary/10 hover:bg-primary/20 hover:bg-primary/90 hover:bg-secondary/50 hover:bg-secondary/70 hover:bg-secondary/80 hover:bg-sidebar-accent hover:bg-sidebar-primary/20 hover:bg-success/10 hover:bg-success/20 hover:bg-success/90 hover:bg-warning/10 hover:bg-warning/20 hover:bg-warning/90 hover:bg-white/20 hover:border-muted-foreground/20 hover:border-ring hover:scale-100 hover:scale-110 hover:shadow-md hover:shadow-sm hover:text-foreground hover:text-muted-foreground hover:text-sidebar-accent-foreground i-lucide-calendar i-lucide-calendar-clock i-lucide-check i-lucide-chevron-down i-lucide-chevron-left i-lucide-chevron-right i-lucide-chevrons-left i-lucide-chevrons-right i-lucide-clock i-lucide-eye i-lucide-eye-off i-lucide-image i-lucide-image-off i-lucide-inbox i-lucide-loader-2 i-lucide-maximize i-lucide-minimize i-lucide-minus i-lucide-plus i-lucide-x inline-end inline-flex inline-start inset-0 items-center items-start justify-between justify-center justify-end leading-5 leading-none left-0 left-1/2 left-2 left-4 left-bottom left-center left-top max-h-60 max-h-[90%] max-w-80 max-w-[90%] max-w-full mb-2 min-h-0 min-w-0 min-w-10 min-w-35 ml-2 ml-3 ml-auto mr-2 mr-lg mt-1 mt-2 mt-3 mt-xl mx-2 my-1 ns-resize object-contain object-cover object-fill object-none object-scale-down opacity-0 opacity-100 opacity-40 opacity-50 order-first order-last outline-none overflow-auto overflow-hidden overflow-x-auto overflow-x-hidden overflow-y-auto overflow-y-hidden p-0.5 p-1 p-3 p-4 p-default pb-0.5 peer-disabled:cursor-not-allowed peer-disabled:opacity-70 pl-lg pl-sm placeholder:text-muted-foreground pointer-events-none pr-0 pr-1.5 pr-lg pr-sm prefix-icon pressed-change pt-1.5 px-1 px-1.5 px-2 px-3 px-4 px-lg px-sm px-xl py-1 py-1.25 py-1.5 py-2 py-8 py-default py-sm py-xs relative resize resize-none right-0 right-2 right-4 right-bottom right-center right-top rotate-180 rotate-45 rotate-90 rounded-b-md rounded-full rounded-l-md rounded-lg rounded-md rounded-none rounded-r-md rounded-sm rounded-t-md scale-0 scale-100 scale-90 scale-94 scale-96 scale-down scroll-mt-0 scrollbar-thin scrollbar-thumb-scrollbar scrollbar-track-transparent select-none self-stretch shadow-lg shadow-sm space-y-2 stroke-secondary suffix-icon text-2.5 text-2xl text-3 text-3.25 text-4 text-8 text-accent-foreground text-center text-danger text-error text-error-foreground text-foreground text-green-500 text-info text-info-foreground text-muted-foreground text-primary text-primary-foreground text-red-500 text-right text-secondary-foreground text-sidebar-foreground text-sidebar-primary text-sm text-success text-success-foreground text-warning text-warning-foreground text-white text-xl text-xs top-0 top-1/2 top-2 top-20 top-4 top-center top-left top-right tracking-wide transition-[grid-template-rows] transition-[opacity,height,width,transform] transition-[transform,opacity] transition-all transition-colors transition-opacity transition-shadow transition-transform translate-x-0 translate-x-[calc(-50%+0.5px)] translate-x-full translate-y-[calc(-50%+0.5px)] translate-y-full truncate uppercase visible w-0.75 w-1.5 w-10 w-120 w-2 w-2.25 w-4 w-4.5 w-45 w-5 w-5% w-50 w-6.25 w-8 w-80 w-default w-full w-px w-screen w-xl whitespace-nowrap z-1 z-10 z-1000 z-50 z-999".split(" "), bo = {
|
|
10711
10699
|
colors: {
|
|
10712
10700
|
background: "var(--background)",
|
|
10713
10701
|
foreground: "var(--foreground)",
|