@oneplatformdev/ui 0.1.99-beta.231 → 0.1.99-beta.232

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/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## 0.1.99-beta.232 (2026-02-25)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **Combobox:** add support for `defaultNode` props to enhance node configuration ([ffd6dd4](https://github.com/oneplatformdev/core-web/commit/ffd6dd4))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated @oneplatformdev/utils to 0.1.99-beta.232
10
+ - Updated @oneplatformdev/hooks to 0.1.99-beta.232
11
+ - Updated @oneplatformdev/tokens to 0.1.99-beta.232
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Bohdan Radchenko
16
+
1
17
  ## 0.1.99-beta.231 (2026-02-24)
2
18
 
3
19
  ### 🧱 Updated Dependencies
@@ -0,0 +1,12 @@
1
+ import { ComponentPropsWithoutRef } from 'react';
2
+ import { DropdownMenu } from '../DropdownMenu';
3
+ export interface IContextDropdownMenuProps extends ComponentPropsWithoutRef<typeof DropdownMenu> {
4
+ coords: {
5
+ x: number;
6
+ y: number;
7
+ };
8
+ }
9
+ export declare const ContextDropdownMenu: import('react').ForwardRefExoticComponent<IContextDropdownMenuProps & {
10
+ children?: import('react').ReactNode | undefined;
11
+ } & import('react').RefAttributes<HTMLDivElement>>;
12
+ //# sourceMappingURL=ContextDropdownMenu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContextDropdownMenu.d.ts","sourceRoot":"","sources":["../../src/ContextPopover/ContextDropdownMenu.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,wBAAwB,EAAiC,MAAM,OAAO,CAAC;AAChF,OAAO,EACN,YAAY,EAGZ,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,yBAChB,SAAQ,wBAAwB,CAAC,OAAO,YAAY,CAAC;IACrD,MAAM,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CACjC;AAED,eAAO,MAAM,mBAAmB;;kDAqC9B,CAAA"}
@@ -0,0 +1,41 @@
1
+ import { jsxs as p, jsx as o } from "react/jsx-runtime";
2
+ import { forwardRef as l } from "react";
3
+ import { DropdownMenu as u, DropdownMenuTrigger as c, DropdownMenuContent as d } from "../DropdownMenu/DropdownMenu.js";
4
+ const f = l((r, n) => {
5
+ const { coords: e, children: i, ...s } = r, a = new DOMRect(e.x, e.y, 0, 0);
6
+ return /* @__PURE__ */ p(u, { ...s, children: [
7
+ /* @__PURE__ */ o(c, { asChild: !0, children: /* @__PURE__ */ o(
8
+ "div",
9
+ {
10
+ ref: (t) => {
11
+ t && Object.defineProperty(t, "getBoundingClientRect", {
12
+ value: () => a,
13
+ writable: !0,
14
+ configurable: !0
15
+ });
16
+ },
17
+ className: "fixed w-[1px] h-[1px] opacity-0 pointer-events-none z-50",
18
+ style: {
19
+ left: e?.x || 0,
20
+ top: e?.y || 0
21
+ }
22
+ }
23
+ ) }),
24
+ /* @__PURE__ */ o(
25
+ d,
26
+ {
27
+ ref: n,
28
+ className: "p-2 relative w-auto h-fit min-w-[150px] max-h-[300px] overflow-y-auto",
29
+ align: "start",
30
+ sideOffset: 5,
31
+ onCloseAutoFocus: (t) => t.preventDefault(),
32
+ children: i
33
+ }
34
+ )
35
+ ] });
36
+ });
37
+ f.displayName = "ContextDropdownMenu";
38
+ export {
39
+ f as ContextDropdownMenu
40
+ };
41
+ //# sourceMappingURL=ContextDropdownMenu.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContextDropdownMenu.js","sources":["../../src/ContextPopover/ContextDropdownMenu.tsx"],"sourcesContent":["'use client';\n\nimport { ComponentPropsWithoutRef, forwardRef, PropsWithChildren } from \"react\";\nimport {\n\tDropdownMenu,\n\tDropdownMenuContent,\n\tDropdownMenuTrigger\n} from \"../DropdownMenu\";\n\nexport interface IContextDropdownMenuProps\n\textends ComponentPropsWithoutRef<typeof DropdownMenu> {\n\tcoords: { x: number; y: number };\n}\n\nexport const ContextDropdownMenu = forwardRef<\n\tHTMLDivElement,\n\tPropsWithChildren<IContextDropdownMenuProps>\n>((props, ref) => {\n\tconst { coords, children, ...rest } = props;\n\tconst virtualTriggerRect = new DOMRect(coords.x, coords.y, 0, 0);\n\treturn (\n\t\t<DropdownMenu {...rest}>\n\t\t\t<DropdownMenuTrigger asChild>\n\t\t\t\t<div\n\t\t\t\t\tref={(node) => {\n\t\t\t\t\t\tif (node) {\n\t\t\t\t\t\t\tObject.defineProperty(node, 'getBoundingClientRect', {\n\t\t\t\t\t\t\t\tvalue: () => virtualTriggerRect,\n\t\t\t\t\t\t\t\twritable: true,\n\t\t\t\t\t\t\t\tconfigurable: true,\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t}}\n\t\t\t\t\tclassName='fixed w-[1px] h-[1px] opacity-0 pointer-events-none z-50'\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tleft: coords?.x || 0,\n\t\t\t\t\t\ttop: coords?.y || 0,\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t</DropdownMenuTrigger>\n\t\t\t<DropdownMenuContent\n\t\t\t\tref={ref}\n\t\t\t\tclassName=\"p-2 relative w-auto h-fit min-w-[150px] max-h-[300px] overflow-y-auto\"\n\t\t\t\talign=\"start\"\n\t\t\t\tsideOffset={5}\n\t\t\t\tonCloseAutoFocus={(event) => event.preventDefault()}\n\t\t\t>\n\t\t\t\t{children}\n\t\t\t</DropdownMenuContent>\n\t\t</DropdownMenu>\n\t)\n})\n\nContextDropdownMenu.displayName = 'ContextDropdownMenu'\n"],"names":["ContextDropdownMenu","forwardRef","props","ref","coords","children","rest","virtualTriggerRect","jsxs","DropdownMenu","jsx","DropdownMenuTrigger","node","DropdownMenuContent","event"],"mappings":";;;AAcO,MAAMA,IAAsBC,EAGjC,CAACC,GAAOC,MAAQ;AACjB,QAAM,EAAE,QAAAC,GAAQ,UAAAC,GAAU,GAAGC,MAASJ,GAChCK,IAAqB,IAAI,QAAQH,EAAO,GAAGA,EAAO,GAAG,GAAG,CAAC;AAC/D,SACC,gBAAAI,EAACC,GAAA,EAAc,GAAGH,GACjB,UAAA;AAAA,IAAA,gBAAAI,EAACC,GAAA,EAAoB,SAAO,IAC3B,UAAA,gBAAAD;AAAA,MAAC;AAAA,MAAA;AAAA,QACA,KAAK,CAACE,MAAS;AACd,UAAIA,KACH,OAAO,eAAeA,GAAM,yBAAyB;AAAA,YACpD,OAAO,MAAML;AAAA,YACb,UAAU;AAAA,YACV,cAAc;AAAA,UAAA,CACd;AAAA,QAEH;AAAA,QACA,WAAU;AAAA,QACV,OAAO;AAAA,UACN,MAAMH,GAAQ,KAAK;AAAA,UACnB,KAAKA,GAAQ,KAAK;AAAA,QAAA;AAAA,MACnB;AAAA,IAAA,GAEF;AAAA,IACA,gBAAAM;AAAA,MAACG;AAAA,MAAA;AAAA,QACA,KAAAV;AAAA,QACA,WAAU;AAAA,QACV,OAAM;AAAA,QACN,YAAY;AAAA,QACZ,kBAAkB,CAACW,MAAUA,EAAM,eAAA;AAAA,QAElC,UAAAT;AAAA,MAAA;AAAA,IAAA;AAAA,EACF,GACD;AAEF,CAAC;AAEDL,EAAoB,cAAc;"}
@@ -0,0 +1,12 @@
1
+ import { ComponentPropsWithoutRef } from 'react';
2
+ import { Popover } from '../Popover';
3
+ export interface IContextPopoverProps extends ComponentPropsWithoutRef<typeof Popover> {
4
+ coords: {
5
+ x: number;
6
+ y: number;
7
+ };
8
+ }
9
+ export declare const ContextPopover: import('react').ForwardRefExoticComponent<IContextPopoverProps & {
10
+ children?: import('react').ReactNode | undefined;
11
+ } & import('react').RefAttributes<HTMLDivElement>>;
12
+ //# sourceMappingURL=ContextPopover.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContextPopover.d.ts","sourceRoot":"","sources":["../../src/ContextPopover/ContextPopover.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAiC,MAAM,OAAO,CAAC;AAChF,OAAO,EAAE,OAAO,EAAkC,MAAM,YAAY,CAAC;AAErE,MAAM,WAAW,oBAChB,SAAQ,wBAAwB,CAAC,OAAO,OAAO,CAAC;IAChD,MAAM,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CACjC;AAED,eAAO,MAAM,cAAc;;kDA2BzB,CAAA"}
@@ -0,0 +1,34 @@
1
+ import { jsxs as i, jsx as e } from "react/jsx-runtime";
2
+ import { forwardRef as a } from "react";
3
+ import { Popover as l, PopoverTrigger as f, PopoverContent as x } from "../Popover/Popover.js";
4
+ const m = a((t, r) => {
5
+ const { coords: o, children: p, ...n } = t;
6
+ return /* @__PURE__ */ i(l, { ...n, children: [
7
+ /* @__PURE__ */ e(f, { asChild: !0, children: /* @__PURE__ */ e(
8
+ "div",
9
+ {
10
+ className: "fixed w-[1px] h-[1px] opacity-0 pointer-events-none z-50",
11
+ style: {
12
+ left: o?.x || 0,
13
+ top: o?.y || 0
14
+ }
15
+ }
16
+ ) }),
17
+ /* @__PURE__ */ e(
18
+ x,
19
+ {
20
+ ref: r,
21
+ className: "p-2 relative w-auto h-fit min-w-[150px] max-h-[300px] overflow-y-auto",
22
+ align: "start",
23
+ sideOffset: 5,
24
+ onOpenAutoFocus: (s) => s.preventDefault(),
25
+ children: p
26
+ }
27
+ )
28
+ ] });
29
+ });
30
+ m.displayName = "ContextPopover";
31
+ export {
32
+ m as ContextPopover
33
+ };
34
+ //# sourceMappingURL=ContextPopover.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContextPopover.js","sources":["../../src/ContextPopover/ContextPopover.tsx"],"sourcesContent":["import { ComponentPropsWithoutRef, forwardRef, PropsWithChildren } from \"react\";\nimport { Popover, PopoverContent, PopoverTrigger } from \"../Popover\";\n\nexport interface IContextPopoverProps\n\textends ComponentPropsWithoutRef<typeof Popover> {\n\tcoords: { x: number; y: number };\n}\n\nexport const ContextPopover = forwardRef<\n\tHTMLDivElement,\n\tPropsWithChildren<IContextPopoverProps>\n>((props, ref) => {\n\tconst { coords, children, ...rest } = props;\n\treturn (\n\t\t<Popover {...rest}>\n\t\t\t<PopoverTrigger asChild>\n\t\t\t\t<div\n\t\t\t\t\tclassName='fixed w-[1px] h-[1px] opacity-0 pointer-events-none z-50'\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tleft: coords?.x || 0,\n\t\t\t\t\t\ttop: coords?.y || 0,\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t</PopoverTrigger>\n\t\t\t<PopoverContent\n\t\t\t\tref={ref}\n\t\t\t\tclassName=\"p-2 relative w-auto h-fit min-w-[150px] max-h-[300px] overflow-y-auto\"\n\t\t\t\talign=\"start\"\n\t\t\t\tsideOffset={5}\n\t\t\t\tonOpenAutoFocus={(event) => event.preventDefault()}\n\t\t\t>\n\t\t\t\t{children}\n\t\t\t</PopoverContent>\n\t\t</Popover>\n\t)\n})\n\nContextPopover.displayName = 'ContextPopover'\n"],"names":["ContextPopover","forwardRef","props","ref","coords","children","rest","jsxs","Popover","jsx","PopoverTrigger","PopoverContent","event"],"mappings":";;;AAQO,MAAMA,IAAiBC,EAG5B,CAACC,GAAOC,MAAQ;AACjB,QAAM,EAAE,QAAAC,GAAQ,UAAAC,GAAU,GAAGC,MAASJ;AACtC,SACC,gBAAAK,EAACC,GAAA,EAAS,GAAGF,GACZ,UAAA;AAAA,IAAA,gBAAAG,EAACC,GAAA,EAAe,SAAO,IACtB,UAAA,gBAAAD;AAAA,MAAC;AAAA,MAAA;AAAA,QACA,WAAU;AAAA,QACV,OAAO;AAAA,UACN,MAAML,GAAQ,KAAK;AAAA,UACnB,KAAKA,GAAQ,KAAK;AAAA,QAAA;AAAA,MACnB;AAAA,IAAA,GAEF;AAAA,IACA,gBAAAK;AAAA,MAACE;AAAA,MAAA;AAAA,QACA,KAAAR;AAAA,QACA,WAAU;AAAA,QACV,OAAM;AAAA,QACN,YAAY;AAAA,QACZ,iBAAiB,CAACS,MAAUA,EAAM,eAAA;AAAA,QAEjC,UAAAP;AAAA,MAAA;AAAA,IAAA;AAAA,EACF,GACD;AAEF,CAAC;AAEDL,EAAe,cAAc;"}
@@ -0,0 +1,4 @@
1
+ export * from './ContextPopover';
2
+ export * from './ContextDropdownMenu';
3
+ export * from './useContextPopoverHandler';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ContextPopover/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,uBAAuB,CAAA;AACrC,cAAc,4BAA4B,CAAA"}
@@ -0,0 +1,9 @@
1
+ import { ContextPopover as r } from "./ContextPopover.js";
2
+ import { ContextDropdownMenu as n } from "./ContextDropdownMenu.js";
3
+ import { useContextPopoverHandler as x } from "./useContextPopoverHandler.js";
4
+ export {
5
+ n as ContextDropdownMenu,
6
+ r as ContextPopover,
7
+ x as useContextPopoverHandler
8
+ };
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
@@ -0,0 +1,14 @@
1
+ import { MouseEvent } from 'react';
2
+ export declare const useContextPopoverHandler: <Data, Element extends HTMLDivElement = HTMLDivElement>() => {
3
+ onContext: (event: MouseEvent, data: Data) => void;
4
+ ref: import('react').RefObject<Element>;
5
+ open: boolean;
6
+ setOpen: import('react').Dispatch<import('react').SetStateAction<boolean>>;
7
+ coords: {
8
+ x: number;
9
+ y: number;
10
+ };
11
+ data: Data | null;
12
+ };
13
+ export type IUseContextPopoverHandler<Data> = ReturnType<typeof useContextPopoverHandler<Data>>;
14
+ //# sourceMappingURL=useContextPopoverHandler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useContextPopoverHandler.d.ts","sourceRoot":"","sources":["../../src/ContextPopover/useContextPopoverHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAiC,MAAM,OAAO,CAAC;AAGlE,eAAO,MAAM,wBAAwB,GACpC,IAAI,EACJ,OAAO,SAAS,cAAc,GAAG,cAAc;uBAeT,UAAU,QAAQ,IAAI;;;;;;;;;CAgB5D,CAAA;AAED,MAAM,MAAM,yBAAyB,CAAC,IAAI,IAAI,UAAU,CAAC,OAAO,wBAAwB,CAAC,IAAI,CAAC,CAAC,CAAC"}
@@ -0,0 +1,21 @@
1
+ import { useState as o, useRef as f, useCallback as i } from "react";
2
+ import { useOnClickOutside as p } from "@oneplatformdev/hooks";
3
+ const m = () => {
4
+ const [n, t] = o(!1), [r, u] = o({ x: 0, y: 0 }), [a, s] = o(null), l = f(null);
5
+ return p(l, () => {
6
+ n && (t(!1), s(null));
7
+ }), {
8
+ onContext: i((e, c) => {
9
+ e.preventDefault(), u({ x: e.clientX, y: e.clientY }), s(c), t(!0);
10
+ }, []),
11
+ ref: l,
12
+ open: n,
13
+ setOpen: t,
14
+ coords: r,
15
+ data: a
16
+ };
17
+ };
18
+ export {
19
+ m as useContextPopoverHandler
20
+ };
21
+ //# sourceMappingURL=useContextPopoverHandler.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useContextPopoverHandler.js","sources":["../../src/ContextPopover/useContextPopoverHandler.ts"],"sourcesContent":["import { MouseEvent, useCallback, useRef, useState } from \"react\";\nimport { useOnClickOutside } from \"@oneplatformdev/hooks\";\n\nexport const useContextPopoverHandler = <\n\tData,\n\tElement extends HTMLDivElement = HTMLDivElement\n>() => {\n\tconst [ open, setOpen ] = useState(false);\n\tconst [ coords, setCoords ] = useState({ x: 0, y: 0 });\n\tconst [ data, setData ] = useState<Data | null>(null);\n\n\tconst ref = useRef<Element>(null!);\n\n\tuseOnClickOutside(ref, () => {\n\t\tif (open) {\n\t\t\tsetOpen(false);\n\t\t\tsetData(null);\n\t\t}\n\t});\n\n\tconst onContext = useCallback((event: MouseEvent, data: Data) => {\n\t\tevent.preventDefault()\n\n\t\tsetCoords({ x: event.clientX, y: event.clientY });\n\t\tsetData(data);\n\t\tsetOpen(true);\n\t}, [])\n\n\treturn {\n\t\tonContext,\n\t\tref,\n\t\topen,\n\t\tsetOpen,\n\t\tcoords,\n\t\tdata,\n\t}\n}\n\nexport type IUseContextPopoverHandler<Data> = ReturnType<typeof useContextPopoverHandler<Data>>;\n"],"names":["useContextPopoverHandler","open","setOpen","useState","coords","setCoords","data","setData","ref","useRef","useOnClickOutside","useCallback","event"],"mappings":";;AAGO,MAAMA,IAA2B,MAGjC;AACN,QAAM,CAAEC,GAAMC,CAAQ,IAAIC,EAAS,EAAK,GAClC,CAAEC,GAAQC,CAAU,IAAIF,EAAS,EAAE,GAAG,GAAG,GAAG,GAAG,GAC/C,CAAEG,GAAMC,CAAQ,IAAIJ,EAAsB,IAAI,GAE9CK,IAAMC,EAAgB,IAAK;AAEjC,SAAAC,EAAkBF,GAAK,MAAM;AAC5B,IAAIP,MACHC,EAAQ,EAAK,GACbK,EAAQ,IAAI;AAAA,EAEd,CAAC,GAUM;AAAA,IACN,WATiBI,EAAY,CAACC,GAAmBN,MAAe;AAChE,MAAAM,EAAM,eAAA,GAENP,EAAU,EAAE,GAAGO,EAAM,SAAS,GAAGA,EAAM,SAAS,GAChDL,EAAQD,CAAI,GACZJ,EAAQ,EAAI;AAAA,IACb,GAAG,CAAA,CAAE;AAAA,IAIJ,KAAAM;AAAA,IACA,MAAAP;AAAA,IACA,SAAAC;AAAA,IACA,QAAAE;AAAA,IACA,MAAAE;AAAA,EAAA;AAEF;"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
2
  import * as SwitchPrimitive from "@radix-ui/react-switch";
