@lglab/compose-ui 0.5.0 → 0.6.0

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.
@@ -0,0 +1,33 @@
1
+ import { Meter as BaseMeter } from '@base-ui/react/meter';
2
+ import * as React from 'react';
3
+ type MeterRootProps = React.ComponentProps<typeof BaseMeter.Root> & {
4
+ /** Whether to animate the meter from 0 to its value on mount */
5
+ animated?: boolean;
6
+ };
7
+ declare const MeterRoot: {
8
+ ({ className, animated, value, ...props }: MeterRootProps): import("react/jsx-runtime").JSX.Element;
9
+ displayName: string;
10
+ };
11
+ type MeterTrackProps = React.ComponentProps<typeof BaseMeter.Track>;
12
+ declare const MeterTrack: {
13
+ ({ className, ...props }: MeterTrackProps): import("react/jsx-runtime").JSX.Element;
14
+ displayName: string;
15
+ };
16
+ type MeterIndicatorProps = React.ComponentProps<typeof BaseMeter.Indicator>;
17
+ declare const MeterIndicator: {
18
+ ({ className, ...props }: MeterIndicatorProps): import("react/jsx-runtime").JSX.Element;
19
+ displayName: string;
20
+ };
21
+ type MeterValueProps = React.ComponentProps<typeof BaseMeter.Value>;
22
+ declare const MeterValue: {
23
+ ({ className, ...props }: MeterValueProps): import("react/jsx-runtime").JSX.Element;
24
+ displayName: string;
25
+ };
26
+ type MeterLabelProps = React.ComponentProps<typeof BaseMeter.Label>;
27
+ declare const MeterLabel: {
28
+ ({ className, ...props }: MeterLabelProps): import("react/jsx-runtime").JSX.Element;
29
+ displayName: string;
30
+ };
31
+ export { MeterRoot, MeterTrack, MeterIndicator, MeterValue, MeterLabel };
32
+ export type { MeterRootProps, MeterTrackProps, MeterIndicatorProps, MeterValueProps, MeterLabelProps, };
33
+ //# sourceMappingURL=meter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"meter.d.ts","sourceRoot":"","sources":["../../src/components/meter.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,IAAI,SAAS,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAQ9B,KAAK,cAAc,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,SAAS,CAAC,IAAI,CAAC,GAAG;IAClE,gEAAgE;IAChE,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAED,QAAA,MAAM,SAAS;+CAA8C,cAAc;;CAuB1E,CAAA;AAQD,KAAK,eAAe,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,SAAS,CAAC,KAAK,CAAC,CAAA;AAEnE,QAAA,MAAM,UAAU;8BAA6B,eAAe;;CAU3D,CAAA;AAQD,KAAK,mBAAmB,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAA;AAE3E,QAAA,MAAM,cAAc;8BAA6B,mBAAmB;;CAUnE,CAAA;AAQD,KAAK,eAAe,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,SAAS,CAAC,KAAK,CAAC,CAAA;AAEnE,QAAA,MAAM,UAAU;8BAA6B,eAAe;;CAO3D,CAAA;AAQD,KAAK,eAAe,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,SAAS,CAAC,KAAK,CAAC,CAAA;AAEnE,QAAA,MAAM,UAAU;8BAA6B,eAAe;;CAO3D,CAAA;AAQD,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,UAAU,EAAE,CAAA;AAExE,YAAY,EACV,cAAc,EACd,eAAe,EACf,mBAAmB,EACnB,eAAe,EACf,eAAe,GAChB,CAAA"}
package/dist/index.d.ts CHANGED
@@ -8,6 +8,8 @@ export { TabsRoot, TabsList, TabsTab, TabsIndicator, TabsPanel } from './compone
8
8
  export { DialogRoot, DialogTrigger, DialogPortal, DialogBackdrop, DialogPopup, DialogTitle, DialogDescription, DialogClose, DialogHeader, DialogFooter, } from './components/dialog';
9
9
  export { DrawerRoot, DrawerTrigger, DrawerPortal, DrawerBackdrop, DrawerPopup, DrawerTitle, DrawerDescription, DrawerClose, DrawerHeader, DrawerContent, DrawerFooter, } from './components/drawer';
10
10
  export { AccordionRoot, AccordionItem, AccordionHeader, AccordionTrigger, AccordionPanel, } from './components/accordion';
11
+ export { MeterRoot, MeterTrack, MeterIndicator, MeterValue, MeterLabel, } from './components/meter';
12
+ export { Meter } from '@base-ui/react/meter';
11
13
  export type { ButtonProps } from './components/button';
12
14
  export type { AlertDialogRootProps, AlertDialogTriggerProps, AlertDialogPortalProps, AlertDialogBackdropProps, AlertDialogViewportProps, AlertDialogPopupProps, AlertDialogTitleProps, AlertDialogDescriptionProps, AlertDialogCloseProps, } from './components/alert-dialog';
13
15
  export type { AvatarRootProps, AvatarImageProps, AvatarFallbackProps, AvatarStackProps, } from './components/avatar';