3
- declare function Switch({ className, ...props }: React.ComponentProps<typeof SwitchPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
3
+ declare function Switch(props: React.ComponentProps<typeof SwitchPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
4
  export { Switch };
5
5
  //# sourceMappingURL=Switch.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../src/Switch/Switch.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAA;AAIzD,iBAAS,MAAM,CAAC,EACE,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,2CAkBnE;AAED,OAAO,EAAE,MAAM,EAAE,CAAA"}
1
+ {"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../src/Switch/Switch.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAA;AAIzD,iBAAS,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,2CAmBvE;AAED,OAAO,EAAE,MAAM,EAAE,CAAA"}
package/Switch/Switch.js CHANGED
@@ -1,19 +1,17 @@
1
1
  import { jsx as e } from "react/jsx-runtime";
2
2
  import * as t from "@radix-ui/react-switch";
3
3
  import { cn as a } from "@oneplatformdev/utils";
4
- function s({
5
- className: r,
6
- ...n
7
- }) {
4
+ function d(r) {
5
+ const { className: n, ...s } = r;
8
6
  return /* @__PURE__ */ e(
9
7
  t.Root,
10
8
  {
11
9
  "data-slot": "switch",
12
10
  className: a(
13
11
  "peer data-[state=checked]:bg-primary data-[state=unchecked]:bg-input focus-visible:border-ring focus-visible:ring-ring/50 dark:data-[state=unchecked]:bg-input/80 inline-flex h-[1.15rem] w-8 shrink-0 items-center rounded-full border border-transparent shadow-xs transition-all outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50",
14
- r
12
+ n
15
13
  ),
16
- ...n,
14
+ ...s,
17
15
  children: /* @__PURE__ */ e(
18
16
  t.Thumb,
19
17
  {
@@ -27,6 +25,6 @@ function s({
27
25
  );
28
26
  }
29
27
  export {
30
- s as Switch
28
+ d as Switch
31
29
  };
32
30
  //# sourceMappingURL=Switch.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Switch.js","sources":["../../src/Switch/Switch.tsx"],"sourcesContent":["\"use client\"\n\nimport * as React from \"react\"\nimport * as SwitchPrimitive from \"@radix-ui/react-switch\"\n\nimport { cn } from \"@oneplatformdev/utils\"\n\nfunction Switch({\n className,\n ...props\n }: React.ComponentProps<typeof SwitchPrimitive.Root>) {\n return (\n <SwitchPrimitive.Root\n data-slot=\"switch\"\n className={cn(\n \"peer data-[state=checked]:bg-primary data-[state=unchecked]:bg-input focus-visible:border-ring focus-visible:ring-ring/50 dark:data-[state=unchecked]:bg-input/80 inline-flex h-[1.15rem] w-8 shrink-0 items-center rounded-full border border-transparent shadow-xs transition-all outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50\",\n className\n )}\n {...props}\n >\n <SwitchPrimitive.Thumb\n data-slot=\"switch-thumb\"\n className={cn(\n \"bg-background dark:data-[state=unchecked]:bg-foreground dark:data-[state=checked]:bg-primary-foreground pointer-events-none block size-4 rounded-full ring-0 transition-transform data-[state=checked]:translate-x-[calc(100%-2px)] data-[state=unchecked]:translate-x-0\"\n )}\n />\n </SwitchPrimitive.Root>\n )\n}\n\nexport { Switch }\n"],"names":["Switch","className","props","jsx","SwitchPrimitive","cn"],"mappings":";;;AAOA,SAASA,EAAO;AAAA,EACE,WAAAC;AAAA,EACA,GAAGC;AACL,GAAsD;AACpE,SACE,gBAAAC;AAAA,IAACC,EAAgB;AAAA,IAAhB;AAAA,MACC,aAAU;AAAA,MACV,WAAWC;AAAA,QACT;AAAA,QACAJ;AAAA,MAAA;AAAA,MAED,GAAGC;AAAA,MAEJ,UAAA,gBAAAC;AAAA,QAACC,EAAgB;AAAA,QAAhB;AAAA,UACC,aAAU;AAAA,UACV,WAAWC;AAAA,YACT;AAAA,UAAA;AAAA,QACF;AAAA,MAAA;AAAA,IACF;AAAA,EAAA;AAGN;"}
1
+ {"version":3,"file":"Switch.js","sources":["../../src/Switch/Switch.tsx"],"sourcesContent":["\"use client\"\n\nimport * as React from \"react\"\nimport * as SwitchPrimitive from \"@radix-ui/react-switch\"\n\nimport { cn } from \"@oneplatformdev/utils\"\n\nfunction Switch(props: React.ComponentProps<typeof SwitchPrimitive.Root>) {\n const { className, ...rest } = props;\n return (\n <SwitchPrimitive.Root\n data-slot=\"switch\"\n className={cn(\n \"peer data-[state=checked]:bg-primary data-[state=unchecked]:bg-input focus-visible:border-ring focus-visible:ring-ring/50 dark:data-[state=unchecked]:bg-input/80 inline-flex h-[1.15rem] w-8 shrink-0 items-center rounded-full border border-transparent shadow-xs transition-all outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50\",\n className\n )}\n {...rest}\n >\n <SwitchPrimitive.Thumb\n data-slot=\"switch-thumb\"\n className={cn(\n \"bg-background dark:data-[state=unchecked]:bg-foreground dark:data-[state=checked]:bg-primary-foreground pointer-events-none block size-4 rounded-full ring-0 transition-transform data-[state=checked]:translate-x-[calc(100%-2px)] data-[state=unchecked]:translate-x-0\"\n )}\n />\n </SwitchPrimitive.Root>\n )\n}\n\nexport { Switch }\n"],"names":["Switch","props","className","rest","jsx","SwitchPrimitive","cn"],"mappings":";;;AAOA,SAASA,EAAOC,GAA0D;AACxE,QAAM,EAAE,WAAAC,GAAW,GAAGC,EAAA,IAASF;AAC/B,SACE,gBAAAG;AAAA,IAACC,EAAgB;AAAA,IAAhB;AAAA,MACC,aAAU;AAAA,MACV,WAAWC;AAAA,QACT;AAAA,QACAJ;AAAA,MAAA;AAAA,MAED,GAAGC;AAAA,MAEJ,UAAA,gBAAAC;AAAA,QAACC,EAAgB;AAAA,QAAhB;AAAA,UACC,aAAU;AAAA,UACV,WAAWC;AAAA,YACT;AAAA,UAAA;AAAA,QACF;AAAA,MAAA;AAAA,IACF;AAAA,EAAA;AAGN;"}
package/index.d.ts CHANGED
@@ -17,6 +17,7 @@ export * from './Checkbox';
17
17
  export * from './Collapsible';
18
18
  export * from './Combobox';
19
19
  export * from './Command';
20
+ export * from './ContextPopover';
20
21
  export * from './DataTable';
21
22
  export * from './DatePicker';
22
23
  export * from './Dialog';
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC"}
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Accordion as d, AccordionContent as u, AccordionItem as x, AccordionTrigger as g } from "./Accordion/Accordion.js";
2
2
  import { Alert as f, AlertDescription as s, AlertTitle as S } from "./Alert/Alert.js";
3
- import { AlertDialogAction as T, AlertDialogCancel as c, AlertDialogContent as D, AlertDialogDescription as M, AlertDialogFooter as P, AlertDialogHeader as v, AlertDialogOverlay as I, AlertDialogPortal as A, AlertDialogRoot as w, AlertDialogTitle as h, AlertDialogTrigger as F } from "./AlertDialog/AlertDialogRoot.js";
3
+ import { AlertDialogAction as T, AlertDialogCancel as D, AlertDialogContent as c, AlertDialogDescription as M, AlertDialogFooter as P, AlertDialogHeader as v, AlertDialogOverlay as I, AlertDialogPortal as A, AlertDialogRoot as w, AlertDialogTitle as h, AlertDialogTrigger as F } from "./AlertDialog/AlertDialogRoot.js";
4
4
  import { AlertDialog as B } from "./AlertDialog/AlertDialog.js";
5
5
  import { AreaChart as G } from "./AreaChart/AreaChart.js";
6
6
  import { Aside as H } from "./Aside/Aside.js";
@@ -11,89 +11,92 @@ import { Badge as j } from "./Badge/Badge.js";
11
11
  import { badgeVariants as J } from "./Badge/badgeVariants.js";
12
12
  import { Breadcrumb as Q, BreadcrumbEllipsis as W, BreadcrumbItem as X, BreadcrumbLink as Z, BreadcrumbList as $, BreadcrumbPage as oo, BreadcrumbSeparator as ro } from "./Breadcrumb/Breadcrumb.js";
13
13
  import { Button as to } from "./Button/Button.js";
14
- import { buttonBadgeVariants as io, buttonVariants as no } from "./Button/buttonVariants.js";
14
+ import { buttonBadgeVariants as no, buttonVariants as io } from "./Button/buttonVariants.js";
15
15
  import { renderInnerIcon as mo } from "./Button/Button.utils.js";
16
16
  import { ButtonIcon as uo } from "./ButtonIcon/ButtonIcon.js";
17
17
  import { buttonIconVariants as go } from "./ButtonIcon/buttonIconVariants.js";
18
18
  import { Calendar as fo } from "./Calendar/Calendar.js";
19
- import { Card as So, CardContent as Co, CardDescription as To, CardFooter as co, CardHeader as Do, CardTitle as Mo } from "./Card/Card.js";
19
+ import { Card as So, CardContent as Co, CardDescription as To, CardFooter as Do, CardHeader as co, CardTitle as Mo } from "./Card/Card.js";
20
20
  import { Carousel as vo, CarouselContent as Io, CarouselItem as Ao, CarouselNext as wo, CarouselPrevious as ho } from "./Carousel/Carousel.js";
21
21
  import { ChartContainer as Lo, ChartLegend as Bo, ChartLegendContent as Ro, ChartStyle as Go, ChartTooltip as ko, ChartTooltipContent as Ho } from "./Chart/Chart.js";
22
22
  import { Checkbox as No, CheckboxLabel as Oo } from "./Checkbox/Checkbox.js";
23
23
  import { Collapsible as Eo, CollapsibleContent as zo, CollapsibleTrigger as _o } from "./Collapsible/Collapsible.js";
24
24
  import { Combobox as Yo } from "./Combobox/Combobox.js";
25
25
  import { Command as qo, CommandDialog as Jo, CommandEmpty as Ko, CommandGroup as Qo, CommandInput as Wo, CommandItem as Xo, CommandList as Zo, CommandSeparator as $o, CommandShortcut as or } from "./Command/Command.js";
26
- import { DataTable as er } from "./DataTable/DataTable.js";
27
- import { DatePicker as ar } from "./DatePicker/DatePicker.js";
28
- import { Dialog as nr, DialogClose as pr, DialogContent as mr, DialogDescription as lr, DialogFooter as dr, DialogHeader as ur, DialogOverlay as xr, DialogPortal as gr, DialogTitle as br, DialogTrigger as fr } from "./Dialog/Dialog.js";
29
- import { DialogOverlayContainerContext as Sr, DialogOverlayScope as Cr, useDialogOverlayContainer as Tr } from "./Dialog/DialogOverlayScope.js";
30
- import { Drawer as Dr, DrawerClose as Mr, DrawerContent as Pr, DrawerDescription as vr, DrawerFooter as Ir, DrawerHeader as Ar, DrawerOverlay as wr, DrawerPortal as hr, DrawerTitle as Fr, DrawerTrigger as Lr } from "./Drawer/Drawer.js";
31
- import { DropdownMenu as Rr, DropdownMenuCheckboxItem as Gr, DropdownMenuContent as kr, DropdownMenuGroup as Hr, DropdownMenuItem as yr, DropdownMenuLabel as Nr, DropdownMenuPortal as Or, DropdownMenuRadioGroup as Vr, DropdownMenuRadioItem as Er, DropdownMenuSeparator as zr, DropdownMenuShortcut as _r, DropdownMenuSub as Ur, DropdownMenuSubContent as Yr, DropdownMenuSubTrigger as jr, DropdownMenuTrigger as qr } from "./DropdownMenu/DropdownMenu.js";
32
- import { Form as Kr, FormControl as Qr, FormDescription as Wr, FormField as Xr, FormItem as Zr, FormLabel as $r, FormMessage as oe, useFormField as re } from "./Form/Form.js";
33
- import { FormRenderControl as te } from "./Form/FormRenderControl.js";
34
- import { FormCheckbox as ie } from "./FormCheckbox/FormCheckbox.js";
35
- import { FormCombobox as pe } from "./FormCombobox/FormCombobox.js";
36
- import { FormDatePicker as le } from "./FormDatePicker/FormDatePicker.js";
37
- import { FormInput as ue } from "./FormInput/FormInput.js";
38
- import { FormSelect as ge } from "./FormSelect/FormSelect.js";
39
- import { FormTextarea as fe } from "./FormTextarea/FormTextarea.js";
40
- import { Header as Se } from "./Header/Header.js";
41
- import { HoverCard as Te, HoverCardContent as ce, HoverCardTrigger as De } from "./HoverCard/HoverCard.js";
42
- import { InfoBlock as Pe } from "./InfoBlock/InfoBlock.js";
43
- import { BaseInput as Ie, Input as Ae, PasswordInput as we } from "./Input/Input.js";
44
- import { InputOTP as Fe, InputOTPGroup as Le, InputOTPSeparator as Be, InputOTPSlot as Re } from "./InputOTP/InputOTP.js";
45
- import { Label as ke } from "./Label/Label.js";
46
- import { labelVariants as ye } from "./Label/labelVariants.js";
47
- import { LazyLoader as Oe } from "./LazyLoader/LazyLoader.js";
48
- import { LoadedIcon as Ee } from "./LoadedIcon/LoadedIcon.js";
49
- import { LoadingMask as _e } from "./LoadingMask/LoadingMask.js";
50
- import { RenderLoadingMask as Ye } from "./LoadingMask/RenderLoadingMask.js";
51
- import { LoadingProgress as qe } from "./LoadingProgress/LoadingProgress.js";
52
- import { loadingProgressVariants as Ke } from "./LoadingProgress/loadingProgressVariants.js";
53
- import { Menubar as We, MenubarCheckboxItem as Xe, MenubarContent as Ze, MenubarGroup as $e, MenubarItem as ot, MenubarLabel as rt, MenubarMenu as et, MenubarPortal as tt, MenubarRadioGroup as at, MenubarRadioItem as it, MenubarSeparator as nt, MenubarShortcut as pt, MenubarSub as mt, MenubarSubContent as lt, MenubarSubTrigger as dt, MenubarTrigger as ut } from "./Menubar/Menubar.js";
54
- import { NavigationMenu as gt, NavigationMenuContent as bt, NavigationMenuIndicator as ft, NavigationMenuItem as st, NavigationMenuLink as St, NavigationMenuList as Ct, NavigationMenuTrigger as Tt, NavigationMenuViewport as ct } from "./NavigationMenu/NavigationMenu.js";
55
- import { navigationMenuVariants as Mt } from "./NavigationMenu/navigationMenuVariants.js";
56
- import { Pagination as vt, PaginationContent as It, PaginationEllipsis as At, PaginationItem as wt, PaginationLink as ht, PaginationNext as Ft, PaginationPrevious as Lt } from "./Pagination/Pagination.js";
57
- import { Popover as Rt, PopoverAnchor as Gt, PopoverContent as kt, PopoverTrigger as Ht } from "./Popover/Popover.js";
58
- import { Progress as Nt } from "./Progress/Progress.js";
59
- import { RadioGroup as Vt, RadioGroupItem as Et, RadioGroupLabel as zt } from "./RadioGroup/RadioGroup.js";
60
- import { ResizableHandle as Ut, ResizablePanel as Yt, ResizablePanelGroup as jt } from "./Resizable/Resizable.js";
61
- import { ScrollArea as Jt, ScrollBar as Kt } from "./ScrollArea/ScrollArea.js";
62
- import { Search as Wt } from "./Search/Search.js";
63
- import { SelectContent as Zt, SelectGroup as $t, SelectItem as oa, SelectLabel as ra, SelectRoot as ea, SelectScrollDownButton as ta, SelectScrollUpButton as aa, SelectSeparator as ia, SelectTrigger as na, SelectValue as pa } from "./Select/SelectRoot.js";
64
- import { Select as la } from "./Select/Select.js";
65
- import { Separator as ua } from "./Separator/Separator.js";
66
- import { Sheet as ga, SheetClose as ba, SheetContent as fa, SheetDescription as sa, SheetFooter as Sa, SheetHeader as Ca, SheetOverlay as Ta, SheetPortal as ca, SheetTitle as Da, SheetTrigger as Ma } from "./Sheet/Sheet.js";
67
- import { Sidebar as va, SidebarContent as Ia, SidebarFooter as Aa, SidebarGroup as wa, SidebarGroupAction as ha, SidebarGroupContent as Fa, SidebarGroupLabel as La, SidebarHeader as Ba, SidebarInput as Ra, SidebarInset as Ga, SidebarMenu as ka, SidebarMenuAction as Ha, SidebarMenuBadge as ya, SidebarMenuButton as Na, SidebarMenuItem as Oa, SidebarMenuSkeleton as Va, SidebarMenuSub as Ea, SidebarMenuSubButton as za, SidebarMenuSubItem as _a, SidebarProvider as Ua, SidebarRail as Ya, SidebarSeparator as ja, SidebarTrigger as qa, useSidebar as Ja } from "./Sidebar/Sidebar.js";
68
- import { Skeleton as Qa } from "./Skeleton/Skeleton.js";
69
- import { Slider as Xa } from "./Slider/Slider.js";
70
- import { Sonner as $a } from "./Sonner/Sonner.js";
71
- import { Switch as ri } from "./Switch/Switch.js";
72
- import { Table as ti, TableBody as ai, TableCaption as ii, TableCell as ni, TableFooter as pi, TableHead as mi, TableHeader as li, TableRow as di } from "./Table/Table.js";
73
- import { TabsContent as xi, TabsList as gi, TabsRoot as bi, TabsTrigger as fi } from "./Tabs/TabsRoot.js";
74
- import { TabRender as Si, Tabs as Ci } from "./Tabs/Tabs.js";
75
- import { Textarea as ci } from "./Textarea/Textarea.js";
76
- import { ThemeProvider as Mi } from "./Theme/ThemeProvider.js";
77
- import { ThemeModeToggle as vi } from "./Theme/ThemeModeToggle.js";
78
- import { Toast as Ai, ToastAction as wi, ToastClose as hi, ToastDescription as Fi, ToastProvider as Li, ToastTitle as Bi, ToastViewport as Ri } from "./Toast/Toast.js";
79
- import { reducer as ki, toast as Hi, useNotify as yi, useToast as Ni } from "./Toast/useToast.js";
80
- import { Toaster as Vi } from "./Toaster/Toaster.js";
81
- import { Toggle as zi, toggleVariants as _i } from "./Toggle/Toggle.js";
82
- import { ToggleGroup as Yi, ToggleGroupItem as ji } from "./ToggleGroup/ToggleGroup.js";
83
- import { TooltipContent as Ji, TooltipProvider as Ki, TooltipRoot as Qi, TooltipTrigger as Wi } from "./Tooltip/TooltipRoot.js";
84
- import { Tooltip as Zi, TooltipInner as $i } from "./Tooltip/Tooltip.js";
85
- import { Dropzone as rn } from "./Dropzone/Dropzone.js";
86
- import { DEFAULT_FILE_TYPES as tn, DEFAULT_IMAGES_TYPES as an } from "./Dropzone/Dropzone.types.js";
87
- import { FormDropzone as pn } from "./FormDropzone/FormDropzone.js";
88
- import { TablePagination as ln } from "./TablePagination/TablePagination.js";
89
- import { Command as un } from "cmdk";
26
+ import { ContextPopover as er } from "./ContextPopover/ContextPopover.js";
27
+ import { ContextDropdownMenu as ar } from "./ContextPopover/ContextDropdownMenu.js";
28
+ import { useContextPopoverHandler as ir } from "./ContextPopover/useContextPopoverHandler.js";
29
+ import { DataTable as mr } from "./DataTable/DataTable.js";
30
+ import { DatePicker as dr } from "./DatePicker/DatePicker.js";
31
+ import { Dialog as xr, DialogClose as gr, DialogContent as br, DialogDescription as fr, DialogFooter as sr, DialogHeader as Sr, DialogOverlay as Cr, DialogPortal as Tr, DialogTitle as Dr, DialogTrigger as cr } from "./Dialog/Dialog.js";
32
+ import { DialogOverlayContainerContext as Pr, DialogOverlayScope as vr, useDialogOverlayContainer as Ir } from "./Dialog/DialogOverlayScope.js";
33
+ import { Drawer as wr, DrawerClose as hr, DrawerContent as Fr, DrawerDescription as Lr, DrawerFooter as Br, DrawerHeader as Rr, DrawerOverlay as Gr, DrawerPortal as kr, DrawerTitle as Hr, DrawerTrigger as yr } from "./Drawer/Drawer.js";
34
+ import { DropdownMenu as Or, DropdownMenuCheckboxItem as Vr, DropdownMenuContent as Er, DropdownMenuGroup as zr, DropdownMenuItem as _r, DropdownMenuLabel as Ur, DropdownMenuPortal as Yr, DropdownMenuRadioGroup as jr, DropdownMenuRadioItem as qr, DropdownMenuSeparator as Jr, DropdownMenuShortcut as Kr, DropdownMenuSub as Qr, DropdownMenuSubContent as Wr, DropdownMenuSubTrigger as Xr, DropdownMenuTrigger as Zr } from "./DropdownMenu/DropdownMenu.js";
35
+ import { Form as oe, FormControl as re, FormDescription as ee, FormField as te, FormItem as ae, FormLabel as ne, FormMessage as ie, useFormField as pe } from "./Form/Form.js";
36
+ import { FormRenderControl as le } from "./Form/FormRenderControl.js";
37
+ import { FormCheckbox as ue } from "./FormCheckbox/FormCheckbox.js";
38
+ import { FormCombobox as ge } from "./FormCombobox/FormCombobox.js";
39
+ import { FormDatePicker as fe } from "./FormDatePicker/FormDatePicker.js";
40
+ import { FormInput as Se } from "./FormInput/FormInput.js";
41
+ import { FormSelect as Te } from "./FormSelect/FormSelect.js";
42
+ import { FormTextarea as ce } from "./FormTextarea/FormTextarea.js";
43
+ import { Header as Pe } from "./Header/Header.js";
44
+ import { HoverCard as Ie, HoverCardContent as Ae, HoverCardTrigger as we } from "./HoverCard/HoverCard.js";
45
+ import { InfoBlock as Fe } from "./InfoBlock/InfoBlock.js";
46
+ import { BaseInput as Be, Input as Re, PasswordInput as Ge } from "./Input/Input.js";
47
+ import { InputOTP as He, InputOTPGroup as ye, InputOTPSeparator as Ne, InputOTPSlot as Oe } from "./InputOTP/InputOTP.js";
48
+ import { Label as Ee } from "./Label/Label.js";
49
+ import { labelVariants as _e } from "./Label/labelVariants.js";
50
+ import { LazyLoader as Ye } from "./LazyLoader/LazyLoader.js";
51
+ import { LoadedIcon as qe } from "./LoadedIcon/LoadedIcon.js";
52
+ import { LoadingMask as Ke } from "./LoadingMask/LoadingMask.js";
53
+ import { RenderLoadingMask as We } from "./LoadingMask/RenderLoadingMask.js";
54
+ import { LoadingProgress as Ze } from "./LoadingProgress/LoadingProgress.js";
55
+ import { loadingProgressVariants as ot } from "./LoadingProgress/loadingProgressVariants.js";
56
+ import { Menubar as et, MenubarCheckboxItem as tt, MenubarContent as at, MenubarGroup as nt, MenubarItem as it, MenubarLabel as pt, MenubarMenu as mt, MenubarPortal as lt, MenubarRadioGroup as dt, MenubarRadioItem as ut, MenubarSeparator as xt, MenubarShortcut as gt, MenubarSub as bt, MenubarSubContent as ft, MenubarSubTrigger as st, MenubarTrigger as St } from "./Menubar/Menubar.js";
57
+ import { NavigationMenu as Tt, NavigationMenuContent as Dt, NavigationMenuIndicator as ct, NavigationMenuItem as Mt, NavigationMenuLink as Pt, NavigationMenuList as vt, NavigationMenuTrigger as It, NavigationMenuViewport as At } from "./NavigationMenu/NavigationMenu.js";
58
+ import { navigationMenuVariants as ht } from "./NavigationMenu/navigationMenuVariants.js";
59
+ import { Pagination as Lt, PaginationContent as Bt, PaginationEllipsis as Rt, PaginationItem as Gt, PaginationLink as kt, PaginationNext as Ht, PaginationPrevious as yt } from "./Pagination/Pagination.js";
60
+ import { Popover as Ot, PopoverAnchor as Vt, PopoverContent as Et, PopoverTrigger as zt } from "./Popover/Popover.js";
61
+ import { Progress as Ut } from "./Progress/Progress.js";
62
+ import { RadioGroup as jt, RadioGroupItem as qt, RadioGroupLabel as Jt } from "./RadioGroup/RadioGroup.js";
63
+ import { ResizableHandle as Qt, ResizablePanel as Wt, ResizablePanelGroup as Xt } from "./Resizable/Resizable.js";
64
+ import { ScrollArea as $t, ScrollBar as oa } from "./ScrollArea/ScrollArea.js";
65
+ import { Search as ea } from "./Search/Search.js";
66
+ import { SelectContent as aa, SelectGroup as na, SelectItem as ia, SelectLabel as pa, SelectRoot as ma, SelectScrollDownButton as la, SelectScrollUpButton as da, SelectSeparator as ua, SelectTrigger as xa, SelectValue as ga } from "./Select/SelectRoot.js";
67
+ import { Select as fa } from "./Select/Select.js";
68
+ import { Separator as Sa } from "./Separator/Separator.js";
69
+ import { Sheet as Ta, SheetClose as Da, SheetContent as ca, SheetDescription as Ma, SheetFooter as Pa, SheetHeader as va, SheetOverlay as Ia, SheetPortal as Aa, SheetTitle as wa, SheetTrigger as ha } from "./Sheet/Sheet.js";
70
+ import { Sidebar as La, SidebarContent as Ba, SidebarFooter as Ra, SidebarGroup as Ga, SidebarGroupAction as ka, SidebarGroupContent as Ha, SidebarGroupLabel as ya, SidebarHeader as Na, SidebarInput as Oa, SidebarInset as Va, SidebarMenu as Ea, SidebarMenuAction as za, SidebarMenuBadge as _a, SidebarMenuButton as Ua, SidebarMenuItem as Ya, SidebarMenuSkeleton as ja, SidebarMenuSub as qa, SidebarMenuSubButton as Ja, SidebarMenuSubItem as Ka, SidebarProvider as Qa, SidebarRail as Wa, SidebarSeparator as Xa, SidebarTrigger as Za, useSidebar as $a } from "./Sidebar/Sidebar.js";
71
+ import { Skeleton as rn } from "./Skeleton/Skeleton.js";
72
+ import { Slider as tn } from "./Slider/Slider.js";
73
+ import { Sonner as nn } from "./Sonner/Sonner.js";
74
+ import { Switch as mn } from "./Switch/Switch.js";
75
+ import { Table as dn, TableBody as un, TableCaption as xn, TableCell as gn, TableFooter as bn, TableHead as fn, TableHeader as sn, TableRow as Sn } from "./Table/Table.js";
76
+ import { TabsContent as Tn, TabsList as Dn, TabsRoot as cn, TabsTrigger as Mn } from "./Tabs/TabsRoot.js";
77
+ import { TabRender as vn, Tabs as In } from "./Tabs/Tabs.js";
78
+ import { Textarea as wn } from "./Textarea/Textarea.js";
79
+ import { ThemeProvider as Fn } from "./Theme/ThemeProvider.js";
80
+ import { ThemeModeToggle as Bn } from "./Theme/ThemeModeToggle.js";
81
+ import { Toast as Gn, ToastAction as kn, ToastClose as Hn, ToastDescription as yn, ToastProvider as Nn, ToastTitle as On, ToastViewport as Vn } from "./Toast/Toast.js";
82
+ import { reducer as zn, toast as _n, useNotify as Un, useToast as Yn } from "./Toast/useToast.js";
83
+ import { Toaster as qn } from "./Toaster/Toaster.js";
84
+ import { Toggle as Kn, toggleVariants as Qn } from "./Toggle/Toggle.js";
85
+ import { ToggleGroup as Xn, ToggleGroupItem as Zn } from "./ToggleGroup/ToggleGroup.js";
86
+ import { TooltipContent as oi, TooltipProvider as ri, TooltipRoot as ei, TooltipTrigger as ti } from "./Tooltip/TooltipRoot.js";
87
+ import { Tooltip as ni, TooltipInner as ii } from "./Tooltip/Tooltip.js";
88
+ import { Dropzone as mi } from "./Dropzone/Dropzone.js";
89
+ import { DEFAULT_FILE_TYPES as di, DEFAULT_IMAGES_TYPES as ui } from "./Dropzone/Dropzone.types.js";
90
+ import { FormDropzone as gi } from "./FormDropzone/FormDropzone.js";
91
+ import { TablePagination as fi } from "./TablePagination/TablePagination.js";
92
+ import { Command as Si } from "cmdk";
90
93
  import * as o from "@radix-ui/react-dialog";
91
94
  import * as r from "@radix-ui/react-dropdown-menu";
92
95
  import * as e from "@radix-ui/react-label";
93
96
  import * as t from "@radix-ui/react-popover";
94
97
  import * as a from "@radix-ui/react-progress";
95
- import * as i from "@radix-ui/react-scroll-area";
96
- import * as n from "@radix-ui/react-select";
98
+ import * as n from "@radix-ui/react-scroll-area";
99
+ import * as i from "@radix-ui/react-select";
97
100
  import * as p from "@radix-ui/react-tooltip";
98
101
  export {
99
102
  d as Accordion,
@@ -104,8 +107,8 @@ export {
104
107
  s as AlertDescription,
105
108
  B as AlertDialog,
106
109
  T as AlertDialogAction,
107
- c as AlertDialogCancel,
108
- D as AlertDialogContent,
110
+ D as AlertDialogCancel,
111
+ c as AlertDialogContent,
109
112
  M as AlertDialogDescription,
110
113
  P as AlertDialogFooter,
111
114
  v as AlertDialogHeader,
@@ -123,7 +126,7 @@ export {
123
126
  _ as AvatarFallback,
124
127
  U as AvatarImage,
125
128
  j as Badge,
126
- Ie as BaseInput,
129
+ Be as BaseInput,
127
130
  Q as Breadcrumb,
128
131
  W as BreadcrumbEllipsis,
129
132
  X as BreadcrumbItem,
@@ -137,8 +140,8 @@ export {
137
140
  So as Card,
138
141
  Co as CardContent,
139
142
  To as CardDescription,
140
- co as CardFooter,
141
- Do as CardHeader,
143
+ Do as CardFooter,
144
+ co as CardHeader,
142
145
  Mo as CardTitle,
143
146
  vo as Carousel,
144
147
  Io as CarouselContent,
@@ -164,235 +167,238 @@ export {
164
167
  Wo as CommandInput,
165
168
  Xo as CommandItem,
166
169
  Zo as CommandList,
167
- un as CommandPrimitive,
170
+ Si as CommandPrimitive,
168
171
  $o as CommandSeparator,
169
172
  or as CommandShortcut,
170
- tn as DEFAULT_FILE_TYPES,
171
- an as DEFAULT_IMAGES_TYPES,
172
- er as DataTable,
173
- ar as DatePicker,
174
- nr as Dialog,
175
- pr as DialogClose,
176
- mr as DialogContent,
177
- lr as DialogDescription,
178
- dr as DialogFooter,
179
- ur as DialogHeader,
180
- xr as DialogOverlay,
181
- Sr as DialogOverlayContainerContext,
182
- Cr as DialogOverlayScope,
183
- gr as DialogPortal,
173
+ ar as ContextDropdownMenu,
174
+ er as ContextPopover,
175
+ di as DEFAULT_FILE_TYPES,
176
+ ui as DEFAULT_IMAGES_TYPES,
177
+ mr as DataTable,
178
+ dr as DatePicker,
179
+ xr as Dialog,
180
+ gr as DialogClose,
181
+ br as DialogContent,
182
+ fr as DialogDescription,
183
+ sr as DialogFooter,
184
+ Sr as DialogHeader,
185
+ Cr as DialogOverlay,
186
+ Pr as DialogOverlayContainerContext,
187
+ vr as DialogOverlayScope,
188
+ Tr as DialogPortal,
184
189
  o as DialogPrimitive,
185
- br as DialogTitle,
186
- fr as DialogTrigger,
187
- Dr as Drawer,
188
- Mr as DrawerClose,
189
- Pr as DrawerContent,
190
- vr as DrawerDescription,
191
- Ir as DrawerFooter,
192
- Ar as DrawerHeader,
193
- wr as DrawerOverlay,
194
- hr as DrawerPortal,
195
- Fr as DrawerTitle,
196
- Lr as DrawerTrigger,
197
- Rr as DropdownMenu,
198
- Gr as DropdownMenuCheckboxItem,
199
- kr as DropdownMenuContent,
200
- Hr as DropdownMenuGroup,
201
- yr as DropdownMenuItem,
202
- Nr as DropdownMenuLabel,
203
- Or as DropdownMenuPortal,
190
+ Dr as DialogTitle,
191
+ cr as DialogTrigger,
192
+ wr as Drawer,
193
+ hr as DrawerClose,
194
+ Fr as DrawerContent,
195
+ Lr as DrawerDescription,
196
+ Br as DrawerFooter,
197
+ Rr as DrawerHeader,
198
+ Gr as DrawerOverlay,
199
+ kr as DrawerPortal,
200
+ Hr as DrawerTitle,
201
+ yr as DrawerTrigger,
202
+ Or as DropdownMenu,
203
+ Vr as DropdownMenuCheckboxItem,
204
+ Er as DropdownMenuContent,
205
+ zr as DropdownMenuGroup,
206
+ _r as DropdownMenuItem,
207
+ Ur as DropdownMenuLabel,
208
+ Yr as DropdownMenuPortal,
204
209
  r as DropdownMenuPrimitive,
205
- Vr as DropdownMenuRadioGroup,
206
- Er as DropdownMenuRadioItem,
207
- zr as DropdownMenuSeparator,
208
- _r as DropdownMenuShortcut,
209
- Ur as DropdownMenuSub,
210
- Yr as DropdownMenuSubContent,
211
- jr as DropdownMenuSubTrigger,
212
- qr as DropdownMenuTrigger,
213
- rn as Dropzone,
214
- Kr as Form,
215
- ie as FormCheckbox,
216
- pe as FormCombobox,
217
- Qr as FormControl,
218
- le as FormDatePicker,
219
- Wr as FormDescription,
220
- pn as FormDropzone,
221
- Xr as FormField,
222
- ue as FormInput,
223
- Zr as FormItem,
224
- $r as FormLabel,
225
- oe as FormMessage,
226
- te as FormRenderControl,
227
- ge as FormSelect,
228
- fe as FormTextarea,
229
- Se as Header,
230
- Te as HoverCard,
231
- ce as HoverCardContent,
232
- De as HoverCardTrigger,
233
- Pe as InfoBlock,
234
- Ae as Input,
235
- Fe as InputOTP,
236
- Le as InputOTPGroup,
237
- Be as InputOTPSeparator,
238
- Re as InputOTPSlot,
239
- ke as Label,
210
+ jr as DropdownMenuRadioGroup,
211
+ qr as DropdownMenuRadioItem,
212
+ Jr as DropdownMenuSeparator,
213
+ Kr as DropdownMenuShortcut,
214
+ Qr as DropdownMenuSub,
215
+ Wr as DropdownMenuSubContent,
216
+ Xr as DropdownMenuSubTrigger,
217
+ Zr as DropdownMenuTrigger,
218
+ mi as Dropzone,
219
+ oe as Form,
220
+ ue as FormCheckbox,
221
+ ge as FormCombobox,
222
+ re as FormControl,
223
+ fe as FormDatePicker,
224
+ ee as FormDescription,
225
+ gi as FormDropzone,
226
+ te as FormField,
227
+ Se as FormInput,
228
+ ae as FormItem,
229
+ ne as FormLabel,
230
+ ie as FormMessage,
231
+ le as FormRenderControl,
232
+ Te as FormSelect,
233
+ ce as FormTextarea,
234
+ Pe as Header,
235
+ Ie as HoverCard,
236
+ Ae as HoverCardContent,
237
+ we as HoverCardTrigger,
238
+ Fe as InfoBlock,
239
+ Re as Input,
240
+ He as InputOTP,
241
+ ye as InputOTPGroup,
242
+ Ne as InputOTPSeparator,
243
+ Oe as InputOTPSlot,
244
+ Ee as Label,
240
245
  e as LabelPrimitive,
241
- Oe as LazyLoader,
242
- Ee as LoadedIcon,
243
- _e as LoadingMask,
244
- qe as LoadingProgress,
245
- We as Menubar,
246
- Xe as MenubarCheckboxItem,
247
- Ze as MenubarContent,
248
- $e as MenubarGroup,
249
- ot as MenubarItem,
250
- rt as MenubarLabel,
251
- et as MenubarMenu,
252
- tt as MenubarPortal,
253
- at as MenubarRadioGroup,
254
- it as MenubarRadioItem,
255
- nt as MenubarSeparator,
256
- pt as MenubarShortcut,
257
- mt as MenubarSub,
258
- lt as MenubarSubContent,
259
- dt as MenubarSubTrigger,
260
- ut as MenubarTrigger,
261
- gt as NavigationMenu,
262
- bt as NavigationMenuContent,
263
- ft as NavigationMenuIndicator,
264
- st as NavigationMenuItem,
265
- St as NavigationMenuLink,
266
- Ct as NavigationMenuList,
267
- Tt as NavigationMenuTrigger,
268
- ct as NavigationMenuViewport,
269
- vt as Pagination,
270
- It as PaginationContent,
271
- At as PaginationEllipsis,
272
- wt as PaginationItem,
273
- ht as PaginationLink,
274
- Ft as PaginationNext,
275
- Lt as PaginationPrevious,
276
- we as PasswordInput,
277
- Rt as Popover,
278
- Gt as PopoverAnchor,
279
- kt as PopoverContent,
246
+ Ye as LazyLoader,
247
+ qe as LoadedIcon,
248
+ Ke as LoadingMask,
249
+ Ze as LoadingProgress,
250
+ et as Menubar,
251
+ tt as MenubarCheckboxItem,
252
+ at as MenubarContent,
253
+ nt as MenubarGroup,
254
+ it as MenubarItem,
255
+ pt as MenubarLabel,
256
+ mt as MenubarMenu,
257
+ lt as MenubarPortal,
258
+ dt as MenubarRadioGroup,
259
+ ut as MenubarRadioItem,
260
+ xt as MenubarSeparator,
261
+ gt as MenubarShortcut,
262
+ bt as MenubarSub,
263
+ ft as MenubarSubContent,
264
+ st as MenubarSubTrigger,
265
+ St as MenubarTrigger,
266
+ Tt as NavigationMenu,
267
+ Dt as NavigationMenuContent,
268
+ ct as NavigationMenuIndicator,
269
+ Mt as NavigationMenuItem,
270
+ Pt as NavigationMenuLink,
271
+ vt as NavigationMenuList,
272
+ It as NavigationMenuTrigger,
273
+ At as NavigationMenuViewport,
274
+ Lt as Pagination,
275
+ Bt as PaginationContent,
276
+ Rt as PaginationEllipsis,
277
+ Gt as PaginationItem,
278
+ kt as PaginationLink,
279
+ Ht as PaginationNext,
280
+ yt as PaginationPrevious,
281
+ Ge as PasswordInput,
282
+ Ot as Popover,
283
+ Vt as PopoverAnchor,
284
+ Et as PopoverContent,
280
285
  t as PopoverPrimitive,
281
- Ht as PopoverTrigger,
282
- Nt as Progress,
286
+ zt as PopoverTrigger,
287
+ Ut as Progress,
283
288
  a as ProgressPrimitive,
284
- Vt as RadioGroup,
285
- Et as RadioGroupItem,
286
- zt as RadioGroupLabel,
287
- Ye as RenderLoadingMask,
288
- Ut as ResizableHandle,
289
- Yt as ResizablePanel,
290
- jt as ResizablePanelGroup,
291
- Jt as ScrollArea,
292
- i as ScrollAreaPrimitive,
293
- Kt as ScrollBar,
294
- Wt as Search,
295
- la as Select,
296
- Zt as SelectContent,
297
- $t as SelectGroup,
298
- oa as SelectItem,
299
- ra as SelectLabel,
300
- n as SelectPrimitive,
301
- ea as SelectRoot,
302
- ta as SelectScrollDownButton,
303
- aa as SelectScrollUpButton,
304
- ia as SelectSeparator,
305
- na as SelectTrigger,
306
- pa as SelectValue,
307
- ua as Separator,
308
- ga as Sheet,
309
- ba as SheetClose,
310
- fa as SheetContent,
311
- sa as SheetDescription,
312
- Sa as SheetFooter,
313
- Ca as SheetHeader,
314
- Ta as SheetOverlay,
315
- ca as SheetPortal,
316
- Da as SheetTitle,
317
- Ma as SheetTrigger,
318
- va as Sidebar,
319
- Ia as SidebarContent,
320
- Aa as SidebarFooter,
321
- wa as SidebarGroup,
322
- ha as SidebarGroupAction,
323
- Fa as SidebarGroupContent,
324
- La as SidebarGroupLabel,
325
- Ba as SidebarHeader,
326
- Ra as SidebarInput,
327
- Ga as SidebarInset,
328
- ka as SidebarMenu,
329
- Ha as SidebarMenuAction,
330
- ya as SidebarMenuBadge,
331
- Na as SidebarMenuButton,
332
- Oa as SidebarMenuItem,
333
- Va as SidebarMenuSkeleton,
334
- Ea as SidebarMenuSub,
335
- za as SidebarMenuSubButton,
336
- _a as SidebarMenuSubItem,
337
- Ua as SidebarProvider,
338
- Ya as SidebarRail,
339
- ja as SidebarSeparator,
340
- qa as SidebarTrigger,
341
- Qa as Skeleton,
342
- Xa as Slider,
343
- $a as Sonner,
344
- ri as Switch,
345
- Si as TabRender,
346
- ti as Table,
347
- ai as TableBody,
348
- ii as TableCaption,
349
- ni as TableCell,
350
- pi as TableFooter,
351
- mi as TableHead,
352
- li as TableHeader,
353
- ln as TablePagination,
354
- di as TableRow,
355
- Ci as Tabs,
356
- xi as TabsContent,
357
- gi as TabsList,
358
- bi as TabsRoot,
359
- fi as TabsTrigger,
360
- ci as Textarea,
361
- vi as ThemeModeToggle,
362
- Mi as ThemeProvider,
363
- Ai as Toast,
364
- wi as ToastAction,
365
- hi as ToastClose,
366
- Fi as ToastDescription,
367
- Li as ToastProvider,
368
- Bi as ToastTitle,
369
- Ri as ToastViewport,
370
- Vi as Toaster,
371
- zi as Toggle,
372
- Yi as ToggleGroup,
373
- ji as ToggleGroupItem,
374
- Zi as Tooltip,
375
- Ji as TooltipContent,
376
- $i as TooltipInner,
289
+ jt as RadioGroup,
290
+ qt as RadioGroupItem,
291
+ Jt as RadioGroupLabel,
292
+ We as RenderLoadingMask,
293
+ Qt as ResizableHandle,
294
+ Wt as ResizablePanel,
295
+ Xt as ResizablePanelGroup,
296
+ $t as ScrollArea,
297
+ n as ScrollAreaPrimitive,
298
+ oa as ScrollBar,
299
+ ea as Search,
300
+ fa as Select,
301
+ aa as SelectContent,
302
+ na as SelectGroup,
303
+ ia as SelectItem,
304
+ pa as SelectLabel,
305
+ i as SelectPrimitive,
306
+ ma as SelectRoot,
307
+ la as SelectScrollDownButton,
308
+ da as SelectScrollUpButton,
309
+ ua as SelectSeparator,
310
+ xa as SelectTrigger,
311
+ ga as SelectValue,
312
+ Sa as Separator,
313
+ Ta as Sheet,
314
+ Da as SheetClose,
315
+ ca as SheetContent,
316
+ Ma as SheetDescription,
317
+ Pa as SheetFooter,
318
+ va as SheetHeader,
319
+ Ia as SheetOverlay,
320
+ Aa as SheetPortal,
321
+ wa as SheetTitle,
322
+ ha as SheetTrigger,
323
+ La as Sidebar,
324
+ Ba as SidebarContent,
325
+ Ra as SidebarFooter,
326
+ Ga as SidebarGroup,
327
+ ka as SidebarGroupAction,
328
+ Ha as SidebarGroupContent,
329
+ ya as SidebarGroupLabel,
330
+ Na as SidebarHeader,
331
+ Oa as SidebarInput,
332
+ Va as SidebarInset,
333
+ Ea as SidebarMenu,
334
+ za as SidebarMenuAction,
335
+ _a as SidebarMenuBadge,
336
+ Ua as SidebarMenuButton,
337
+ Ya as SidebarMenuItem,
338
+ ja as SidebarMenuSkeleton,
339
+ qa as SidebarMenuSub,
340
+ Ja as SidebarMenuSubButton,
341
+ Ka as SidebarMenuSubItem,
342
+ Qa as SidebarProvider,
343
+ Wa as SidebarRail,
344
+ Xa as SidebarSeparator,
345
+ Za as SidebarTrigger,
346
+ rn as Skeleton,
347
+ tn as Slider,
348
+ nn as Sonner,
349
+ mn as Switch,
350
+ vn as TabRender,
351
+ dn as Table,
352
+ un as TableBody,
353
+ xn as TableCaption,
354
+ gn as TableCell,
355
+ bn as TableFooter,
356
+ fn as TableHead,
357
+ sn as TableHeader,
358
+ fi as TablePagination,
359
+ Sn as TableRow,
360
+ In as Tabs,
361
+ Tn as TabsContent,
362
+ Dn as TabsList,
363
+ cn as TabsRoot,
364
+ Mn as TabsTrigger,
365
+ wn as Textarea,
366
+ Bn as ThemeModeToggle,
367
+ Fn as ThemeProvider,
368
+ Gn as Toast,
369
+ kn as ToastAction,
370
+ Hn as ToastClose,
371
+ yn as ToastDescription,
372
+ Nn as ToastProvider,
373
+ On as ToastTitle,
374
+ Vn as ToastViewport,
375
+ qn as Toaster,
376
+ Kn as Toggle,
377
+ Xn as ToggleGroup,
378
+ Zn as ToggleGroupItem,
379
+ ni as Tooltip,
380
+ oi as TooltipContent,
381
+ ii as TooltipInner,
377
382
  p as TooltipPrimitive,
378
- Ki as TooltipProvider,
379
- Qi as TooltipRoot,
380
- Wi as TooltipTrigger,
383
+ ri as TooltipProvider,
384
+ ei as TooltipRoot,
385
+ ti as TooltipTrigger,
381
386
  J as badgeVariants,
382
- io as buttonBadgeVariants,
387
+ no as buttonBadgeVariants,
383
388
  go as buttonIconVariants,
384
- no as buttonVariants,
385
- ye as labelVariants,
386
- Ke as loadingProgressVariants,
387
- Mt as navigationMenuVariants,
388
- ki as reducer,
389
+ io as buttonVariants,
390
+ _e as labelVariants,
391
+ ot as loadingProgressVariants,
392
+ ht as navigationMenuVariants,
393
+ zn as reducer,
389
394
  mo as renderInnerIcon,
390
- Hi as toast,
391
- _i as toggleVariants,
392
- Tr as useDialogOverlayContainer,
393
- re as useFormField,
394
- yi as useNotify,
395
- Ja as useSidebar,
396
- Ni as useToast
395
+ _n as toast,
396
+ Qn as toggleVariants,
397
+ ir as useContextPopoverHandler,
398
+ Ir as useDialogOverlayContainer,
399
+ pe as useFormField,
400
+ Un as useNotify,
401
+ $a as useSidebar,
402
+ Yn as useToast
397
403
  };
398
404
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oneplatformdev/ui",
3
- "version": "0.1.99-beta.231",
3
+ "version": "0.1.99-beta.232",
4
4
  "description": "UI component library for OnePlatform",
5
5
  "author": "One Platform Development Team",
6
6
  "keywords": [
@@ -106,9 +106,9 @@
106
106
  "recharts": "^3.2.0",
107
107
  "sonner": "^2.0.7",
108
108
  "vaul": "^1.1.2",
109
- "@oneplatformdev/tokens": "^0.1.99-beta.231",
110
- "@oneplatformdev/utils": "^0.1.99-beta.231",
111
- "@oneplatformdev/hooks": "^0.1.99-beta.231"
109
+ "@oneplatformdev/tokens": "^0.1.99-beta.232",
110
+ "@oneplatformdev/hooks": "^0.1.99-beta.232",
111
+ "@oneplatformdev/utils": "^0.1.99-beta.232"
112
112
  },
113
113
  "scripts": {
114
114
  "chromatic": "chromatic"