@@ -16,4 +18,5 @@ export type { TabsRootProps, TabsListProps, TabsTabProps, TabsIndicatorProps, Ta
16
18
  export type { DialogRootProps, DialogTriggerProps, DialogPortalProps, DialogBackdropProps, DialogPopupProps, DialogTitleProps, DialogDescriptionProps, DialogCloseProps, DialogHeaderProps, DialogFooterProps, } from './components/dialog';
17
19
  export type { DrawerRootProps, DrawerTriggerProps, DrawerPortalProps, DrawerBackdropProps, DrawerPopupProps, DrawerTitleProps, DrawerDescriptionProps, DrawerCloseProps, DrawerHeaderProps, DrawerContentProps, DrawerFooterProps, } from './components/drawer';
18
20
  export type { AccordionRootProps, AccordionItemProps, AccordionHeaderProps, AccordionTriggerProps, AccordionPanelProps, } from './components/accordion';
21
+ export type { MeterRootProps, MeterTrackProps, MeterIndicatorProps, MeterValueProps, MeterLabelProps, } from './components/meter';
19
22
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAC5C,OAAO,EACL,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACnB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,gBAAgB,GACjB,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAA;AACzD,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AAC1F,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAA;AAC9C,OAAO,EACL,cAAc,EACd,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACnB,eAAe,EACf,gBAAgB,GACjB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AACzF,OAAO,EACL,UAAU,EACV,aAAa,EACb,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,iBAAiB,EACjB,WAAW,EACX,YAAY,EACZ,YAAY,GACb,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EACL,UAAU,EACV,aAAa,EACb,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,iBAAiB,EACjB,WAAW,EACX,YAAY,EACZ,aAAa,EACb,YAAY,GACb,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EACL,aAAa,EACb,aAAa,EACb,eAAe,EACf,gBAAgB,EAChB,cAAc,GACf,MAAM,wBAAwB,CAAA;AAE/B,YAAY,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACtD,YAAY,EACV,oBAAoB,EACpB,uBAAuB,EACvB,sBAAsB,EACtB,wBAAwB,EACxB,wBAAwB,EACxB,qBAAqB,EACrB,qBAAqB,EACrB,2BAA2B,EAC3B,qBAAqB,GACtB,MAAM,2BAA2B,CAAA;AAClC,YAAY,EACV,eAAe,EACf,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,GACjB,MAAM,qBAAqB,CAAA;AAC5B,YAAY,EACV,mBAAmB,EACnB,uBAAuB,EACvB,sBAAsB,EACtB,wBAAwB,EACxB,oBAAoB,EACpB,qBAAqB,GACtB,MAAM,0BAA0B,CAAA;AACjC,YAAY,EACV,aAAa,EACb,aAAa,EACb,YAAY,EACZ,kBAAkB,EAClB,cAAc,GACf,MAAM,mBAAmB,CAAA;AAC1B,YAAY,EACV,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,gBAAgB,EAChB,iBAAiB,EACjB,iBAAiB,GAClB,MAAM,qBAAqB,CAAA;AAC5B,YAAY,EACV,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,GAClB,MAAM,qBAAqB,CAAA;AAC5B,YAAY,EACV,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,GACpB,MAAM,wBAAwB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.es.js CHANGED
@@ -1,19 +1,21 @@
1
1
  "use client";
2
- import { jsx as t, jsxs as x } from "react/jsx-runtime";
3
- import { Button as T } from "@base-ui/react/button";
4
- import { cva as n } from "class-variance-authority";
5
- import { clsx as z } from "clsx";
6
- import { twMerge as P } from "tailwind-merge";
7
- import { AlertDialog as i } from "@base-ui/react/alert-dialog";
8
- import { AlertDialog as Je } from "@base-ui/react/alert-dialog";
9
- import { Avatar as b } from "@base-ui/react/avatar";
10
- import { Avatar as Oe } from "@base-ui/react/avatar";
11
- import * as h from "react";
12
- import { ScrollArea as c } from "@base-ui/react/scroll-area";
13
- import { Tabs as p } from "@base-ui/react/tabs";
14
- import { Dialog as l } from "@base-ui/react/dialog";
15
- import { Accordion as f } from "@base-ui/react/accordion";
16
- const d = n(
2
+ import { jsx as t, jsxs as D } from "react/jsx-runtime";
3
+ import { Button as z } from "@base-ui/react/button";
4
+ import { cva as d } from "class-variance-authority";
5
+ import { clsx as P } from "clsx";
6
+ import { twMerge as V } from "tailwind-merge";
7
+ import { AlertDialog as n } from "@base-ui/react/alert-dialog";
8
+ import { AlertDialog as Ye } from "@base-ui/react/alert-dialog";
9
+ import { Avatar as h } from "@base-ui/react/avatar";
10
+ import { Avatar as ea } from "@base-ui/react/avatar";
11
+ import * as N from "react";
12
+ import { ScrollArea as m } from "@base-ui/react/scroll-area";
13
+ import { Tabs as f } from "@base-ui/react/tabs";
14
+ import { Dialog as s } from "@base-ui/react/dialog";
15
+ import { Accordion as b } from "@base-ui/react/accordion";
16
+ import { Meter as y } from "@base-ui/react/meter";
17
+ import { Meter as ta } from "@base-ui/react/meter";
18
+ const u = d(
17
19
  [
18
20
  "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive"
19
21
  ],
@@ -43,44 +45,44 @@ const d = n(
43
45
  }
44
46
  );
45
47
  function r(...e) {
46
- return P(z(e));
48
+ return V(P(e));
47
49
  }
48
- const C = ({
50
+ const R = ({
49
51
  className: e,
50
52
  variant: a,
51
53
  size: o,
52
- disabled: s,
53
- children: u,
54
- ...m
54
+ disabled: l,
55
+ children: i,
56
+ ...c
55
57
  }) => /* @__PURE__ */ t(
56
- T,
58
+ z,
57
59
  {
58
- className: r(d({ variant: a, size: o }), e),
59
- disabled: s,
60
- ...m,
61
- children: u
60
+ className: r(u({ variant: a, size: o }), e),
61
+ disabled: l,
62
+ ...c,
63
+ children: i
62
64
  }
63
65
  );
64
- C.displayName = "Button";
65
- const R = (e) => /* @__PURE__ */ t(i.Root, { ...e });
66
- R.displayName = "AlertDialogRoot";
67
- const V = ({
66
+ R.displayName = "Button";
67
+ const C = (e) => /* @__PURE__ */ t(n.Root, { ...e });
68
+ C.displayName = "AlertDialogRoot";
69
+ const S = ({
68
70
  className: e,
69
71
  variant: a,
70
72
  size: o,
71
- ...s
73
+ ...l
72
74
  }) => /* @__PURE__ */ t(
73
- i.Trigger,
75
+ n.Trigger,
74
76
  {
75
- className: r(d({ variant: a, size: o }), e),
76
- ...s
77
+ className: r(u({ variant: a, size: o }), e),
78
+ ...l
77
79
  }
78
80
  );
79
- V.displayName = "AlertDialogTrigger";
80
- const S = (e) => /* @__PURE__ */ t(i.Portal, { ...e });
81
- S.displayName = "AlertDialogPortal";
82
- const B = ({ className: e, ...a }) => /* @__PURE__ */ t(
83
- i.Backdrop,
81
+ S.displayName = "AlertDialogTrigger";
82
+ const F = (e) => /* @__PURE__ */ t(n.Portal, { ...e });
83
+ F.displayName = "AlertDialogPortal";
84
+ const M = ({ className: e, ...a }) => /* @__PURE__ */ t(
85
+ n.Backdrop,
84
86
  {
85
87
  className: r(
86
88
  "fixed inset-0 z-50 bg-black/50 backdrop-blur-sm",
@@ -91,16 +93,16 @@ const B = ({ className: e, ...a }) => /* @__PURE__ */ t(
91
93
  ...a
92
94
  }
93
95
  );
94
- B.displayName = "AlertDialogBackdrop";
95
- const j = ({ className: e, ...a }) => /* @__PURE__ */ t(
96
- i.Viewport,
96
+ M.displayName = "AlertDialogBackdrop";
97
+ const B = ({ className: e, ...a }) => /* @__PURE__ */ t(
98
+ n.Viewport,
97
99
  {
98
100
  className: r("fixed inset-0 z-50 flex items-center justify-center p-4", e),
99
101
  ...a
100
102
  }
101
103
  );
102
- j.displayName = "AlertDialogViewport";
103
- const F = n(
104
+ B.displayName = "AlertDialogViewport";
105
+ const I = d(
104
106
  [
105
107
  "fixed left-1/2 top-1/2 z-50 -translate-x-1/2 -translate-y-1/2",
106
108
  "w-full max-w-[calc(100vw-2rem)] rounded-lg border border-border bg-background p-6 shadow-lg",
@@ -124,38 +126,38 @@ const F = n(
124
126
  size: "default"
125
127
  }
126
128
  }
127
- ), I = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(
128
- i.Popup,
129
+ ), j = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(
130
+ n.Popup,
129
131
  {
130
- className: r(F({ size: a }), e),
132
+ className: r(I({ size: a }), e),
131
133
  ...o
132
134
  }
133
135
  );
134
- I.displayName = "AlertDialogPopup";
136
+ j.displayName = "AlertDialogPopup";
135
137
  const H = ({ className: e, ...a }) => /* @__PURE__ */ t(
136
- i.Title,
138
+ n.Title,
137
139
  {
138
140
  className: r("text-lg font-semibold leading-none tracking-tight", e),
139
141
  ...a
140
142
  }
141
143
  );
142
144
  H.displayName = "AlertDialogTitle";
143
- const L = ({ className: e, ...a }) => /* @__PURE__ */ t(i.Description, { className: r("mt-2", e), ...a });
145
+ const L = ({ className: e, ...a }) => /* @__PURE__ */ t(n.Description, { className: r("mt-2", e), ...a });
144
146
  L.displayName = "AlertDialogDescription";
145
- const _ = ({
147
+ const q = ({
146
148
  className: e,
147
149
  variant: a,
148
150
  size: o,
149
- ...s
151
+ ...l
150
152
  }) => /* @__PURE__ */ t(
151
- i.Close,
153
+ n.Close,
152
154
  {
153
- className: r(d({ variant: a ?? "outline", size: o }), e),
154
- ...s
155
+ className: r(u({ variant: a ?? "outline", size: o }), e),
156
+ ...l
155
157
  }
156
158
  );
157
- _.displayName = "AlertDialogClose";
158
- const w = n(
159
+ q.displayName = "AlertDialogClose";
160
+ const A = d(
159
161
  [
160
162
  "relative flex shrink-0 items-center justify-center overflow-hidden rounded-full",
161
163
  "bg-muted text-foreground",
@@ -173,18 +175,18 @@ const w = n(
173
175
  size: "default"
174
176
  }
175
177
  }
176
- ), D = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(b.Root, { className: r(w({ size: a }), e), ...o });
177
- D.displayName = "AvatarRoot";
178
- const M = ({ className: e, ...a }) => /* @__PURE__ */ t(
179
- b.Image,
178
+ ), k = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(h.Root, { className: r(A({ size: a }), e), ...o });
179
+ k.displayName = "AvatarRoot";
180
+ const _ = ({ className: e, ...a }) => /* @__PURE__ */ t(
181
+ h.Image,
180
182
  {
181
183
  className: r("aspect-square h-full w-full object-cover", e),
182
184
  ...a
183
185
  }
184
186
  );
185
- M.displayName = "AvatarImage";
186
- const q = ({ className: e, ...a }) => /* @__PURE__ */ t(
187
- b.Fallback,
187
+ _.displayName = "AvatarImage";
188
+ const E = ({ className: e, ...a }) => /* @__PURE__ */ t(
189
+ h.Fallback,
188
190
  {
189
191
  className: r(
190
192
  "flex h-full w-full items-center justify-center font-medium",
@@ -193,27 +195,27 @@ const q = ({ className: e, ...a }) => /* @__PURE__ */ t(
193
195
  ...a
194
196
  }
195
197
  );
196
- q.displayName = "AvatarFallback";
197
- const E = ({
198
+ E.displayName = "AvatarFallback";
199
+ const $ = ({
198
200
  "aria-label": e,
199
201
  maxVisible: a,
200
202
  className: o,
201
- children: s
203
+ children: l
202
204
  }) => {
203
- const u = h.Children.toArray(s), m = u.length, y = a !== void 0 ? Math.min(a, m) : m, v = m - y, A = u.slice(0, y), k = (() => {
204
- const g = u[0];
205
- return h.isValidElement(g) && g.type === D ? g.props.size ?? "default" : "default";
205
+ const i = N.Children.toArray(l), c = i.length, g = a !== void 0 ? Math.min(a, c) : c, v = c - g, x = i.slice(0, g), T = (() => {
206
+ const p = i[0];
207
+ return N.isValidElement(p) && p.type === k ? p.props.size ?? "default" : "default";
206
208
  })();
207
- return /* @__PURE__ */ x("ul", { "aria-label": e, className: r("flex -space-x-2", o), children: [
208
- A.map((g, N) => /* @__PURE__ */ t("li", { children: g }, N)),
209
- v > 0 && /* @__PURE__ */ t("li", { children: /* @__PURE__ */ x(
209
+ return /* @__PURE__ */ D("ul", { "aria-label": e, className: r("flex -space-x-2", o), children: [
210
+ x.map((p, w) => /* @__PURE__ */ t("li", { children: p }, w)),
211
+ v > 0 && /* @__PURE__ */ t("li", { children: /* @__PURE__ */ D(
210
212
  "span",
211
213
  {
212
214
  className: r(
213
215
  "relative flex shrink-0 items-center justify-center overflow-hidden rounded-full",
214
216
  "bg-muted text-foreground border-2 border-background",
215
217
  "font-medium",
216
- w({ size: k })
218
+ A({ size: T })
217
219
  ),
218
220
  children: [
219
221
  "+",
@@ -223,25 +225,25 @@ const E = ({
223
225
  ) })
224
226
  ] });
225
227
  };
226
- E.displayName = "AvatarStack";
227
- const $ = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Root, { className: r("relative", e), ...a });
228
- $.displayName = "ScrollAreaRoot";
229
- const G = ({ className: e, ...a }) => /* @__PURE__ */ t(
230
- c.Viewport,
228
+ $.displayName = "AvatarStack";
229
+ const G = ({ className: e, ...a }) => /* @__PURE__ */ t(m.Root, { className: r("relative", e), ...a });
230
+ G.displayName = "ScrollAreaRoot";
231
+ const J = ({ className: e, ...a }) => /* @__PURE__ */ t(
232
+ m.Viewport,
231
233
  {
232
234
  className: r("h-full overscroll-contain pr-3", e),
233
235
  ...a
234
236
  }
235
237
  );
236
- G.displayName = "ScrollAreaViewport";
237
- const J = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Content, { className: r("min-w-full", e), ...a });
238
- J.displayName = "ScrollAreaContent";
239
- const K = ({
238
+ J.displayName = "ScrollAreaViewport";
239
+ const K = ({ className: e, ...a }) => /* @__PURE__ */ t(m.Content, { className: r("min-w-full", e), ...a });
240
+ K.displayName = "ScrollAreaContent";
241
+ const O = ({
240
242
  className: e,
241
243
  orientation: a = "vertical",
242
244
  ...o
243
245
  }) => /* @__PURE__ */ t(
244
- c.Scrollbar,
246
+ m.Scrollbar,
245
247
  {
246
248
  className: r(
247
249
  "flex touch-none select-none p-0.5 transition-colors duration-150 ease-out",
@@ -254,9 +256,9 @@ const K = ({
254
256
  ...o
255
257
  }
256
258
  );
257
- K.displayName = "ScrollAreaScrollbar";
258
- const O = ({ className: e, ...a }) => /* @__PURE__ */ t(
259
- c.Thumb,
259
+ O.displayName = "ScrollAreaScrollbar";
260
+ const Q = ({ className: e, ...a }) => /* @__PURE__ */ t(
261
+ m.Thumb,
260
262
  {
261
263
  className: r(
262
264
  "relative flex-1 rounded-full bg-border transition-colors",
@@ -266,12 +268,12 @@ const O = ({ className: e, ...a }) => /* @__PURE__ */ t(
266
268
  ...a
267
269
  }
268
270
  );
269
- O.displayName = "ScrollAreaThumb";
270
- const Q = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Corner, { className: r("bg-muted/50", e), ...a });
271
- Q.displayName = "ScrollAreaCorner";
272
- const U = ({ className: e, ...a }) => /* @__PURE__ */ t(p.Root, { className: r("flex flex-col", e), ...a });
273
- U.displayName = "TabsRoot";
274
- const W = n(
271
+ Q.displayName = "ScrollAreaThumb";
272
+ const U = ({ className: e, ...a }) => /* @__PURE__ */ t(m.Corner, { className: r("bg-muted/50", e), ...a });
273
+ U.displayName = "ScrollAreaCorner";
274
+ const W = ({ className: e, ...a }) => /* @__PURE__ */ t(f.Root, { className: r("flex flex-col", e), ...a });
275
+ W.displayName = "TabsRoot";
276
+ const X = d(
275
277
  ["relative inline-flex w-fit items-center gap-1", "rounded-lg bg-muted p-1"],
276
278
  {
277
279
  variants: {
@@ -284,15 +286,15 @@ const W = n(
284
286
  orientation: "horizontal"
285
287
  }
286
288
  }
287
- ), X = ({ className: e, orientation: a = "horizontal", ...o }) => /* @__PURE__ */ t(
288
- p.List,
289
+ ), Y = ({ className: e, orientation: a = "horizontal", ...o }) => /* @__PURE__ */ t(
290
+ f.List,
289
291
  {
290
- className: r(W({ orientation: a }), e),
292
+ className: r(X({ orientation: a }), e),
291
293
  ...o
292
294
  }
293
295
  );
294
- X.displayName = "TabsList";
295
- const Y = n(
296
+ Y.displayName = "TabsList";
297
+ const Z = d(
296
298
  [
297
299
  "relative z-10 inline-flex items-center justify-center whitespace-nowrap",
298
300
  "rounded-md px-3 py-1.5 text-sm font-medium",
@@ -313,9 +315,9 @@ const Y = n(
313
315
  size: "default"
314
316
  }
315
317
  }
316
- ), Z = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(p.Tab, { className: r(Y({ size: a }), e), ...o });
317
- Z.displayName = "TabsTab";
318
- const ee = n(
318
+ ), ee = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(f.Tab, { className: r(Z({ size: a }), e), ...o });
319
+ ee.displayName = "TabsTab";
320
+ const ae = d(
319
321
  ["absolute rounded-md bg-background shadow-sm", "transition-all duration-200 ease-out"],
320
322
  {
321
323
  variants: {
@@ -328,34 +330,34 @@ const ee = n(
328
330
  orientation: "horizontal"
329
331
  }
330
332
  }
331
- ), ae = ({
333
+ ), te = ({
332
334
  className: e,
333
335
  orientation: a = "horizontal",
334
336
  ...o
335
337
  }) => /* @__PURE__ */ t(
336
- p.Indicator,
338
+ f.Indicator,
337
339
  {
338
- className: r(ee({ orientation: a }), e),
340
+ className: r(ae({ orientation: a }), e),
339
341
  ...o
340
342
  }
341
343
  );
342
- ae.displayName = "TabsIndicator";
343
- const te = ({ className: e, ...a }) => /* @__PURE__ */ t(p.Panel, { className: r("mt-2 ring-offset-background", e), ...a });
344
- te.displayName = "TabsPanel";
345
- const re = (e) => /* @__PURE__ */ t(l.Root, { ...e });
346
- re.displayName = "DialogRoot";
347
- const oe = ({ className: e, variant: a, size: o, ...s }) => /* @__PURE__ */ t(
348
- l.Trigger,
344
+ te.displayName = "TabsIndicator";
345
+ const re = ({ className: e, ...a }) => /* @__PURE__ */ t(f.Panel, { className: r("mt-2 ring-offset-background", e), ...a });
346
+ re.displayName = "TabsPanel";
347
+ const oe = (e) => /* @__PURE__ */ t(s.Root, { ...e });
348
+ oe.displayName = "DialogRoot";
349
+ const le = ({ className: e, variant: a, size: o, ...l }) => /* @__PURE__ */ t(
350
+ s.Trigger,
349
351
  {
350
- className: r(d({ variant: a, size: o }), e),
351
- ...s
352
+ className: r(u({ variant: a, size: o }), e),
353
+ ...l
352
354
  }
353
355
  );
354
- oe.displayName = "DialogTrigger";
355
- const le = (e) => /* @__PURE__ */ t(l.Portal, { ...e });
356
- le.displayName = "DialogPortal";
357
- const se = ({ className: e, ...a }) => /* @__PURE__ */ t(
358
- l.Backdrop,
356
+ le.displayName = "DialogTrigger";
357
+ const se = (e) => /* @__PURE__ */ t(s.Portal, { ...e });
358
+ se.displayName = "DialogPortal";
359
+ const ie = ({ className: e, ...a }) => /* @__PURE__ */ t(
360
+ s.Backdrop,
359
361
  {
360
362
  className: r(
361
363
  "fixed inset-0 z-50 bg-black/50 backdrop-blur-sm",
@@ -366,8 +368,8 @@ const se = ({ className: e, ...a }) => /* @__PURE__ */ t(
366
368
  ...a
367
369
  }
368
370
  );
369
- se.displayName = "DialogBackdrop";
370
- const ie = n(
371
+ ie.displayName = "DialogBackdrop";
372
+ const ne = d(
371
373
  [
372
374
  "fixed left-1/2 top-1/2 z-50 -translate-x-1/2 -translate-y-1/2",
373
375
  "w-full max-w-[calc(100vw-2rem)] rounded-lg border border-border bg-background p-6 shadow-lg",
@@ -391,35 +393,35 @@ const ie = n(
391
393
  size: "default"
392
394
  }
393
395
  }
394
- ), ne = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(
395
- l.Popup,
396
+ ), de = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(
397
+ s.Popup,
396
398
  {
397
- className: r(ie({ size: a }), e),
399
+ className: r(ne({ size: a }), e),
398
400
  ...o
399
401
  }
400
402
  );
401
- ne.displayName = "DialogPopup";
402
- const de = ({ className: e, ...a }) => /* @__PURE__ */ t(
403
- l.Title,
403
+ de.displayName = "DialogPopup";
404
+ const ce = ({ className: e, ...a }) => /* @__PURE__ */ t(
405
+ s.Title,
404
406
  {
405
407
  className: r("text-lg font-semibold leading-none tracking-tight", e),
406
408
  ...a
407
409
  }
408
410
  );
409
- de.displayName = "DialogTitle";
410
- const ce = ({ className: e, ...a }) => /* @__PURE__ */ t(l.Description, { className: r("mt-2", e), ...a });
411
- ce.displayName = "DialogDescription";
412
- const ue = ({ className: e, variant: a, size: o, ...s }) => /* @__PURE__ */ t(
413
- l.Close,
411
+ ce.displayName = "DialogTitle";
412
+ const ue = ({ className: e, ...a }) => /* @__PURE__ */ t(s.Description, { className: r("mt-2", e), ...a });
413
+ ue.displayName = "DialogDescription";
414
+ const me = ({ className: e, variant: a, size: o, ...l }) => /* @__PURE__ */ t(
415
+ s.Close,
414
416
  {
415
- className: r(d({ variant: a ?? "outline", size: o }), e),
416
- ...s
417
+ className: r(u({ variant: a ?? "outline", size: o }), e),
418
+ ...l
417
419
  }
418
420
  );
419
- ue.displayName = "DialogClose";
420
- const me = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("flex flex-col space-y-1 mb-5", e), ...a });
421
- me.displayName = "DialogHeader";
422
- const ge = ({ className: e, ...a }) => /* @__PURE__ */ t(
421
+ me.displayName = "DialogClose";
422
+ const ge = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("flex flex-col space-y-1 mb-5", e), ...a });
423
+ ge.displayName = "DialogHeader";
424
+ const pe = ({ className: e, ...a }) => /* @__PURE__ */ t(
423
425
  "div",
424
426
  {
425
427
  className: r(
@@ -429,21 +431,21 @@ const ge = ({ className: e, ...a }) => /* @__PURE__ */ t(
429
431
  ...a
430
432
  }
431
433
  );
432
- ge.displayName = "DialogFooter";
433
- const pe = (e) => /* @__PURE__ */ t(l.Root, { ...e });
434
- pe.displayName = "DrawerRoot";
435
- const fe = ({ className: e, variant: a, size: o, ...s }) => /* @__PURE__ */ t(
436
- l.Trigger,
434
+ pe.displayName = "DialogFooter";
435
+ const fe = (e) => /* @__PURE__ */ t(s.Root, { ...e });
436
+ fe.displayName = "DrawerRoot";
437
+ const be = ({ className: e, variant: a, size: o, ...l }) => /* @__PURE__ */ t(
438
+ s.Trigger,
437
439
  {
438
- className: r(d({ variant: a, size: o }), e),
439
- ...s
440
+ className: r(u({ variant: a, size: o }), e),
441
+ ...l
440
442
  }
441
443
  );
442
- fe.displayName = "DrawerTrigger";
443
- const be = (e) => /* @__PURE__ */ t(l.Portal, { ...e });
444
- be.displayName = "DrawerPortal";
445
- const ye = ({ className: e, ...a }) => /* @__PURE__ */ t(
446
- l.Backdrop,
444
+ be.displayName = "DrawerTrigger";
445
+ const ye = (e) => /* @__PURE__ */ t(s.Portal, { ...e });
446
+ ye.displayName = "DrawerPortal";
447
+ const ve = ({ className: e, ...a }) => /* @__PURE__ */ t(
448
+ s.Backdrop,
447
449
  {
448
450
  className: r(
449
451
  "fixed inset-0 z-50 bg-black/50 backdrop-blur-sm",
@@ -454,8 +456,8 @@ const ye = ({ className: e, ...a }) => /* @__PURE__ */ t(
454
456
  ...a
455
457
  }
456
458
  );
457
- ye.displayName = "DrawerBackdrop";
458
- const ve = n(
459
+ ve.displayName = "DrawerBackdrop";
460
+ const Ne = d(
459
461
  [
460
462
  "fixed z-50 flex flex-col bg-background p-6 shadow-lg",
461
463
  "transition-transform duration-300 ease-out",
@@ -491,52 +493,52 @@ const ve = n(
491
493
  side: "right"
492
494
  }
493
495
  }
494
- ), Ne = ({ className: e, side: a, ...o }) => /* @__PURE__ */ t(
495
- l.Popup,
496
+ ), xe = ({ className: e, side: a, ...o }) => /* @__PURE__ */ t(
497
+ s.Popup,
496
498
  {
497
- className: r(ve({ side: a }), e),
499
+ className: r(Ne({ side: a }), e),
498
500
  ...o
499
501
  }
500
502
  );
501
- Ne.displayName = "DrawerPopup";
502
- const xe = ({ className: e, ...a }) => /* @__PURE__ */ t(
503
- l.Title,
503
+ xe.displayName = "DrawerPopup";
504
+ const he = ({ className: e, ...a }) => /* @__PURE__ */ t(
505
+ s.Title,
504
506
  {
505
507
  className: r("text-lg font-semibold leading-none tracking-tight", e),
506
508
  ...a
507
509
  }
508
510
  );
509
- xe.displayName = "DrawerTitle";
510
- const he = ({ className: e, ...a }) => /* @__PURE__ */ t(l.Description, { className: r("", e), ...a });
511
- he.displayName = "DrawerDescription";
512
- const we = ({ className: e, variant: a, size: o, ...s }) => /* @__PURE__ */ t(
513
- l.Close,
511
+ he.displayName = "DrawerTitle";
512
+ const we = ({ className: e, ...a }) => /* @__PURE__ */ t(s.Description, { className: r("", e), ...a });
513
+ we.displayName = "DrawerDescription";
514
+ const De = ({ className: e, variant: a, size: o, ...l }) => /* @__PURE__ */ t(
515
+ s.Close,
514
516
  {
515
- className: r(d({ variant: a ?? "outline", size: o }), e),
516
- ...s
517
+ className: r(u({ variant: a ?? "outline", size: o }), e),
518
+ ...l
517
519
  }
518
520
  );
519
- we.displayName = "DrawerClose";
520
- const De = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("flex flex-col space-y-1.5", e), ...a });
521
- De.displayName = "DrawerHeader";
522
- const Ae = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("py-5", e), ...a });
523
- Ae.displayName = "DrawerContent";
524
- const ke = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("", e), ...a });
525
- ke.displayName = "DrawerFooter";
526
- const Te = ({ className: e, ...a }) => /* @__PURE__ */ t(f.Root, { className: r("w-full", e), ...a });
527
- Te.displayName = "AccordionRoot";
528
- const ze = ({ className: e, ...a }) => /* @__PURE__ */ t(
529
- f.Item,
521
+ De.displayName = "DrawerClose";
522
+ const Ae = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("flex flex-col space-y-1.5", e), ...a });
523
+ Ae.displayName = "DrawerHeader";
524
+ const ke = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("py-5", e), ...a });
525
+ ke.displayName = "DrawerContent";
526
+ const Te = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("", e), ...a });
527
+ Te.displayName = "DrawerFooter";
528
+ const ze = ({ className: e, ...a }) => /* @__PURE__ */ t(b.Root, { className: r("w-full", e), ...a });
529
+ ze.displayName = "AccordionRoot";
530
+ const Pe = ({ className: e, ...a }) => /* @__PURE__ */ t(
531
+ b.Item,
530
532
  {
531
533
  className: r("border-b border-border last:border-b-0", e),
532
534
  ...a
533
535
  }
534
536
  );
535
- ze.displayName = "AccordionItem";
536
- const Pe = ({ className: e, ...a }) => /* @__PURE__ */ t(f.Header, { className: r("flex", e), ...a });
537
- Pe.displayName = "AccordionHeader";
538
- const Ce = ({ className: e, children: a, ...o }) => /* @__PURE__ */ t(
539
- f.Trigger,
537
+ Pe.displayName = "AccordionItem";
538
+ const Ve = ({ className: e, ...a }) => /* @__PURE__ */ t(b.Header, { className: r("flex", e), ...a });
539
+ Ve.displayName = "AccordionHeader";
540
+ const Re = ({ className: e, children: a, ...o }) => /* @__PURE__ */ t(
541
+ b.Trigger,
540
542
  {
541
543
  className: r(
542
544
  "flex flex-1 items-center justify-between py-3 font-medium",
@@ -546,9 +548,9 @@ const Ce = ({ className: e, children: a, ...o }) => /* @__PURE__ */ t(
546
548
  children: a
547
549
  }
548
550
  );
549
- Ce.displayName = "AccordionTrigger";
550
- const Re = ({ className: e, ...a }) => /* @__PURE__ */ t(
551
- f.Panel,
551
+ Re.displayName = "AccordionTrigger";
552
+ const Ce = ({ className: e, ...a }) => /* @__PURE__ */ t(
553
+ b.Panel,
552
554
  {
553
555
  className: r(
554
556
  "overflow-hidden duration-200 h-(--accordion-panel-height) transition-height ease-out data-ending-style:h-0 data-starting-style:h-0",
@@ -557,59 +559,119 @@ const Re = ({ className: e, ...a }) => /* @__PURE__ */ t(
557
559
  ...a
558
560
  }
559
561
  );
560
- Re.displayName = "AccordionPanel";
562
+ Ce.displayName = "AccordionPanel";
563
+ const Se = ({ className: e, animated: a, value: o, ...l }) => {
564
+ const i = o ?? 0, [c, g] = N.useState(a ? 0 : i);
565
+ return N.useEffect(() => {
566
+ if (a) {
567
+ const v = requestAnimationFrame(() => {
568
+ const x = requestAnimationFrame(() => {
569
+ g(i ?? 0);
570
+ });
571
+ return () => cancelAnimationFrame(x);
572
+ });
573
+ return () => cancelAnimationFrame(v);
574
+ } else
575
+ g(i ?? 0);
576
+ }, [a, i]), /* @__PURE__ */ t(y.Root, { className: r("w-full", e), value: c, ...l });
577
+ };
578
+ Se.displayName = "MeterRoot";
579
+ const Fe = ({ className: e, ...a }) => /* @__PURE__ */ t(
580
+ y.Track,
581
+ {
582
+ className: r(
583
+ "relative h-2 w-full overflow-hidden rounded-full bg-primary/20",
584
+ e
585
+ ),
586
+ ...a
587
+ }
588
+ );
589
+ Fe.displayName = "MeterTrack";
590
+ const Me = ({ className: e, ...a }) => /* @__PURE__ */ t(
591
+ y.Indicator,
592
+ {
593
+ className: r(
594
+ "h-full rounded-full bg-primary transition-all duration-1000 ease-out-expo",
595
+ e
596
+ ),
597
+ ...a
598
+ }
599
+ );
600
+ Me.displayName = "MeterIndicator";
601
+ const Be = ({ className: e, ...a }) => /* @__PURE__ */ t(
602
+ y.Value,
603
+ {
604
+ className: r("text-sm font-medium text-foreground", e),
605
+ ...a
606
+ }
607
+ );
608
+ Be.displayName = "MeterValue";
609
+ const Ie = ({ className: e, ...a }) => /* @__PURE__ */ t(
610
+ y.Label,
611
+ {
612
+ className: r("text-sm font-medium text-foreground", e),
613
+ ...a
614
+ }
615
+ );
616
+ Ie.displayName = "MeterLabel";
561
617
  export {
562
- Pe as AccordionHeader,
563
- ze as AccordionItem,
564
- Re as AccordionPanel,
565
- Te as AccordionRoot,
566
- Ce as AccordionTrigger,
567
- Je as AlertDialog,
568
- B as AlertDialogBackdrop,
569
- _ as AlertDialogClose,
618
+ Ve as AccordionHeader,
619
+ Pe as AccordionItem,
620
+ Ce as AccordionPanel,
621
+ ze as AccordionRoot,
622
+ Re as AccordionTrigger,
623
+ Ye as AlertDialog,
624
+ M as AlertDialogBackdrop,
625
+ q as AlertDialogClose,
570
626
  L as AlertDialogDescription,
571
- I as AlertDialogPopup,
572
- S as AlertDialogPortal,
573
- R as AlertDialogRoot,
627
+ j as AlertDialogPopup,
628
+ F as AlertDialogPortal,
629
+ C as AlertDialogRoot,
574
630
  H as AlertDialogTitle,
575
- V as AlertDialogTrigger,
576
- j as AlertDialogViewport,
577
- Oe as Avatar,
578
- q as AvatarFallback,
579
- M as AvatarImage,
580
- D as AvatarRoot,
581
- E as AvatarStack,
582
- C as Button,
583
- se as DialogBackdrop,
584
- ue as DialogClose,
585
- ce as DialogDescription,
586
- ge as DialogFooter,
587
- me as DialogHeader,
588
- ne as DialogPopup,
589
- le as DialogPortal,
590
- re as DialogRoot,
591
- de as DialogTitle,
592
- oe as DialogTrigger,
593
- ye as DrawerBackdrop,
594
- we as DrawerClose,
595
- Ae as DrawerContent,
596
- he as DrawerDescription,
597
- ke as DrawerFooter,
598
- De as DrawerHeader,
599
- Ne as DrawerPopup,
600
- be as DrawerPortal,
601
- pe as DrawerRoot,
602
- xe as DrawerTitle,
603
- fe as DrawerTrigger,
604
- J as ScrollAreaContent,
605
- Q as ScrollAreaCorner,
606
- $ as ScrollAreaRoot,
607
- K as ScrollAreaScrollbar,
608
- O as ScrollAreaThumb,
609
- G as ScrollAreaViewport,
610
- ae as TabsIndicator,
611
- X as TabsList,
612
- te as TabsPanel,
613
- U as TabsRoot,
614
- Z as TabsTab
631
+ S as AlertDialogTrigger,
632
+ B as AlertDialogViewport,
633
+ ea as Avatar,
634
+ E as AvatarFallback,
635
+ _ as AvatarImage,
636
+ k as AvatarRoot,
637
+ $ as AvatarStack,
638
+ R as Button,
639
+ ie as DialogBackdrop,
640
+ me as DialogClose,
641
+ ue as DialogDescription,
642
+ pe as DialogFooter,
643
+ ge as DialogHeader,
644
+ de as DialogPopup,
645
+ se as DialogPortal,
646
+ oe as DialogRoot,
647
+ ce as DialogTitle,
648
+ le as DialogTrigger,
649
+ ve as DrawerBackdrop,
650
+ De as DrawerClose,
651
+ ke as DrawerContent,
652
+ we as DrawerDescription,
653
+ Te as DrawerFooter,
654
+ Ae as DrawerHeader,
655
+ xe as DrawerPopup,
656
+ ye as DrawerPortal,
657
+ fe as DrawerRoot,
658
+ he as DrawerTitle,
659
+ be as DrawerTrigger,
660
+ ta as Meter,
661
+ Me as MeterIndicator,
662
+ Ie as MeterLabel,
663
+ Se as MeterRoot,
664
+ Fe as MeterTrack,
665
+ Be as MeterValue,
666
+ K as ScrollAreaContent,
667
+ U as ScrollAreaCorner,
668
+ G as ScrollAreaRoot,
669
+ O as ScrollAreaScrollbar,
670
+ Q as ScrollAreaThumb,
671
+ J as ScrollAreaViewport,
672
+ te as TabsIndicator,
673
+ Y as TabsList,
674
+ re as TabsPanel,
675
+ W as TabsRoot,
676
+ ee as TabsTab
615
677
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lglab/compose-ui",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "A collection of components built with Base UI & Tailwind CSS",
5
5
  "author": "LGLab",
6
6
  "license": "MIT",